blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a96dbb2119445f9750eeda449ca2669c5bccf43d | fef631114a3d44b026b992ce9dc4536aa7c0e79c | /cpp/AAYUSHI.CPP | 13a8941ef38ac2204b9d2c091c07219d7d24dab8 | [] | no_license | Shivam-Vishwakarma/CPP | 1092e877eec4a921561d12b6d555d68fa8ee21da | c77533bada9510c287039a4dacd0e091ead49030 | refs/heads/master | 2022-10-03T19:58:39.409098 | 2020-06-02T04:49:26 | 2020-06-02T04:49:26 | 268,703,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 400 | cpp | AAYUSHI.CPP | #include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a;
cout<<"enter number of weeks(1-7)";
cin>>a;
switch(a)
{
case 1:
cout<<"sunday";
break;
case 2:
cout<<"monday";
break;
case 3:
cout<<"tuesday";
break;
case 4:
cout<<"wednesday";
break;
case 5:
cout<<"thursday";
break;
case 6:
cout<<"friday";
break;
case 7:
cout<<"saturday";
break;
default:
cout<<"invalid no.";
break;
getch();
}
} |
0bef2d4e565a4c4ae2101aff183e23ff0b700137 | 1d16cb350142a461be378adcf1e5072a6c716215 | /Main.cpp | bc919a6acdd686e97ea268a6ca318a61fc25149b | [] | no_license | PureDu/cistron | 7673167fe2a111614c6b9b1de1b64a26aa509dee | 8b5bbccc17ed928d432934e1a385d9cce82bfbec | refs/heads/master | 2021-06-06T15:28:52.482628 | 2010-03-01T15:08:40 | 2010-03-01T15:08:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,860 | cpp | Main.cpp |
/**
* Example program using the component framework.
* In the component framework, an object is represented by a collection of components,
* who interact with each other through messages.
* An Object traditionally corresponds to what you would define as a class in a traditional OO environment.
* However, in this framework, the object is further split into smaller components.
*
* This example implements a company, its personnel and the government serving taxes.
* In this example, a person is represented by an Object, which can contain several
* components that are all part of the same person, like one or more jobs.
* The company is represented by another object.
* The government is represented by yet another object.
*/
#include "Cistron.h"
using namespace Cistron;
#include <string>
#include <iostream>
using namespace std;
/**
* Job component. Each person is assigned a job by the company.
*/
class Job: public Component {
public:
// constructor/destructor
Job() : Component("Job") {
/**
* In the constructor, the component is not added to an object yet
* therefore, it is not yet part of the component framework,
* and cannot request or send messages.
*/
};
virtual ~Job() {};
// we are added to an object, and thus to the component system
void addedToObject() {
/*
* From this point onwards, the component is part of the framework, and can
* request and send messages.
*/
/**
* Request a message.
* Whenever a Fire message is sent to this object, this function will be called
* So that the Job can destroy itself.
*/
requestMessage("Fire", &Job::fire);
}
// set/get the salary
void setSalary(int s) { fSalary = s; }
int getSalary() { return fSalary; }
private:
// we are fired from this job
void fire(Message const & msg) {
/**
* Message is a struct containing the following fields:
* - type: One of CREATE,DESTROY,MESSAGE
* Must be MESSAGE in this case, because the message originated from a requestMessage call
* - sender: A pointer to the Component who sent the message.
* - p: A void pointer pointing to an optional payload for the message. This can be "added" to the
* message by the sender of the message.
*/
// just destroy ourselves
destroy();
}
// salary
int fSalary;
};
/**
* Person component. Has a job.
*/
class Person: public Component {
public:
// constructor - age is fixed at creation time
Person(string name, int age) : Component("Person"), fName(name), fAge(age) {};
virtual ~Person() {};
// get the age of the person
int getAge() { return fAge; }
// we are added to an object, and thus to the component system
void addedToObject() {
cout << fName << " with age " << fAge << " was added to the system." << endl;
/**
* request creation & destruction messages for a particular component
* note that, if there are already components of this type in the system,
* CREATE messages will be generated for these persons when the request is processed
*
* Note that we want to know of our own jobs - but not of other people's jobs.
* That is why we set the local argument to "true". This means we only request
* job components that exist in the same Object as we do.
*/
requestComponent("Job", &Person::processJob, true);
// when the year changes, we want to update our age, so we request NextYear events
requestMessage("NextYear", &Person::nextYear);
}
private:
// we received a job - make a happy dance
void processJob(Message const & msg) {
/**
* Message is a struct containing the following fields:
* - type: One of CREATE,DESTROY,MESSAGE
* Must be CREATE or DESTROY in this case, because the message originated from
* a requestComponent call.
* - sender: A pointer to the Component who was just created, or is about to be destroyed (deleted).
* - p: not used for CREATE or DESTROY messages.
*/
Job *job = (Job*)msg.sender;
// we received a new job! hooray!
if (msg.type == CREATE) {
cout << fName << " (age " << fAge << ") received a new job with salary " << job->getSalary() << endl;
}
else {
cout << fName << " (age " << fAge << ") lost his job with salary " << job->getSalary() << endl;
}
}
// we receive a next year message - update the age, and let everyone know that our age changed
void nextYear(Message const & msg) {
// first, we update our age
++fAge;
cout << fName << " had a birthday and is now " << fAge << " years old" << endl;
/**
* Send a message to everyone that we aged.
* There are many different functions available to make it easy to send messages.
* Basically there are three ways to send a message:
* - sendLocalMessage: send a message to all the components in THIS object who have requested this message type.
- sendMessage: send a message to all the components in the system who have requested this message type.
- sendMessageToObject: send a message to a particular object (defined by its id), which can differ from this one.
*
* Next to these three methods, there are several overloaded versions of each,
* based on whether you want to give a payload, etc. The different basic versions are:
*
* sendLocalMessage("MessageName"); // payload is not provided
* sendLocalMessage("MessageName", payloadPointer); // payload provided
*
* sendMessage("MessageName"); // payload is not provided
* sendMessage("MessageName", payloadPointer); // payload provided
*
* sendMessageToObject(objectId, "MessageName"); // payload is not provided
* sendMessageToObject(objectId, "MessageName", payloadPointer); // payload provided
* objectId is obtained by calling getOwnerId() on a component.
*
* In this case, we just want to announce the whole world of our birthday.
*/
sendMessage("Birthday");
}
// age
int fAge;
// name
string fName;
};
/**
* the company class. Wants to know who works in this company, and assigns jobs to newcomers.
*/
class Company: public Component {
public:
// constructor/destructor
Company() : Component("Company") {};
virtual ~Company() {};
// when added to an object
void addedToObject() {
/**
* request creation & destruction messages for a particular component
* note that, if there are already components of this type in the system,
* CREATE messages will be generated for these persons when the request is processed
*
* Note that we want to know all persons added to the system,
* thus the optional third "local" argument is not provided.
* This will alert the Company of all Person components who are added,
* regardless of the object they belong to.
*/
requestComponent("Person", &Company::processPerson);
// request all currently existing components of one type,
// but don't request messages about components created afterwards
// this is not necessary because we called requestComponent,
// so existing components of the Person type will be already reported
// requestAllExistingComponents("Person", &Company::processPerson);
// request a birthday message
// fire employees who are too old and give an extra job to people who turned 50
requestMessage("Birthday", &Company::processBirthday);
}
private:
// process component of type 2
void processPerson(Message const & msg) {
// get the person
Person *person = (Person*)msg.sender;
// new person added to the company
if (msg.type == CREATE) {
// create job component
Job *job = new Job();
// salary
int salary = person->getAge() * 10000;
// give the person a job, salary is based on his age
job->setSalary(salary);
// add the job to the same object that the person belongs to
addComponent(person->getOwnerId(), job);
// really old people receive a second job - bonus work for more salary
if (person->getAge() >= 50) {
Job *extraJob = new Job();
extraJob->setSalary(50000);
addComponent(person->getOwnerId(), extraJob);
}
}
}
// process birthday
void processBirthday(Message const & msg) {
// get the person whose birthday it is
Person *person = (Person*)msg.sender;
// person is too old - fire him!
if (person->getAge() == 65) {
// we only want to fire this person, so we send a message to the object this person belongs to
sendMessageToObject(person->getOwnerId(), "Fire");
}
// person just turned 50 - give him a bonus job!
if (person->getAge() == 50) {
Job *extraJob = new Job();
extraJob->setSalary(50000);
addComponent(person->getOwnerId(), extraJob);
}
}
};
/*
* Finally, the government component.
* This is where the advantage of the component based architecture comes in!
* The government is only interested in how many money is made in its country, not by who it is earned.
* therefore, it does not have to know anything about the Person component to function - it only interacts with Job.
* Additionally, Jobs do not have to be tied to Persons either - for example, one could implement jobs for companies,
* which are paid for by the government. Then there would be an object containing a Company and Job component, but not a
* Person component. Yet, the government will still be able to compute the total earned income.
* We also make the government responsible for maintaining the calendar - someone has to do it.
*/
class Government: public Component {
public:
// constructor/destructor
Government() : Component("Government"), fTotalEarnedIncome(0) {};
virtual ~Government() {};
// we advance the calendar by one year
void advanceCalendar() {
// send message to everyone that we're in a new fiscal year
cout << "New fiscal year!" << endl;
sendMessage("NextYear");
// announce new total
cout << "Government announces total earned salary at this year: " << fTotalEarnedIncome << endl;
}
// when it is added to the system, we request all jobs that exist and will exist
void addedToObject() {
// request all job components
requestComponent("Job", &Government::processJob);
}
private:
// the total money earned
int fTotalEarnedIncome;
// process new and lost jobs
void processJob(Message const & msg) {
// get the job
Job *job = (Job*)msg.sender;
// new job
if (msg.type == CREATE) {
// add to the total earned income
fTotalEarnedIncome += job->getSalary();
}
// lost job - type cannot be MESSAGE so must be DESTROY
else {
// substract from total earned income
fTotalEarnedIncome -= job->getSalary();
}
};
};
/**
* We now play around with the objects created.
*/
int main(char **args) {
// create the object manager
ObjectManager* objectManager = new ObjectManager();
// first, create a new object
ObjectId p1Id = objectManager->createObject();
// this object is now empty and contains no components
// we create a person component and add it to the newly created object
Person *p1 = new Person("Walter", 43);
objectManager->addComponent(p1Id, p1);
// we now create a company in its own separate object
ObjectId companyId = objectManager->createObject();
Company *company = new Company();
objectManager->addComponent(companyId, company);
// the company will now assign a job to person 1
// add two more persons, one who will soon retire, and one who will get his bonus job soon
// old person
ObjectId p2Id = objectManager->createObject();
Person *p2 = new Person("Bob", 62);
objectManager->addComponent(p2Id, p2);
// soon to turn 50
ObjectId p3Id = objectManager->createObject();
Person *p3 = new Person("Peter", 48);
objectManager->addComponent(p3Id, p3);
// now the company has assigned 4 jobs, 1 to Walter, 1 to Peter and 2 to Bob
// now, we add the government, which will keep track of the total earned income in our mini universe
ObjectId governmentId = objectManager->createObject();
Government *government = new Government();
objectManager->addComponent(governmentId, government);
// finally, we advance the calendar by a couple of years, and see what happens
government->advanceCalendar();
government->advanceCalendar();
government->advanceCalendar();
government->advanceCalendar();
return 0;
} |
860affc2945140d1295d3a4ccc8f648bcfdafa6a | b3dd411bbc1a98d32fe9509bac7c1bcaa1f7ddd0 | /Template.cpp | ca1b3a69050b23c28df720143b1d97ede8acc4f3 | [] | no_license | Nuha4/NumberTheory | bf899dc3a0ace50149eea7d289b13fabb702477c | 9fbab2a5f76e35e7c72d327b6c7c16a54f65bb98 | refs/heads/master | 2021-05-09T06:38:11.000422 | 2018-01-29T05:40:53 | 2018-01-29T05:40:53 | 119,336,788 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 215 | cpp | Template.cpp | #include<cstdio>
#include<iostream>
#include<cmath>
#include<cstring>
using namespace std;
#define MAX 10000
#define size 1000
#define sf scanf
#define pf printf
typedef long long ll;
int main()
{
return 0;
}
|
d5e55cba1df8e99f89e8a661a34d0e1581437c14 | deb47d882a54721349b42ea30803707cb598bf6a | /Contact Database/contact.h | 2c9f3b2027ff172141400a114b0ab6184d6b8d2f | [] | no_license | MattBaseheart/samples | 5ac04a568686e3f0a7dad854c72999b147810746 | 26afa901a724041e516f19dc6af1f62751bdc4cc | refs/heads/main | 2023-08-07T20:48:19.172136 | 2021-09-13T03:39:08 | 2021-09-13T03:39:08 | 368,284,571 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,090 | h | contact.h | #ifndef CONTACT_H
#define CONTACT_H
#include <iostream>
#include <string>
#include <sstream>
#include <stdlib.h>
// TODO: You may need to add other libraries here!
using namespace std;
class Contact {
protected: // TODO: private or protected? Look at its children!
string type;
public:
// the following functions are pure virtual functions
virtual void print() = 0;
virtual string get_contact(string style="full") = 0;
virtual void set_contact() = 0;
};
class Email: public Contact{
private:
string email_addr;
public:
Email();
Email(string type, string email_addr);
// TODO: Complete me!
void print();
string get_contact(string style="full");
void set_contact();
};
class Phone: public Contact{
private:
// TODO: modify dataType! Can int store 10 digit phone-number?
long int phone_num;
public:
Phone();
Phone(string type, string num);
// TODO: Complete me!
void print();
string get_contact(string style="full");
void set_contact();
};
#endif
|
4809c5aca0da65d99d3cd4d7cbe831e852506c42 | 6312f14956842cd4f443c13178d7053ecc684d14 | /Scheduling Algorithms/SRTN.cpp | 03e78830440c0c5cbae1b0625eab8bb47d066cc6 | [] | no_license | sanzamsyed/Operating-System | 8fbe3490070295e2abca94ae6256b4c880fc630d | c89c9fad21c3ff94b9ae4df7fbf9d24f2f469174 | refs/heads/master | 2020-05-17T02:02:25.789995 | 2019-05-19T09:42:08 | 2019-05-19T09:42:08 | 183,443,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,299 | cpp | SRTN.cpp | #include <bits/stdc++.h>
using namespace std;
struct process
{
int pid;
int arrival;
int burst;
int remaining;
int turnaround;
int waiting;
int completion;
};
bool SortByAT(process a, process b)
{
return a.arrival < b.arrival;
}
bool SortByPID(process a, process b)
{
return a.pid < b.pid;
}
bool operator<(process a, process b)
{
return (a.remaining > b.remaining);
}
int main()
{
freopen("input.txt","r",stdin);
vector<process> p;
vector<pair<int,int> > gannt;
int n;
cin >> n;
int cnt = 0;
for(int i = 0; i < n; i++)
{
process temp;
int a;
int b;
cin >> a >> b;
temp.pid = ++cnt;
temp.arrival = a;
temp.burst = b;
temp.remaining = b; ///Initially rem time = burst time
temp.completion = 0;
temp.turnaround = 0;
temp.waiting = 0;
p.push_back(temp);
}
sort(p.begin(),p.end(),SortByAT);
priority_queue<process> pq;
vector<process> result;
pq.push(p[0]);
int currentTime = 0;
int check = 1;
while(!pq.empty())
{
process temp;
temp = pq.top();
pq.pop();
if(temp.remaining > 0)
{
currentTime++;
temp.remaining--;
pq.push(temp);
gannt.push_back(make_pair(temp.pid,currentTime));
}
else
{
temp.completion = currentTime;
gannt.push_back(make_pair(temp.pid,currentTime));
result.push_back(temp);
}
for(int i = check; i < n; i++)
{
if(p[i].arrival <= currentTime)
{
pq.push(p[i]);
check++;
}
}
}
///result er vitore shobgulo completed process
float totWaiting = 0;
for(int i = 0; i < n; i++)
{
result[i].turnaround = result[i].completion - result[i].arrival;
result[i].waiting = result[i].turnaround - result[i].burst;
totWaiting = totWaiting + result[i].waiting;
}
for(int i = 0; i < gannt.size(); i++)
{
cout << "P" << gannt[i].first << "\t";
}
cout << endl;
cout << "AWT: " << totWaiting/n << endl;
}
|
2846f63d5c074319acb3587df018c0fa3324cce8 | 74b6018e594e5cba71d3e26ef70884c92abde0c0 | /mmCoreAndDevices/DeviceAdapters/PVCAM/ThreadPool.cpp | 243cde03740f6e796ab08edc21f49faaa6a6f7f5 | [
"BSD-3-Clause"
] | permissive | lwxGitHub123/micro-manager | 4b5caec8f25de2b7a9e92e7883eecc026fdc08b9 | a945fdf550ba880744b5b3695fa2c559505f735b | refs/heads/main | 2023-06-24T13:00:29.082165 | 2021-07-29T07:24:13 | 2021-07-29T07:24:13 | 382,203,845 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,175 | cpp | ThreadPool.cpp | ///////////////////////////////////////////////////////////////////////////////
// FILE: ThreadPool.cpp
// PROJECT: Micro-Manager
// SUBSYSTEM: DeviceAdapters
//-----------------------------------------------------------------------------
// DESCRIPTION: A class executing queued tasks on separate threads
// and scaling number of threads based on hardware.
//
// AUTHOR: Tomas Hanak, tomas.hanak@teledyne.com, 03/03/2021
// Andrej Bencur, andrej.bencur@teledyne.com, 03/03/2021
//
// COPYRIGHT: Teledyne Digital Imaging US, Inc., 2021
//
// LICENSE: This file is distributed under the "Lesser GPL" (LGPL) license.
// License text is included with the source distribution.
//
// This file 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.
//
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES.
#include "ThreadPool.h"
#include "Task.h"
#include <boost/foreach.hpp>
#include <boost/make_shared.hpp>
#include <boost/thread/locks.hpp>
#ifndef _WINDOWS
#include <boost/phoenix.hpp>
#endif
#include <algorithm>
#include <cassert>
ThreadPool::ThreadPool()
: abortFlag_(false)
{
const size_t hwThreadCount = std::max<size_t>(1, boost::thread::hardware_concurrency());
for (size_t n = 0; n < hwThreadCount; ++n)
threads_.push_back(boost::make_shared<boost::thread>(&ThreadPool::ThreadFunc, this));
}
ThreadPool::~ThreadPool()
{
{
boost::lock_guard<boost::mutex> lock(mx_);
abortFlag_ = true;
}
cv_.notify_all();
BOOST_FOREACH(const boost::shared_ptr<boost::thread>& thread, threads_)
thread->join();
}
size_t ThreadPool::GetSize() const
{
return threads_.size();
}
void ThreadPool::Execute(Task* task)
{
assert(task != NULL);
{
boost::lock_guard<boost::mutex> lock(mx_);
if (abortFlag_)
return;
queue_.push_back(task);
}
cv_.notify_one();
}
void ThreadPool::Execute(const std::vector<Task*>& tasks)
{
assert(!tasks.empty());
{
boost::lock_guard<boost::mutex> lock(mx_);
if (abortFlag_)
return;
BOOST_FOREACH(Task* task, tasks)
{
assert(task != NULL);
queue_.push_back(task);
}
}
cv_.notify_all();
}
void ThreadPool::ThreadFunc()
{
for (;;)
{
Task* task = NULL;
{
boost::unique_lock<boost::mutex> lock(mx_);
#ifndef _WINDOWS
namespace phx = boost::phoenix;
cv_.wait(lock, phx::ref(abortFlag_) || !phx::empty(phx::ref(queue_)));
#else
cv_.wait(lock, [&]() { return abortFlag_ || !queue_.empty(); });
#endif
if (abortFlag_)
break;
task = queue_.front();
queue_.pop_front();
}
task->Execute();
task->Done();
}
}
|
df9ff63e22bab4e0539f2ebe9e8f69ec2088b4c6 | 9710c1d4e250b711f0026e8ca228c6e90db9226a | /src/free386.inc | 0a444e4d6081b04e18c9fbe89fdcbad35dd79c15 | [] | no_license | joncampbell123/free386 | 3f780c4c7daeb2a1f8945f0f8e6588588d0d011f | 7435f1b2b5d0feec7ed927d08eaa3d799bdc6d56 | refs/heads/main | 2023-08-24T11:40:31.664122 | 2021-10-31T08:31:11 | 2021-10-31T08:31:11 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,082 | inc | free386.inc | ;******************************************************************************
;■グローバルシンボル宣言
;******************************************************************************
;--- for f386seg.asm ------------------------------
extern GDT_adr, LDT_adr
extern free_LINER_ADR
extern free_RAM_padr
extern free_RAM_pages
extern DOS_mem_adr
extern DOS_mem_pages
extern page_dir
;--- for f386cv86.asm -----------------------------
extern to_PM_EIP, to_PM_data_ladr
extern VCPI_entry
extern v86_cs
extern int_buf_adr
extern int_buf_adr_org
extern int_rwbuf_adr
extern int_rwbuf_adr_org
extern int_rwbuf_size
extern VCPI_stack_adr
extern heap_malloc, stack_malloc
extern f386err
;--- for int.asm ----------------------------------
;extern int_buf_adr
extern work_adr
extern PM_stack_adr
extern END_program
extern IDT_adr
extern RVects_flag_tbl
extern DTA_off, DTA_seg
extern DOS_int21h_adr
extern top_adr
extern default_API
extern callbuf_adr16
extern callbuf_seg16
extern callbuf_adr32
|
c82270a1b5c5d628eb0beb066bb49fa9e55cf92b | f5a6693d62bd3be2d50eeef10826f410250e8ddc | /demoFlightDisplays1/SpdLines.hpp | 42ccc5b514c5cdecd87122b46e46124a90e150cf | [] | no_license | gehldp/mixr-examples | 41818de9bee92edb5da21b535be5f8427d62491b | 0721f7b8dacdeabeda50f2ea1cbbead2515768b0 | refs/heads/master | 2021-01-15T21:25:52.575277 | 2017-10-23T17:45:36 | 2017-10-23T17:45:36 | 99,869,935 | 0 | 0 | null | 2017-08-10T01:59:31 | 2017-08-10T01:59:31 | null | UTF-8 | C++ | false | false | 1,105 | hpp | SpdLines.hpp |
#ifndef __SpdLines_H__
#define __SpdLines_H__
#include "mixr/graphics/Graphic.hpp"
//------------------------------------------------------------------------------
// Class: SpdLines
//
// Description: Draws the lines for the airspeed graphic
// Inputs: Slots only
//------------------------------------------------------------------------------
class SpdLines : public mixr::graphics::Graphic
{
DECLARE_SUBCLASS(SpdLines, mixr::graphics::Graphic)
public:
SpdLines();
virtual void drawFunc() override;
// set functions
virtual bool setIsAlt(const bool newIsAlt);
virtual bool setDrawBack(const bool newDB);
// get functions
bool isAltOn() { return isAlt; }
bool isBackgroundOn() { return drawBack; }
private:
bool isAlt {}; // are we drawing the altitude lines instead?
bool drawBack {}; // draw the background (for transparency purposes)
private:
// slot table helper methods
bool setSlotIsAlt(const mixr::base::Number*);
bool setSlotDrawBack(const mixr::base::Number*);
};
#endif
|
865e9a62fae331a8fb9f8bbde840103c1b4524d8 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5640146288377856_0/C++/sohitverma/practice.cpp | 2e188099aae643870e71859741f3118754b091da | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 393 | cpp | practice.cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
int t;
cin>>t;
for(int i = 1; i <= t; i++)
{
int r,c,w;
cin>>r>>c>>w;
long long int ans = 0;
ans = r*(c/w);
ans += w - 1;
if(c % w != 0)
ans++;
cout<<"Case #"<<i<<": "<<ans<<endl;
}
return 0;
} |
8dd9eda00642fa935f37f84191445760ef1085ae | bcae6681107f3102d871318619aded222714d26d | /trunk/Ej_13/p_C1/eventoscliente.hpp | efe67cefae07ee4a697f7312b77197249a344c7f | [] | no_license | gruizFING/SED | 04d7a471391031b81ed6db61f9e0a8e7821cf002 | ccef0b24ede64e0ad56c3273c5f4dc2dcfe2555f | refs/heads/master | 2020-06-16T22:32:09.469388 | 2019-07-08T02:33:00 | 2019-07-08T02:33:00 | 195,721,732 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,181 | hpp | eventoscliente.hpp | #ifndef EVENTOSCLIENTE_HPP_INCLUDED
#define EVENTOSCLIENTE_HPP_INCLUDED
#include <eosim/core/bevent.hpp>
#include <eosim/core/entity.hpp>
#include <string>
// identificador del evento fijo ClienteFeeder
const std::string clienteF = "ClienteFeeder";
class ClienteFeeder: public eosim::core::BEvent {
public:
// constructor
ClienteFeeder(eosim::core::Model& model);
// destructor
~ClienteFeeder();
// rutina del evento fijo
void eventRoutine(eosim::core::Entity* who);
};
// identificador del evento fijo elegirCajaCliente
const std::string elegirC = "elegirCajaCliente";
class elegirCajaCliente: public eosim::core::BEvent {
public:
// constructor
elegirCajaCliente(eosim::core::Model& model);
// destructor
~elegirCajaCliente();
// rutina del evento fijo
void eventRoutine(eosim::core::Entity* who);
};
// identificador del evento fijo SalidaCliente
const std::string salidaC = "SalidaCliente";
class SalidaCliente: public eosim::core::BEvent {
public:
// constructor
SalidaCliente(eosim::core::Model& model);
// destructor
~SalidaCliente();
// rutina del evento fijo
void eventRoutine(eosim::core::Entity* who);
};
#endif // EVENTOSCLIENTE_HPP_INCLUDED
|
f962b28376ce1f593add53356756ac79c4d42718 | 2f8a14f20718b2ecd2c1b6d7d2e9def877e48b1f | /leetcode/first_class/remove_duplicates_from_sorted_list/cpp/rm_duplicates.cpp | a00ade433f37fbc0eafc38c001dcd6b5710d94df | [] | no_license | amazonsx/archives | 5aa9441aa7689b8af9d33a9a7fefd381c08a569b | e6618ad50ced9aa9e90e4d989b97a3377e92af9c | refs/heads/master | 2021-01-10T18:46:08.536119 | 2014-11-23T06:49:06 | 2014-11-23T06:49:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,228 | cpp | rm_duplicates.cpp | #include <iostream>
#define DEBUG
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x): val(x), next(NULL) {}
ListNode(): val(0), next(NULL) {}
};
class Solution {
public:
ListNode *deleteDuplicates(ListNode *head);
};
ListNode* Solution::deleteDuplicates(ListNode *head){
if (head == NULL) return NULL;
ListNode *cursor = head, *next = NULL;
int tmp = 0;
while (cursor) {
tmp = cursor->val;
next = cursor->next;
while ( next && (tmp == next->val) ) {
next = next->next;
cursor->next = next;
}
cursor = cursor->next;
}
return head;
}
int main(int argc, char *argv[]) {
Solution s;
int arr[] = { 0, 1, 2, 3, 4, 4, 4, 5, 5};
ListNode root[9];
for ( int i = 0; i < 9; i ++) {
root[i].val = arr[i];
if (i != 8) {
root[i].next = root + i + 1;
}
}
ListNode *tmp = root;
while (tmp) {
cout << tmp->val << " " ;
tmp = tmp->next;
}
cout << endl;
tmp = s.deleteDuplicates(root);
while (tmp) {
cout << tmp->val << " " ;
tmp = tmp->next;
}
cout << endl;
return 0;
}
|
fc9d6c4f6ae287c2398c68e1b70923c344da0b0e | 721543fec45960038aeb1d467b8398baf8173b2c | /caurse.cpp | 3569e2cf8ac7b250fa959496c19a31bb08e96a2c | [] | no_license | Lindany/TypingChamps | 4d6faf748a67dd9b4deb7a850a2d8a0355ff986b | b83cf72add1abae5e8402d06a5a6c5cfc7bdb9e5 | refs/heads/master | 2020-03-10T19:46:41.116844 | 2018-04-14T23:02:17 | 2018-04-14T23:02:17 | 129,555,314 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 49 | cpp | caurse.cpp | #include "caurse.h"
Caurse::Caurse()
{
}
|
ee6cab31b1ae03076d94bc59f52a97b2575ce6b7 | f1b9285c515c07f2a628b0fa76c28af56e2009be | /Carte.h | 184e1a481cd9d09e8387954e3f5a7dd2109e4bed | [] | no_license | sergelapraye/TP4 | ca04e63c319cc09e72549f62f0f9d2a948cba079 | 47275dc384748a3d51085f8f720bf8a833d38c38 | refs/heads/master | 2020-09-21T14:31:13.632064 | 2019-12-02T12:54:45 | 2019-12-02T12:54:45 | 224,817,447 | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 944 | h | Carte.h | /***************************************************************************************/
/*Développé par Dherbomez Arthur, Hugo Louvel et Adrien Mercier en classe de BTSSN1 ***/
/*le 18/05/2018 ****/
/* ****/
/*Langage C++ : Projet Station de Ski ****/
/* ****/
/*********************************************************************************/
#ifndef Unit3H
#define Unit3H
//---------------------------------------------------------------------------
#include <vcl.h>
class Carte
{
public:
Carte(int adresse); //initialise l'adresse
~Carte(); //ferme la connexion
bool getEtat(); //retourne l'etat de la carte
int lecture_analog(int channel); //retourne la température
bool connexion(); //ouvre la connexion avec la carte
private:
int adr;
bool etat;
int res;
};
#endif
|
1de70d216d2361a46f591f729b0ccdf4bf4f412b | d0aa688eeaa9dfae47670fcae6029c049800ba40 | /tercer_punto/term.cpp | b159f97b58a9fdb057f9bc5b8a2f7b3d1d8a60e8 | [] | no_license | Camilo174/ALSE_VNE | 886701d731643ccaa583b4fadb35d9f22d284e31 | 8db567f96ecbb7b1ff25626bffcc54956aaca23d | refs/heads/master | 2021-04-11T16:55:12.302390 | 2020-03-22T22:46:46 | 2020-03-22T22:46:46 | 249,038,743 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 310 | cpp | term.cpp | #include "term.h"
Term::Term(int p,float c,char v){
_coef = c;
_pot = p;
_var = v ;
}
string Term::getstr(Term& T) {
stringstream temp;
temp<<T._coef<<T._var<<'^'<<T._pot<<endl;
return temp.str();
}
Term::Term(string& Te){
_coef=atof(Te[0]);
_var=Te[1];
_pot=atoi(Te[3]);
}
|
e4f5510d566052d7e0fcc2dd267c4e506bc32fba | 2c41a703e39d3ddf7e523b914ad5358ca7d8f985 | /BOJ/boj_n1717.cpp | a9e0b61c29183bb772c1fd53e3a2c4721f3bc43d | [] | no_license | ddudini/Algorithm | b49978cab52a62a57966d5d93a4f4eaee5dd8462 | b45ac16a4ef94d5f746920638f3dcde7f4da5942 | refs/heads/master | 2020-03-23T01:09:48.024040 | 2018-08-29T11:08:20 | 2018-08-29T11:08:20 | 137,445,970 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,027 | cpp | boj_n1717.cpp | //
// main.cpp
// boj_n1717
// https://www.acmicpc.net/problem/1717
// Created by Sujin Han on 2018. 7. 17..
// Copyright © 2018년 ddudini. All rights reserved.
//
#include <iostream>
#include <string>
using namespace std;
int parent[1000100];
int n, m;
int find(int x){
if (x == parent[x]) return x;
return parent[x] = find(parent[x]);
}
void add(int a, int b){
int pa = find(a);
int pb = find(b);
parent[pb] = pa;
}
int main(int argc, const char * argv[]) {
cin >> n >> m;
for(int i=0; i<=n ;i++)
parent[i] = i;
while(m--){
int op, a, b;
cin >> op >> a >> b;
if(op == 0) add(a, b);
else {
int pa = find(a);
int pb = find(b);
if(pa == pb) cout <<"YES\n";
else cout << "NO\n";
}
}
for(int i=0; i<=n ;i++)
cout << parent[i] << " ";
return 0;
}
/*
7 8
0 1 3
1 1 7
0 7 6
1 7 1
0 3 7
0 4 2
0 1 1
1 1 1
*/
|
7a7226b6a73dc4e2a31c6a1dbc180f966711d254 | ebf7654231c1819cef2097f60327c968b2fa6daf | /server/logic_server/player/module/answer/Answer.cpp | c18bb90819c49244dcf1423d57f2443bd1e7f2eb | [] | no_license | hdzz/game-server | 71195bdba5825c2c37cb682ee3a25981237ce2ee | 0abf247c107900fe36819454ec6298f3f1273e8b | refs/heads/master | 2020-12-30T09:15:17.606172 | 2015-07-29T07:40:01 | 2015-07-29T07:40:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,183 | cpp | Answer.cpp | /*
* Answer.cpp
*
* Created on: Jan 21, 2014
* Author: ti
*/
#include "Answer.h"
#include "Logic_Module_Head.h"
#include "Config_Cache_Answer.h"
#include "pack/Pack_Def.h"
#include "Msg_Active_Struct.h"
#include "Answer_Def.h"
#include "Err_Code.h"
#include "pack/Pack_Struct.h"
#include "fighter/Fighter_Def.h"
#include "Logic_Player.h"
#include "helper/Helper_Def.h"
#include "Config_Cache_Scene.h"
#include "Scene_Def.h"
#include "fighter/Logic_Fighter_Struct.h"
Answer::Answer(void) {
reset();
}
Answer::~Answer() {
// TODO Auto-generated destructor stub
}
void Answer::reset(void) {
}
//
//int Answer::create_init(Answer_Detail &detail) {
//
// return 0;
//}
//
//void Answer::load_detail(Answer_Detail &detail) {
//
//}
//
//void Answer::save_detail(Answer_Detail &detail) {
//
//}
int Answer::trigger_daily_zero(const Time_Value &now) {
return 0;
}
int Answer::trigger_weekly_zero(const Time_Value &now) {
return 0;
}
int Answer::sync_scene_module_info(Block_Buffer &buf) {
return 0;
}
int Answer::move_scene_completed(void) {
const Scene_Config *cfg = CONFIG_CACHE_SCENE->scene_config_cache(player_self()->location().scene_id);
if(cfg && cfg->type == Answer_Type) {
player_self()->daily_helper_listen(DAILY_FULFILL_LISTEN_ANSWER);
}
return 0;
}
int Answer::client_ready_now(void) {
return 0;
}
void Answer::module_init(void) {
}
void Answer::sign_in(void) {
}
void Answer::sign_out(void) {
}
void Answer::trusteeship_sign_out(void) {
}
int Answer::data_channle(Block_Buffer& buf) {
uint8_t type = 0;
buf.read_uint8(type);
switch(type) {
case ANSWER_DATA_CHANNLE_TYPE_SL_GET_INTEGRAL_REWARD: {
uint32_t sorce = 0;
buf.read_uint32(sorce);
return get_integral_reward(sorce);
}
}
return 0;
}
int Answer::get_integral_reward(uint32_t sorce) {
const Answer_Integral_Reward_Config *reward_conf = CONFIG_CACHE_ANSWER->get_integral_reward_by_level(player_self()->level());
if(reward_conf) {
MSG_81000102 acv_msg;
acv_msg.type = 0;
//item
if(!reward_conf->reward.item.empty()) {
Item_Vec item_list;
for(Answer_Reward_Item_Vec::const_iterator item_it = reward_conf->reward.item.begin(); item_it != reward_conf->reward.item.end(); ++item_it) {
Item_Detail item(item_it->id, item_it->num*sorce, Item_Detail::BIND);
item_list.push_back(item);
Item_Basic_Info ibi;
item.set_item_basic_info(ibi);
acv_msg.item_info.push_back(ibi);
}
if(!item_list.empty()) {
int result = player_self()->pack_insert_item(Pack::PACK_T_PACKAGE_INDEX, item_list, Gain_Item_DM_Info(Pack::ITEM_GAIN_ANSWER));
if(result && ERROR_PACK_FULL_BUT_MAIL != result) {
return result;
}
}
}
//money
if(!reward_conf->reward.money.empty()) {
Money_Add_List money;
money.clear();
for(Answer_Reward_Money_Vec::const_iterator money_it = reward_conf->reward.money.begin(); money_it != reward_conf->reward.money.end(); ++money_it) {
money.push_back(Money_Add_Info(Pack::Money_Type(money_it->id), money_it->num*sorce, Money_DM_Info(Pack::MONEY_ADD_ANSWER)));
acv_msg.property.push_back(Property(money_it->id, money_it->num*sorce));
}
if(!money.empty()) {
player_self()->pack_add_money(money);
}
}
//exp
uint32_t exp = reward_conf->reward.exp * sorce;
if(exp) {
Exp_All exp_all = player_self()->modify_experience_inter(exp, false, false, true);
if (0 == exp_all.result) {
acv_msg.property.push_back(Property(PT_EXP_CURRENT, exp_all.all));
acv_msg.vip_exp = exp_all.vip_exp;
acv_msg.world_level = player_self()->get_world_level_add();
}
}
if(!acv_msg.property.empty()) {
THIS_SEND_TO_CLIENT(acv_msg);
}
}
return 0;
}
int Answer::sign_in_repeat(void) {
return 0;
}
int Answer::get_rank_reward(uint16_t rank) {
const Answer_Rank_Reward_Config_List &reward_conf_list = CONFIG_CACHE_ANSWER->get_rank_reward_list();
const double mod = CONFIG_CACHE_ANSWER->get_modulus_by_level(player_self()->level());
const double mod_item = CONFIG_CACHE_ANSWER->get_modulus_item_by_level(player_self()->level());
const Answer_Rank_Reward_Config *reward_conf = 0;
for(Answer_Rank_Reward_Config_List::const_iterator it = reward_conf_list.begin(); it != reward_conf_list.end(); ++it) {
if(it->end_rank) {
if(rank >= it->start_rank && rank <= it->end_rank) {
reward_conf = &(*it);
break;
}
} else {
if(rank >= it->start_rank) {
reward_conf = &(*it);
break;
}
}
}
if(reward_conf) {
MSG_81000102 acv_msg;
acv_msg.type = 0;
//item
if(!reward_conf->reward.item.empty()) {
Item_Vec item_list;
for(Answer_Reward_Item_Vec::const_iterator item_it = reward_conf->reward.item.begin(); item_it != reward_conf->reward.item.end(); ++item_it) {
Item_Detail item(item_it->id, item_it->num*mod_item, Item_Detail::BIND);
item_list.push_back(item);
Item_Basic_Info ibi;
item.set_item_basic_info(ibi);
acv_msg.item_info.push_back(ibi);
}
if(!item_list.empty()) {
int result = player_self()->pack_insert_item(Pack::PACK_T_PACKAGE_INDEX, item_list, Gain_Item_DM_Info(Pack::ITEM_GAIN_ANSWER));
if(result && ERROR_PACK_FULL_BUT_MAIL != result) {
return result;
}
}
}
//money
if(!reward_conf->reward.money.empty()) {
Money_Add_List money;
money.clear();
for(Answer_Reward_Money_Vec::const_iterator money_it = reward_conf->reward.money.begin(); money_it != reward_conf->reward.money.end(); ++money_it) {
money.push_back(Money_Add_Info(Pack::Money_Type(money_it->id), money_it->num*mod, Money_DM_Info(Pack::MONEY_ADD_ANSWER)));
acv_msg.property.push_back(Property(money_it->id, money_it->num*mod));
}
if(!money.empty()) {
player_self()->pack_add_money(money);
}
}
//exp
uint32_t exp = reward_conf->reward.exp * mod;
if(exp) {
Exp_All exp_all = player_self()->modify_experience_inter(exp, false, false, true);
if (0 == exp_all.result) {
acv_msg.property.push_back(Property(PT_EXP_CURRENT, exp_all.all));
acv_msg.vip_exp = exp_all.vip_exp;
acv_msg.world_level = player_self()->get_world_level_add();
}
}
if(!acv_msg.property.empty()) {
THIS_SEND_TO_CLIENT(acv_msg);
}
}
return 0;
}
|
41fa0ed4148e4f24babaf279026ef2a1c1ca1a7f | c352d40f796d814ac76fc8fc1d914f3a326360da | /fdms app/MeaCol.cpp | 5ce2fe95145faaadea9ba9b8aea8ef03f99f5297 | [
"BSD-2-Clause"
] | permissive | hnordquist/FDMS | b94a0a26f1f58318f9d0ed81791e270a1d81cbd1 | 0e441bb5da04ca6054d91fbdc473681f5eed8c42 | refs/heads/master | 2020-04-24T01:18:12.785701 | 2017-03-28T07:55:36 | 2017-03-28T07:55:36 | 23,624,571 | 0 | 1 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 12,344 | cpp | MeaCol.cpp | /*
Copyright (c) 2014, Los Alamos National Security, LLC
All rights reserved.
Copyright 2014. Los Alamos National Security, LLC. This software was produced under U.S. Government contract
DE-AC52-06NA25396 for Los Alamos National Laboratory (LANL), which is operated by Los Alamos National Security,
LLC for the U.S. Department of Energy. The U.S. Government has rights to use, reproduce, and distribute this software.
NEITHER THE GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY, EXPRESS OR IMPLIED,
OR ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified to produce derivative works,
such modified software should be clearly marked, so as not to confuse it with the version available from LANL.
Additionally, redistribution and use in source and binary forms, with or without modification, are permitted provided
that the following conditions are met:
• Redistributions of source code must retain the above copyright notice, this list of conditions and the following
disclaimer.
• Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided with the distribution.
• Neither the name of Los Alamos National Security, LLC, Los Alamos National Laboratory, LANL, the U.S. Government,
nor the names of its contributors may be used to endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC 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 LOS ALAMOS NATIONAL SECURITY, LLC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "stdafx.h"
#include "FDMS.h"
#include ".\meacol.h"
#include ".\dconfig.h"
#ifdef _XJDEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
CMeaCol::CMeaCol(void)
{
for (int i = 0; i < eColumnCount; i++)
{
m_bColumnRWMap[i] = m_szFieldData[i].bMutable;
m_bAscending[i] = TRUE;
columns[i] = NULL;
}
}
CMeaCol::~CMeaCol(void)
{
}
// MS Facility ID Measurement type Status Enrichment (%) Burnup (GWd/MT) Discharge day month year cycle # Thres A Thres B Measurement day month year Cooling Time (years) NA NB NC G1 G2 Detector
/*
efhFacility, efhID,
efhMeasType, efhStatus,
efhEnrichment, efhBurnUp,
efhDischDay,efhDischMonth,efhDischYear,
efhCycle,
efhThresholdA, efhThresholdB,
efhMeasDay,efhMeasMonth,efhMeasYear,
efhCoolingTime,
efhNeutronA, efhNeutronB, efhNeutronC,
efhGamma1, efhGamma2, efhDetector, efhHeaderCount
*/
const UINT CMeaCol::m_fileheadermap[] =
{
CMeaCol::eFacility, CMeaCol::eID,
CMeaCol::eMeasType, -1,
CMeaCol::eEnrichment, CMeaCol::eBurnUp,
CMeaCol::eDischDate, CMeaCol::eDischDate, CMeaCol::eDischDate,
CMeaCol::eCycle,
CMeaCol::eThresholdA, CMeaCol::eThresholdB,
CMeaCol::eMeasDate, CMeaCol::eMeasDate, CMeaCol::eMeasDate,
CMeaCol::eCoolingTime,
CMeaCol::eNeutronA, CMeaCol::eNeutronB, CMeaCol::eNeutronC,
CMeaCol::eGamma1, CMeaCol::eGamma2, CMeaCol::eDetector
};
static const CString curdatenowtime = (COleDateTime::GetCurrentTime()).Format(VAR_DATEVALUEONLY, LANG_USER_DEFAULT );
CField::FieldDesc CMeaCol::m_szFieldData[eColumnCount] =
{
{CField::eString, "Item", "0", "128", true, "%05d", "", 40, LVCFMT_LEFT, "", true},
{CField::eString, "Facility", "0", "128", true, "", "", 40, LVCFMT_LEFT, "", true},
{CField::eString, "ID", "0", "128", false, "", "", 32, LVCFMT_LEFT, "", true},
{CField::eLong, "Type", "1", "2", true, "%d", "%d", 10, LVCFMT_CENTER, "", true},
{CField::eDouble, "Enrichment", "0.0", "100.0", true, "%.2lf", "%g", 0, LVCFMT_RIGHT, "", true},
{CField::eDouble, "Burnup", "0.0", "100.0", true, "%.2lf", "%g", 10, LVCFMT_RIGHT, "", true},
{CField::eDate, "Disch. Date", "1 January 1950", curdatenowtime, true, "", "", 20, LVCFMT_LEFT, "", true},
{CField::eLong, "Cycle #", "0", "9", true, "%d", "%d", 10, LVCFMT_CENTER, "", true},
{CField::eDateTime, "Meas. Date","1 January 1950", curdatenowtime, true, "", "", 25, LVCFMT_LEFT, "", true},
{CField::eDouble, "Cooling Time","0.0", "1e6", true, "%.2lf", "%g", -5, LVCFMT_RIGHT, "", true},
{CField::eDouble, "Neutron A", "0.0", "1e9", true, "%.2lf", "%g", 12, LVCFMT_RIGHT, "", true}, //%#6.5lf
{CField::eDouble, "Neutron B", "0.0", "1e9", true, "%.2lf", "%g", 12, LVCFMT_RIGHT, "", true}, //%#6.5lf
{CField::eDouble, "Neutron C", "0.0", "1e9", true, "%.2lf", "%g", 12, LVCFMT_RIGHT, "", true}, //%#7.lf
{CField::eDouble, "Gamma 1", "0.0", "1e9", true, "%.2lf", "%g", 19, LVCFMT_RIGHT, "", true},
{CField::eDouble, "Gamma 2", "0.0", "1e9", true, "%.2lf", "%g", 19, LVCFMT_RIGHT, "", true},
{CField::eString, "Detector", "0", "128", true, "", "", 5, LVCFMT_LEFT, "", true},
{CField::eDouble, "A (Threshold)", "0.00", "1e6", true, "%.2lf", "%g", -10, LVCFMT_RIGHT, "", true},
{CField::eDouble, "B (Threshold)", "0.00", "1e6", true, "%.2lf", "%g", -10, LVCFMT_RIGHT, "", true},
{CField::eLong, "internal", "0", "9999", false, "%d", "%d", -15, LVCFMT_CENTER, "", false}
};
void CMeaCol::ClearOut()
{
for (int i = 0; i < eColumnCount; i++)
{
CField* p = NULL;
p = columns[i];
if (p)
delete p;
}
}
void CMeaCol::SetAt(int i, CField* p)
{
columns[i] = p;
}
CField* CMeaCol::GetAt(int i)
{
return columns[i];
}
void CMeaCol::LoadRangesFromIniData()
{
CString Low, High;
for (int i = eItem_RANGE;
i < (eItem_RANGE + eColumnCount);
i++)
{
GETRANGEVALUES((tIniNames)i, Low, High);
int index = i - eItem_RANGE;
Low.Trim(); High.Trim();
m_szFieldData[ index ].low = Low;
m_szFieldData[ index ].high = High;
switch(m_szFieldData[ index ]._type)
{
case CField::eString:
break;
case CField::eDouble:
{
float dLow, dHigh;
sscanf(Low, "%g", &dLow);
sscanf(High, "%g", &dHigh);
m_szFieldData[ index ].low.Format(m_szFieldData[ index ].format, dLow);
m_szFieldData[ index ].high.Format(m_szFieldData[index ].format, dHigh);
}
break;
case CField::eLong:
break;
case CField::eDate:
break;
case CField::eTime:
break;
case CField::eDateTime:
break;
case CField::eBoolean:
break;
default:
break;
}
}
}
void CMeaCol::Reconstruct()
{
LoadRangesFromIniData();
for (int i = 0; i < eColumnCount; i++)
{
CField* p = NULL;
switch(m_szFieldData[i]._type)
{
case CField::eString:
case CField::eImageField:
p = new CFieldString(m_szFieldData[i].name,m_szFieldData[i].low, m_szFieldData[i].high, m_szFieldData[i].format, m_szFieldData[i].inputFormat,128);
SetAt(i, p);
break;
case CField::eDouble:
p = new CFieldDouble(m_szFieldData[i].name,m_szFieldData[i].low, m_szFieldData[i].high, m_szFieldData[i].format, m_szFieldData[i].inputFormat);
SetAt(i, p);
break;
case CField::eLong:
p = new CFieldLong(m_szFieldData[i].name,m_szFieldData[i].low, m_szFieldData[i].high, m_szFieldData[i].format, m_szFieldData[i].inputFormat);
SetAt(i, p);
break;
case CField::eDate:
p = new CFieldDate(m_szFieldData[i].name,m_szFieldData[i].low, m_szFieldData[i].high, m_szFieldData[i].format, m_szFieldData[i].inputFormat, VAR_DATEVALUEONLY);
SetAt(i,p);
break;
case CField::eTime:
p = new CFieldDate(m_szFieldData[i].name,m_szFieldData[i].low, m_szFieldData[i].high, m_szFieldData[i].format, m_szFieldData[i].inputFormat, VAR_TIMEVALUEONLY);
SetAt(i, p);
break;
case CField::eDateTime:
p = new CFieldDate(m_szFieldData[i].name,m_szFieldData[i].low, m_szFieldData[i].high, m_szFieldData[i].format, m_szFieldData[i].inputFormat);
SetAt(i,p);
break;
case CField::eBoolean:
p = new CFieldBoolean(m_szFieldData[i].name,m_szFieldData[i].low, m_szFieldData[i].high, m_szFieldData[i].format, m_szFieldData[i].inputFormat);
SetAt(i,p);
break;
default:
p = NULL;
break;
}
if (p)
p->tooltipTemplate = m_szFieldData[i].tooltipTemplate;
}
}
int CMeaCol::count() const
{
return eColumnCount;
}
extern tMeasurementType tImageToMeasurementType(LPCSTR s);
bool CMyListCtrl::CopyToClipboard(bool bAll, bool bHeaders)
{
const PTCHAR _cediteol = "\r\n";
if ( !OpenClipboard() )
{
AfxMessageBox( "Cannot open the Clipboard" );
return true;
}
// Remove the current Clipboard contents
if( !EmptyClipboard() )
{
AfxMessageBox( "Cannot empty the Clipboard" );
return true;
}
// Get the currently selected data
int nItem, j, tlen, headeroffset;
const int ic = GetItemCount();
CStringArray a;
a.SetSize(ic);
tlen = 0;
headeroffset = 0;
if (bHeaders)
{
CString s;
for (j = efhFacility; j < efhHeaderCount; j++)
{
UINT icol = j; // direct mapping from header id to header string
s.Append(CFDMSApp::GetFileHeader(CSVFileHeaderIDs(icol)));
s.AppendChar('\t');
}
s.Append(_cediteol);
a.SetAtGrow(0, s);
tlen += s.GetLength();
headeroffset = 1;
}
// now for the rows
for (nItem = 0; nItem < ic; nItem++)
{
if (!bAll && !GetItemState(nItem, LVIS_SELECTED))
continue;
CString s = GetItemText(nItem,0);
for (j = efhFacility; j < efhHeaderCount; j++)
{
if (j == efhDischMonth || j == efhDischYear) // blend of three columns into one, skip 2
continue;
if (j == efhMeasMonth || j == efhMeasYear) // blend of three columns into one, skip 2
continue;
UINT icol = CMeaCol::m_fileheadermap[j];
if (j == efhDischDay || j == efhMeasDay) // build combined disch date
{
int y = 0,m = 0,d = 0;
CString dt = GetItemText(nItem,icol);
if (dt.IsEmpty())
{
dt = ("\t\t");
}
else
{
CFieldDate::XConvert3(dt, y, m, d);
dt.Format("%d\t%d\t%d",d,m,y);
}
s.Append(dt);
}
else
if (j == efhStatus) // get status from the related globals
{
int iData;
iData = GetItemData(nItem);
if (iData >= 0 && iData < MP_ARRAYSIZE)
{
CString cs;
cs.Format("%d", g_iMPStatus[iData] );
s.Append(cs);
}
else
s.Append("0");
}
else
if (j == efhMeasType) // convert string to number from the item text
{
//CString cs;
//cs.Format("%d", tImageToMeasurementType(GetItemText(nItem,icol)));
s.Append(GetItemText(nItem,icol));
}
else
s.Append(GetItemText(nItem,icol));
s.AppendChar('\t');
}
s.Append(_cediteol);
a.SetAtGrow(nItem + headeroffset, s);
tlen += s.GetLength();
}
// Allocate a global memory object for the text.
LPTSTR lptstrCopy;
HGLOBAL hglbCopy;
hglbCopy = GlobalAlloc(GMEM_MOVEABLE,
(tlen + 1) * sizeof(TCHAR));
if (hglbCopy == NULL)
{
CloseClipboard();
return true;
}
// Lock the handle and copy the text to the buffer.
lptstrCopy = (LPSTR)GlobalLock(hglbCopy);
lptstrCopy[0] = (TCHAR) 0; // null character
for (nItem = 0; nItem < a.GetCount(); nItem++)
{
LPSTR b = a[nItem].GetBuffer();
size_t l = a[nItem].GetLength() * sizeof(TCHAR);
strncat(lptstrCopy, b, l);
}
lptstrCopy[tlen] = (TCHAR) 0; // null character
GlobalUnlock(hglbCopy);
// Place the handle on the clipboard.
// For the appropriate data formats...
if ( SetClipboardData( CF_TEXT, hglbCopy ) == NULL )
{
AfxMessageBox( "Unable to set Clipboard data" );
CloseClipboard();
return true;
}
CloseClipboard();
return TRUE;
} |
55c1bca741e8bc2b55938b157c3add7da85008e8 | 88d4d992ad6d218bf96f5a930242e1f62e4e2986 | /level9_sorting/1427_merge.cpp | 6f05553070afbb93fd91cd8570935233d83569d7 | [] | no_license | jjunnnn0/elite | b3f6a34e1d1908ea5b527ca313f1849b5b36d798 | 18c50c7fe74092068e88aa69f8df0e00e5e2c4f6 | refs/heads/master | 2020-04-13T10:31:41.008698 | 2019-02-13T06:58:58 | 2019-02-13T06:58:58 | 163,143,345 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,226 | cpp | 1427_merge.cpp | // level 10 sorting
// 1427 merge sort
//#include <iostream>
//
//using namespace std;
//
//void merging(int *arr, int s1, int e1, int s2, int e2) {
// int p, q;
// int temp[1000001];
// int temp_idx = 0;
// p = s1; // 왼쪽 start
// q = s2; // 오른쪽 start
//
// while (p <= e1 && q <= e2) {
// if (arr[p] <= arr[q]) {
// temp[temp_idx++] = arr[p];
// p++;
// }
// else {
// temp[temp_idx++] = arr[q];
// q++;
// }
// }
//
// if (p > e1)
// for (int i = q; i <= e2; i++) temp[temp_idx++] = arr[i];
// else
// for (int i = p; i <= e1; i++) temp[temp_idx++] = arr[i];
//
// for (int i = s1; i <= e2; i++) {
// arr[i] = temp[i - s1];
// }
//}
//
//void mergeSort(int *arr, int start, int end) {
// if (start >= end) return;
// else {
// int mid = (start + end) / 2;
//
// mergeSort(arr, start, mid); // 왼쪽 반 정렬
// mergeSort(arr, mid + 1, end); // 오른쪽 반 정렬
//
// merging(arr, start, mid, mid + 1, end);
// }
//}
//
//int main(void) {
// int n; // sorting할 개수
// cin >> n;
// int input[1000001];
//
// for (int i = 1; i <= n; i++) {
// cin >> input[i];
// }
//
// mergeSort(input, 1, n);
//
// for (int i = 1; i <= n; i++) {
// cout << input[i] << ' ';
// }
//
// return 0;
//} |
bec84174bebb600a9135bffa24402bd1e71ab169 | dd757e31c08e9515a6f90200899d32d042e5201d | /TheCubes/TheCubes/Blocks.cpp | 086f552faf7d8a41adcc07ae320260e6e53e72ec | [] | no_license | eligantRU/TheCubes | f3bc382e5affb1cf85e970c1282a950cf1f103ae | e88b4abe03da2313fa70ee3968fef478de3053d5 | refs/heads/master | 2021-01-13T04:06:07.677706 | 2017-02-08T23:00:57 | 2017-02-08T23:00:57 | 77,882,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,316 | cpp | Blocks.cpp | #include "stdafx.h"
#include "Blocks.h"
namespace
{
const char COBBLESTONE_TEXTURE_ATLAS[] = "res/cobblestone_block/cobblestone_block.plist";
const std::pair<CubeFace, const char *> COBBLESTONE_FRAME_MAPPING[] = {
{ CubeFace::Front, "cobblestone_block_front.png" },
{ CubeFace::Back, "cobblestone_block_back.png" },
{ CubeFace::Top, "cobblestone_block_top.png" },
{ CubeFace::Bottom, "cobblestone_block_bottom.png" },
{ CubeFace::Left, "cobblestone_block_left.png" },
{ CubeFace::Right, "cobblestone_block_right.png" }
};
CTexture2DLoader MakeTextureLoader()
{
CTexture2DLoader loader;
loader.SetWrapMode(TextureWrapMode::CLAMP_TO_EDGE);
return loader;
}
}
CBlaBlock::CBlaBlock(const glm::vec3 & center, const float size)
:m_atlas(CFilesystemUtils::GetResourceAbspath(COBBLESTONE_TEXTURE_ATLAS), MakeTextureLoader())
,m_cube(center, size)
,m_position(glm::vec3(center.x - size, center.y - size, center.z - size), glm::vec3(center.x + size, center.y + size, center.z + size))
{
for (const auto &pair : COBBLESTONE_FRAME_MAPPING)
{
auto texRect = m_atlas.GetFrameRect(pair.second);
m_cube.SetFaceTextureRect(pair.first, texRect);
}
}
void CBlaBlock::Update(float dt)
{
m_cube.Update(dt);
}
void CBlaBlock::Draw() const
{
m_atlas.GetTexture().DoWhileBinded([this] {
m_cube.Draw();
});
}
|
c1d2dd58797308e9c19ad7ed391f0cf88375335b | f285627fdb943b61c7516327768f4c9b9342891d | /libs/kernel/kernel_util.cpp | 0abfce6952596df2d0f2f5ada3bec6770f494f23 | [
"MIT"
] | permissive | antwankakki/Flint | 1f0c04c3beab5eeda18a59f4ef55176b554b940b | 06d74c2fb72f56cb1d74976c7cd80001ef2c927c | refs/heads/master | 2021-01-20T04:21:58.358585 | 2017-08-25T04:44:49 | 2017-08-25T04:44:49 | 101,388,295 | 0 | 1 | null | 2017-08-25T09:23:37 | 2017-08-25T09:23:37 | null | UTF-8 | C++ | false | false | 2,744 | cpp | kernel_util.cpp | const char* statusMap(Status status)
{
switch (status)
{
case MISSING:
return "Missing";
case BROKEN:
return "Broken";
case FAILED:
return "Failed";
case PRESENT:
return "Present";
case RUNNING:
return "Running";
case IDLE:
return "Idle";
case READY:
return "Ready";
case DOWN:
return "DOWN";
default:
return "Unknown";
}
}
int powerUp(Drone* drone)
{
ENTRY_POINT;
UNUSED(drone);
debugPrint(INFO, __DEBUG__ || __RELEASE__, "Powering up the drone");
EXIT_POINT_WITH_RETURN(TRUE);
}
int powerDown(Drone* drone)
{
ENTRY_POINT;
UNUSED(drone);
debugPrint(INFO, __DEBUG__ || __RELEASE__, "Powering down the drone");
EXIT_POINT_WITH_RETURN(TRUE);
}
int gracefulPowerDown(Drone* drone)
{
ENTRY_POINT;
UNUSED(drone);
debugPrint(INFO, __DEBUG__ || __RELEASE__, "Gracefully powering down the drone");
EXIT_POINT_WITH_RETURN(TRUE);
}
int reboot(Drone* drone)
{
ENTRY_POINT;
UNUSED(drone);
debugPrint(INFO, __DEBUG__ || __RELEASE__, "Rebooting the drone");
EXIT_POINT_WITH_RETURN(TRUE);
}
int setDroneSpeed(Drone* drone, float speed)
{
ENTRY_POINT;
UNUSED(drone);
debugPrint(INFO, __DEBUG__ || __RELEASE__, "Setting drone speed to %.3f", speed);
EXIT_POINT_WITH_RETURN(TRUE);
}
int setDroneHeight(Drone* drone, float height)
{
ENTRY_POINT;
UNUSED(drone);
debugPrint(INFO, __DEBUG__ || __RELEASE__, "Setting drone height to %.3f", height);
EXIT_POINT_WITH_RETURN(TRUE);
}
int setDroneDirection(Drone *drone, int direction)
{
ENTRY_POINT;
UNUSED(drone);
printf("Setting drone direction to %d", direction);
EXIT_POINT_WITH_RETURN(TRUE);
}
int setDroneTilt(Drone* drone, float tilt)
{
ENTRY_POINT;
UNUSED(drone);
debugPrint(INFO, __DEBUG__ || __RELEASE__, "Setting drone tilt to %.3f", tilt);
EXIT_POINT_WITH_RETURN(TRUE);
}
int populateDroneHandle(Drone* drone)
{
ENTRY_POINT;
drone->id = 1;
drone->status = PRESENT;
drone->handle.powerUp = powerUp;
drone->handle.powerDown = powerDown;
drone->handle.gracefulPowerDown = gracefulPowerDown;
drone->handle.reboot = reboot;
drone->handle.setDroneSpeed = setDroneSpeed;
drone->handle.setDroneHeight = setDroneHeight;
drone->handle.setDroneDirection = setDroneDirection;
drone->handle.setDroneTilt = setDroneTilt;
EXIT_POINT_WITH_RETURN(TRUE);
}
int populateDrone(Drone* drone)
{
ENTRY_POINT;
if (!populateDroneHandle(drone))
{
debugPrint(FATAL, __DEBUG__ || __RELEASE__, "Failed to populate drone handle");
EXIT_POINT_WITH_RETURN(FALSE);
}
// TODO: finish
EXIT_POINT_WITH_RETURN(TRUE);
}
|
6a53ce6271c24402f230a121e2496df39e83d7e9 | e067f960e78713aa7c6a7c3b6e87cebbd5f69bf5 | /contrast-enhancement.cpp | 4279db55ff76b6d81bcf72f84fc0a0a1cde59597 | [] | no_license | Tyler-R/GPU-contrast-enhancement | 2247b501afb5d25c45f27e8d757ddbdf72e2f84d | a0846ce661e93ccd5c24d76b0718e62c993fa72c | refs/heads/master | 2021-03-16T05:24:42.919922 | 2016-12-04T07:44:43 | 2016-12-04T07:44:43 | 74,868,872 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,650 | cpp | contrast-enhancement.cpp | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "hist-equ.cuh"
PGM_IMG contrast_enhancement_g(PGM_IMG img_in)
{
PGM_IMG result;
int hist[256];
result.w = img_in.w;
result.h = img_in.h;
result.img = (unsigned char *)malloc(result.w * result.h * sizeof(unsigned char));
histogram(hist, img_in.img, img_in.h * img_in.w, 256);
histogram_equalization(result.img,img_in.img,hist,result.w*result.h, 256);
return result;
}
PPM_IMG contrast_enhancement_c_rgb(PPM_IMG img_in)
{
PPM_IMG result;
int hist[256];
result.w = img_in.w;
result.h = img_in.h;
result.img_r = (unsigned char *)malloc(result.w * result.h * sizeof(unsigned char));
result.img_g = (unsigned char *)malloc(result.w * result.h * sizeof(unsigned char));
result.img_b = (unsigned char *)malloc(result.w * result.h * sizeof(unsigned char));
histogram(hist, img_in.img_r, img_in.h * img_in.w, 256);
histogram_equalization(result.img_r,img_in.img_r,hist,result.w*result.h, 256);
histogram(hist, img_in.img_g, img_in.h * img_in.w, 256);
histogram_equalization(result.img_g,img_in.img_g,hist,result.w*result.h, 256);
histogram(hist, img_in.img_b, img_in.h * img_in.w, 256);
histogram_equalization(result.img_b,img_in.img_b,hist,result.w*result.h, 256);
return result;
}
PPM_IMG contrast_enhancement_c_yuv(PPM_IMG img_in)
{
YUV_IMG yuv_med;
PPM_IMG result;
unsigned char * y_equ;
int hist[256];
yuv_med = rgb2yuv(img_in);
y_equ = (unsigned char *)malloc(yuv_med.h*yuv_med.w*sizeof(unsigned char));
histogram(hist, yuv_med.img_y, yuv_med.h * yuv_med.w, 256);
histogram_equalization(y_equ,yuv_med.img_y,hist,yuv_med.h * yuv_med.w, 256);
free(yuv_med.img_y);
yuv_med.img_y = y_equ;
result = yuv2rgb(yuv_med);
free(yuv_med.img_y);
free(yuv_med.img_u);
free(yuv_med.img_v);
return result;
}
PPM_IMG contrast_enhancement_c_hsl(PPM_IMG img_in)
{
HSL_IMG hsl_med;
PPM_IMG result;
unsigned char * l_equ;
int hist[256];
hsl_med = rgb2hsl(img_in);
l_equ = (unsigned char *)malloc(hsl_med.height*hsl_med.width*sizeof(unsigned char));
histogram(hist, hsl_med.l, hsl_med.height * hsl_med.width, 256);
histogram_equalization(l_equ, hsl_med.l,hist,hsl_med.width*hsl_med.height, 256);
free(hsl_med.l);
hsl_med.l = l_equ;
result = hsl2rgb(hsl_med);
free(hsl_med.h);
free(hsl_med.s);
free(hsl_med.l);
return result;
}
//Convert RGB to HSL, assume R,G,B in [0, 255]
//Output H, S in [0.0, 1.0] and L in [0, 255]
HSL_IMG rgb2hsl(PPM_IMG img_in)
{
int i;
float H, S, L;
HSL_IMG img_out;// = (HSL_IMG *)malloc(sizeof(HSL_IMG));
img_out.width = img_in.w;
img_out.height = img_in.h;
img_out.h = (float *)malloc(img_in.w * img_in.h * sizeof(float));
img_out.s = (float *)malloc(img_in.w * img_in.h * sizeof(float));
img_out.l = (unsigned char *)malloc(img_in.w * img_in.h * sizeof(unsigned char));
for(i = 0; i < img_in.w*img_in.h; i ++){
float var_r = ( (float)img_in.img_r[i]/255 );//Convert RGB to [0,1]
float var_g = ( (float)img_in.img_g[i]/255 );
float var_b = ( (float)img_in.img_b[i]/255 );
float var_min = (var_r < var_g) ? var_r : var_g;
var_min = (var_min < var_b) ? var_min : var_b; //min. value of RGB
float var_max = (var_r > var_g) ? var_r : var_g;
var_max = (var_max > var_b) ? var_max : var_b; //max. value of RGB
float del_max = var_max - var_min; //Delta RGB value
L = ( var_max + var_min ) / 2;
if ( del_max == 0 )//This is a gray, no chroma...
{
H = 0;
S = 0;
}
else //Chromatic data...
{
if ( L < 0.5 )
S = del_max/(var_max+var_min);
else
S = del_max/(2-var_max-var_min );
float del_r = (((var_max-var_r)/6)+(del_max/2))/del_max;
float del_g = (((var_max-var_g)/6)+(del_max/2))/del_max;
float del_b = (((var_max-var_b)/6)+(del_max/2))/del_max;
if( var_r == var_max ){
H = del_b - del_g;
}
else{
if( var_g == var_max ){
H = (1.0/3.0) + del_r - del_b;
}
else{
H = (2.0/3.0) + del_g - del_r;
}
}
}
if ( H < 0 )
H += 1;
if ( H > 1 )
H -= 1;
img_out.h[i] = H;
img_out.s[i] = S;
img_out.l[i] = (unsigned char)(L*255);
}
return img_out;
}
float Hue_2_RGB( float v1, float v2, float vH ) //Function Hue_2_RGB
{
if ( vH < 0 ) vH += 1;
if ( vH > 1 ) vH -= 1;
if ( ( 6 * vH ) < 1 ) return ( v1 + ( v2 - v1 ) * 6 * vH );
if ( ( 2 * vH ) < 1 ) return ( v2 );
if ( ( 3 * vH ) < 2 ) return ( v1 + ( v2 - v1 ) * ( ( 2.0f/3.0f ) - vH ) * 6 );
return ( v1 );
}
//Convert HSL to RGB, assume H, S in [0.0, 1.0] and L in [0, 255]
//Output R,G,B in [0, 255]
PPM_IMG hsl2rgb(HSL_IMG img_in)
{
int i;
PPM_IMG result;
result.w = img_in.width;
result.h = img_in.height;
result.img_r = (unsigned char *)malloc(result.w * result.h * sizeof(unsigned char));
result.img_g = (unsigned char *)malloc(result.w * result.h * sizeof(unsigned char));
result.img_b = (unsigned char *)malloc(result.w * result.h * sizeof(unsigned char));
for(i = 0; i < img_in.width*img_in.height; i ++){
float H = img_in.h[i];
float S = img_in.s[i];
float L = img_in.l[i]/255.0f;
float var_1, var_2;
unsigned char r,g,b;
if ( S == 0 )
{
r = L * 255;
g = L * 255;
b = L * 255;
}
else
{
if ( L < 0.5 )
var_2 = L * ( 1 + S );
else
var_2 = ( L + S ) - ( S * L );
var_1 = 2 * L - var_2;
r = 255 * Hue_2_RGB( var_1, var_2, H + (1.0f/3.0f) );
g = 255 * Hue_2_RGB( var_1, var_2, H );
b = 255 * Hue_2_RGB( var_1, var_2, H - (1.0f/3.0f) );
}
result.img_r[i] = r;
result.img_g[i] = g;
result.img_b[i] = b;
}
return result;
}
//Convert RGB to YUV, all components in [0, 255]
YUV_IMG rgb2yuv(PPM_IMG img_in)
{
YUV_IMG img_out;
int i;//, j;
unsigned char r, g, b;
unsigned char y, cb, cr;
img_out.w = img_in.w;
img_out.h = img_in.h;
img_out.img_y = (unsigned char *)malloc(sizeof(unsigned char)*img_out.w*img_out.h);
img_out.img_u = (unsigned char *)malloc(sizeof(unsigned char)*img_out.w*img_out.h);
img_out.img_v = (unsigned char *)malloc(sizeof(unsigned char)*img_out.w*img_out.h);
for(i = 0; i < img_out.w*img_out.h; i ++){
r = img_in.img_r[i];
g = img_in.img_g[i];
b = img_in.img_b[i];
y = (unsigned char)( 0.299*r + 0.587*g + 0.114*b);
cb = (unsigned char)(-0.169*r - 0.331*g + 0.499*b + 128);
cr = (unsigned char)( 0.499*r - 0.418*g - 0.0813*b + 128);
img_out.img_y[i] = y;
img_out.img_u[i] = cb;
img_out.img_v[i] = cr;
}
return img_out;
}
unsigned char clip_rgb(int x)
{
if(x > 255)
return 255;
if(x < 0)
return 0;
return (unsigned char)x;
}
//Convert YUV to RGB, all components in [0, 255]
PPM_IMG yuv2rgb(YUV_IMG img_in)
{
PPM_IMG img_out;
int i;
int rt,gt,bt;
int y, cb, cr;
img_out.w = img_in.w;
img_out.h = img_in.h;
img_out.img_r = (unsigned char *)malloc(sizeof(unsigned char)*img_out.w*img_out.h);
img_out.img_g = (unsigned char *)malloc(sizeof(unsigned char)*img_out.w*img_out.h);
img_out.img_b = (unsigned char *)malloc(sizeof(unsigned char)*img_out.w*img_out.h);
for(i = 0; i < img_out.w*img_out.h; i ++){
y = (int)img_in.img_y[i];
cb = (int)img_in.img_u[i] - 128;
cr = (int)img_in.img_v[i] - 128;
rt = (int)( y + 1.402*cr);
gt = (int)( y - 0.344*cb - 0.714*cr);
bt = (int)( y + 1.772*cb);
img_out.img_r[i] = clip_rgb(rt);
img_out.img_g[i] = clip_rgb(gt);
img_out.img_b[i] = clip_rgb(bt);
}
return img_out;
}
|
5b0653b82827cb703f7a80ceebe2dc74d35074a1 | 1d404ed947259b564fe5c1e1b328dcde84670f42 | /AssetLease/Structures/SparseMatrix/SparseMatrixNode.cpp | 0f95fbe92a08b0b053b077a69abc43887b53892b | [] | no_license | dadu0699/AssetLease | 333274a4a4619794877974af96071da2271df851 | 3f02f4a9dddc2b3f5cf13569fb2945d925b5e825 | refs/heads/master | 2022-11-05T23:21:03.202530 | 2020-06-17T23:43:38 | 2020-06-17T23:43:38 | 269,488,721 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,823 | cpp | SparseMatrixNode.cpp | #include "SparseMatrixNode.h"
SparseMatrixNode::SparseMatrixNode(string xDepartment, string yCorporation, string name)
{
this->xDepartment = xDepartment;
this->yCorporation = yCorporation;
this->name = name;
this->userList = nullptr;
}
SparseMatrixNode::SparseMatrixNode(string xDepartment, string yCorporation)
{
this->xDepartment = xDepartment;
this->yCorporation = yCorporation;
this->name = "";
this->userList = new DoubleList();
}
SparseMatrixNode::~SparseMatrixNode()
{
}
string SparseMatrixNode::getXDepartment()
{
return xDepartment;
}
void SparseMatrixNode::setXDepartment(string xDepartment)
{
this->xDepartment = xDepartment;
}
string SparseMatrixNode::getYCorporation()
{
return yCorporation;
}
void SparseMatrixNode::setYCorporation(string yCorporation)
{
this->yCorporation = yCorporation;
}
string SparseMatrixNode::getName()
{
return name;
}
void SparseMatrixNode::setName(string name)
{
this->name = name;
}
DoubleList *SparseMatrixNode::getUserList() const
{
return userList;
}
void SparseMatrixNode::setUserList(DoubleList *userList)
{
this->userList = userList;
}
SparseMatrixNode *SparseMatrixNode::getNextNode() const
{
return nextNode;
}
void SparseMatrixNode::setNextNode(SparseMatrixNode *nextNode)
{
this->nextNode = nextNode;
}
SparseMatrixNode *SparseMatrixNode::getPreviousNode() const
{
return previousNode;
}
void SparseMatrixNode::setPreviousNode(SparseMatrixNode *previousNode)
{
this->previousNode = previousNode;
}
SparseMatrixNode *SparseMatrixNode::getUpNode() const
{
return upNode;
}
void SparseMatrixNode::setUpNode(SparseMatrixNode *upNode)
{
this->upNode = upNode;
}
SparseMatrixNode *SparseMatrixNode::getDownNode() const
{
return downNode;
}
void SparseMatrixNode::setDownNode(SparseMatrixNode *downNode)
{
this->downNode = downNode;
}
|
78332184da903d99119e35bd9c0a17d0feb233b9 | c1ed14b17864c1fa40545f33cdd94da235465f58 | /cs_116/CresSrc/eiD3D_Particle.cpp | 4c7bbd2c8bd31894aa90fd9a3761bb15b392f39c | [] | no_license | At-sushi/Cresteaju | d582bb2902c0596a4757ebacbebe0103f560e1e0 | 5b1533f35b2ea1105770f48043e2ef934c5a5f5d | refs/heads/master | 2021-01-01T05:27:42.852309 | 2016-05-06T11:09:19 | 2016-05-06T11:09:19 | 58,192,990 | 2 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 13,402 | cpp | eiD3D_Particle.cpp |
static EID3DPARTICLEINFO ParticleGlobalInfo;
static float ParticleG,ParticleMoveSpeed;
EI_API void eiD3DParticle_SetG(float g)
{
ParticleG = g;
}
EI_API void eiD3DParticle_GlobalMoveSpeed(float speed)
{
ParticleMoveSpeed = speed;
}
EI_API void eiD3DParticle_GlobalVectorXYZ(float x,float y,float z)
{
float r = (float)(1.00 / pow(x * x + y * y + z * z,0.3333333));
ParticleGlobalInfo.vx = (float)(x * r);
ParticleGlobalInfo.vy = (float)(y * r);
ParticleGlobalInfo.vz = (float)(z * r);
}
EI_API void eiD3DParticle_GlobalVectorAngle(float xy_angle,float xy_z_angle,float r)
{
float x,y,z,t;
z = (float)(r * sin(xy_z_angle));
t = (float)(r * cos(xy_z_angle));
x = (float)(t * cos(xy_angle));
y = (float)(t * sin(xy_angle));
eiD3DParticle_GlobalVectorXYZ(x,y,z);
}
eiD3DParticle::eiD3DParticle(void)
{
eimemset(&Info,0,sizeof(Info));
Matrix.IdentityMatrix();
SetWeight(1);
}
void eiD3DParticle::CreateTriangle(
float x1,float y1,float z1,
float x2,float y2,float z2,
float x3,float y3,float z3)
{
D3DVECTOR vNormal( D3DVAL(0.0f), D3DVAL(1.0f), D3DVAL(0.0f) );
float tu[] = {0.0f,1.0f,0.0f},tv[] = {0.0f,0.0f,1.0f};
memset(&Info,0,sizeof(Info));
Matrix.IdentityMatrix();
Info.Vertex[0] = D3DVERTEX(
D3DVECTOR(x1,y1,z1), vNormal,D3DVAL(tu[0]),D3DVAL(tv[0]));
Info.Vertex[1] = D3DVERTEX(
D3DVECTOR(x2,y2,z2), vNormal,D3DVAL(tu[1]),D3DVAL(tv[1]));
Info.Vertex[2] = D3DVERTEX(
D3DVECTOR(x3,y3,z3), vNormal,D3DVAL(tu[2]),D3DVAL(tv[2]));
// memcpy(&Info.StartVertex[0],&Info.Vertex[0],sizeof(Info.StartVertex));
Matrix.IdentityMatrix();
}
//---パーティクル作成
void eiD3DParticle::CreateTriangle(float r)
{
int a;
float Offset = (float)((float)eiRnd(360) * 3.1415 / 180),
angle = (float)((float)eiRnd(1000) / 1000);
memset(&Info,0,sizeof(Info));
Matrix.IdentityMatrix();
D3DVECTOR vNormal( D3DVAL(0.0f), D3DVAL(0.0f), D3DVAL(1.0f) );
D3DVECTOR p1;
float tu[] = {0.0f,1.0f,0.0f},tv[] = {0.0f,0.0f,1.0f};
for(a = 0;a < 3;a ++){
p1.x = (float)(r * cos((a * 120) * (3.1415 / 180) + Offset));
p1.y = (float)(r * sin((a * 120) * (3.1415 / 180) + Offset));
p1.z = 0.0f;
Info.Vertex[a] = D3DVERTEX( p1, vNormal,D3DVAL(tu[a]),D3DVAL(tv[a]));
}
// memcpy(&Info.StartVertex[0],&Info.Vertex[0],sizeof(Info.StartVertex));
eiD3DMatrix temp1,temp2,temp3,temp4;
temp1.RotateX((float)eiRnd(360) * 3.1415f / 180.0f);
temp2.RotateY((float)eiRnd(360) * 3.1415f / 180.0f);
temp3.RotateZ((float)eiRnd(360) * 3.1415f / 180.0f);
temp4.MatrixMult(temp1,temp2);
Matrix.IdentityMatrix();
Matrix.MatrixMult(temp4,temp3);
}
#define PI 3.141592
void eiD3DParticle::CreateRandomTriangle(float r,float dr,int count)
{
int a,b;
float dis_x,dis_y,dis_z,div;
D3DVERTEX *ver,*kver;
memset(&Info,0,sizeof(Info));
Matrix.IdentityMatrix();
Info.hMemory = eiAllocMemory(count * sizeof(D3DVERTEX) * 4);
Info.MemorySize = count * sizeof(D3DVERTEX) * 4;
ver = Info.pVertex = (D3DVERTEX * )eiLockMemory(Info.hMemory);
Info.hStartMemory = eiAllocMemory(count * sizeof(D3DVERTEX) * 4);
kver = Info.pStartVertex = (D3DVERTEX * )eiLockMemory(Info.hStartMemory);
for(b = 0;b < count;b ++){
float Offset = (float)((float)eiRnd(360) * 3.1415 / 180),
angle = (float)((float)eiRnd(1000) / 1000);
D3DVECTOR vNormal( D3DVAL(0.0f), D3DVAL(1.0f), D3DVAL(0.0f) );
D3DVECTOR p1;
float tu[] = {0.0f,1.0f,0.0f},tv[] = {0.0f,0.0f,1.0f};
dis_x = (float)(eiRnd(2000) - 1000) / 1000.0f * r;
dis_y = (float)(eiRnd(2000) - 0) / 1000.0f * r;
dis_z = (float)(eiRnd(2000) - 1000) / 1000.0f * r;
for(a = 0;a < 3;a ++){
p1.x = (float)eiRnd(5) / 5.0f * dr + dis_x;
p1.y = (float)eiRnd(5) / 5.0f * dr + dis_y;
p1.z = (float)eiRnd(5) / 5.0f * dr + dis_z;
div = (float)sqrt(p1.x * p1.x + p1.y * p1.y + p1.z * p1.z);
vNormal.x = (float)p1.x / div;
vNormal.y = (float)p1.y / div;
vNormal.z = (float)p1.z / div;
div = (float)sqrt(vNormal.x * vNormal.x + vNormal.y * vNormal.y + vNormal.z * vNormal.z);
//---修正
// vNormal = Normalize(D3DVECTOR(p1.x,p1.y,p1.z));
// div2 = (float)sqrt(vNormal.x * vNormal.x + vNormal.y * vNormal.y + vNormal.z * vNormal.z);
kver[a] = ver[a] = D3DVERTEX( p1, vNormal,D3DVAL(tu[a]),D3DVAL(tv[a]));
/* char s[30];
sprintf(s,"%f %f\n",div / div2,div2);
eiDebugWriteFile(s);*/
// vNormal = -vNormal;
// ver[a + 3] = D3DVERTEX( p1, vNormal,D3DVAL(tu[a]),D3DVAL(tv[a]));
}
kver += 3;
ver += 3;
}
Info.VertexCount = count * 3;
}
//---球を作る
void eiD3DParticle::CreateSphere(float r,int x_div,int y_div
,float start /*= 0.0f*/,float end /*= 6.283184f*/)
{
int a,count = x_div * y_div * 2 * 12;
double x,x_add = PI * 2 / (double)x_div;
double y,y_add = PI * 2 / (double)y_div;
double prev_pos_1[3] = {0.0,0.0,0.0},
prev_pos_2[3] = {0.0,0.0,0.0};
double dx,dy,dz,dd;
float dr;
D3DVERTEX *ver,*kver;;
memset(&Info,0,sizeof(Info));
Matrix.IdentityMatrix();
Info.hMemory = eiAllocMemory(count * sizeof(D3DVERTEX));
Info.MemorySize = count * sizeof(D3DVERTEX);
ver = Info.pVertex = (D3DVERTEX * )eiLockMemory(Info.hMemory);
Info.hStartMemory = eiAllocMemory(count * sizeof(D3DVERTEX));
kver = Info.pStartVertex = (D3DVERTEX * )eiLockMemory(Info.hStartMemory);
Info.VertexCount = count;
count = 0;
double hs = 1.0;
for(a = 0;a < 2;a ++){
if(a == 0)
dr = r;
else
dr = -r;
for(y = start;y < end;y += y_add){
for(x = 0;x < PI * 2;x += x_add){
//---
dy = sin(y) * r * hs;
dd = cos(y) * r;
dx = cos(x) * (dd);
dz = sin(x) * (dd);
ver[0].nx = ver[0].x = (FLOAT)dx;
ver[0].ny = ver[0].y = (FLOAT)dy;
ver[0].nz = ver[0].z = (FLOAT)dz;
ver[0].nx /= dr;
ver[0].ny /= dr;
ver[0].nz /= dr;
ver[0].tu = D3DVAL(0.0);
ver[0].tv = D3DVAL(0.0);
kver[0] = ver[0];
//---
dy = sin(y) * r * hs;
dd = cos(y) * r;
dx = cos(x + x_add) * (dd);
dz = sin(x + x_add) * (dd);
ver[1].nx = ver[1].x = (FLOAT)dx;
ver[1].ny = ver[1].y = (FLOAT)dy;
ver[1].nz = ver[1].z = (FLOAT)dz;
ver[1].nx /= dr;
ver[1].ny /= dr;
ver[1].nz /= dr;
ver[1].tu = D3DVAL(1.0);
ver[1].tv = D3DVAL(0.0);
kver[1] = ver[1];
//---
dy = sin(y + y_add) * r * hs;
dd = cos(y + y_add) * r;
dx = cos(x) * (dd);
dz = sin(x) * (dd);
ver[2].nx = ver[2].x = (FLOAT)dx;
ver[2].ny = ver[2].y = (FLOAT)dy;
ver[2].nz = ver[2].z = (FLOAT)dz;
ver[2].nx /= dr;
ver[2].ny /= dr;
ver[2].nz /= dr;
ver[2].tu = D3DVAL(0.0);
ver[2].tv = D3DVAL(1.0);
kver[2] = ver[2];
ver += 3;
kver += 3;
count += 3;
//---------------------
//---
dy = sin(y) * r * hs;
dd = cos(y) * r;
dx = cos(x + x_add) * (dd);
dz = sin(x + x_add) * (dd);
ver[0].nx = ver[0].x = (FLOAT)dx;
ver[0].ny = ver[0].y = (FLOAT)dy;
ver[0].nz = ver[0].z = (FLOAT)dz;
ver[0].nx /= dr;
ver[0].ny /= dr;
ver[0].nz /= dr;
ver[0].tu = D3DVAL(1.0);
ver[0].tv = D3DVAL(0.0);
kver[0] = ver[0];
//---
dy = sin(y + y_add) * r * hs;
dd = cos(y + y_add) * r;
dx = cos(x) * (dd);
dz = sin(x) * (dd);
ver[1].nx = ver[1].x = (FLOAT)dx;
ver[1].ny = ver[1].y = (FLOAT)dy;
ver[1].nz = ver[1].z = (FLOAT)dz;
ver[1].nx /= dr;
ver[1].ny /= dr;
ver[1].nz /= dr;
ver[1].tu = D3DVAL(0.0);
ver[1].tv = D3DVAL(1.0);
kver[1] = ver[1];
//---
dy = sin(y + y_add) * r * hs;
dd = cos(y + y_add) * r;
dx = cos(x + x_add) * (dd);
dz = sin(x + x_add) * (dd);
ver[2].nx = ver[2].x = (FLOAT)dx;
ver[2].ny = ver[2].y = (FLOAT)dy;
ver[2].nz = ver[2].z = (FLOAT)dz;
ver[2].nx /= dr;
ver[2].ny /= dr;
ver[2].nz /= dr;
ver[2].tu = D3DVAL(1.0);
ver[2].tv = D3DVAL(1.0);
kver[2] = ver[2];
ver += 3;
kver += 3;
count += 3;
}
}
}
Info.VertexCount = count;
Matrix.IdentityMatrix();
}
void eiD3DParticle::Release(void)
{
if(Info.hMemory != NULL){
eiFreeMemory(Info.hMemory);
Info.hMemory = NULL;
Info.pVertex = NULL;
}
if(Info.hStartMemory != NULL){
eiFreeMemory(Info.hStartMemory);
Info.hStartMemory = NULL;
Info.pStartVertex = NULL;
}
}
//---動く
float eiD3DParticle::MoveFrame(float AddWorld)
{
//---移動ベクトルを重力などで可変させる
//---重力
Info.vy -= (ParticleG * AddWorld * Info.Weight);
Info.vx += (ParticleGlobalInfo.vx * ParticleMoveSpeed * AddWorld);
Info.vy += (ParticleGlobalInfo.vy * ParticleMoveSpeed * AddWorld);
Info.vz += (ParticleGlobalInfo.vz * ParticleMoveSpeed * AddWorld);
//---座標計算
Info.wx += ((Info.vx * Info.MoveSpeed) * AddWorld);
Info.wy += ((Info.vy * Info.MoveSpeed) * AddWorld);
Info.wz += ((Info.vz * Info.MoveSpeed) * AddWorld);
Info.AngleX += (Info.RotateX * AddWorld);
Info.AngleY += (Info.RotateY * AddWorld);
Info.AngleZ += (Info.RotateZ * AddWorld);
return 0.0f;
}
void eiD3DParticle::SetWeight(int weight)
{
Info.Weight = weight;
}
void eiD3DParticle::SetMoveSpeed(float speed)
{
Info.MoveSpeed = speed;
}
//---移動ベクトル設定
void eiD3DParticle::SetMoveVectorXYZ(float x,float y,float z)
{
//---正規化
float r,s;
s = (float)pow(x * x + y * y + z * z,0.3333333);//0.5じゃなくて
if(s != 0){
r = (float)(1.00 / s);
} else {
r = 0;
}
if(x == y && y == z && z == 0){
Info.vx = 0;
Info.vy = 0;
Info.vz = 0;
} else {
Info.vx = (float)(x * r);
Info.vy = (float)(y * r);
Info.vz = (float)(z * r);
}
}
void eiD3DParticle::SetMoveVectorAngle(float xy_angle,float xy_z_angle,float r)
{
float x,y,z,t;
z = (float)(r * sin(xy_z_angle));
t = (float)(r * cos(xy_z_angle));
x = (float)(t * cos(xy_angle));
y = (float)(t * sin(xy_angle));
SetMoveVectorXYZ(x,y,z);
}
void eiD3DParticle::SetMoveRotation(float xr,float yr)
{
Info.RotateX = xr;
Info.RotateY = yr;
}
void eiD3DParticle::SetMoveRotation(float xr,float yr,float zr)
{
Info.RotateZ = zr;
SetMoveRotation(xr,yr);
}
void eiD3DParticle::SetRotationMode(int mode)
{
Info.RotationFlag = mode;
}
void eiD3DParticle::SetXAngle(float angle)
{
Info.AngleX = angle;
}
void eiD3DParticle::SetYAngle(float angle)
{
Info.AngleY = angle;
}
void eiD3DParticle::SetZAngle(float angle)
{
Info.AngleZ = angle;
}
//---ワールド座標
void eiD3DParticle::SetWorldPos(float x,float y,float z)
{
Info.wx = x;
Info.wy = y;
Info.wz = z;
}
static eiD3DMatrix prtmat,submat1,submat2,submat3,submat4,submat5,submat6;
static eiD3D prteid3d;
void eiD3DParticle::Draw(int ver_count /*= -1*/)
{
if(Info.RotationFlag == 0){
*prtmat.lpd3dMatrix = *Matrix.lpd3dMatrix;
// prtmat.Move(Info.wx,Info.wy,Info.wz);
// prtmat.IdentityMatrix();
prtmat.Set(3,0,Info.wx + prtmat.Get(3,0));
prtmat.Set(3,1,Info.wy + prtmat.Get(3,1));
prtmat.Set(3,2,Info.wz + prtmat.Get(3,2));
} else {
submat1.IdentityMatrix();
submat1.Set(3,0,Info.wx);
submat1.Set(3,1,Info.wy);
submat1.Set(3,2,Info.wz);
if(Info.AngleX == 0){
submat3.IdentityMatrix();
submat3.RotateY(Info.AngleY);
prtmat.MatrixMult(submat1,submat3);
} else if(Info.AngleY == 0){
submat2.IdentityMatrix();
submat2.RotateX(Info.AngleX);
prtmat.MatrixMult(submat1,submat2);
} else {
if(Info.AngleZ == 0){
submat2.IdentityMatrix();
submat2.RotateX(Info.AngleX);
submat3.IdentityMatrix();
submat3.RotateY(Info.AngleY);
submat4.MatrixMult(submat2,submat3);
prtmat.MatrixMult(submat1,submat4);
} else {
submat2.IdentityMatrix();
submat2.RotateX(Info.AngleX);
submat3.IdentityMatrix();
submat3.RotateY(Info.AngleY);
submat4.IdentityMatrix();
submat4.RotateZ(Info.AngleZ);
submat5.MatrixMult(submat2,submat3);
submat6.MatrixMult(submat4,submat5);
prtmat.MatrixMult(submat1,submat6);
}
}
// prtmat.MatrixMult(submat1,submat4);
}
prteid3d.SetTransformWorld(&prtmat);
// prteid3d.SetDrawMode(EID3D_DRAWMODE_LINE);
if(Info.DrawMode == 0){
if(Info.pVertex != NULL){
if(ver_count == -1){
ver_count = Info.VertexCount;
}
int a,max = ver_count,count;
for(a = 0;a < max;a += 999){
count = 999;
if(a + 999 >= ver_count){
count = max - a;
}
eiDDInfo.lpD3DDevice->DrawPrimitive(
D3DPT_TRIANGLELIST,D3DFVF_VERTEX,
&Info.pVertex[a], count,(eid3dWait ? D3DDP_WAIT : 0));
/* for(int b = a;b < a + count;b ++){
float div = (float)sqrt(
Info.pVertex[b].nx * Info.pVertex[b].nx
+ Info.pVertex[b].ny * Info.pVertex[b].ny
+ Info.pVertex[b].nz * Info.pVertex[b].nz
);
if(!(0.98 <= div && div <= 1.02)){
eiDebugWriteFile("not normalized\n");
}
}*/
}
/* eiDDInfo.lpD3DDevice->DrawPrimitive(
D3DPT_TRIANGLELIST,D3DFVF_VERTEX,
&Info.pVertex[0], ver_count,(eid3dWait ? D3DDP_WAIT : 0));
*/
} else {
eiDDInfo.lpD3DDevice->DrawPrimitive(
D3DPT_TRIANGLELIST,D3DFVF_VERTEX,
&Info.Vertex[0], 3,(eid3dWait ? D3DDP_WAIT : 0));
}
} else {
}
}
|
5e32537e974db7483853c41c69c4dd772f10f8d5 | d15f80443b8c8ce8386875753eb0297c5db11f5e | /CISC3142/Lab5/tagsort.cpp | ed875294ccdf1061862c8ea91cce9d8f4d162798 | [] | no_license | ericuh9891/classProjects | e700988b37a133a7ead473feb732f22ee6f01709 | 9de4c3ee8a16665964cf975dbdca9a00b6117cac | refs/heads/master | 2021-07-12T10:24:59.717493 | 2021-03-21T05:42:56 | 2021-03-21T05:42:56 | 243,129,444 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 243 | cpp | tagsort.cpp | #include "tagsort.h"
void sort(int *array[],int size){
for(int i = 0; i < size - 1; i++){
for(int j = i+1; j < size; j++){
if(*array[i] > *array[j]){
int *temp = array[j];
array[j] = array[i];
array[i] = temp;
}
}
}
}
|
01a4cfa42ac59e8333ef1c2ff145da857cf03489 | 67d19bd09fe300fd54ac654c5cac486605c151d5 | /Source/ProjectParasite/Actors/GoalTrigger.cpp | 83f6e05f64165d3e19828cbbde36f100ff093747 | [] | no_license | EliasWickander/ProjectParasite | 589ed1260d6be5997ea48edc86a0a9de1d63727c | 97224ee2c74f17d60eb2ae2bb04899e78f587594 | refs/heads/main | 2023-07-16T17:54:34.846673 | 2021-08-09T09:51:29 | 2021-08-09T09:51:29 | 371,028,965 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,362 | cpp | GoalTrigger.cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "GoalTrigger.h"
#include "Components/BoxComponent.h"
#include "Kismet/GameplayStatics.h"
#include "ProjectParasite/Pawns/PawnParasite.h"
#include "ProjectParasite/GameStateCustom.h"
#include "ProjectParasite/GameModes/EliminationGamemode.h"
#include "ProjectParasite/Pawns/PawnEnemy.h"
// Sets default values
AGoalTrigger::AGoalTrigger()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
triggerVolume = CreateDefaultSubobject<UBoxComponent>(TEXT("Trigger Volume"));
RootComponent = triggerVolume;
}
// Called when the game starts or when spawned
void AGoalTrigger::BeginPlay()
{
Super::BeginPlay();
triggerVolume->OnComponentBeginOverlap.AddDynamic(this, &AGoalTrigger::OnBeginOverlap);
}
// Called every frame
void AGoalTrigger::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
void AGoalTrigger::OnBeginOverlap(UPrimitiveComponent* overlappedComponent, AActor* otherActor,
UPrimitiveComponent* otherComp, int32 otherBodyIndex, bool bFromSweep, const FHitResult& sweepResult)
{
AActor* actorToConsider = UGameplayStatics::GetPlayerPawn(GetWorld(), 0);
if(otherActor == actorToConsider)
{
onGoalTriggered.Broadcast();
OnGoalTriggered();
}
} |
e3aac88541043bd4af9591dba9c6affe23ce848c | 6c2c2dd9fe06e3c287d1d0b54a17b787d52256e9 | /Health.cpp | 2cb440f53e79940c548f1b2bb48d5218b147b7ad | [] | no_license | SvatLisov/Catcher | f50d3468f14a7922b01992b5c507a8602351e8cd | 2445435dfbd9e76b487217a2488b69f4ed006ec4 | refs/heads/master | 2022-11-07T07:32:46.223885 | 2020-06-25T21:30:19 | 2020-06-25T21:30:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 619 | cpp | Health.cpp | #include "Health.h"
#include <QFont>
#include "Enemy.h"
Health::Health(QGraphicsItem *parent): QGraphicsTextItem(parent){
// инцилизация здоровья
health = 3;
//прорисовка строки с текущим состоянием здоровья
setPlainText(QString("Health: ") + QString::number(health)); // Здоровье: 3
setDefaultTextColor(Qt::red);
setFont(QFont("times",16));
}
void Health::decrease(){
health--;
setPlainText(QString("Health: ") + QString::number(health)); // Здоровье: 2
}
int Health::getHealth(){
return health;
}
|
6b8af7f41ebe65067df09d1c59175442f5fbeb55 | c400b969e46afb5b230745332e55b27f285b7e52 | /PhongMaterial.cpp | e97cf51a6e803e5f814f3374e8aeba17c477a34c | [] | no_license | Jiafeimaochuanqi/Sparse-Voxel-DAGs | 3e3af5bf88cb89d0e37903face571d46dea6d99f | 10caf70e93a8e4071b99361de1dca00dd6605527 | refs/heads/master | 2023-03-17T11:53:13.274768 | 2015-06-10T17:48:57 | 2015-06-10T17:48:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,128 | cpp | PhongMaterial.cpp | /**
* PhongMaterial.cpp
*
* @author Brent Williams brent.robert.williams@gmail.com
*/
#include "PhongMaterial.hpp"
PhongMaterial::PhongMaterial(const glm::vec3& ka, const glm::vec3& kd, const glm::vec3& ks, float ns)
{
this->ka = ka;
this->kd = kd;
this->ks = ks;
this->ns = ns;
}
PhongMaterial::~PhongMaterial()
{
}
glm::vec3 PhongMaterial::calculateSurfaceColor(Ray ray, glm::vec3 hitPosition, glm::vec3 n)
{
glm::vec3 finalColor = glm::vec3(0.0f,0.0f,0.0f);
glm::vec3 lc(1.0,1.0,1.0); // Light color
// // toyStore lights
// float intensity = 0.18f;
// glm::vec3 lightPositions[8];
// // Top Floor
// lightPositions[0] = glm::vec3( 12, 12, 12);
// lightPositions[1] = glm::vec3( 12, 12, -12);
// lightPositions[2] = glm::vec3(-12, 12, 12);
// lightPositions[3] = glm::vec3(-12, 12, -12);
// // Bottom Floor
// lightPositions[0] = glm::vec3( 12, -0.5, 12);
// lightPositions[1] = glm::vec3( 12, -0.5, -12);
// lightPositions[2] = glm::vec3(-12, -0.5, 12);
// lightPositions[3] = glm::vec3(-12, -0.5, -12);
// cornellBox, bunny and buddha lights
float intensity = 0.35f;
glm::vec3 lightPositions[5];
lightPositions[0] = glm::vec3( 100, 1000, 100);
lightPositions[1] = glm::vec3( 100, 1000, -100);
lightPositions[2] = glm::vec3(-100, 1000, 100);
lightPositions[3] = glm::vec3(-100, 1000, -100);
lightPositions[4] = glm::vec3(0, 100, 0);
lc = lc * intensity;
for (int i = 0; i < 5; ++i)
{
glm::vec3 lightPosition = lightPositions[i];
glm::vec3 l = glm::normalize(lightPosition - hitPosition);
glm::vec3 v = ray.direction;
// Ambient
glm::vec3 ambientComponent = ka * lc;
// Diffuse
float nDotL = max(glm::dot(n, l), 0.0f);
glm::vec3 diffuseComponent = kd * nDotL * lc;
// Specular
glm::vec3 r = glm::reflect(l, n);
float vDotR = max(glm::dot(v,r), 0.0f);
glm::vec3 specularComponent = ks * pow(vDotR, ns) * lc;
finalColor += ambientComponent + diffuseComponent + specularComponent;
}
return finalColor;
} |
48d201dfcb2f55e1ebcc2282c0407f5f1961c0bf | 44890f9b95a8c77492bf38514d26c0da51d2fae5 | /Gif/TestWTL/RichEditElements.cpp | b495675136e9ec60498000f71c2d1d2a13a84f1b | [] | no_license | winnison/huang-cpp | fd9cd57bd0b97870ae1ca6427d2fc8191cf58a77 | 989fe1d3fdc1c9eae33e0f11fcd6d790e866e4c5 | refs/heads/master | 2021-01-19T18:07:38.882211 | 2008-04-14T16:42:48 | 2008-04-14T16:42:48 | 34,250,385 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,629 | cpp | RichEditElements.cpp | #include "stdafx.h"
#include "RichEditElements.h"
CRichEditTextSegment::CRichEditTextSegment(CRichEditText *text, int index, int length)
{
m_text = text;
m_index = index;
m_length = length;
}
int CRichEditTextSegment::GlobalCharIndex()
{
return m_text->m_globalCharIndex + m_index;
}
void CRichEditTextSegment::GetText(const LPWSTR &lpwString)
{
lstrcpyn(lpwString, m_text->m_wszString + m_index, m_length); lpwString[m_length] = 0;
}
int CRichEditTextSegment::TextLength()
{
return m_length;
}
int CRichEditTextSegment::Width()
{
return m_text->m_xs[m_index+m_length] - m_text->m_xs[m_index];
}
int CRichEditTextSegment::Height()
{
return m_text->m_cy;
}
int CRichEditTextSegment::GetCharWidth(int index)
{
index += m_index;
return m_text->m_xs[index+1] - m_text->m_xs[index];
}
void CRichEditTextSegment::Draw(CDC &dc, int dx, int dy)
{
HFONT f = dc.SelectFont(m_text->m_hFont);
dc.SetBkMode(OPAQUE);
CRect rc(dx+m_x, dy+m_line->m_y, dx+m_x+Width(), dy+m_line->m_y+m_line->m_cy);
dc.DrawText(m_text->m_wszString+m_index, m_length, &rc, DT_BOTTOM | DT_LEFT | DT_SINGLELINE |DT_EXPANDTABS | DT_NOPREFIX);
dc.SelectFont(f);
}
int CRichEditTextSegment::GetTextIndexAt(int &x)
{
vector<int> &xs = m_text->m_xs;
x = x + xs[m_index];
int left = m_index, right = m_index+m_length;
while(left<right)
{
int a = (left+right)/2;
if(xs[a]>x)
{
right = a - 1;
}
else
{
if(left == a)
{
if (xs[right]>x)
{
x -= xs[left];
return left - m_index;
}
x -= xs[right];
right -= m_index;
if(right == m_length)
return -1;
return right;
}
left = a;
}
}
x -= xs[left];
if(right == left)
return left - m_index;
return -2;
}
int CRichEditTextLineBreak::GetTextIndexAt(int &x)
{
if(x<0)
return -2;
if(x>=Width())
return -1;
return 0;
}
CRichEditText::CRichEditText(LPCWSTR wszString, HFONT hFont, COLORREF color)
{
m_nStringLength = lstrlen(wszString);
m_wszString = new wchar_t[m_nStringLength+1];
lstrcpyn(m_wszString, wszString, m_nStringLength+1);
m_hFont = hFont;
m_color = color;
m_cy = 0;
CDC dc = GetDC(NULL);
HFONT f = dc.SelectFont(hFont);
int x = 0;
m_xs.push_back(0);
for (int i=0; i<m_nStringLength; i++)
{
CRect rc(0,0, 100, 100);
dc.DrawText(wszString+i, 1, &rc, DT_CALCRECT | DT_TOP| DT_LEFT | DT_SINGLELINE |DT_EXPANDTABS | DT_NOPREFIX);
x+=rc.right;
if(m_cy<rc.bottom)
m_cy = rc.bottom;
m_xs.push_back(x);
}
dc.SelectFont(f);
::ReleaseDC(NULL,dc.m_hDC);
}
CRichEditText::~CRichEditText()
{
delete m_wszString;
}
CRichEditTextSegment* CRichEditText::CreateSegment(int &index, int widthLimit)
{
if(m_xs[index+1]> m_xs[index] + widthLimit)
return NULL;
int start = index, limit = m_xs[index] + widthLimit;
if(m_wszString[index] == '\r')
{
index++;
if(index<m_nStringLength && m_wszString[index] == '\n')
index++;
return new CRichEditTextLineBreak(this, start, index - start);
}
else if(m_wszString[index] == '\n')
{
index++;
return new CRichEditTextLineBreak(this, start, index - start);
}
while (++index<m_nStringLength && m_xs[index+1] <= limit && m_wszString[index] != '\r' || m_wszString[index] != '\n');
return new CRichEditTextSegment(this, start, index - start);
}
CRichEditRectangle* CRichEditLine::GetRectangleAt(int &x)
{
int left = 0, right = m_vecRects.size()-1;
while(left < right)
{
int a = (left+right)/2;
if(m_vecRects[a]->m_x>x)
{
right = a - 1;
}
else
{
if(left == a)
{
if(m_vecRects[right]->m_x>x)
{
return m_vecRects[left];
}
x -= m_vecRects[right]->m_x;
if(right == m_vecRects.size()-1 && m_vecRects[right]->m_x + m_vecRects[right]->Width()<=x)
return NULL;
return m_vecRects[right];
}
left = a;
}
}
if(right == left)
return m_vecRects[left];
return NULL;
}
void CRichEditLine::InsertRectangle(CRichEditRectangle* rect, int index)
{
int x;
if(index < 0)
{
x = m_cx;
index = m_vecRects.size();
}
else
{
x = m_vecRects[index]->m_x;
}
rect->m_line = this;
rect->m_x = x;
x += rect->Width();
m_vecRects.insert(&m_vecRects[index], rect);
for (int i= index+1; i < m_vecRects.size(); i++)
{
m_vecRects[i]->m_x = x;
x += m_vecRects[i]->Width();
}
m_cx = x;
if(m_cy<rect->Height())
m_cy = rect->Height();
}
void CRichEditLine::Draw(CDC &dc, int dx, int dy)
{
for (int i=0; i<m_vecRects.size(); i++)
{
m_vecRects[i]->Draw(dc, dx, dy);
}
}
|
9cb51b0852d120e42dee2a31d805667c676a8452 | 96788ab0d17cd1280b70674c8d6a4f8b90438cea | /linux ELF build/linuxopenmusic.build/module.pip._vendor.html5lib.trie._base.cpp | 032da6f993b55de44e8d53df77b2ae90843a8e3d | [
"Apache-2.0"
] | permissive | mesmerx/linuxopenmusic | 5d0ad9cc4d905565ba37225df947c64804bd718c | c45e23b9db99c8624de5699d800b6cc6de72c2b9 | refs/heads/master | 2021-01-10T07:33:13.751377 | 2017-11-01T02:29:50 | 2017-11-01T02:29:50 | 55,714,761 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98,934 | cpp | module.pip._vendor.html5lib.trie._base.cpp | // Generated code for Python source for module 'pip._vendor.html5lib.trie._base'
// created by Nuitka version 0.5.20
// This code is in part copyright 2016 Kay Hayen.
//
// 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 "nuitka/prelude.hpp"
#include "__helpers.hpp"
// The _module_pip$_vendor$html5lib$trie$_base is a Python object pointer of module type.
// Note: For full compatibility with CPython, every module variable access
// needs to go through it except for cases where the module cannot possibly
// have changed in the mean time.
PyObject *module_pip$_vendor$html5lib$trie$_base;
PyDictObject *moduledict_pip$_vendor$html5lib$trie$_base;
// The module constants used
extern PyObject *const_tuple_none_tuple;
extern PyObject *const_str_plain_has_keys_with_prefix;
extern PyObject *const_str_plain___module__;
extern PyObject *const_str_plain_metaclass;
extern PyObject *const_str_plain___package__;
extern PyObject *const_str_plain_unicode_literals;
static PyObject *const_tuple_str_plain_self_str_plain_prefix_str_plain_lprefix_tuple;
static PyObject *const_str_plain_lprefix;
extern PyObject *const_str_plain___qualname__;
extern PyObject *const_int_pos_1;
extern PyObject *const_dict_empty;
extern PyObject *const_str_plain_i;
extern PyObject *const_str_plain___file__;
extern PyObject *const_str_plain_key;
extern PyObject *const_int_0;
extern PyObject *const_str_digest_e0919bb352f94bf195e875d55537135d;
extern PyObject *const_tuple_str_plain_Mapping_tuple;
extern PyObject *const_str_plain_Mapping;
extern PyObject *const_str_plain_prefix;
static PyObject *const_tuple_str_plain_self_str_plain_prefix_str_plain_i_tuple;
extern PyObject *const_str_plain___prepare__;
extern PyObject *const_str_plain_division;
extern PyObject *const_str_plain___doc__;
extern PyObject *const_str_plain_collections;
extern PyObject *const_str_plain_self;
extern PyObject *const_str_plain__base;
extern PyObject *const_str_plain_keys;
extern PyObject *const_str_digest_bfc5535c368c654cecb828762ef39dd8;
extern PyObject *const_str_plain_Trie;
extern PyObject *const_str_digest_5439b2431ccfdb405e8922060b74a8bc;
extern PyObject *const_tuple_empty;
extern PyObject *const_str_digest_d01a0935c804902ddadea22ba70dfecd;
static PyObject *const_str_digest_c822e7f07b67a4d0c0b00eb911b93f9c;
extern PyObject *const_str_plain_longest_prefix_item;
static PyObject *const_str_digest_86bc653776848d435522df251a1f0871;
extern PyObject *const_str_plain___loader__;
static PyObject *const_tuple_str_plain_self_str_plain_prefix_str_plain_key_tuple;
extern PyObject *const_str_plain_type;
extern PyObject *const_str_plain_startswith;
static PyObject *const_tuple_str_plain_self_str_plain_prefix_str_plain_keys_tuple;
static PyObject *const_str_digest_794d94ee925289a29ad595e8755de193;
extern PyObject *const_str_plain_longest_prefix;
extern PyObject *const_str_digest_a02a8fbd1a207fefb9949084bd1069f8;
extern PyObject *const_str_plain_absolute_import;
extern PyObject *const_str_plain___cached__;
extern PyObject *const_str_plain___class__;
static PyObject *module_filename_obj;
static bool constants_created = false;
static void createModuleConstants( void )
{
const_tuple_str_plain_self_str_plain_prefix_str_plain_lprefix_tuple = PyTuple_New( 3 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_lprefix_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_lprefix_tuple, 1, const_str_plain_prefix ); Py_INCREF( const_str_plain_prefix );
const_str_plain_lprefix = UNSTREAM_STRING( &constant_bin[ 386099 ], 7, 1 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_lprefix_tuple, 2, const_str_plain_lprefix ); Py_INCREF( const_str_plain_lprefix );
const_tuple_str_plain_self_str_plain_prefix_str_plain_i_tuple = PyTuple_New( 3 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_i_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_i_tuple, 1, const_str_plain_prefix ); Py_INCREF( const_str_plain_prefix );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_i_tuple, 2, const_str_plain_i ); Py_INCREF( const_str_plain_i );
const_str_digest_c822e7f07b67a4d0c0b00eb911b93f9c = UNSTREAM_STRING( &constant_bin[ 386106 ], 31, 0 );
const_str_digest_86bc653776848d435522df251a1f0871 = UNSTREAM_STRING( &constant_bin[ 386137 ], 67, 0 );
const_tuple_str_plain_self_str_plain_prefix_str_plain_key_tuple = PyTuple_New( 3 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_key_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_key_tuple, 1, const_str_plain_prefix ); Py_INCREF( const_str_plain_prefix );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_key_tuple, 2, const_str_plain_key ); Py_INCREF( const_str_plain_key );
const_tuple_str_plain_self_str_plain_prefix_str_plain_keys_tuple = PyTuple_New( 3 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_keys_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_keys_tuple, 1, const_str_plain_prefix ); Py_INCREF( const_str_plain_prefix );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_prefix_str_plain_keys_tuple, 2, const_str_plain_keys ); Py_INCREF( const_str_plain_keys );
const_str_digest_794d94ee925289a29ad595e8755de193 = UNSTREAM_STRING( &constant_bin[ 386204 ], 29, 0 );
constants_created = true;
}
#ifndef __NUITKA_NO_ASSERT__
void checkModuleConstants_pip$_vendor$html5lib$trie$_base( void )
{
// The module may not have been used at all.
if (constants_created == false) return;
}
#endif
// The module code objects.
static PyCodeObject *codeobj_c7aa2a75c9b236062c0b0f965989b750;
static PyCodeObject *codeobj_c92ac0d2f923721b409ec66ce1f39790;
static PyCodeObject *codeobj_d1b25c5499ff8341216b91814f1c95dd;
static PyCodeObject *codeobj_6095d8b69a4a614dcb14b58bfd0e953a;
static PyCodeObject *codeobj_03fb7c5f66b9bd084ee15b72397a8306;
static void createModuleCodeObjects(void)
{
module_filename_obj = const_str_digest_86bc653776848d435522df251a1f0871;
codeobj_c7aa2a75c9b236062c0b0f965989b750 = MAKE_CODEOBJ( module_filename_obj, const_str_plain__base, 1, const_tuple_empty, 0, 0, CO_NOFREE | CO_FUTURE_UNICODE_LITERALS );
codeobj_c92ac0d2f923721b409ec66ce1f39790 = MAKE_CODEOBJ( module_filename_obj, const_str_plain_has_keys_with_prefix, 18, const_tuple_str_plain_self_str_plain_prefix_str_plain_key_tuple, 2, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_UNICODE_LITERALS );
codeobj_d1b25c5499ff8341216b91814f1c95dd = MAKE_CODEOBJ( module_filename_obj, const_str_plain_keys, 9, const_tuple_str_plain_self_str_plain_prefix_str_plain_keys_tuple, 2, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_FUTURE_UNICODE_LITERALS );
codeobj_6095d8b69a4a614dcb14b58bfd0e953a = MAKE_CODEOBJ( module_filename_obj, const_str_plain_longest_prefix, 25, const_tuple_str_plain_self_str_plain_prefix_str_plain_i_tuple, 2, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_UNICODE_LITERALS );
codeobj_03fb7c5f66b9bd084ee15b72397a8306 = MAKE_CODEOBJ( module_filename_obj, const_str_plain_longest_prefix_item, 35, const_tuple_str_plain_self_str_plain_prefix_str_plain_lprefix_tuple, 2, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_UNICODE_LITERALS );
}
// The module function declarations.
NUITKA_LOCAL_MODULE PyObject *impl_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( PyObject **python_pars, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__bases, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared );
NUITKA_LOCAL_MODULE PyObject *impl_function_1_listcontraction_of_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( PyObject **python_pars, PyObject *&closure_prefix );
static PyObject *MAKE_FUNCTION_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( PyObject *defaults, PyCellObject *closure___class__ );
static PyObject *MAKE_FUNCTION_function_2_has_keys_with_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( );
static PyObject *MAKE_FUNCTION_function_3_longest_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( );
static PyObject *MAKE_FUNCTION_function_4_longest_prefix_item_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( );
// The module function definitions.
NUITKA_LOCAL_MODULE PyObject *impl_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( PyObject **python_pars, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__bases, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass, PyObject *&closure_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared )
{
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
assert(!had_error); // Do not enter inlined functions with error set.
#endif
// Local variable declarations.
// Locals dictionary setup.
PyObject *locals_dict = PyDict_New();
PyCellObject *var___class__ = PyCell_EMPTY();
PyObject *var___module__ = NULL;
PyObject *var___doc__ = NULL;
PyObject *var___qualname__ = NULL;
PyObject *var_keys = NULL;
PyObject *var_has_keys_with_prefix = NULL;
PyObject *var_longest_prefix = NULL;
PyObject *var_longest_prefix_item = NULL;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = -1;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_args_name_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_called_name_1;
PyObject *tmp_defaults_1;
PyObject *tmp_kw_name_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_set_locals;
PyObject *tmp_tuple_element_1;
tmp_return_value = NULL;
// Actual function code.
tmp_set_locals = closure_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared;
Py_DECREF(locals_dict);
locals_dict = tmp_set_locals;
Py_INCREF(locals_dict);
tmp_assign_source_1 = const_str_digest_c822e7f07b67a4d0c0b00eb911b93f9c;
assert( var___module__ == NULL );
Py_INCREF( tmp_assign_source_1 );
var___module__ = tmp_assign_source_1;
tmp_assign_source_2 = const_str_digest_794d94ee925289a29ad595e8755de193;
assert( var___doc__ == NULL );
Py_INCREF( tmp_assign_source_2 );
var___doc__ = tmp_assign_source_2;
tmp_assign_source_3 = const_str_plain_Trie;
assert( var___qualname__ == NULL );
Py_INCREF( tmp_assign_source_3 );
var___qualname__ = tmp_assign_source_3;
tmp_defaults_1 = const_tuple_none_tuple;
tmp_assign_source_4 = MAKE_FUNCTION_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( INCREASE_REFCOUNT( tmp_defaults_1 ), var___class__ );
assert( var_keys == NULL );
var_keys = tmp_assign_source_4;
tmp_assign_source_5 = MAKE_FUNCTION_function_2_has_keys_with_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( );
assert( var_has_keys_with_prefix == NULL );
var_has_keys_with_prefix = tmp_assign_source_5;
tmp_assign_source_6 = MAKE_FUNCTION_function_3_longest_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( );
assert( var_longest_prefix == NULL );
var_longest_prefix = tmp_assign_source_6;
tmp_assign_source_7 = MAKE_FUNCTION_function_4_longest_prefix_item_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( );
assert( var_longest_prefix_item == NULL );
var_longest_prefix_item = tmp_assign_source_7;
// Tried code:
tmp_called_name_1 = closure_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass;
tmp_args_name_1 = PyTuple_New( 3 );
tmp_tuple_element_1 = const_str_plain_Trie;
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_args_name_1, 0, tmp_tuple_element_1 );
tmp_tuple_element_1 = closure_pip$_vendor$html5lib$trie$_base_class_creation_1__bases;
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_args_name_1, 1, tmp_tuple_element_1 );
tmp_tuple_element_1 = locals_dict;
Py_INCREF( locals_dict );
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain___class__, var___class__->ob_ref );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain___module__, var___module__ );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain___doc__, var___doc__ );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain___qualname__, var___qualname__ );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain_keys, var_keys );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain_has_keys_with_prefix, var_has_keys_with_prefix );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain_longest_prefix, var_longest_prefix );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
tmp_result = MAPPING_SYNC_FROM_VARIABLE( tmp_tuple_element_1, const_str_plain_longest_prefix_item, var_longest_prefix_item );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_1 );
goto try_except_handler_1;
}
PyTuple_SET_ITEM( tmp_args_name_1, 2, tmp_tuple_element_1 );
tmp_kw_name_1 = closure_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict;
tmp_assign_source_8 = CALL_FUNCTION( tmp_called_name_1, tmp_args_name_1, tmp_kw_name_1 );
Py_DECREF( tmp_args_name_1 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
goto try_except_handler_1;
}
{
PyObject *old = PyCell_GET( var___class__ );
PyCell_SET( var___class__, tmp_assign_source_8 );
Py_XDECREF( old );
}
tmp_return_value = PyCell_GET( var___class__ );
if ( tmp_return_value == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "__class__" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
goto try_except_handler_1;
}
Py_INCREF( tmp_return_value );
goto try_return_handler_1;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
// Return handler code:
try_return_handler_1:;
CHECK_OBJECT( (PyObject *)var___class__ );
Py_DECREF( var___class__ );
var___class__ = NULL;
Py_XDECREF( var___module__ );
var___module__ = NULL;
Py_XDECREF( var___doc__ );
var___doc__ = NULL;
Py_XDECREF( var___qualname__ );
var___qualname__ = NULL;
Py_XDECREF( var_keys );
var_keys = NULL;
Py_XDECREF( var_has_keys_with_prefix );
var_has_keys_with_prefix = NULL;
Py_XDECREF( var_longest_prefix );
var_longest_prefix = NULL;
Py_XDECREF( var_longest_prefix_item );
var_longest_prefix_item = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( var___module__ );
var___module__ = NULL;
Py_XDECREF( var___doc__ );
var___doc__ = NULL;
Py_XDECREF( var___qualname__ );
var___qualname__ = NULL;
Py_XDECREF( var_keys );
var_keys = NULL;
Py_XDECREF( var_has_keys_with_prefix );
var_has_keys_with_prefix = NULL;
Py_XDECREF( var_longest_prefix );
var_longest_prefix = NULL;
Py_XDECREF( var_longest_prefix_item );
var_longest_prefix_item = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
function_exception_exit:
Py_DECREF( locals_dict );
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
Py_DECREF( locals_dict );
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *impl_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *par_prefix = python_pars[ 1 ];
PyObject *var_keys = NULL;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = -1;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_called_name_1;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_right_1;
PyObject *tmp_dircall_arg1_1;
PyObject *tmp_frame_locals;
bool tmp_is_1;
PyObject *tmp_iter_arg_1;
PyObject *tmp_object_name_1;
PyObject *tmp_return_value;
PyObject *tmp_set_arg_1;
PyObject *tmp_set_arg_2;
PyObject *tmp_source_name_1;
PyObject *tmp_type_name_1;
static PyFrameObject *cache_frame_function = NULL;
PyFrameObject *frame_function;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_d1b25c5499ff8341216b91814f1c95dd, module_pip$_vendor$html5lib$trie$_base );
frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_type_name_1 = PyCell_GET( self->m_closure[0] );
if ( tmp_type_name_1 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "free variable '%s' referenced before assignment in enclosing scope", "__class__" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 10;
goto frame_exception_exit_1;
}
tmp_object_name_1 = par_self;
tmp_source_name_1 = BUILTIN_SUPER( tmp_type_name_1, tmp_object_name_1 );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 10;
goto frame_exception_exit_1;
}
tmp_called_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_keys );
Py_DECREF( tmp_source_name_1 );
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 10;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 10;
tmp_assign_source_1 = CALL_FUNCTION_NO_ARGS( tmp_called_name_1 );
Py_DECREF( tmp_called_name_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 10;
goto frame_exception_exit_1;
}
assert( var_keys == NULL );
var_keys = tmp_assign_source_1;
tmp_compare_left_1 = par_prefix;
tmp_compare_right_1 = Py_None;
tmp_is_1 = ( tmp_compare_left_1 == tmp_compare_right_1 );
if ( tmp_is_1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_set_arg_1 = var_keys;
if ( tmp_set_arg_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "keys" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 13;
goto frame_exception_exit_1;
}
tmp_return_value = PySet_New( tmp_set_arg_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 13;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
branch_no_1:;
tmp_iter_arg_1 = var_keys;
if ( tmp_iter_arg_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "keys" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 16;
goto frame_exception_exit_1;
}
tmp_dircall_arg1_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
if ( tmp_dircall_arg1_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 16;
goto frame_exception_exit_1;
}
{
PyObject *dir_call_args[] = {tmp_dircall_arg1_1};
tmp_set_arg_2 = impl_function_1_listcontraction_of_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( dir_call_args, par_prefix );
}
if ( tmp_set_arg_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 16;
goto frame_exception_exit_1;
}
tmp_return_value = PySet_New( tmp_set_arg_2 );
Py_DECREF( tmp_set_arg_2 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 16;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto try_return_handler_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
{
bool needs_detach = false;
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_function, exception_lineno );
needs_detach = true;
}
else if ( exception_lineno != -1 )
{
PyTracebackObject *traceback_new = MAKE_TRACEBACK( frame_function, exception_lineno );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
needs_detach = true;
}
if (needs_detach)
{
tmp_frame_locals = PyDict_New();
if ( par_self )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self
);
assert( res == 0 );
}
if ( par_prefix )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_prefix,
par_prefix
);
assert( res == 0 );
}
if ( var_keys )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_keys,
var_keys
);
assert( res == 0 );
}
if ( self->m_closure[0]->ob_ref )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain___class__,
self->m_closure[0]->ob_ref
);
assert( res == 0 );
}
detachFrame( exception_tb, tmp_frame_locals );
}
}
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_keys );
var_keys = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_keys );
var_keys = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
NUITKA_LOCAL_MODULE PyObject *impl_function_1_listcontraction_of_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( PyObject **python_pars, PyObject *&closure_prefix )
{
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
assert(!had_error); // Do not enter inlined functions with error set.
#endif
// Local variable declarations.
PyObject *par_$0 = python_pars[ 0 ];
PyObject *var_x = NULL;
PyObject *tmp_contraction_result = NULL;
PyObject *tmp_iter_value_0 = NULL;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = -1;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2;
PyObject *tmp_append_list_1;
PyObject *tmp_append_value_1;
PyObject *tmp_args_element_name_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_called_name_1;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_next_source_1;
int tmp_res;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
tmp_return_value = NULL;
// Actual function code.
tmp_assign_source_1 = PyList_New( 0 );
assert( tmp_contraction_result == NULL );
tmp_contraction_result = tmp_assign_source_1;
// Tried code:
// Tried code:
loop_start_1:;
tmp_next_source_1 = par_$0;
tmp_assign_source_2 = ITERATOR_NEXT( tmp_next_source_1 );
if ( tmp_assign_source_2 == NULL )
{
if ( CHECK_AND_CLEAR_STOP_ITERATION_OCCURRED() )
{
goto loop_end_1;
}
else
{
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
PyThreadState_GET()->frame->f_lineno = 16;
goto try_except_handler_2;
}
}
{
PyObject *old = tmp_iter_value_0;
tmp_iter_value_0 = tmp_assign_source_2;
Py_XDECREF( old );
}
tmp_assign_source_3 = tmp_iter_value_0;
{
PyObject *old = var_x;
var_x = tmp_assign_source_3;
Py_INCREF( var_x );
Py_XDECREF( old );
}
tmp_source_name_1 = var_x;
tmp_called_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_startswith );
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 16;
goto try_except_handler_2;
}
tmp_args_element_name_1 = closure_prefix;
PyThreadState_GET()->frame->f_lineno = 16;
{
PyObject *call_args[] = { tmp_args_element_name_1 };
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_name_1, call_args );
}
Py_DECREF( tmp_called_name_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 16;
goto try_except_handler_2;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_cond_value_1 );
exception_lineno = 16;
goto try_except_handler_2;
}
Py_DECREF( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == 1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_append_list_1 = tmp_contraction_result;
tmp_append_value_1 = var_x;
if ( tmp_append_value_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "x" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 16;
goto try_except_handler_2;
}
assert( PyList_Check( tmp_append_list_1 ) );
tmp_res = PyList_Append( tmp_append_list_1, tmp_append_value_1 );
if ( tmp_res == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 16;
goto try_except_handler_2;
}
branch_no_1:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 16;
goto try_except_handler_2;
}
goto loop_start_1;
loop_end_1:;
tmp_return_value = tmp_contraction_result;
Py_INCREF( tmp_return_value );
goto try_return_handler_2;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( function_1_listcontraction_of_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
// Return handler code:
try_return_handler_2:;
Py_XDECREF( tmp_contraction_result );
tmp_contraction_result = NULL;
Py_XDECREF( tmp_iter_value_0 );
tmp_iter_value_0 = NULL;
goto try_return_handler_1;
// Exception handler code:
try_except_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( tmp_contraction_result );
tmp_contraction_result = NULL;
Py_XDECREF( tmp_iter_value_0 );
tmp_iter_value_0 = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto try_except_handler_1;
// End of try:
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( function_1_listcontraction_of_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_$0 );
par_$0 = NULL;
Py_XDECREF( var_x );
var_x = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_keeper_lineno_2 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( par_$0 );
par_$0 = NULL;
Py_XDECREF( var_x );
var_x = NULL;
// Re-raise.
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
exception_lineno = exception_keeper_lineno_2;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( function_1_listcontraction_of_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *impl_function_2_has_keys_with_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *par_prefix = python_pars[ 1 ];
PyObject *var_key = NULL;
PyObject *tmp_for_loop_1__for_iterator = NULL;
PyObject *tmp_for_loop_1__iter_value = NULL;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = -1;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2;
PyObject *tmp_args_element_name_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_called_name_1;
PyObject *tmp_called_name_2;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_next_source_1;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
static PyFrameObject *cache_frame_function = NULL;
PyFrameObject *frame_function;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_c92ac0d2f923721b409ec66ce1f39790, module_pip$_vendor$html5lib$trie$_base );
frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = par_self;
tmp_called_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_keys );
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 19;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 19;
tmp_iter_arg_1 = CALL_FUNCTION_NO_ARGS( tmp_called_name_1 );
Py_DECREF( tmp_called_name_1 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 19;
goto frame_exception_exit_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 19;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator == NULL );
tmp_for_loop_1__for_iterator = tmp_assign_source_1;
// Tried code:
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator;
tmp_assign_source_2 = ITERATOR_NEXT( tmp_next_source_1 );
if ( tmp_assign_source_2 == NULL )
{
if ( CHECK_AND_CLEAR_STOP_ITERATION_OCCURRED() )
{
goto loop_end_1;
}
else
{
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
frame_function->f_lineno = 19;
goto try_except_handler_2;
}
}
{
PyObject *old = tmp_for_loop_1__iter_value;
tmp_for_loop_1__iter_value = tmp_assign_source_2;
Py_XDECREF( old );
}
tmp_assign_source_3 = tmp_for_loop_1__iter_value;
{
PyObject *old = var_key;
var_key = tmp_assign_source_3;
Py_INCREF( var_key );
Py_XDECREF( old );
}
tmp_source_name_2 = var_key;
tmp_called_name_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_startswith );
if ( tmp_called_name_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 20;
goto try_except_handler_2;
}
tmp_args_element_name_1 = par_prefix;
frame_function->f_lineno = 20;
{
PyObject *call_args[] = { tmp_args_element_name_1 };
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_name_2, call_args );
}
Py_DECREF( tmp_called_name_2 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 20;
goto try_except_handler_2;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_cond_value_1 );
exception_lineno = 20;
goto try_except_handler_2;
}
Py_DECREF( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == 1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_return_value = Py_True;
Py_INCREF( tmp_return_value );
goto try_return_handler_2;
branch_no_1:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 19;
goto try_except_handler_2;
}
goto loop_start_1;
loop_end_1:;
goto try_end_1;
// Return handler code:
try_return_handler_2:;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
goto frame_return_exit_1;
// Exception handler code:
try_except_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto frame_exception_exit_1;
// End of try:
try_end_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto try_return_handler_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
{
bool needs_detach = false;
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_function, exception_lineno );
needs_detach = true;
}
else if ( exception_lineno != -1 )
{
PyTracebackObject *traceback_new = MAKE_TRACEBACK( frame_function, exception_lineno );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
needs_detach = true;
}
if (needs_detach)
{
tmp_frame_locals = PyDict_New();
if ( par_self )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self
);
assert( res == 0 );
}
if ( par_prefix )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_prefix,
par_prefix
);
assert( res == 0 );
}
if ( var_key )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key
);
assert( res == 0 );
}
detachFrame( exception_tb, tmp_frame_locals );
}
}
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
tmp_return_value = Py_False;
Py_INCREF( tmp_return_value );
goto try_return_handler_1;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( function_2_has_keys_with_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_key );
var_key = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_keeper_lineno_2 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_key );
var_key = NULL;
// Re-raise.
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
exception_lineno = exception_keeper_lineno_2;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( function_2_has_keys_with_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *impl_function_3_longest_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *par_prefix = python_pars[ 1 ];
PyObject *var_i = NULL;
PyObject *tmp_for_loop_1__for_iterator = NULL;
PyObject *tmp_for_loop_1__iter_value = NULL;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = -1;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
int tmp_cmp_In_1;
int tmp_cmp_In_2;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_left_name_1;
PyObject *tmp_len_arg_1;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_next_source_1;
PyObject *tmp_operand_name_1;
PyObject *tmp_operand_name_2;
PyObject *tmp_raise_type_1;
PyObject *tmp_range2_high_1;
PyObject *tmp_range2_low_1;
PyObject *tmp_return_value;
PyObject *tmp_right_name_1;
PyObject *tmp_start_name_1;
PyObject *tmp_start_name_2;
PyObject *tmp_step_name_1;
PyObject *tmp_step_name_2;
PyObject *tmp_stop_name_1;
PyObject *tmp_stop_name_2;
PyObject *tmp_subscribed_name_1;
PyObject *tmp_subscribed_name_2;
PyObject *tmp_subscript_name_1;
PyObject *tmp_subscript_name_2;
static PyFrameObject *cache_frame_function = NULL;
PyFrameObject *frame_function;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_6095d8b69a4a614dcb14b58bfd0e953a, module_pip$_vendor$html5lib$trie$_base );
frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_compare_left_1 = par_prefix;
tmp_compare_right_1 = par_self;
tmp_cmp_In_1 = PySequence_Contains( tmp_compare_right_1, tmp_compare_left_1 );
assert( !(tmp_cmp_In_1 == -1) );
if ( tmp_cmp_In_1 == 1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_return_value = par_prefix;
if ( tmp_return_value == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "prefix" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 27;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
branch_no_1:;
tmp_range2_low_1 = const_int_pos_1;
tmp_len_arg_1 = par_prefix;
if ( tmp_len_arg_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "prefix" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 29;
goto frame_exception_exit_1;
}
tmp_left_name_1 = BUILTIN_LEN( tmp_len_arg_1 );
if ( tmp_left_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 29;
goto frame_exception_exit_1;
}
tmp_right_name_1 = const_int_pos_1;
tmp_range2_high_1 = BINARY_OPERATION_ADD( tmp_left_name_1, tmp_right_name_1 );
Py_DECREF( tmp_left_name_1 );
if ( tmp_range2_high_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 29;
goto frame_exception_exit_1;
}
tmp_iter_arg_1 = BUILTIN_RANGE2( tmp_range2_low_1, tmp_range2_high_1 );
Py_DECREF( tmp_range2_high_1 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 29;
goto frame_exception_exit_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 29;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator == NULL );
tmp_for_loop_1__for_iterator = tmp_assign_source_1;
// Tried code:
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator;
tmp_assign_source_2 = ITERATOR_NEXT( tmp_next_source_1 );
if ( tmp_assign_source_2 == NULL )
{
if ( CHECK_AND_CLEAR_STOP_ITERATION_OCCURRED() )
{
goto loop_end_1;
}
else
{
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
frame_function->f_lineno = 29;
goto try_except_handler_2;
}
}
{
PyObject *old = tmp_for_loop_1__iter_value;
tmp_for_loop_1__iter_value = tmp_assign_source_2;
Py_XDECREF( old );
}
tmp_assign_source_3 = tmp_for_loop_1__iter_value;
{
PyObject *old = var_i;
var_i = tmp_assign_source_3;
Py_INCREF( var_i );
Py_XDECREF( old );
}
tmp_subscribed_name_1 = par_prefix;
if ( tmp_subscribed_name_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "prefix" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 30;
goto try_except_handler_2;
}
tmp_start_name_1 = Py_None;
tmp_operand_name_1 = var_i;
tmp_stop_name_1 = UNARY_OPERATION( PyNumber_Negative, tmp_operand_name_1 );
if ( tmp_stop_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 30;
goto try_except_handler_2;
}
tmp_step_name_1 = Py_None;
tmp_subscript_name_1 = MAKE_SLICEOBJ3( tmp_start_name_1, tmp_stop_name_1, tmp_step_name_1 );
Py_DECREF( tmp_stop_name_1 );
assert( tmp_subscript_name_1 != NULL );
tmp_compare_left_2 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_1, tmp_subscript_name_1 );
Py_DECREF( tmp_subscript_name_1 );
if ( tmp_compare_left_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 30;
goto try_except_handler_2;
}
tmp_compare_right_2 = par_self;
if ( tmp_compare_right_2 == NULL )
{
Py_DECREF( tmp_compare_left_2 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 30;
goto try_except_handler_2;
}
tmp_cmp_In_2 = PySequence_Contains( tmp_compare_right_2, tmp_compare_left_2 );
assert( !(tmp_cmp_In_2 == -1) );
Py_DECREF( tmp_compare_left_2 );
if ( tmp_cmp_In_2 == 1 )
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_subscribed_name_2 = par_prefix;
if ( tmp_subscribed_name_2 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "prefix" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 31;
goto try_except_handler_2;
}
tmp_start_name_2 = Py_None;
tmp_operand_name_2 = var_i;
if ( tmp_operand_name_2 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "i" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 31;
goto try_except_handler_2;
}
tmp_stop_name_2 = UNARY_OPERATION( PyNumber_Negative, tmp_operand_name_2 );
if ( tmp_stop_name_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 31;
goto try_except_handler_2;
}
tmp_step_name_2 = Py_None;
tmp_subscript_name_2 = MAKE_SLICEOBJ3( tmp_start_name_2, tmp_stop_name_2, tmp_step_name_2 );
Py_DECREF( tmp_stop_name_2 );
assert( tmp_subscript_name_2 != NULL );
tmp_return_value = LOOKUP_SUBSCRIPT( tmp_subscribed_name_2, tmp_subscript_name_2 );
Py_DECREF( tmp_subscript_name_2 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 31;
goto try_except_handler_2;
}
goto try_return_handler_2;
branch_no_2:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 29;
goto try_except_handler_2;
}
goto loop_start_1;
loop_end_1:;
goto try_end_1;
// Return handler code:
try_return_handler_2:;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
goto frame_return_exit_1;
// Exception handler code:
try_except_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto frame_exception_exit_1;
// End of try:
try_end_1:;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
tmp_make_exception_arg_1 = par_prefix;
if ( tmp_make_exception_arg_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "prefix" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 33;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 33;
{
PyObject *call_args[] = { tmp_make_exception_arg_1 };
tmp_raise_type_1 = CALL_FUNCTION_WITH_ARGS1( PyExc_KeyError, call_args );
}
assert( tmp_raise_type_1 != NULL );
exception_type = tmp_raise_type_1;
exception_lineno = 33;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto try_return_handler_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
{
bool needs_detach = false;
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_function, exception_lineno );
needs_detach = true;
}
else if ( exception_lineno != -1 )
{
PyTracebackObject *traceback_new = MAKE_TRACEBACK( frame_function, exception_lineno );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
needs_detach = true;
}
if (needs_detach)
{
tmp_frame_locals = PyDict_New();
if ( par_self )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self
);
assert( res == 0 );
}
if ( par_prefix )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_prefix,
par_prefix
);
assert( res == 0 );
}
if ( var_i )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i
);
assert( res == 0 );
}
detachFrame( exception_tb, tmp_frame_locals );
}
}
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( function_3_longest_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_i );
var_i = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_keeper_lineno_2 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_i );
var_i = NULL;
// Re-raise.
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
exception_lineno = exception_keeper_lineno_2;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( function_3_longest_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *impl_function_4_longest_prefix_item_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *par_prefix = python_pars[ 1 ];
PyObject *var_lprefix = NULL;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = -1;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_args_element_name_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_called_name_1;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_subscribed_name_1;
PyObject *tmp_subscript_name_1;
PyObject *tmp_tuple_element_1;
static PyFrameObject *cache_frame_function = NULL;
PyFrameObject *frame_function;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_03fb7c5f66b9bd084ee15b72397a8306, module_pip$_vendor$html5lib$trie$_base );
frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = par_self;
tmp_called_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_longest_prefix );
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 36;
goto frame_exception_exit_1;
}
tmp_args_element_name_1 = par_prefix;
frame_function->f_lineno = 36;
{
PyObject *call_args[] = { tmp_args_element_name_1 };
tmp_assign_source_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_name_1, call_args );
}
Py_DECREF( tmp_called_name_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 36;
goto frame_exception_exit_1;
}
assert( var_lprefix == NULL );
var_lprefix = tmp_assign_source_1;
tmp_return_value = PyTuple_New( 2 );
tmp_tuple_element_1 = var_lprefix;
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_return_value, 0, tmp_tuple_element_1 );
tmp_subscribed_name_1 = par_self;
if ( tmp_subscribed_name_1 == NULL )
{
Py_DECREF( tmp_return_value );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 37;
goto frame_exception_exit_1;
}
tmp_subscript_name_1 = var_lprefix;
tmp_tuple_element_1 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_1, tmp_subscript_name_1 );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_return_value );
exception_lineno = 37;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_return_value, 1, tmp_tuple_element_1 );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto try_return_handler_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
{
bool needs_detach = false;
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_function, exception_lineno );
needs_detach = true;
}
else if ( exception_lineno != -1 )
{
PyTracebackObject *traceback_new = MAKE_TRACEBACK( frame_function, exception_lineno );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
needs_detach = true;
}
if (needs_detach)
{
tmp_frame_locals = PyDict_New();
if ( par_self )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self
);
assert( res == 0 );
}
if ( par_prefix )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_prefix,
par_prefix
);
assert( res == 0 );
}
if ( var_lprefix )
{
int res = PyDict_SetItem(
tmp_frame_locals,
const_str_plain_lprefix,
var_lprefix
);
assert( res == 0 );
}
detachFrame( exception_tb, tmp_frame_locals );
}
}
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( function_4_longest_prefix_item_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_lprefix );
var_lprefix = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_prefix );
par_prefix = NULL;
Py_XDECREF( var_lprefix );
var_lprefix = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( function_4_longest_prefix_item_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *MAKE_FUNCTION_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( PyObject *defaults, PyCellObject *closure___class__ )
{
// Copy the parameter default values and closure values over.
PyCellObject **closure = (PyCellObject **)malloc(1 * sizeof(PyCellObject *));
closure[0] = closure___class__;
Py_INCREF( closure[0] );
PyObject *result = Nuitka_Function_New(
impl_function_1_keys_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base,
const_str_plain_keys,
#if PYTHON_VERSION >= 330
const_str_digest_d01a0935c804902ddadea22ba70dfecd,
#endif
codeobj_d1b25c5499ff8341216b91814f1c95dd,
defaults,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_pip$_vendor$html5lib$trie$_base,
Py_None,
closure,
1
);
return result;
}
static PyObject *MAKE_FUNCTION_function_2_has_keys_with_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( )
{
PyObject *result = Nuitka_Function_New(
impl_function_2_has_keys_with_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base,
const_str_plain_has_keys_with_prefix,
#if PYTHON_VERSION >= 330
const_str_digest_5439b2431ccfdb405e8922060b74a8bc,
#endif
codeobj_c92ac0d2f923721b409ec66ce1f39790,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_pip$_vendor$html5lib$trie$_base,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_3_longest_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( )
{
PyObject *result = Nuitka_Function_New(
impl_function_3_longest_prefix_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base,
const_str_plain_longest_prefix,
#if PYTHON_VERSION >= 330
const_str_digest_bfc5535c368c654cecb828762ef39dd8,
#endif
codeobj_6095d8b69a4a614dcb14b58bfd0e953a,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_pip$_vendor$html5lib$trie$_base,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_4_longest_prefix_item_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( )
{
PyObject *result = Nuitka_Function_New(
impl_function_4_longest_prefix_item_of_class_1_Trie_of_pip$_vendor$html5lib$trie$_base,
const_str_plain_longest_prefix_item,
#if PYTHON_VERSION >= 330
const_str_digest_a02a8fbd1a207fefb9949084bd1069f8,
#endif
codeobj_03fb7c5f66b9bd084ee15b72397a8306,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_pip$_vendor$html5lib$trie$_base,
Py_None
);
return result;
}
#if PYTHON_VERSION >= 300
static struct PyModuleDef mdef_pip$_vendor$html5lib$trie$_base =
{
PyModuleDef_HEAD_INIT,
"pip._vendor.html5lib.trie._base", /* m_name */
NULL, /* m_doc */
-1, /* m_size */
NULL, /* m_methods */
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL, /* m_free */
};
#endif
#if PYTHON_VERSION >= 300
extern PyObject *metapath_based_loader;
#endif
// The exported interface to CPython. On import of the module, this function
// gets called. It has to have an exact function name, in cases it's a shared
// library export. This is hidden behind the MOD_INIT_DECL.
MOD_INIT_DECL( pip$_vendor$html5lib$trie$_base )
{
#if defined(_NUITKA_EXE) || PYTHON_VERSION >= 300
static bool _init_done = false;
// Modules might be imported repeatedly, which is to be ignored.
if ( _init_done )
{
return MOD_RETURN_VALUE( module_pip$_vendor$html5lib$trie$_base );
}
else
{
_init_done = true;
}
#endif
#ifdef _NUITKA_MODULE
// In case of a stand alone extension module, need to call initialization
// the init here because that's the first and only time we are going to get
// called here.
// Initialize the constant values used.
_initBuiltinModule();
createGlobalConstants();
// Initialize the compiled types of Nuitka.
PyType_Ready( &Nuitka_Generator_Type );
PyType_Ready( &Nuitka_Function_Type );
PyType_Ready( &Nuitka_Method_Type );
PyType_Ready( &Nuitka_Frame_Type );
#if PYTHON_VERSION >= 350
PyType_Ready( &Nuitka_Coroutine_Type );
PyType_Ready( &Nuitka_CoroutineWrapper_Type );
#endif
#if PYTHON_VERSION < 300
_initSlotCompare();
#endif
#if PYTHON_VERSION >= 270
_initSlotIternext();
#endif
patchBuiltinModule();
patchTypeComparison();
// Enable meta path based loader if not already done.
setupMetaPathBasedLoader();
#if PYTHON_VERSION >= 300
patchInspectModule();
#endif
#endif
createModuleConstants();
createModuleCodeObjects();
// puts( "in initpip$_vendor$html5lib$trie$_base" );
// Create the module object first. There are no methods initially, all are
// added dynamically in actual code only. Also no "__doc__" is initially
// set at this time, as it could not contain NUL characters this way, they
// are instead set in early module code. No "self" for modules, we have no
// use for it.
#if PYTHON_VERSION < 300
module_pip$_vendor$html5lib$trie$_base = Py_InitModule4(
"pip._vendor.html5lib.trie._base", // Module Name
NULL, // No methods initially, all are added
// dynamically in actual module code only.
NULL, // No __doc__ is initially set, as it could
// not contain NUL this way, added early in
// actual code.
NULL, // No self for modules, we don't use it.
PYTHON_API_VERSION
);
#else
module_pip$_vendor$html5lib$trie$_base = PyModule_Create( &mdef_pip$_vendor$html5lib$trie$_base );
#endif
moduledict_pip$_vendor$html5lib$trie$_base = (PyDictObject *)((PyModuleObject *)module_pip$_vendor$html5lib$trie$_base)->md_dict;
CHECK_OBJECT( module_pip$_vendor$html5lib$trie$_base );
// Seems to work for Python2.7 out of the box, but for Python3, the module
// doesn't automatically enter "sys.modules", so do it manually.
#if PYTHON_VERSION >= 300
{
int r = PyObject_SetItem( PySys_GetObject( (char *)"modules" ), const_str_digest_c822e7f07b67a4d0c0b00eb911b93f9c, module_pip$_vendor$html5lib$trie$_base );
assert( r != -1 );
}
#endif
// For deep importing of a module we need to have "__builtins__", so we set
// it ourselves in the same way than CPython does. Note: This must be done
// before the frame object is allocated, or else it may fail.
PyObject *module_dict = PyModule_GetDict( module_pip$_vendor$html5lib$trie$_base );
if ( PyDict_GetItem( module_dict, const_str_plain___builtins__ ) == NULL )
{
PyObject *value = (PyObject *)builtin_module;
// Check if main module, not a dict then.
#if !defined(_NUITKA_EXE) || !0
value = PyModule_GetDict( value );
#endif
#ifndef __NUITKA_NO_ASSERT__
int res =
#endif
PyDict_SetItem( module_dict, const_str_plain___builtins__, value );
assert( res == 0 );
}
#if PYTHON_VERSION >= 330
PyDict_SetItem( module_dict, const_str_plain___loader__, metapath_based_loader );
#endif
// Temp variables if any
PyObject *tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases = NULL;
PyObject *tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict = NULL;
PyObject *tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass = NULL;
PyObject *tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared = NULL;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = -1;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_args_name_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_bases_name_1;
PyObject *tmp_called_name_1;
int tmp_cmp_In_1;
int tmp_cmp_In_2;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_dict_name_1;
PyObject *tmp_dictdel_dict;
PyObject *tmp_dictdel_key;
PyObject *tmp_hasattr_attr_1;
PyObject *tmp_hasattr_source_1;
PyObject *tmp_import_globals_1;
PyObject *tmp_import_name_from_1;
PyObject *tmp_key_name_1;
PyObject *tmp_kw_name_1;
PyObject *tmp_metaclass_name_1;
int tmp_res;
bool tmp_result;
PyObject *tmp_source_name_1;
PyObject *tmp_subscribed_name_1;
PyObject *tmp_subscript_name_1;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_type_arg_1;
PyFrameObject *frame_module;
// Module code.
tmp_assign_source_1 = Py_None;
UPDATE_STRING_DICT0( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain___doc__, tmp_assign_source_1 );
tmp_assign_source_2 = const_str_digest_86bc653776848d435522df251a1f0871;
UPDATE_STRING_DICT0( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain___file__, tmp_assign_source_2 );
tmp_assign_source_3 = Py_None;
UPDATE_STRING_DICT0( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain___cached__, tmp_assign_source_3 );
tmp_assign_source_4 = const_str_digest_e0919bb352f94bf195e875d55537135d;
UPDATE_STRING_DICT0( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain___package__, tmp_assign_source_4 );
tmp_assign_source_5 = PyObject_GetAttrString(PyImport_ImportModule("__future__"), "absolute_import");
UPDATE_STRING_DICT0( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain_absolute_import, tmp_assign_source_5 );
tmp_assign_source_6 = PyObject_GetAttrString(PyImport_ImportModule("__future__"), "division");
UPDATE_STRING_DICT0( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain_division, tmp_assign_source_6 );
tmp_assign_source_7 = PyObject_GetAttrString(PyImport_ImportModule("__future__"), "unicode_literals");
UPDATE_STRING_DICT0( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain_unicode_literals, tmp_assign_source_7 );
// Frame without reuse.
frame_module = MAKE_MODULE_FRAME( codeobj_c7aa2a75c9b236062c0b0f965989b750, module_pip$_vendor$html5lib$trie$_base );
// Push the new frame as the currently active one, and we should be exclusively
// owning it.
pushFrameStack( frame_module );
assert( Py_REFCNT( frame_module ) == 1 );
#if PYTHON_VERSION >= 340
frame_module->f_executing += 1;
#endif
// Framed code:
tmp_import_globals_1 = ((PyModuleObject *)module_pip$_vendor$html5lib$trie$_base)->md_dict;
frame_module->f_lineno = 3;
tmp_import_name_from_1 = IMPORT_MODULE( const_str_plain_collections, tmp_import_globals_1, tmp_import_globals_1, const_tuple_str_plain_Mapping_tuple, const_int_0 );
if ( tmp_import_name_from_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 3;
goto frame_exception_exit_1;
}
tmp_assign_source_8 = IMPORT_NAME( tmp_import_name_from_1, const_str_plain_Mapping );
Py_DECREF( tmp_import_name_from_1 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 3;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain_Mapping, tmp_assign_source_8 );
// Tried code:
tmp_assign_source_9 = PyTuple_New( 1 );
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain_Mapping );
if (unlikely( tmp_tuple_element_1 == NULL ))
{
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_Mapping );
}
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_assign_source_9 );
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "Mapping" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 6;
goto try_except_handler_1;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_assign_source_9, 0, tmp_tuple_element_1 );
assert( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases == NULL );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases = tmp_assign_source_9;
tmp_assign_source_10 = PyDict_New();
assert( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict == NULL );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict = tmp_assign_source_10;
tmp_compare_left_1 = const_str_plain_metaclass;
tmp_compare_right_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict;
tmp_cmp_In_1 = PySequence_Contains( tmp_compare_right_1, tmp_compare_left_1 );
assert( !(tmp_cmp_In_1 == -1) );
if ( tmp_cmp_In_1 == 1 )
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_dict_name_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict;
tmp_key_name_1 = const_str_plain_metaclass;
tmp_metaclass_name_1 = DICT_GET_ITEM( tmp_dict_name_1, tmp_key_name_1 );
if ( tmp_metaclass_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
goto condexpr_end_1;
condexpr_false_1:;
tmp_cond_value_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
if ( tmp_cond_truth_1 == 1 )
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_subscribed_name_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases;
tmp_subscript_name_1 = const_int_0;
tmp_type_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_1, tmp_subscript_name_1 );
if ( tmp_type_arg_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
tmp_metaclass_name_1 = BUILTIN_TYPE1( tmp_type_arg_1 );
Py_DECREF( tmp_type_arg_1 );
if ( tmp_metaclass_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
goto condexpr_end_2;
condexpr_false_2:;
tmp_metaclass_name_1 = LOOKUP_BUILTIN( const_str_plain_type );
assert( tmp_metaclass_name_1 != NULL );
Py_INCREF( tmp_metaclass_name_1 );
condexpr_end_2:;
condexpr_end_1:;
tmp_bases_name_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases;
tmp_assign_source_11 = SELECT_METACLASS( tmp_metaclass_name_1, tmp_bases_name_1 );
if ( tmp_assign_source_11 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_metaclass_name_1 );
exception_lineno = 6;
goto try_except_handler_1;
}
Py_DECREF( tmp_metaclass_name_1 );
assert( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass == NULL );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass = tmp_assign_source_11;
tmp_compare_left_2 = const_str_plain_metaclass;
tmp_compare_right_2 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict;
tmp_cmp_In_2 = PySequence_Contains( tmp_compare_right_2, tmp_compare_left_2 );
assert( !(tmp_cmp_In_2 == -1) );
if ( tmp_cmp_In_2 == 1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_dictdel_dict = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict;
tmp_dictdel_key = const_str_plain_metaclass;
tmp_result = DICT_REMOVE_ITEM( tmp_dictdel_dict, tmp_dictdel_key );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
branch_no_1:;
tmp_hasattr_source_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass;
tmp_hasattr_attr_1 = const_str_plain___prepare__;
tmp_res = PyObject_HasAttr( tmp_hasattr_source_1, tmp_hasattr_attr_1 );
if ( tmp_res == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
if ( tmp_res == 1 )
{
goto condexpr_true_3;
}
else
{
goto condexpr_false_3;
}
condexpr_true_3:;
tmp_source_name_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass;
tmp_called_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain___prepare__ );
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
tmp_args_name_1 = PyTuple_New( 2 );
tmp_tuple_element_2 = const_str_plain_Trie;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_args_name_1, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_args_name_1, 1, tmp_tuple_element_2 );
tmp_kw_name_1 = tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict;
frame_module->f_lineno = 6;
tmp_assign_source_12 = CALL_FUNCTION( tmp_called_name_1, tmp_args_name_1, tmp_kw_name_1 );
Py_DECREF( tmp_called_name_1 );
Py_DECREF( tmp_args_name_1 );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
goto condexpr_end_3;
condexpr_false_3:;
tmp_assign_source_12 = PyDict_New();
condexpr_end_3:;
assert( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared == NULL );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared = tmp_assign_source_12;
tmp_assign_source_13 = impl_class_1_Trie_of_pip$_vendor$html5lib$trie$_base( NULL, tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases, tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict, tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass, tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 6;
goto try_except_handler_1;
}
UPDATE_STRING_DICT1( moduledict_pip$_vendor$html5lib$trie$_base, (Nuitka_StringObject *)const_str_plain_Trie, tmp_assign_source_13 );
goto try_end_1;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = -1;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases = NULL;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict = NULL;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass = NULL;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto frame_exception_exit_1;
// End of try:
try_end_1:;
// Restore frame exception if necessary.
#if 0
RESTORE_FRAME_EXCEPTION( frame_module );
#endif
popFrameStack();
assertFrameObject( frame_module );
Py_DECREF( frame_module );
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_module );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_module, exception_lineno );
}
else if ( exception_tb->tb_frame != frame_module )
{
PyTracebackObject *traceback_new = MAKE_TRACEBACK( frame_module, exception_lineno );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_module->f_executing -= 1;
#endif
Py_DECREF( frame_module );
// Return the error.
goto module_exception_exit;
frame_no_exception_1:;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__bases = NULL;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__class_decl_dict = NULL;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__metaclass = NULL;
Py_XDECREF( tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared );
tmp_pip$_vendor$html5lib$trie$_base_class_creation_1__prepared = NULL;
return MOD_RETURN_VALUE( module_pip$_vendor$html5lib$trie$_base );
module_exception_exit:
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return MOD_RETURN_VALUE( NULL );
}
|
5c0665756c419306ffd86f86a899aa8042ff94d5 | 6932c21a775e4a180b0d48efb2bd33eb506d70ff | /source/CrazeEngine/Application/Window.cpp | c12e97c13ec76d40733fcfff76d9c5f62f3ebf83 | [] | no_license | lindend/lighting-thesis | 8e42d4cc75212b06a5c7aa17314be9c69088a0d5 | d37f9e2a1409ba716899487f91cb9c474176df5f | refs/heads/master | 2021-01-19T13:52:48.240078 | 2013-01-23T20:45:55 | 2013-01-23T20:45:55 | 35,110,146 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,826 | cpp | Window.cpp | #include "CrazeEngine.h"
#include "Window.h"
#include "StrUtil.hpp"
using namespace Craze;
bool Window::initialize(int width, int height, bool fullscreen, const std::string& wndName, WNDPROC wndProc, int posX, int posY)
{
m_width = width;
m_height = height;
m_fullscreen = fullscreen;
HINSTANCE hinst = reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL));
WNDCLASS wc;
wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
wc.lpfnWndProc = wndProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hinst;
wc.hIcon = LoadIcon(0, IDI_APPLICATION);
wc.hCursor = LoadCursor(0, IDC_ARROW);
wc.hbrBackground = static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH));
wc.lpszMenuName = 0;
std::wstring wname = StrToW(wndName);
wc.lpszClassName = wname.c_str();
if (!RegisterClass(&wc))
{
LOGMSG("Could not register window class", LOGTYPE_CRITICAL);
return false;
}
DWORD style, exstyle;
if (!fullscreen)
{
style = WS_OVERLAPPEDWINDOW;
exstyle = WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
} else
{
style = WS_OVERLAPPEDWINDOW;
exstyle = WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
}
RECT wRect;
wRect.left = posX;
wRect.top = posY;
wRect.right = width + posX;
wRect.bottom = height + posY;
if (AdjustWindowRectEx(&wRect, style, false, exstyle) == 0)
{
char buf[1024];
sprintf_s(buf, 1023, "%s", "Could not adjust window rect ");
FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0, buf + strlen(buf), 900, 0);
LOG_ERROR(buf);
}
m_hwnd = CreateWindowExA(exstyle, wndName.c_str(), wndName.c_str(), style, posX, posY,
wRect.right - wRect.left, wRect.bottom - wRect.top, NULL, NULL, hinst, NULL);
SetWindowTextA(m_hwnd, wndName.c_str());
ShowWindow(m_hwnd, SW_SHOW);
UpdateWindow(m_hwnd);
return true;
} |
d273d163b175608158cd088615c9bd7d7c2a7950 | f7268eb7a9a290369e42e46792465c5a9262604b | /ShadowAdmin/VirtualDesktop.cpp | 1d40de88658cc9c52129a1ddc7971ee7bc319b7f | [] | no_license | mplekunov/ShadowAdmin | c20799a61df414c61973fd799b14a0208151dbf9 | 644f902a25213d643a16cdab49d2efeac95aef82 | refs/heads/master | 2023-06-27T20:11:12.537805 | 2021-07-29T21:59:45 | 2021-07-29T21:59:45 | 390,859,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,459 | cpp | VirtualDesktop.cpp | #include "VirtualDesktop.h"
#include "MKControls.h"
#include <Windows.h>
void VirtualDesktop::createVirtualDesktop()
{
SendKeyboardInput(1, VK_CONTROL);
SendKeyboardInput(1, VK_LWIN);
SendKeyboardInput(1, VkKeyScanA('d'));
SendKeyboardInput(1, VK_CONTROL, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VK_LWIN, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VkKeyScanA('d'), KEYEVENTF_KEYUP);
this->numberOfActiveDesktops++;
}
void VirtualDesktop::switchToPreviousVirtualDesktop()
{
SendKeyboardInput(1, VK_CONTROL);
SendKeyboardInput(1, VK_LWIN);
SendKeyboardInput(1, VK_LEFT);
SendKeyboardInput(1, VK_CONTROL, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VK_LWIN, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VK_LEFT, KEYEVENTF_KEYUP);
}
void VirtualDesktop::switchToNextVirtualDesktop()
{
SendKeyboardInput(1, VK_CONTROL);
SendKeyboardInput(1, VK_LWIN);
SendKeyboardInput(1, VK_RIGHT);
SendKeyboardInput(1, VK_CONTROL, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VK_LWIN, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VK_RIGHT, KEYEVENTF_KEYUP);
}
int VirtualDesktop::getNumberOfActiveDesktops()
{
return this->numberOfActiveDesktops;
}
void VirtualDesktop::closeVirtualDesktop()
{
SendKeyboardInput(1, VK_CONTROL);
SendKeyboardInput(1, VK_LWIN);
SendKeyboardInput(1, VK_F4);
SendKeyboardInput(1, VK_CONTROL, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VK_LWIN, KEYEVENTF_KEYUP);
SendKeyboardInput(1, VK_F4, KEYEVENTF_KEYUP);
this->numberOfActiveDesktops--;
}
|
2063c0bf54d32d6d633e4c97d7f7876a2938728e | ca2da489663b5542899248ee0fe926b69cc522c6 | /common/include/xhn_static_string.hpp | 48324cbc74c9761683a5d4ca230cff4074242369 | [] | no_license | xhnsworks/v-engine | 13cf7efb658c459af00fb1f717e2febfd68cffd9 | e2e4d8c82b62d8c15e8d782324895a25759abf4c | refs/heads/master | 2020-05-18T07:29:52.717821 | 2013-06-10T07:28:21 | 2013-06-10T07:28:21 | 9,581,230 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,209 | hpp | xhn_static_string.hpp | #ifndef XHN_STATIC_STRING_H
#define XHN_STATIC_STRING_H
#include "common.h"
#include "etypes.h"
#include "xhn_hash_set.hpp"
#include "xhn_string.hpp"
namespace xhn
{
class static_string
{
private:
static hash_set<string> s_static_string_set;
private:
const char *m_str;
public:
static_string ( const char *str ) {
string value ( str );
const string &v = s_static_string_set.insert ( value );
m_str = v.c_str();
}
static_string ( const static_string& str ) {
m_str = str.m_str;
}
static_string () {
string value ( "" );
const string &v = s_static_string_set.insert ( value );
m_str = v.c_str();
}
const char *c_str() const {
return m_str;
}
bool operator < ( const static_string &str ) const {
return m_str < str.m_str;
}
bool operator > ( const static_string &str ) const {
return m_str > str.m_str;
}
bool operator == ( const static_string &str ) const {
return m_str == str.m_str;
}
bool operator != ( const static_string &str ) const {
return m_str != str.m_str;
}
euint size() const {
return strlen(m_str);
}
};
}
#endif
|
2023c1eeda48cf48925675a7cd1d9a1636debf86 | eb7b4d9a67ebb74c881afaf4c435a59d4ce02406 | /include/booltrie/is.h++ | a832f285da2b97eaeb6a3460352cf9135ef09779 | [] | no_license | rmartinho/uniprop | f91688ad350767eed6827fb3eba41a7d8d6c89f9 | d19cde773eedea9884b32c2c25bc2b0174708c25 | refs/heads/master | 2020-04-26T23:07:06.672279 | 2019-03-10T07:41:01 | 2019-03-10T07:41:01 | 173,892,741 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 261,924 | is.h++ | #pragma once
#include <common/general_category.h++>
#include <common/structs.h++>
namespace sg16 {
namespace booltrie {
template <general_category Cat>
constexpr auto table_for = nullptr;
template <>
constexpr bool_trie table_for<general_category::c> = {
{
0x00000000ffffffff, 0x8000000000000000, 0x00002000ffffffff, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0300000000000000, 0x000000040000280f, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0001000000000000, 0x0000000001800000, 0x0000000000011800, 0xffe078000000ff00,
0x000000003000003f, 0x0000000000000000, 0x0000000000000000, 0x0000000020000000,
0x000000000000c000, 0x0000000000001800, 0xfffc000000000000, 0x1800000000000000
},
{
0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 4, 27, 28, 29, 4, 4, 4, 30, 4, 4, 4, 4, 4, 31, 32, 33, 34, 35, 36, 37, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 38, 39, 40, 41, 4, 42, 43, 39, 44, 45, 46, 47, 48, 49, 50, 51,
52, 53, 4, 54, 4, 55, 56, 57, 58, 59, 4, 4, 4, 60, 4, 4, 4, 4, 61, 62, 63, 64, 65, 66,
67, 68, 4, 4, 69, 4, 4, 4, 4, 4, 4, 4, 4, 4, 70, 71, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 72, 73, 74, 75, 76, 4, 77, 78, 79, 80, 81,
4, 82, 83, 84, 4, 4, 4, 85, 4, 86, 87, 4, 88, 4, 89, 90, 76, 4, 4, 91, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 45, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 92, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 93, 94, 4, 4, 4, 4, 95, 4, 4, 96, 4, 4, 97, 98,
99, 96, 4, 100, 4, 101, 4, 102, 103, 104, 4, 105, 106, 107, 4, 108, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 90, 109, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 53,
53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 4, 4, 4, 4, 4, 110, 4, 111, 112, 113, 4,
114, 4, 4, 4, 4, 4, 115, 116, 117, 36, 118, 4, 119, 86, 4, 91, 120
},
{
0x8000c00000000000, 0xfffff800b0000000, 0xc0200000ffffffff, 0x000000040007ffff,
0x0000000000000000, 0x0c3a020000066010, 0x800000304f7f8660, 0x2c92020000067811,
0xff80003fa1fdc678, 0x0c12020000044011, 0x01fc0030fffec440, 0x0c12020000066011,
0xff0000304f3fc660, 0x3c0038e729c23813, 0xf800003fff7ec238, 0x1c00020000022000,
0x00ff0030f89fc220, 0x0c10020000022000, 0xfff90030bf9fc220, 0x0000000000022010,
0x00000030000f0220, 0xd004000003800013, 0xffe3003f00a07b80, 0x7800000000000001,
0xfffffffff0000000, 0xc4001351010fda69, 0xffffffff0c00c0a0, 0x0001e00000000100,
0x2000000001000000, 0xfffffffff8002000, 0x000000000000df40, 0x00000000c280c200,
0x80c200000000c200, 0x00000000008000c2, 0x0000000000c20000, 0xe000000018000000,
0x00000000fc000000, 0xc0c0000000000000, 0x00000000e0000000, 0xfe00000000000000,
0xff800000ffe02000, 0xfff22000fff00000, 0xfc00fc00c0000000, 0x00000000fc00c000,
0x0000f80000000000, 0xffc0000000000000, 0xf000f00080000000, 0xffe0c0000000000e,
0x0000f00000000000, 0x000000003800fc00, 0x0000000030000000, 0x6000000080000000,
0x8000c000fc00fc00, 0xffffffffffffffff, 0xe00000000000f000, 0x0ff0000000000000,
0x0700000000000000, 0x0000000000001c00, 0x180000000000fe00, 0xfc0000000000ff00,
0x0400000000000000, 0x00000000c0c00000, 0xc00000005500c0c0, 0x0020000000000000,
0x8023000010300020, 0x00007c000000f800, 0x000cffff00000000, 0x00000000e0008000,
0xfffe00000000ffff, 0x000000000000f000, 0xffffff8000000000, 0x00000000fffff800,
0x0030000000000000, 0x0000000000c00000, 0x8000000000000200, 0x0000800000000000,
0x0000000080000000, 0x01f0000000000000, 0x0000df4000000000, 0x7ffe7f0000000000,
0x80808080ff800000, 0x0000000080808080, 0xffffffffffff8000, 0x0000000004000000,
0xfff0000000000000, 0xf000ffffffc00000, 0x0000000000000001, 0x0000000001800000,
0x000100000000001f, 0xf800000000008000, 0x0000fff000000000, 0x8000000000000000,
0xffff000000000000, 0x000000000000e000, 0x000000000000ff80, 0xfffff00000000000,
0xff00000000000000, 0xfc00000000000000, 0x007fffffffffffff, 0xfc00f00000000000,
0x00000000fc003fc0, 0xe00000007ff00000, 0x800000003c004000, 0xff80000000000000,
0x000000000c00c000, 0xff80000007fffff8, 0x00008080ff818181, 0x0000ffc000000000,
0xfc00c00000000000, 0xf000000000000780, 0x0000c00000000000, 0xfffffffffc000000,
0xa08000001f07ff80, 0x0000000000000024, 0x000000000007fffc, 0x000000000000ffff,
0x0000000000030000, 0xc000ffffffffff00, 0x0020f08000080000, 0xe000000000000000,
0xcfff8080e3030303
},
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 5, 9, 5, 10, 11, 12, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 13, 14,
15, 7, 16, 17, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 18, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
},
{
0, 1, 2, 3, 4, 2, 5, 6, 7, 7, 8, 9, 10, 11, 12, 13, 2, 2, 14, 15, 16, 17, 7, 7, 2, 2, 2,
2, 18, 19, 7, 7, 20, 21, 22, 23, 24, 7, 25, 26, 27, 28, 29, 30, 31, 32, 33, 7, 2, 34,
35, 36, 37, 7, 7, 7, 7, 38, 7, 7, 16, 39, 7, 7, 2, 40, 41, 42, 43, 44, 2, 45, 46, 7, 47,
48, 49, 50, 7, 7, 2, 51, 2, 52, 7, 7, 53, 54, 2, 55, 56, 57, 58, 7, 7, 7, 59, 7, 60, 61,
7, 7, 7, 7, 2, 62, 63, 64, 7, 7, 7, 7, 65, 66, 67, 7, 68, 69, 70, 7, 7, 7, 7, 71, 7, 7,
7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 39, 7, 2, 72, 2, 2, 2, 73, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 74, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 75, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 2, 2, 2, 2, 2, 2, 2, 2, 64, 76, 7, 77, 2, 78, 79, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2,
80, 7, 2, 81, 82, 83, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 84, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 35, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 85, 86, 2, 2, 2, 2,
2, 59, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 87, 88, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2,
89, 90, 91, 2, 92, 2, 93, 7, 94, 2, 95, 7, 7, 2, 96, 97, 98, 99, 100, 2, 2, 2, 2, 101,
2, 2, 2, 2, 102, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 103, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 104, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 105, 2, 106, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 107, 108, 7, 7, 7, 7, 7, 109, 110, 111, 112, 7, 7, 7, 7, 113, 2, 114, 115, 116, 113,
117, 118, 119, 120, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 121, 2, 122, 2,
123, 124, 125, 126, 7, 127, 128, 129, 130, 7, 131, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 132, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 108, 2, 2, 2, 133, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 134, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 135, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 54, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 136, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7
},
{
0x4800008000001000, 0xffffffffc000c000, 0x0000000000000000, 0xf800000000000000,
0x0070000000000078, 0xfffffffef0008000, 0xc00000000000ffff, 0xffffffffffffffff,
0x00000000e0000000, 0xf0000000fffe0000, 0x00001ff000000000, 0xf80000000000f800,
0x0000000040000000, 0xffffffffffc000f0, 0x0000fc00c0000000, 0xf000000000f00000,
0x0000ff0000000000, 0xffff7ff000000000, 0xff80000000000000, 0xffffff00ffc00000,
0x6e400000000002c0, 0x0000000000400000, 0xffff007f80000000, 0x07c80000ffffffff,
0x7c00000070000000, 0x0f00000000000000, 0x0000000000030000, 0x78c0000001100f90,
0x00000000fe00fe00, 0xffffffff00000000, 0xff80078000000000, 0x01c0000000000000,
0x00f8000000c00000, 0xffff01ffe1fc0000, 0xfffffffffffffe00, 0xfff8000000000000,
0x03f8000000000000, 0xfc00ff0000000000, 0x80000000ffffffff, 0xfffffffffc000000,
0x7fff00000003c000, 0x2000000000000000, 0xfc00fe000000fffc, 0x0020000000000000,
0xff8000000000ff80, 0xffe000010000c000, 0x8000000000040000, 0x0000fc0040004280,
0xfc00f80000000000, 0x0412020000066010, 0xffe0e0301f7ec660, 0xffffffff94000000,
0xfffffffffc00ff00, 0x00c0000000000000, 0xffffffffc0000000, 0xffffe000fc00ffe0,
0xff00000000000000, 0xfffffffffffffc00, 0x0000f00018000000, 0xf000000000000000,
0x00000000ffffffff, 0x7ff8000000000000, 0x000000000000ff00, 0xfffffff800000030,
0xfe00000000000000, 0x0080000000000200, 0x0000e0000000ffc0, 0xff80010000030000,
0x4b80000000000480, 0x00000240fc00ff00, 0xfffffc00fe048000, 0xfe000000ffffffff,
0xffe0800000000000, 0xfffffffffffffff0, 0xffff800000000000, 0xffffffffffffff80,
0xffff3c0080000000, 0xffc0c0000000ffff, 0x1f0000040400ffc0, 0xffffffffffff0000,
0xfffffffff8000000, 0x800000000000ffe0, 0xffffffff00007fff, 0xfffffffcffffffff,
0xfffc000000000000, 0xffffffff80000000, 0x0000ffffffffffff, 0xe000f80000000000,
0xffffffff0c00fe00, 0xffc0000000000000, 0x0000018000000000, 0x07f8000000000000,
0xfffffe0000000000, 0xffffffffffffffc0, 0xfff00000ffffffff, 0xfe000000ff800000,
0x0000000000200000, 0x1400219b20000000, 0x0000000000000010, 0x8400000020201840,
0x00000000000203a0, 0x000000c000000000, 0x0000000000003000, 0xffff000107fff000,
0xfffff82406000080, 0xffffffffff800060, 0xffffffff3c00f800, 0x0001ffffffffffff,
0xffe0000000000000, 0xf508016900000010, 0xa10808695569157b, 0xf0000411f0000400,
0xfffcffffffffffff, 0x0000f00000000000, 0x00018000fff00000, 0xffc0000000010001,
0x000000000000e000, 0xffffe00000000000, 0x0000003fffffffff, 0xf00000000000fff8,
0xffffffc0fffcfe00, 0xfc00e000ffe00000, 0xfff0000000000000, 0xfffffffffe000000,
0x000000000000f000, 0x00000000fc00ff00, 0xffffc0000000ff00, 0x800000000000f000,
0x0b86000000000000, 0xfc00fff800000000, 0x000000000000fff8, 0xffffc000ffffffff,
0xffffffffff800000, 0x00000000c0000000, 0x0000fffc00000000, 0xfffffffe00000000,
0xffff000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::cc> = {
{
0x00000000ffffffff, 0x8000000000000000, 0x00000000ffffffff, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::cf> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000200000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x000000001000003f, 0x0000000000000000, 0x0000000000000000, 0x0000000020000000,
0x0000000000008000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 5, 0, 0, 0, 6
},
{
0x0000000000000000, 0x0000000400000000, 0x0000000000004000, 0x00007c000000f800,
0x0000ffdf00000000, 0x8000000000000000, 0x0e00000000000000
},
{
0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0
},
{
0x0000000000000000, 0x2000000000000000, 0x0000000000002000, 0x0000000f00000000,
0x07f8000000000000, 0xffffffff00000002, 0xffffffffffffffff
},
};
template <>
constexpr bool_trie table_for<general_category::cn> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0300000000000000, 0x000000040000280f, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0001000000000000, 0x0000000001800000, 0x0000000000011800, 0xffe078000000ff00,
0x0000000020000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000004000, 0x0000000000001800, 0xfffc000000000000, 0x1800000000000000
},
{
0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 4, 27, 28, 29, 4, 4, 4, 30, 4, 4, 4, 4, 4, 31, 32, 33, 34, 35, 36, 37, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 38, 39, 40, 41, 4, 42, 43, 39, 44, 45, 46, 47, 48, 49, 50, 51,
52, 53, 4, 54, 4, 55, 56, 57, 58, 59, 4, 4, 4, 60, 4, 4, 4, 4, 61, 62, 63, 64, 4, 65,
66, 67, 4, 4, 68, 4, 4, 4, 4, 4, 4, 4, 4, 4, 69, 70, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 71, 72, 73, 74, 75, 4, 76, 77, 78, 79, 80,
4, 81, 82, 83, 4, 4, 4, 84, 4, 85, 86, 4, 87, 4, 88, 89, 75, 4, 4, 90, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 45, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 91, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 92, 93, 4, 4, 4, 4, 94, 4, 4, 95, 4, 4, 96, 97,
98, 95, 4, 99, 4, 100, 4, 101, 102, 103, 4, 104, 105, 106, 4, 107, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 89, 108, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 109, 4, 110, 111, 112, 4, 113, 4, 4,
4, 4, 4, 114, 115, 116, 36, 117, 4, 118, 85, 4, 90, 119
},
{
0x8000c00000000000, 0xfffff800b0000000, 0xc0200000ffffffff, 0x000000000007ffff,
0x0000000000000000, 0x0c3a020000066010, 0x800000304f7f8660, 0x2c92020000067811,
0xff80003fa1fdc678, 0x0c12020000044011, 0x01fc0030fffec440, 0x0c12020000066011,
0xff0000304f3fc660, 0x3c0038e729c23813, 0xf800003fff7ec238, 0x1c00020000022000,
0x00ff0030f89fc220, 0x0c10020000022000, 0xfff90030bf9fc220, 0x0000000000022010,
0x00000030000f0220, 0xd004000003800013, 0xffe3003f00a07b80, 0x7800000000000001,
0xfffffffff0000000, 0xc4001351010fda69, 0xffffffff0c00c0a0, 0x0001e00000000100,
0x2000000001000000, 0xfffffffff8002000, 0x000000000000df40, 0x00000000c280c200,
0x80c200000000c200, 0x00000000008000c2, 0x0000000000c20000, 0xe000000018000000,
0x00000000fc000000, 0xc0c0000000000000, 0x00000000e0000000, 0xfe00000000000000,
0xff800000ffe02000, 0xfff22000fff00000, 0xfc00fc00c0000000, 0x00000000fc008000,
0x0000f80000000000, 0xffc0000000000000, 0xf000f00080000000, 0xffe0c0000000000e,
0x0000f00000000000, 0x000000003800fc00, 0x0000000030000000, 0x6000000080000000,
0x8000c000fc00fc00, 0xffffffffffffffff, 0xe00000000000f000, 0x0ff0000000000000,
0x0700000000000000, 0x0000000000001c00, 0x180000000000fe00, 0xfc0000000000ff00,
0x0400000000000000, 0x00000000c0c00000, 0xc00000005500c0c0, 0x0020000000000000,
0x8023000010300020, 0x000c002000000000, 0x00000000e0008000, 0xfffe00000000ffff,
0x000000000000f000, 0xffffff8000000000, 0x00000000fffff800, 0x0030000000000000,
0x0000000000c00000, 0x8000000000000200, 0x0000800000000000, 0x0000000080000000,
0x01f0000000000000, 0x0000df4000000000, 0x7ffe7f0000000000, 0x80808080ff800000,
0x0000000080808080, 0xffffffffffff8000, 0x0000000004000000, 0xfff0000000000000,
0xf000ffffffc00000, 0x0000000000000001, 0x0000000001800000, 0x000100000000001f,
0xf800000000008000, 0x0000fff000000000, 0x8000000000000000, 0xffff000000000000,
0x000000000000e000, 0x000000000000ff80, 0xfffff00000000000, 0xff00000000000000,
0xfc00000000000000, 0x007fffffffffffff, 0xfc00f00000000000, 0x00000000fc003fc0,
0xe00000007ff00000, 0x800000003c004000, 0xff80000000000000, 0x000000000c00c000,
0xff80000007fffff8, 0x00008080ff818181, 0x0000ffc000000000, 0xfc00c00000000000,
0xf000000000000780, 0x0000c00000000000, 0xfffffffffc000000, 0xa08000001f07ff80,
0x0000000000000024, 0x000000000007fffc, 0x000000000000ffff, 0x0000000000030000,
0xc000ffffffffff00, 0x0020f08000080000, 0x6000000000000000, 0xc1ff8080e3030303
},
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 5, 9, 5, 10, 11, 12, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 13, 14,
15, 7, 16, 17, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 18, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 19, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 19
},
{
0, 1, 2, 3, 4, 2, 5, 6, 7, 7, 8, 9, 10, 11, 12, 13, 2, 2, 14, 15, 16, 17, 7, 7, 2, 2, 2,
2, 18, 19, 7, 7, 20, 21, 22, 23, 24, 7, 25, 26, 27, 28, 29, 30, 31, 32, 33, 7, 2, 34,
35, 36, 37, 7, 7, 7, 7, 38, 7, 7, 16, 39, 7, 7, 2, 40, 2, 41, 42, 43, 2, 44, 45, 7, 46,
47, 48, 49, 7, 7, 2, 50, 2, 51, 7, 7, 52, 53, 2, 54, 55, 56, 57, 7, 7, 7, 58, 7, 59, 60,
7, 7, 7, 7, 2, 61, 62, 63, 7, 7, 7, 7, 64, 65, 66, 7, 67, 68, 69, 7, 7, 7, 7, 70, 7, 7,
7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 39, 7, 2, 71, 2, 2, 2, 72, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 73, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 74, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 2, 2, 2, 2, 2, 2, 2, 2, 63, 75, 7, 76, 2, 77, 78, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2,
79, 7, 2, 80, 81, 82, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 83, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 35, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 84, 85, 2, 2, 2, 2,
2, 58, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 86, 87, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2,
88, 89, 2, 2, 90, 2, 91, 7, 92, 2, 93, 7, 7, 2, 94, 95, 96, 97, 98, 2, 2, 2, 2, 99, 2,
2, 2, 2, 100, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 101, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 102, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 103, 2, 104, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
105, 106, 7, 7, 7, 7, 7, 107, 108, 109, 110, 7, 7, 7, 7, 111, 2, 112, 113, 114, 111,
115, 116, 117, 118, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 119, 2, 120, 2,
121, 122, 123, 124, 7, 125, 126, 127, 128, 7, 129, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 130, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 106, 2, 2, 2, 131, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 132, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 133, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 53, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 134, 2, 7, 7, 2, 2, 2, 135, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 136
},
{
0x4800008000001000, 0xffffffffc000c000, 0x0000000000000000, 0xf800000000000000,
0x0070000000000078, 0xfffffffef0008000, 0xc00000000000ffff, 0xffffffffffffffff,
0x00000000e0000000, 0xf0000000fffe0000, 0x00001ff000000000, 0xf80000000000f800,
0x0000000040000000, 0xffffffffffc000f0, 0x0000fc00c0000000, 0xf000000000f00000,
0x0000ff0000000000, 0xffff7ff000000000, 0xff80000000000000, 0xffffff00ffc00000,
0x6e400000000002c0, 0x0000000000400000, 0xffff007f80000000, 0x07c80000ffffffff,
0x7c00000070000000, 0x0f00000000000000, 0x0000000000030000, 0x78c0000001100f90,
0x00000000fe00fe00, 0xffffffff00000000, 0xff80078000000000, 0x01c0000000000000,
0x00f8000000c00000, 0xffff01ffe1fc0000, 0xfffffffffffffe00, 0xfff8000000000000,
0x03f8000000000000, 0xfc00ff0000000000, 0x80000000ffffffff, 0xfffffffffc000000,
0x7fff00000003c000, 0xfc00fe000000dffc, 0x0020000000000000, 0xff8000000000ff80,
0xffe000010000c000, 0x8000000000040000, 0x0000fc0040004280, 0xfc00f80000000000,
0x0412020000066010, 0xffe0e0301f7ec660, 0xffffffff94000000, 0xfffffffffc00ff00,
0x00c0000000000000, 0xffffffffc0000000, 0xffffe000fc00ffe0, 0xff00000000000000,
0xfffffffffffffc00, 0x0000f00018000000, 0xf000000000000000, 0x00000000ffffffff,
0x7ff8000000000000, 0x000000000000ff00, 0xfffffff800000030, 0xfe00000000000000,
0x0080000000000200, 0x0000e0000000ffc0, 0xff80010000030000, 0x4b80000000000480,
0x00000240fc00ff00, 0xfffffc00fe048000, 0xfe000000ffffffff, 0xffe0800000000000,
0xfffffffffffffff0, 0xffff800000000000, 0xffffffffffffff80, 0xffff3c0080000000,
0xffc0c0000000ffff, 0x1f0000040400ffc0, 0xffffffffffff0000, 0xfffffffff8000000,
0x800000000000ffe0, 0xffffffff00007fff, 0xfffffffcffffffff, 0xfffc000000000000,
0xffffffff80000000, 0x0000ffffffffffff, 0xe000f80000000000, 0xfffffff00c00fe00,
0xffc0000000000000, 0x0000018000000000, 0xfffffe0000000000, 0xffffffffffffffc0,
0xfff00000ffffffff, 0xfe000000ff800000, 0x0000000000200000, 0x1400219b20000000,
0x0000000000000010, 0x8400000020201840, 0x00000000000203a0, 0x000000c000000000,
0x0000000000003000, 0xffff000107fff000, 0xfffff82406000080, 0xffffffffff800060,
0xffffffff3c00f800, 0x0001ffffffffffff, 0xffe0000000000000, 0xf508016900000010,
0xa10808695569157b, 0xf0000411f0000400, 0xfffcffffffffffff, 0x0000f00000000000,
0x00018000fff00000, 0xffc0000000010001, 0x000000000000e000, 0xffffe00000000000,
0x0000003fffffffff, 0xf00000000000fff8, 0xffffffc0fffcfe00, 0xfc00e000ffe00000,
0xfff0000000000000, 0xfffffffffe000000, 0x000000000000f000, 0x00000000fc00ff00,
0xffffc0000000ff00, 0x800000000000f000, 0x0b86000000000000, 0xfc00fff800000000,
0x000000000000fff8, 0xffffc000ffffffff, 0xffffffffff800000, 0x00000000c0000000,
0x0000fffc00000000, 0xfffffffe00000000, 0x00000000fffffffd, 0xffff000000000000,
0xc000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::co> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0xffffffffffffffff
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2
},
{
0x0000000000000000, 0xffffffffffffffff, 0x3fffffffffffffff
},
};
template <>
constexpr bool_trie table_for<general_category::l> = {
{
0x0000000000000000, 0x07fffffe07fffffe, 0x0420040000000000, 0xff7fffffff7fffff,
0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff,
0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0x0000501f0003ffc3,
0x0000000000000000, 0xbcdf000000000000, 0xfffffffbffffd740, 0xffbfffffffffffff,
0xffffffffffffffff, 0xffffffffffffffff, 0xfffffffffffffc03, 0xffffffffffffffff,
0xfffeffffffffffff, 0xffffffff027fffff, 0x00000000000001ff, 0x000787ffffff0000,
0xffffffff00000000, 0xfffec000000007ff, 0xffffffffffffffff, 0x9c00c060002fffff,
0x0000fffffffd0000, 0xffffffffffffe000, 0x0002003fffffffff, 0x043007fffffffc00
},
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 23, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33, 34, 34, 34, 34, 34, 35, 36, 37, 38, 39,
40, 41, 42, 34, 34, 34, 34, 34, 34, 34, 34, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, 56, 57, 58, 59, 60, 3, 61, 62, 63, 64, 65, 66, 67, 68, 34, 34, 34, 3, 34, 34,
34, 34, 69, 70, 71, 72, 3, 73, 74, 3, 75, 76, 77, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 78,
79, 34, 80, 81, 82, 83, 84, 85, 3, 3, 3, 3, 3, 3, 3, 86, 42, 87, 88, 89, 34, 90, 91, 3,
3, 3, 3, 3, 3, 3, 3, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 53, 3, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 92, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 93, 94, 34, 34, 34, 34, 95,
96, 97, 64, 98, 34, 99, 100, 101, 48, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
112, 113, 34, 114, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 115, 116, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 34, 34, 34, 34, 34,
117, 34, 118, 119, 120, 121, 122, 34, 34, 34, 34, 123, 124, 125, 126, 3, 127, 34, 128,
129, 130, 131, 132
},
{
0x00000110043fffff, 0x000007ff01ffffff, 0x3fdfffff00000000, 0x0000000000000000,
0x23fffffffffffff0, 0xfffe0003ff010000, 0x23c5fdfffff99fe1, 0x10030003b0004000,
0x036dfdfffff987e0, 0x001c00005e000000, 0x23edfdfffffbbfe0, 0x0200000300010000,
0x23edfdfffff99fe0, 0x00020003b0000000, 0x03ffc718d63dc7e8, 0x0000000000010000,
0x23fffdfffffddfe0, 0x0000000307000000, 0x23effdfffffddfe1, 0x0006000340000000,
0x27fffffffffddfe0, 0xfc00000380704000, 0x2ffbfffffc7fffe0, 0x000000000000007f,
0x000dfffffffffffe, 0x200decaefef02596, 0x00000000f000005f, 0x0000000000000001,
0x00001ffffffffeff, 0x0000000000001f00, 0x800007ffffffffff, 0xffe1c0623c3f0000,
0xffffffff00004003, 0xf7ffffffffff20bf, 0xffffffffffffffff, 0xffffffff3d7f3dff,
0x7f3dffffffff3dff, 0xffffffffff7fff3d, 0xffffffffff3dffff, 0x0000000007ffffff,
0xffffffff0000ffff, 0x3f3fffffffffffff, 0xfffffffffffffffe, 0xffff9fffffffffff,
0xffffffff07fffffe, 0x01fe07ffffffffff, 0x0003ffff0003dfff, 0x0001dfff0003ffff,
0x000fffffffffffff, 0x0000000010800000, 0xffffffff00000000, 0x01ffffffffffffff,
0xffff05ffffffff9f, 0x003fffffffffffff, 0x000000007fffffff, 0x001f3fffffff0000,
0xffff0fffffffffff, 0x00000000000003ff, 0xffffffff007fffff, 0x00000000001fffff,
0x0000008000000000, 0x000fffffffffffe0, 0x0000000000000fe0, 0xfc00c001fffffff8,
0x0000003fffffffff, 0x0000000fffffffff, 0x3ffffffffc00e000, 0xe7ffffffffff01ff,
0x0063de0000000000, 0xffffffff3f3fffff, 0x3fffffffaaff3f3f, 0x5fdfffffffffffff,
0x1fdc1fff0fcf1fdc, 0x8002000000000000, 0x000000001fff0000, 0xf3ffbd503e2ffc84,
0x00000000000043e0, 0x0000000000000018, 0xffff7fffffffffff, 0xffffffff7fffffff,
0x000c781fffffffff, 0xffff20bfffffffff, 0x000080ffffffffff, 0x7f7f7f7f007fffff,
0x000000007f7f7f7f, 0x0000800000000000, 0x183e000000000060, 0xfffffffee07fffff,
0xf7ffffffffffffff, 0xfffeffffffffffe0, 0x07ffffff00007fff, 0xffff000000000000,
0x0000ffffffffffff, 0x0000000000001fff, 0x3fffffffffff0000, 0x00000c00ffff1fff,
0x80007fffffffffff, 0xffffffff3fffffff, 0xfffffffcff800000, 0x03fffffffffff9ff,
0xff80000000000000, 0x00000007fffff7bb, 0x000ffffffffffffc, 0x68fc000000000000,
0xffff003ffffffc00, 0x1fffffff0000007f, 0x0007fffffffffff0, 0x7c00ffdf00008000,
0x000001ffffffffff, 0xc47fffff00000ff7, 0x3e62ffffffffffff, 0x001c07ff38000005,
0xffff7f7f007e7e7e, 0xffff003ff7ffffff, 0x00000007ffffffff, 0xffff000fffffffff,
0x0ffffffffffff87f, 0xffff3fffffffffff, 0x0000000003ffffff, 0x5f7ffdffa0f8007f,
0xffffffffffffffdb, 0x0003ffffffffffff, 0xfffffffffff80000, 0x3fffffffffffffff,
0xffffffffffff0000, 0xfffffffffffcffff, 0x0fff0000000000ff, 0xffdf000000000000,
0x1fffffffffffffff, 0x07fffffe00000000, 0xffffffc007fffffe, 0x7fffffffffffffff,
0x000000001cfcfcfc
},
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 5, 9, 5, 10, 11, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 12, 13,
14, 7, 15, 16, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
},
{
0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 5, 6, 7, 8, 9, 10, 2, 2, 11, 12, 13, 14, 4, 4, 2, 2, 2, 2,
15, 16, 4, 4, 17, 18, 19, 20, 21, 4, 22, 4, 23, 24, 25, 26, 27, 28, 29, 4, 2, 30, 31,
31, 14, 4, 4, 4, 4, 4, 4, 4, 32, 33, 4, 4, 34, 4, 35, 36, 37, 38, 39, 40, 41, 4, 42, 19,
43, 44, 4, 4, 45, 46, 47, 48, 4, 4, 49, 50, 47, 51, 52, 4, 53, 4, 4, 4, 54, 4, 55, 56,
4, 4, 4, 4, 57, 58, 59, 60, 4, 4, 4, 4, 61, 62, 63, 4, 64, 65, 66, 4, 4, 4, 4, 67, 4, 4,
4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 68, 4, 4, 4, 2, 2, 2, 69, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 49, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 70, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
2, 2, 2, 2, 2, 2, 2, 2, 60, 19, 4, 71, 47, 72, 63, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 4,
4, 2, 73, 74, 75, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 76, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 31, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 19, 77, 2, 2, 2, 2, 2,
78, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 2, 79, 80, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 81, 82, 83, 84, 85, 2, 2, 2, 2, 86, 87, 88, 89, 90,
91, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 92, 2, 69, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 93, 94, 95, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 96, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 45, 2, 2, 2, 9, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 97, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 98, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 99, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
},
{
0xb7ffff7fffffefff, 0x000000003fff3fff, 0xffffffffffffffff, 0x07ffffffffffffff,
0x0000000000000000, 0xffffffff1fffffff, 0x000000000001ffff, 0xffffe000ffffffff,
0x003fffffffff03fd, 0xffffffff3fffffff, 0x000000000000ff0f, 0xffff00003fffffff,
0x0fffffffff0fffff, 0xffff00ffffffffff, 0x0000000fffffffff, 0x007fffffffffffff,
0x000000ff003fffff, 0x91bffffffffffd3f, 0x007fffff003fffff, 0x000000007fffffff,
0x0037ffff00000000, 0x03ffffff003fffff, 0xc0ffffffffffffff, 0x003ffffffeef0001,
0x1fffffff00000000, 0x000000001fffffff, 0x0000001ffffffeff, 0x003fffffffffffff,
0x0007ffff003fffff, 0x000000000003ffff, 0x00000000000001ff, 0x0007ffffffffffff,
0xffff00801fffffff, 0x000000000000003f, 0x00fffffffffffff8, 0x0000fffffffffff8,
0x000001ffffff0000, 0x0000007ffffffff8, 0x0047ffffffff0010, 0x0007fffffffffff8,
0x000000001400001e, 0x00000ffffffbffff, 0xffff01ffbfffbd7f, 0x23edfdfffff99fe0,
0x00000003e0010000, 0x001fffffffffffff, 0x0000000000000780, 0x0000ffffffffffff,
0x00000000000000b0, 0x00007fffffffffff, 0x000000000f000000, 0x0000000000000010,
0x000007ffffffffff, 0x0000000007ffffff, 0x00000fffffffffff, 0xffffffff00000000,
0x80000000ffffffff, 0x0407fffffffff801, 0xfffffffff0010000, 0x00000000200003cf,
0x01ffffffffffffff, 0x00007ffffffffdff, 0xfffc000000000001, 0x000000000000ffff,
0x0001fffffffffb7f, 0xfffffdbf00000040, 0x00000000010003ff, 0x0007ffff00000000,
0x0000000003ffffff, 0x000000000000000f, 0x000000000000007f, 0x00003fffffff0000,
0xe0fffff80000000f, 0x000000000001001f, 0x00000000fff80000, 0x0000000300000000,
0x0003ffffffffffff, 0xffff000000000000, 0x0fffffffffffffff, 0x1fff07ffffffffff,
0x0000000003ff01ff, 0xffffffffffdfffff, 0xebffde64dfffffff, 0xffffffffffffffef,
0x7bffffffdfdfe7bf, 0xfffffffffffdfc5f, 0xffffff3fffffffff, 0xf7fffffff7fffffd,
0xffdfffffffdfffff, 0xffff7fffffff7fff, 0xfffffdfffffffdff, 0x0000000000000ff7,
0x000000000000001f, 0x0af7fe96ffffffef, 0x5ef7f796aa96ea84, 0x0ffffbee0ffffbff,
0x00000000007fffff, 0xffff0003ffffffff, 0x00000001ffffffff, 0x000000003fffffff
},
};
template <>
constexpr bool_trie table_for<general_category::ll> = {
{
0x0000000000000000, 0x07fffffe00000000, 0x0020000000000000, 0xff7fffff80000000,
0x55aaaaaaaaaaaaaa, 0xd4aaaaaaaaaaab55, 0xe6512d2a4e243129, 0xaa29aaaab5555240,
0x93faaaaaaaaaaaaa, 0xffffffffffffaa85, 0x0000ffffffefffff, 0x0000000000000000,
0x0000000000000000, 0x388a000000000000, 0xfffff00000010000, 0x192faaaaaae37fff,
0xffff000000000000, 0xaaaaaaaaffffffff, 0xaaaaaaaaaaaaa802, 0xaaaaaaaaaaaad554,
0x0000aaaaaaaaaaaa, 0xffffffff00000000, 0x00000000000001ff, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 5, 6,
0, 7, 7, 8, 7, 9, 10, 11, 12, 0, 0, 0, 0, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 16, 17, 7, 18, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 21,
0, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 26, 27, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0
},
{
0x0000000000000000, 0xe7ffffffffff0000, 0x3f00000000000000, 0x00000000000001ff,
0x00000fffffffffff, 0xfefff80000000000, 0x0000000007ffffff, 0xaaaaaaaaaaaaaaaa,
0xaaaaaaaabfeaaaaa, 0x00ff00ff003f00ff, 0x3fff00ff00ff003f, 0x40df00ff00ff00ff,
0x00dc00ff00cf00dc, 0x321080000008c400, 0x00000000000043c0, 0x0000000000000010,
0xffff000000000000, 0x0fda15627fffffff, 0x0008501aaaaaaaaa, 0x000020bfffffffff,
0x00002aaaaaaaaaaa, 0x000000000aaaaaaa, 0xaaabaaa800000000, 0x95feaaaaaaaaaaaa,
0x02a082aaaaba50aa, 0x0400000000000000, 0xffff003f07ffffff, 0xffffffffffffffff,
0x0000000000f8007f, 0x0000000007fffffe
},
{
0, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 4, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0xffffff0000000000, 0x000000000000ffff, 0x0fffffffff000000,
0x0007ffffffffffff, 0x00000000ffffffff, 0xffffffff00000000, 0x000ffffffc000000,
0x000000ffffdfc000, 0xebc000000ffffffc, 0xfffffc000000ffef, 0x00ffffffc000000f,
0x00000ffffffc0000, 0xfc000000ffffffc0, 0xffffc000000fffff, 0x0ffffffc000000ff,
0x0000ffffffc00000, 0x0000003ffffffc00, 0xf0000003f7fffffc, 0xffc000000fdfffff,
0xffff0000003f7fff, 0xfffffc000000fdff, 0x0000000000000bf7, 0xfffffffc00000000,
0x000000000000000f
},
};
template <>
constexpr bool_trie table_for<general_category::lm> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0xffff000000000000, 0x0000501f0003ffc3,
0x0000000000000000, 0x0410000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000002000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000001, 0x0000000000000000, 0x0000006000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0430000000000000
},
{
0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1,
1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 5, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 8, 1, 1, 9, 10, 11,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 12, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
14, 1, 1, 1, 15, 1, 1, 15, 1, 1, 1, 1, 1, 1, 1, 16, 1, 17, 18, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 20, 21, 22,
1, 23, 24, 25, 26, 1, 1, 1, 1, 1, 1, 1, 27, 1, 24, 1, 28, 1, 29, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 24, 30, 1
},
{
0x0000011004000000, 0x0000000000000000, 0x0002000000000000, 0x0000000000000040,
0x1000000000000000, 0x0000000000800000, 0x0000000000000008, 0x0000008000000000,
0x3f00000000000000, 0xfffff00000000000, 0x010007ffffffffff, 0xfffffffff8000000,
0x8002000000000000, 0x000000001fff0000, 0x3000000000000000, 0x0000800000000000,
0x083e000000000020, 0x0000000060000000, 0x7000000000000000, 0x0000000000200000,
0x0000000000001000, 0x8000000000000000, 0x0000000030000000, 0x00000000ff800000,
0x0001000000000000, 0x0000000000000100, 0x0300000000000000, 0x0000004000008000,
0x0018000020000000, 0x00000000f0000000, 0x00000000c0000000
},
{
0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3
},
{
0x0000000000000000, 0x000000000000000f, 0x00000000fff80000, 0x0000000300000000
},
};
template <>
constexpr bool_trie table_for<general_category::lo> = {
{
0x0000000000000000, 0x0000000000000000, 0x0400040000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0800000000000000, 0x000000000000000f,
0x0000000000000000, 0x0000000000000000, 0x0000000000100000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x000787ffffff0000,
0xffffffff00000000, 0xfffec000000007fe, 0xffffffffffffffff, 0x9c00c000002fffff,
0x0000fffffffd0000, 0xffffffffffffe000, 0x0002003fffffffff, 0x000007fffffffc00
},
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 3, 31, 32, 33, 3, 34, 34, 34, 34, 34, 35, 36, 37, 38, 39,
40, 3, 41, 34, 34, 34, 34, 34, 34, 34, 34, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
53, 54, 55, 56, 57, 58, 3, 3, 59, 60, 61, 62, 63, 64, 3, 65, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 66, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 67, 68,
69, 70, 3, 3, 3, 3, 3, 3, 3, 3, 71, 41, 72, 73, 74, 34, 75, 67, 3, 3, 3, 3, 3, 3, 3, 3,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 52, 3, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 76, 77, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 78, 79, 34, 34, 34, 34, 80, 81, 49, 62, 3, 3,
82, 83, 84, 47, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 3, 3, 96, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 97, 98, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 34, 34, 34, 34, 34, 99, 34, 100, 101, 102, 103, 104,
34, 34, 34, 34, 105, 106, 107, 108, 3, 109, 34, 110, 3, 111, 112, 113
},
{
0x00000000003fffff, 0x000007ff01ffffff, 0x3fdfffff00000000, 0x0000000000000000,
0x23fffffffffffff0, 0xfffc0003ff010000, 0x23c5fdfffff99fe1, 0x10030003b0004000,
0x036dfdfffff987e0, 0x001c00005e000000, 0x23edfdfffffbbfe0, 0x0200000300010000,
0x23edfdfffff99fe0, 0x00020003b0000000, 0x03ffc718d63dc7e8, 0x0000000000010000,
0x23fffdfffffddfe0, 0x0000000307000000, 0x23effdfffffddfe1, 0x0006000340000000,
0x27fffffffffddfe0, 0xfc00000380704000, 0x2ffbfffffc7fffe0, 0x000000000000007f,
0x000dfffffffffffe, 0x000000000000003f, 0x200decaefef02596, 0x00000000f000001f,
0x0000000000000001, 0x00001ffffffffeff, 0x0000000000001f00, 0x800007ffffffffff,
0xffe1c0623c3f0000, 0x0000000000004003, 0xffffffffffffffff, 0xffffffff3d7f3dff,
0x7f3dffffffff3dff, 0xffffffffff7fff3d, 0xffffffffff3dffff, 0x0000000007ffffff,
0x000000000000ffff, 0xfffffffffffffffe, 0xffff9fffffffffff, 0xffffffff07fffffe,
0x01fe07ffffffffff, 0x0003ffff0003dfff, 0x0001dfff0003ffff, 0x000fffffffffffff,
0x0000000010000000, 0xffffffff00000000, 0x01fffffffffffff7, 0xffff05ffffffff9f,
0x003fffffffffffff, 0x000000007fffffff, 0x001f3fffffff0000, 0xffff0fffffffffff,
0x00000000000003ff, 0xffffffff007fffff, 0x00000000001fffff, 0x000fffffffffffe0,
0x0000000000000fe0, 0xfc00c001fffffff8, 0x0000003fffffffff, 0x0000000fffffffff,
0x00fffffffc00e000, 0x0063de0000000000, 0x01e0000000000000, 0xffff000000000000,
0x000000ffffffffff, 0x7f7f7f7f007fffff, 0x000000007f7f7f7f, 0x1000000000000040,
0xfffffffe807fffff, 0x87ffffffffffffff, 0xfffeffffffffffe0, 0x07ffffff00007fff,
0x0000ffffffffffff, 0xffffffffffdfffff, 0x0000000000001fff, 0x00ffffffffff0000,
0x00000c00ffff0fff, 0x0000400000000000, 0x0000000000008000, 0xf880000000000000,
0x00000007fffff7bb, 0x000ffffffffffffc, 0x68fc000000000000, 0xffff003ffffffc00,
0x1fffffff0000007f, 0x0007fffffffffff0, 0x7c00ff9f00000000, 0x000001ffffffffff,
0xc47effff00000ff7, 0x3e62ffffffffffff, 0x000407ff18000005, 0x00007f7f007e7e7e,
0x00000007ffffffff, 0xffff000fffffffff, 0x0ffffffffffff87f, 0xffff3fffffffffff,
0x0000000003ffffff, 0x5f7ffdffa0000000, 0xffffffffffffffdb, 0x0003ffffffffffff,
0xfffffffffff80000, 0x3fffffffffffffff, 0xffffffffffff0000, 0xfffffffffffcffff,
0x0fff0000000000ff, 0xffdf000000000000, 0x1fffffffffffffff, 0xfffeffc000000000,
0x7fffffff3fffffff, 0x000000001cfcfcfc
},
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 5, 9, 5, 5, 10, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 11, 12,
13, 7, 14, 15, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
},
{
0, 1, 2, 3, 4, 4, 4, 4, 4, 4, 5, 6, 7, 8, 9, 10, 4, 11, 12, 4, 13, 14, 4, 4, 2, 2, 2, 2,
15, 16, 4, 4, 17, 18, 19, 20, 21, 4, 22, 4, 23, 24, 25, 26, 27, 28, 29, 4, 2, 30, 4, 4,
14, 4, 4, 4, 4, 4, 4, 4, 31, 32, 4, 4, 33, 4, 34, 35, 36, 37, 38, 39, 40, 4, 41, 19, 42,
43, 4, 4, 44, 45, 46, 47, 4, 4, 48, 49, 46, 50, 51, 4, 52, 4, 4, 4, 53, 4, 4, 54, 4, 4,
4, 4, 55, 56, 57, 58, 4, 4, 4, 4, 59, 60, 61, 4, 62, 63, 64, 4, 4, 4, 4, 65, 4, 4, 4, 4,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 66, 4, 4, 4, 2, 2, 2, 67, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 48, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2,
2, 2, 2, 2, 2, 2, 2, 2, 68, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2,
2, 2, 2, 2, 2, 2, 58, 19, 4, 69, 46, 70, 61, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2,
71, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 72, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 73, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 19, 74, 2, 2, 2, 2, 2, 75, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 2, 76, 77, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 78,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 79, 80, 81, 4, 4, 4, 4, 4,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 82, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 44, 2, 2, 2, 9, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 83, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 84, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2,
2, 2, 2, 2, 2, 2, 12, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4
},
{
0xb7ffff7fffffefff, 0x000000003fff3fff, 0xffffffffffffffff, 0x07ffffffffffffff,
0x0000000000000000, 0xffffffff1fffffff, 0x000000000001ffff, 0xffffe000ffffffff,
0x003fffffffff03fd, 0xffffffff3fffffff, 0x000000000000ff0f, 0xffffffffffff0000,
0x000000003fffffff, 0xffff00ffffffffff, 0x0000000fffffffff, 0x007fffffffffffff,
0x000000ff003fffff, 0x91bffffffffffd3f, 0x007fffff003fffff, 0x000000007fffffff,
0x0037ffff00000000, 0x03ffffff003fffff, 0xc0ffffffffffffff, 0x003ffffffeef0001,
0x1fffffff00000000, 0x000000001fffffff, 0x0000001ffffffeff, 0x003fffffffffffff,
0x0007ffff003fffff, 0x000000000003ffff, 0x00000000000001ff, 0xffff00801fffffff,
0x000000000000003f, 0x00fffffffffffff8, 0x0000fffffffffff8, 0x000001ffffff0000,
0x0000007ffffffff8, 0x0047ffffffff0010, 0x0007fffffffffff8, 0x000000001400001e,
0x00000ffffffbffff, 0xffff01ffbfffbd7f, 0x23edfdfffff99fe0, 0x00000003e0010000,
0x001fffffffffffff, 0x0000000000000780, 0x0000ffffffffffff, 0x00000000000000b0,
0x00007fffffffffff, 0x000000000f000000, 0x0000000000000010, 0x000007ffffffffff,
0x0000000007ffffff, 0x00000fffffffffff, 0x8000000000000000, 0x0407fffffffff801,
0xfffffffff0010000, 0x00000000200003cf, 0x01ffffffffffffff, 0x00007ffffffffdff,
0xfffc000000000001, 0x000000000000ffff, 0x0001fffffffffb7f, 0xfffffdbf00000040,
0x00000000010003ff, 0x0007ffff00000000, 0x0000000003ffffff, 0x000000000000000f,
0x000000000000007f, 0x00003fffffff0000, 0xe0fffff800000000, 0x000000000001001f,
0x0003ffffffffffff, 0x0007ffffffffffff, 0xffff000000000000, 0x0fffffffffffffff,
0x1fff07ffffffffff, 0x0000000003ff01ff, 0x000000000000001f, 0x0af7fe96ffffffef,
0x5ef7f796aa96ea84, 0x0ffffbee0ffffbff, 0x00000000007fffff, 0xffff0003ffffffff,
0x00000001ffffffff
},
};
template <>
constexpr bool_trie table_for<general_category::lt> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0004000000000920,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x1000ff00ff00ff00, 0x1000000000001000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::lu> = {
{
0x0000000000000000, 0x0000000007fffffe, 0x0000000000000000, 0x000000007f7fffff,
0xaa55555555555555, 0x2b555555555554aa, 0x11aed2d5b1dbced6, 0x55d255554aaaa490,
0x6c05555555555555, 0x000000000000557a, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x8045000000000000, 0x00000ffbfffed740, 0xe6905555551c8000,
0x0000ffffffffffff, 0x5555555500000000, 0x5555555555555401, 0x5555555555552aab,
0xfffe555555555555, 0x00000000007fffff, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0,
0, 5, 5, 6, 5, 7, 8, 9, 10, 0, 0, 0, 0, 11, 12, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
14, 15, 5, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 0,
19, 20, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 22, 0, 0, 0
},
{
0x0000000000000000, 0xffffffff00000000, 0x00000000000020bf, 0x003fffffffffffff,
0xe7ffffffffff0000, 0x5555555555555555, 0x5555555540155555, 0xff00ff003f00ff00,
0x0000ff00aa003f00, 0x0f00000000000000, 0x0f001f000f000f00, 0xc00f3d503e273884,
0x0000000000000020, 0x0000000000000008, 0x00007fffffffffff, 0xc025ea9d00000000,
0x0004280555555555, 0x0000155555555555, 0x0000000005555555, 0x5554555400000000,
0x6a00555555555555, 0x015f7d5555452855, 0x07fffffe00000000
},
{
0, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 4, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x000000ffffffffff, 0xffff000000000000, 0x00000000000fffff,
0x0007ffffffffffff, 0xffffffff00000000, 0x00000000ffffffff, 0xfff0000003ffffff,
0xffffff0000003fff, 0x003fde64d0000003, 0x000003ffffff0000, 0x7b0000001fdfe7b0,
0xfffff0000001fc5f, 0x03ffffff0000003f, 0x00003ffffff00000, 0xf0000003ffffff00,
0xffff0000003fffff, 0xffffff00000003ff, 0x07fffffc00000001, 0x001ffffff0000000,
0x00007fffffc00000, 0x000001ffffff0000, 0x0000000000000400, 0x00000003ffffffff
},
};
template <>
constexpr bool_trie table_for<general_category::m> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0xffffffffffffffff, 0x0000ffffffffffff, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x00000000000003f8, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0xbffffffffffe0000, 0x00000000000000b6,
0x0000000007ff0000, 0x00010000fffff800, 0x0000000000000000, 0x00003d9f9fc00000,
0xffff000000020000, 0x00000000000007ff, 0x0001ffc000000000, 0x200ff80000000000
},
{
0, 1, 2, 3, 4, 5, 6, 7, 6, 8, 6, 9, 6, 10, 11, 12, 13, 14, 6, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 30, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 31, 32, 33, 34, 35, 2, 36, 2, 37, 2, 2, 2, 38, 39, 40, 2, 41,
42, 43, 44, 45, 2, 2, 46, 2, 2, 2, 47, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 48, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 49, 2, 50, 2, 51, 2, 2, 2, 2, 2, 2, 2, 2, 52,
2, 53, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 54, 55, 56, 2, 2, 2, 2, 57, 2, 58, 59, 60, 61, 62, 63, 64, 65,
66, 67, 2, 2, 2, 68, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 69, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 70, 2, 2, 2, 2, 2, 2, 2
},
{
0x00003eeffbc00000, 0x000000000e000000, 0x0000000000000000, 0xfffffffbfff80000,
0xdc0000000000000f, 0x0000000c00feffff, 0xd00000000000000e, 0x4000000c0080399f,
0x0023000000023987, 0xfc00000c00003bbf, 0x0000000c00c0399f, 0xc000000000000004,
0x0000000000803dc7, 0xc00000000000001f, 0x0000000c00603ddf, 0xd80000000000000f,
0x0000000c00803ddf, 0x000000000000000c, 0x000c0000ff5f8400, 0x07f2000000000000,
0x0000000000007f80, 0x1bf2000000000000, 0x0000000000003f00, 0xc2a0000003000000,
0xfffe000000000000, 0x1ffffffffeffe0df, 0x0000000000000040, 0x7ffff80000000000,
0x001e3f9dc3c00000, 0x000000003c00bffc, 0x00000000e0000000, 0x001c0000001c0000,
0x000c0000000c0000, 0xfff0000000000000, 0x00000000200fffff, 0x0000000000003800,
0x0000020000000060, 0x0fff0fff00000000, 0x000000000f800000, 0x9fffffff7fe00000,
0x7fff000000000000, 0xfff000000000001f, 0x000ff8000000001f, 0x00003ffe00000007,
0x000fffc000000000, 0x00fffff000000000, 0x039c21fffff70000, 0xfbffffffffffffff,
0x0001ffffffff0000, 0x0003800000000000, 0x8000000000000000, 0xffffffff00000000,
0x0000fc0000000000, 0x0000000006000000, 0x3ff7800000000000, 0x00000000c0000000,
0x0003000000000000, 0x000000f800000844, 0xfff0000000000003, 0x8003ffff0000003f,
0x00003fc000000000, 0x00000000000fff80, 0xfff800000000000f, 0x0000002000000001,
0x007ffe0000000000, 0x3800000000003008, 0xc19d000000000000, 0x0060f80000000002,
0x000037f800000000, 0x0000000040000000, 0x0000ffff0000ffff
},
{
0, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 4, 2, 5, 6, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
},
{
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0,
0, 0, 0, 7, 0, 0, 8, 9, 10, 0, 11, 12, 13, 14, 15, 0, 0, 16, 17, 18, 0, 0, 19, 20, 21,
22, 0, 0, 23, 24, 21, 25, 26, 0, 27, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 31, 0, 0,
0, 0, 0, 32, 0, 33, 0, 34, 35, 36, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 47, 48, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 51, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
52, 52, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0
},
{
0x0000000000000000, 0x2000000000000000, 0x0000000100000000, 0x07c0000000000000,
0x870000000000f06e, 0x0000006000000000, 0x000000f000000000, 0x000000000001ffc0,
0xff00000000000007, 0x800000000000007f, 0x07ff000000000007, 0x001fff8000000007,
0x0008000000000060, 0xfff8000000000007, 0x0000000000001e01, 0x40fff00000000000,
0x000007ff80000000, 0xd80000000000000f, 0x001f1fcc0080399f, 0xffe0000000000000,
0x000000004000007f, 0xffff000000000000, 0x000000000000000f, 0xff3f800000000000,
0x0000000030000001, 0x0000000000000001, 0x00fff80000000000, 0x00000fffe0000000,
0x07fff00000000000, 0x7bf80000000007fe, 0x000000000ffe0080, 0x0000000003fffc00,
0xff7f800000000000, 0x007ffefffffc0000, 0xb47e000000000000, 0x00000000000000bf,
0x0000000000fb7c00, 0x0078000000000000, 0x001f000000000000, 0x007f000000000000,
0x7ffffffffffe0000, 0x0000000000078000, 0x0000000060000000, 0xf807e3e000000000,
0x00003c0000000fe7, 0x000000000000001c, 0xf87fffffffffffff, 0x00201fffffffffff,
0x0000fffef8000010, 0x000007dbf9ffff7f, 0x00000000007f0000, 0x00000000000007f0,
0xffffffffffffffff, 0x0000ffffffffffff
},
};
template <>
constexpr bool_trie table_for<general_category::mc> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 5, 7, 8, 4, 9, 10, 11, 12, 8, 13, 3, 14, 15, 16, 0, 0, 0,
0, 9, 17, 0, 0, 18, 19, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 21, 22, 0, 0, 0, 0, 23, 0, 0, 0, 24, 25, 0, 0, 26, 27, 28, 29, 30,
0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 35, 0, 36, 37, 6, 38, 39, 0, 40, 0, 0, 0, 41, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0xc800000000000008, 0x000000000000de01, 0xc00000000000000c,
0x0000000000801981, 0xc000000000000008, 0x0000000000000001, 0x0000000000001a01,
0x400000000000000c, 0xc000000000000000, 0x0000000000801dc6, 0x000000000000000e,
0x000000000000001e, 0x0000000000600d9f, 0x0000000000801dc1, 0x000000000000000c,
0x000c0000ff038000, 0x8000000000000000, 0x1902180000000000, 0x00003f9c00c00000,
0x000000001c009f98, 0xc040000000000000, 0x00000000000001bf, 0x01fb0e7800000000,
0x0000000006000000, 0x0007e01a00a00000, 0xe820000000000010, 0x000000000000001b,
0x000004c200000004, 0x000c5c8000000000, 0x00300ff000000000, 0x008c000200000000,
0x0000c00000000000, 0x0000009800000000, 0xfff0000000000003, 0x000000000000000f,
0x00000000000c0000, 0xec30000000000008, 0x0019800000000000, 0x2800000000002000,
0x0020c80000000000, 0x000016d800000000
},
{
0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 3, 4, 5, 6, 7, 0, 0, 8, 9, 10, 0, 0, 11, 12, 13, 14, 0, 0,
15, 0, 16, 0, 17, 0, 18, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 0, 0,
23, 0, 24, 0, 0, 0, 25, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 28,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0000000000000005, 0x0187000000000004, 0x0000100000000000,
0x0000000000000060, 0x8038000000000004, 0x0000000000000001, 0x002c700000000000,
0x0000000700000000, 0xc00000000000000c, 0x0000000c0080399e, 0x00e0000000000000,
0x0000000000000023, 0x7a07000000000000, 0x0000000000000002, 0x4f03800000000000,
0x5807000000000000, 0x0040d00000000000, 0x0000004300000000, 0x0100700000000000,
0x0200000000000000, 0x0000000001800000, 0x0000000000800000, 0x4000800000000000,
0x0012020000000000, 0x0000000000587c00, 0x0060000000000000, 0x7ffffffffffe0000,
0x0007e06000000000
},
};
template <>
constexpr bool_trie table_for<general_category::me> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000300, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x4000000000000000, 0x0000001de0000000, 0x0007000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::mn> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0xffffffffffffffff, 0x0000ffffffffffff, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x00000000000000f8, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0xbffffffffffe0000, 0x00000000000000b6,
0x0000000007ff0000, 0x00010000fffff800, 0x0000000000000000, 0x00003d9f9fc00000,
0xffff000000020000, 0x00000000000007ff, 0x0001ffc000000000, 0x200ff80000000000
},
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 8, 10, 11, 12, 13, 14, 15, 16, 11, 17, 18, 19, 2, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 32, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 33, 34, 35, 36, 37, 2, 38, 2, 39, 2, 2, 2, 40, 41, 42, 2, 43,
44, 45, 46, 47, 2, 2, 48, 2, 2, 2, 49, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 50, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 51, 2, 52, 2, 53, 2, 2, 2, 2, 2, 2, 2, 2, 54,
2, 55, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 56, 57, 58, 2, 2, 2, 2, 59, 2, 2, 60, 61, 62, 63, 64, 65, 66,
67, 68, 2, 2, 2, 69, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 70, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 71, 2, 2, 2, 2, 2, 2, 2
},
{
0x00003eeffbc00000, 0x000000000e000000, 0x0000000000000000, 0xfffffffbfff80000,
0x1400000000000007, 0x0000000c00fe21fe, 0x1000000000000002, 0x4000000c0000201e,
0x1000000000000006, 0x0023000000023986, 0xfc00000c000021be, 0x9000000000000002,
0x0000000c0040201e, 0x0000000000000004, 0x0000000000002001, 0xc000000000000011,
0x0000000c00603dc1, 0x0000000c00003040, 0x1800000000000003, 0x0000000c0000201e,
0x00000000005c0400, 0x07f2000000000000, 0x0000000000007f80, 0x1bf2000000000000,
0x0000000000003f00, 0x02a0000003000000, 0x7ffe000000000000, 0x1ffffffffeffe0df,
0x0000000000000040, 0x66fde00000000000, 0x001e0001c3000000, 0x0000000020002064,
0x00000000e0000000, 0x001c0000001c0000, 0x000c0000000c0000, 0x3fb0000000000000,
0x00000000200ffe40, 0x0000000000003800, 0x0000020000000060, 0x0e04018700000000,
0x0000000009800000, 0x9ff81fe57f400000, 0x3fff000000000000, 0x17d000000000000f,
0x000ff80000000004, 0x00003b3c00000003, 0x0003a34000000000, 0x00cff00000000000,
0x031021fdfff70000, 0xfbffffffffffffff, 0x0001ffe21fff0000, 0x0003800000000000,
0x8000000000000000, 0xffffffff00000000, 0x00003c0000000000, 0x0000000006000000,
0x3ff0800000000000, 0x00000000c0000000, 0x0003000000000000, 0x0000006000000844,
0x8003ffff00000030, 0x00003fc000000000, 0x000000000003ff80, 0x13c8000000000007,
0x0000002000000000, 0x00667e0000000000, 0x1000000000001008, 0xc19d000000000000,
0x0040300000000002, 0x0000212000000000, 0x0000000040000000, 0x0000ffff0000ffff
},
{
0, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 4, 2, 5, 6, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
},
{
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0,
0, 0, 0, 7, 0, 0, 8, 9, 10, 0, 11, 12, 13, 14, 15, 0, 0, 16, 17, 18, 0, 0, 19, 20, 21,
22, 0, 0, 23, 24, 25, 26, 27, 0, 28, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 30, 31, 32, 0, 0,
0, 0, 0, 33, 0, 34, 0, 35, 36, 37, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 47, 48, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 51, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
52, 52, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0
},
{
0x0000000000000000, 0x2000000000000000, 0x0000000100000000, 0x07c0000000000000,
0x870000000000f06e, 0x0000006000000000, 0x000000f000000000, 0x000000000001ffc0,
0xff00000000000002, 0x800000000000007f, 0x0678000000000003, 0x001fef8000000007,
0x0008000000000000, 0x7fc0000000000003, 0x0000000000001e00, 0x40d3800000000000,
0x000007f880000000, 0x1800000000000003, 0x001f1fc000000001, 0xff00000000000000,
0x000000004000005c, 0x85f8000000000000, 0x000000000000000d, 0xb03c000000000000,
0x0000000030000001, 0xa7f8000000000000, 0x0000000000000001, 0x00bf280000000000,
0x00000fbce0000000, 0x06ff800000000000, 0x79f80000000007fe, 0x000000000e7e0080,
0x00000000037ffc00, 0xbf7f000000000000, 0x006dfcfffffc0000, 0xb47e000000000000,
0x00000000000000bf, 0x0000000000a30000, 0x0018000000000000, 0x001f000000000000,
0x007f000000000000, 0x0000000000078000, 0x0000000060000000, 0xf800038000000000,
0x00003c0000000fe7, 0x000000000000001c, 0xf87fffffffffffff, 0x00201fffffffffff,
0x0000fffef8000010, 0x000007dbf9ffff7f, 0x00000000007f0000, 0x00000000000007f0,
0xffffffffffffffff, 0x0000ffffffffffff
},
};
template <>
constexpr bool_trie table_for<general_category::n> = {
{
0x03ff000000000000, 0x0000000000000000, 0x720c000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x000003ff00000000, 0x0000000000000000, 0x03ff000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x00000000000003ff
},
{
0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 1, 0, 3, 0, 4, 0, 5, 0, 1, 0, 6, 0, 1, 0, 7, 0, 7, 8,
0, 0, 0, 0, 9, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 11, 0, 0, 0, 12, 7, 0, 0, 0, 0, 13, 0, 14, 0, 0, 15, 0, 0, 7, 16, 0, 0, 15, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 9, 0, 0, 18, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 27, 0, 28,
29, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28,
0, 0, 1, 0, 0, 0, 0, 31, 0, 0, 7, 9, 0, 0, 32, 0, 7, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0
},
{
0x0000000000000000, 0x0000ffc000000000, 0x03f0ffc000000000, 0x00fcffc000000000,
0x0007ffc000000000, 0x7f00ffc000000000, 0x01ffffc07f000000, 0x0000000003ff0000,
0x000fffff00000000, 0x00000000000003ff, 0x1ffffe0000000000, 0x0001c00000000000,
0x03ff03ff00000000, 0x000000000000ffc0, 0x0000000007ff0000, 0x0000000003ff03ff,
0x03ff000000000000, 0x03f1000000000000, 0xffffffffffff0000, 0x00000000000003e7,
0xffffffff00000000, 0x000000000fffffff, 0xfffffc0000000000, 0xffc0000000000000,
0x00000000000fffff, 0x2000000000000000, 0x070003fe00000080, 0x00000000003c0000,
0x000003ff00000000, 0x00000000fffeff00, 0xfffe0000000003ff, 0x003f000000000000,
0x03ff000003ff0000
},
{
0, 1, 2, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 5, 6, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
},
{
0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 4, 5, 6, 0, 7, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 9, 10, 11, 12, 0, 13, 14, 0, 15, 16, 17, 0, 18, 19, 0, 0, 0, 0, 20, 21, 0,
0, 0, 0, 22, 0, 0, 23, 24, 0, 0, 0, 25, 0, 21, 26, 0, 0, 27, 0, 0, 0, 21, 0, 0, 0, 0, 0,
28, 0, 28, 0, 0, 0, 0, 0, 28, 0, 29, 30, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 32, 0, 0, 0, 28, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 38, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 28, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x000fffffffffff80, 0x01ffffffffffffff, 0x0000000000000c00,
0x0ffffffe00000000, 0x0000000f00000000, 0x0000000000000402, 0x00000000003e0000,
0x000003ff00000000, 0xfe000000ff000000, 0x0000ff8000000000, 0xf800000000000000,
0x000000000fc00000, 0x3000000000000000, 0xfffffffffffcffff, 0x60000000000001ff,
0x00000000e0000000, 0x0000f80000000000, 0xff000000ff000000, 0x0000fe0000000000,
0xfc00000000000000, 0x03ff000000000000, 0x7fffffff00000000, 0x0000007fe0000000,
0x00000000001e0000, 0x0000fffffffc0000, 0xffc0000000000000, 0x001ffffe03ff0000,
0x0000000003ff0000, 0x00000000000003ff, 0x0fff000000000000, 0x0007ffff00000000,
0x00001fffffff0000, 0xffffffffffffffff, 0x00007fffffffffff, 0x00000003fbff0000,
0x00000000007fffff, 0x000fffff00000000, 0x01ffffff00000000, 0xffffffffffffc000,
0x000000000000ff80, 0xfffe000000000000, 0x001eefffffffffff, 0x0000000000001fff
},
};
template <>
constexpr bool_trie table_for<general_category::nd> = {
{
0x03ff000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x000003ff00000000, 0x0000000000000000, 0x03ff000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x00000000000003ff
},
{
0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 2, 0, 2, 3,
0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 5, 0, 2, 0, 0, 6, 0, 0, 2, 7, 0, 0, 6, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 2, 4, 0, 0, 8, 0, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 2, 0, 0, 0
},
{
0x0000000000000000, 0x0000ffc000000000, 0x0000000003ff0000, 0x000003ff00000000,
0x00000000000003ff, 0x000000000000ffc0, 0x0000000003ff03ff, 0x03ff000000000000,
0x03ff000003ff0000
},
{
0, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 4, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 4, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0,
0, 0, 5, 0, 6, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0,
0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x000003ff00000000, 0x03ff000000000000, 0x0000ffc000000000,
0xffc0000000000000, 0x0000000003ff0000, 0x00000000000003ff, 0xffffffffffffc000
},
};
template <>
constexpr bool_trie table_for<general_category::nl> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0001c00000000000, 0xffffffff00000000, 0x00000000000001e7,
0x070003fe00000080, 0x0000ffc000000000
},
{
0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
},
{
0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4,
5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x001fffffffffffff, 0x0000000000000402, 0x00000000003e0000,
0xffffffffffffffff, 0x00007fffffffffff
},
};
template <>
constexpr bool_trie table_for<general_category::no> = {
{
0x0000000000000000, 0x0000000000000000, 0x720c000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 6,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 12, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14,
15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 21, 22,
23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x03f0000000000000, 0x00fc000000000000, 0x0007000000000000,
0x7f00000000000000, 0x01ff00007f000000, 0x000ffc0000000000, 0x1ffffe0000000000,
0x03ff000000000000, 0x0000000004000000, 0x03f1000000000000, 0x00000000000003ff,
0x00000000ffff0000, 0x0000000000000200, 0xffffffff00000000, 0x000000000fffffff,
0xfffffc0000000000, 0xffc0000000000000, 0x00000000000fffff, 0x2000000000000000,
0x00000000003c0000, 0x000003ff00000000, 0x00000000fffeff00, 0xfffe0000000003ff,
0x003f000000000000
},
{
0, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 4, 5, 6, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
},
{
0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 6, 7, 8, 9, 0, 10, 11, 0, 12, 13, 14, 0, 15, 16, 0, 0, 0, 0, 17, 0, 0, 0, 0,
0, 18, 0, 0, 19, 20, 0, 0, 0, 21, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 32, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x000fffffffffff80, 0x01e0000000000000, 0x0000000000000c00,
0x0ffffffe00000000, 0x0000000f00000000, 0xfe000000ff000000, 0x0000ff8000000000,
0xf800000000000000, 0x000000000fc00000, 0x3000000000000000, 0xfffffffffffcffff,
0x60000000000001ff, 0x00000000e0000000, 0x0000f80000000000, 0xff000000ff000000,
0x0000fe0000000000, 0xfc00000000000000, 0x7fffffff00000000, 0x0000007fe0000000,
0x00000000001e0000, 0x0000003ffffc0000, 0x001ffffe00000000, 0x0c00000000000000,
0x0007fc0000000000, 0x00001ffffc000000, 0x00000003f8000000, 0x00000000007fffff,
0x000fffff00000000, 0x01ffffff00000000, 0x000000000000ff80, 0xfffe000000000000,
0x001eefffffffffff, 0x0000000000001fff
},
};
template <>
constexpr bool_trie table_for<general_category::p> = {
{
0x8c00f7ee00000000, 0x28000000b8000001, 0x88c0088200000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x4000000000000000, 0x0000000000000080, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x00000000fc000000, 0x4000000000000600, 0x0018000000000049,
0x00000000c8003600, 0x00003c0000000000, 0x0000000000000000, 0x0000000000100000,
0x0000000000003fff, 0x0000000000000000, 0x0000000000000000, 0x0380000000000000
},
{
0, 1, 2, 2, 2, 3, 2, 4, 2, 5, 2, 6, 2, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 8, 2, 9, 2, 2, 10,
2, 11, 12, 2, 13, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 15, 2, 2, 16, 2, 2, 2, 2, 2, 2, 2,
2, 17, 18, 19, 20, 2, 2, 21, 22, 2, 2, 2, 2, 23, 2, 2, 24, 2, 25, 2, 2, 26, 2, 27, 28,
29, 2, 30, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 31, 32, 33, 2, 2, 2, 2, 2, 2, 2, 2, 2,
34, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 35, 2, 36, 2, 2, 2, 2, 2, 2, 37, 38,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 39, 2, 6, 2, 2, 40, 41, 2, 2, 2, 2, 2, 2, 42, 2, 43,
14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
29, 2, 2, 2, 2, 44, 45, 2, 46, 2, 2, 2, 2, 2, 47, 2, 48, 49, 50, 2, 51, 2, 52, 2, 53, 2,
2, 2, 54, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 29, 2, 2, 2, 55, 56, 2, 2, 57, 58, 2, 2
},
{
0x7fff000000000000, 0x0000000040000000, 0x0000000000000000, 0x0001003000000000,
0x2000000000000000, 0x0040000000000000, 0x0001000000000000, 0x0000000000000010,
0x0010000000000000, 0x000000000c008000, 0x3c0000000017fff0, 0x0000000000000020,
0x00000000061f0000, 0x000000000000fc00, 0x0800000000000000, 0x000001ff00000000,
0x0000000000000001, 0x0000600000000000, 0x0000000018000000, 0x0000380000000000,
0x0060000000000000, 0x0000000007700000, 0x00000000000007ff, 0x0000000000000030,
0x00000000c0000000, 0x00003f7f00000000, 0x00000001fc000000, 0xf000000000000000,
0xf800000000000000, 0xc000000000000000, 0x00000000000800ff, 0xffff00ffffff0000,
0x600000007ffbffef, 0x0000000000006000, 0x0000060000000f00, 0x003fff0000000000,
0x0000ffc000000060, 0x0000000001fffff8, 0x300000000f000000, 0xde00000000000000,
0xffff7fffffffffff, 0x0000000000007fff, 0x20010000fff3ff0e, 0x0000000100000000,
0x000000000000e000, 0x4008000000000000, 0x00fc000000000000, 0x00f0000000000000,
0x170000000000c000, 0x0000c00000000000, 0x0000000080000000, 0x00000000c0003ffe,
0x00000000f0000000, 0x00030000c0000000, 0x0000080000000000, 0xffff000003ff0000,
0x00000d0bfff7ffff, 0xb80000018c00f7ee, 0x0000003fa8000000
},
{
0, 1, 2, 3, 3, 3, 4, 3, 3, 3, 3, 5, 3, 6, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
},
{
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5, 0, 0, 6, 0, 0, 0, 0, 7, 0, 8, 9, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 11, 0, 0, 0, 12, 13, 14, 0, 15, 0, 16, 17, 0, 18, 0, 0, 0, 0, 0, 0, 19, 0, 20,
0, 0, 0, 21, 0, 22, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 25, 26, 27, 0, 0, 0, 0,
0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0000000000000007, 0x0000000080000000, 0x0000000000010000,
0x0000800000000000, 0x0000000000800000, 0x8000000080000000, 0x8000000001ff0000,
0x007f000000000000, 0xfe00000000000000, 0x000000001e000000, 0x0000000003e00000,
0x0000000000003f80, 0xd800000000000000, 0x0000000000000003, 0x003000000000000f,
0x00000000e80021e0, 0x3f00000000000000, 0x0000020000000000, 0x000000002800f800,
0x0000000000000040, 0x0000000000fffffe, 0x00001fff0000000e, 0x7000000000000000,
0x0800000000000000, 0x8000000000000000, 0x000000000000007f, 0x00000007dc000000,
0x000300000000003e, 0x0180000000000000, 0x001f000000000000, 0x0000c00000000000,
0x0020000000000000, 0x0f80000000000000, 0x0000000000000010, 0x0000000007800000,
0x0000000000000f80, 0x00000000c0000000
},
};
template <>
constexpr bool_trie table_for<general_category::pc> = {
{
0x0000000000000000, 0x0000000080000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4,
0, 0, 1, 0, 0, 0
},
{
0x0000000000000000, 0x8000000000000000, 0x0000000000100001, 0x0018000000000000,
0x000000000000e000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::pd> = {
{
0x0000200000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x4000000000000400, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 5, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8,
0, 0, 9, 0, 0, 0
},
{
0x0000000000000000, 0x0000000000000001, 0x0000000000000040, 0x00000000003f0000,
0x0c00000004800000, 0x0001000010000000, 0x0000000100000000, 0x0006000000000000,
0x0000000801000000, 0x0000000000002000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::pe> = {
{
0x0000020000000000, 0x2000000020000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 7, 0, 0, 0, 0, 0, 0, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 13,
14, 0, 0, 15, 16, 0, 0
},
{
0x0000000000000000, 0x2800000000000000, 0x0000000010000000, 0x4000000000000040,
0x0000000000004000, 0x0000040000000a00, 0x002aaa0000000000, 0x0000aa8000000040,
0x0000000001555550, 0x200000000a000000, 0x000002a800000000, 0x00000000caa2aa00,
0x4000000000000000, 0x5540000001000000, 0x0000000054000115, 0x2000000000000200,
0x0000000920000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::pf> = {
{
0x0000000000000000, 0x0000000000000000, 0x0800000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0400000022000000, 0x0000000220002428
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::pi> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000080000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0200000099000000, 0x0000000110001214
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::po> = {
{
0x8c00d4ee00000000, 0x0000000010000001, 0x80c0008200000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x4000000000000000, 0x0000000000000080, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x00000000fc000000, 0x0000000000000200, 0x0018000000000049,
0x00000000c8003600, 0x00003c0000000000, 0x0000000000000000, 0x0000000000100000,
0x0000000000003fff, 0x0000000000000000, 0x0000000000000000, 0x0380000000000000
},
{
0, 1, 2, 2, 2, 3, 2, 4, 2, 5, 2, 6, 2, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 8, 2, 9, 2, 2, 10,
2, 11, 12, 2, 13, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 15, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
16, 2, 17, 18, 2, 2, 19, 20, 2, 2, 2, 2, 21, 2, 2, 22, 2, 23, 2, 2, 24, 2, 25, 26, 27,
2, 28, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 29, 30, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 31, 2, 6, 2, 2, 32, 33, 2, 2, 2, 2, 2, 2, 34, 2, 2, 14, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 27, 2, 2, 2,
2, 35, 36, 2, 37, 2, 2, 2, 2, 2, 38, 2, 39, 40, 41, 2, 42, 2, 43, 2, 44, 2, 2, 2, 45, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 46, 47, 2, 2, 48, 49, 2, 2
},
{
0x7fff000000000000, 0x0000000040000000, 0x0000000000000000, 0x0001003000000000,
0x2000000000000000, 0x0040000000000000, 0x0001000000000000, 0x0000000000000010,
0x0010000000000000, 0x000000000c008000, 0x000000000017fff0, 0x0000000000000020,
0x00000000061f0000, 0x000000000000fc00, 0x0800000000000000, 0x000001ff00000000,
0x0000600000000000, 0x0000380000000000, 0x0060000000000000, 0x0000000007700000,
0x00000000000007bf, 0x0000000000000030, 0x00000000c0000000, 0x00003f7f00000000,
0x00000001fc000000, 0xf000000000000000, 0xf800000000000000, 0xc000000000000000,
0x00000000000800ff, 0x79ff00ff00c00000, 0x000000007febff8e, 0xde00000000000000,
0xf3ff7c00cb7fc9c3, 0x0000000000007ffa, 0x200000000000000e, 0x000000000000e000,
0x4008000000000000, 0x00fc000000000000, 0x00f0000000000000, 0x170000000000c000,
0x0000c00000000000, 0x0000000080000000, 0x00000000c0003ffe, 0x00000000f0000000,
0x00030000c0000000, 0x0000080000000000, 0x00010000027f0000, 0x00000d0380f71e60,
0x100000018c00d4ee, 0x0000003200000000
},
{
0, 1, 2, 3, 3, 3, 4, 3, 3, 3, 3, 5, 3, 6, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
},
{
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5, 0, 0, 6, 0, 0, 0, 0, 7, 0, 8, 9, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 11, 0, 0, 0, 12, 13, 14, 0, 15, 0, 16, 17, 0, 18, 0, 0, 0, 0, 0, 0, 19, 0, 20,
0, 0, 0, 21, 0, 22, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 25, 26, 27, 0, 0, 0, 0,
0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0000000000000007, 0x0000000080000000, 0x0000000000010000,
0x0000800000000000, 0x0000000000800000, 0x8000000080000000, 0x8000000001ff0000,
0x007f000000000000, 0xfe00000000000000, 0x000000001e000000, 0x0000000003e00000,
0x0000000000003f80, 0xd800000000000000, 0x0000000000000003, 0x003000000000000f,
0x00000000e80021e0, 0x3f00000000000000, 0x0000020000000000, 0x000000002800f800,
0x0000000000000040, 0x0000000000fffffe, 0x00001fff0000000e, 0x7000000000000000,
0x0800000000000000, 0x8000000000000000, 0x000000000000007f, 0x00000007dc000000,
0x000300000000003e, 0x0180000000000000, 0x001f000000000000, 0x0000c00000000000,
0x0020000000000000, 0x0f80000000000000, 0x0000000000000010, 0x0000000007800000,
0x0000000000000f80, 0x00000000c0000000
},
};
template <>
constexpr bool_trie table_for<general_category::ps> = {
{
0x0000010000000000, 0x0800000008000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 8, 0, 0, 0, 0, 0, 0, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 11, 12, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 15,
16, 0, 0, 17, 18, 0, 0
},
{
0x0000000000000000, 0x1400000000000000, 0x0000000008000000, 0x0000000044000000,
0x2000000000000020, 0x0000000000002000, 0x0000020000000500, 0x0015550000000000,
0x0000554000000020, 0x0000000000aaaaa8, 0x1000000005000000, 0x0000015400000000,
0x0000000000000004, 0x0000000025515500, 0x8000000000000000, 0xaaa0000000800000,
0x000000002a00008a, 0x0800000000000100, 0x0000000488000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::sc> = {
{
0x0000001000000000, 0x0000000000000000, 0x0000003c00000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000008000, 0x0000000000000000,
0x0000000000000800, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0xc000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 9,
0, 0, 10, 0, 0, 11
},
{
0x0000000000000000, 0x080c000000000000, 0x0002000000000000, 0x0200000000000000,
0x8000000000000000, 0x0000000008000000, 0xffffffff00000000, 0x0100000000000000,
0x1000000000000000, 0x0000020000000000, 0x0000000000000010, 0x0000006300000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0001000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::sk> = {
{
0x0000000000000000, 0x0000000140000000, 0x0110810000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0xffffafe0fffc003c,
0x0000000000000000, 0x0020000000000000, 0x0000000000000030, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0,
5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 9, 10, 0, 11
},
{
0x0000000000000000, 0xa000000000000000, 0x6000e000e000e003, 0x0000000018000000,
0x00000003007fffff, 0x0000000000000600, 0x0000000008000000, 0xfffc000000000000,
0x0000000000000003, 0x4000000000000000, 0x0000000000000001, 0x0000000800000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0xf800000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::sm> = {
{
0x7000080000000000, 0x5000000000000000, 0x0002100000000000, 0x0080000000800000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0040000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x00000000000001c0, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 3, 4, 5, 6, 7, 7, 7, 7, 8, 9, 10, 11, 0, 0, 0, 0,
0, 0, 12, 13, 0, 14, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 7, 7, 16, 17, 7, 7, 7, 7, 18, 19, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 21, 0, 0, 22, 23, 0, 24
},
{
0x0000000000000000, 0x1c00000000040010, 0x0000000000001c00, 0x0000000001000000,
0x000000000000081f, 0x000040490c1f0000, 0xfff000000014c000, 0xffffffffffffffff,
0x0000000300000000, 0x1000000000000000, 0x000ffffff8000000, 0x00000003f0000000,
0x0080000000000000, 0xff00000000000002, 0x0000800000000000, 0xffff003fffffff9f,
0xfffffffffe000007, 0xcffffffff0ffffff, 0xffff000000000000, 0x0000000000001f9f,
0x0000020000000000, 0x0000007400000000, 0x0000000070000800, 0x0000000050000000,
0x00001e0400000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0800000008000002, 0x0020000000200000, 0x0000800000008000,
0x0000020000000200, 0x0000000000000008, 0x0003000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::so> = {
{
0x0000000000000000, 0x0000000000000000, 0x0001424000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000004, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000006000, 0x0000000000000000,
0x000000000000c000, 0x0000000000000000, 0x0000000000000000, 0x6000020040000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0040000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 6,
0, 7, 8, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 12, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 15, 16, 17, 0, 0, 0, 0, 18, 19, 20, 21,
22, 23, 24, 25, 26, 26, 27, 28, 26, 29, 26, 26, 26, 30, 31, 0, 26, 26, 26, 26, 0, 0, 0,
0, 0, 0, 0, 0, 32, 33, 34, 35, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 37, 38, 26, 26, 26, 39,
40, 0, 0, 0, 0, 0, 41, 42, 43, 44, 45, 46, 26, 26, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0,
50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 52
},
{
0x0000000000000000, 0x0400000000000000, 0x0001000000000000, 0x05f8000000000000,
0x8000000000000000, 0x0200000000008000, 0x01500000fce8000e, 0xc000000000000000,
0x0000000001e0dfbf, 0x00000000c0000000, 0x0000000003ff0000, 0x0000000000000001,
0xffffffffc0000000, 0x1ff007fe00000000, 0x0c0042afc0d0037b, 0x000000000000b400,
0xffffbfb6f3e00c00, 0x000fffffffeb3fff, 0xfffff9fcfffff0ff, 0xefffffffffffffff,
0xfff0000007ffffff, 0xfffffffc0fffffff, 0x0000007fffffffff, 0x00000000000007ff,
0xfffffffff0000000, 0x000003ffffffffff, 0xffffffffffffffff, 0xff7fffffffffffff,
0x00fffffffffffffd, 0xffff7fffffffffff, 0x000000ffffffffff, 0xfffffffffff00000,
0x0000ffffffffffff, 0xffcfffffffffe060, 0xffffffffff3fffff, 0x7ffffffffffffdff,
0x000007e000000000, 0xfffffffffbffffff, 0x000fffffffffffff, 0x0fff0000003fffff,
0xc0c00001000c0010, 0x00000000ffc30000, 0x0000000fffffffff, 0xfffffc007fffffff,
0xffffffff000100ff, 0x0001fffffffffc00, 0x7fffffffffffffff, 0xffffffffffff0000,
0x000000000000007f, 0x02c00f0000000000, 0x0380000000000000, 0x2000000000000000,
0x3000611000000000
},
{
0, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 4, 2, 5, 6, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
},
{
0, 0, 0, 0, 1, 2, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 11, 11, 11, 12, 13, 14, 15, 16, 11, 17, 0, 0, 11, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 19, 20, 21, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 11, 24, 25, 26, 23, 27,
28, 29, 30, 0, 0, 11, 11, 11, 31, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 32, 11,
33, 11, 34, 35, 36, 37, 0, 38, 39, 40, 41, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0xff80000000000000, 0xfe00000000000000, 0x000000010fff73ff,
0x1fffffffffff0000, 0x0180000000000000, 0x0000000000000100, 0x8000000000000000,
0xf000000000000000, 0x0000000000000020, 0x0000000010000000, 0xffffffffffffffff,
0x003fffffffffffff, 0xfffffe7fffffffff, 0x00001c1fffffffff, 0xffffc3fffffff018,
0x000001ffffffffff, 0x0000000000000023, 0x00000000007fffff, 0x0780000000000000,
0xffdfe00000000000, 0x000000000000006f, 0x0000100000000000, 0xffff0fffffffffff,
0xfffe7fff000fffff, 0x003ffffffffefffe, 0xffffffffffff0000, 0x00001fffffffffff,
0xffffffc000000000, 0x0fffffffffff0007, 0x0000003f000301ff, 0x07ffffffffffffff,
0x03ff1fff001fffff, 0x000fffffffffffff, 0x0000000001ffffff, 0xffffffffffff0fff,
0xffffffff03ff00ff, 0x00003fffffff00ff, 0x7fffffffffff0fff, 0xf479ffffffffffff,
0x03ff0007ffffffff, 0xffffffffffff0007, 0x00003fff00000000
},
};
template <>
constexpr bool_trie table_for<general_category::z> = {
{
0x0000000100000000, 0x0000000000000000, 0x0000000100000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0000000000000001, 0x00008300000007ff, 0x0000000080000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::zl> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0000010000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::zp> = {
{
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0000020000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <>
constexpr bool_trie table_for<general_category::zs> = {
{
0x0000000100000000, 0x0000000000000000, 0x0000000100000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000,
0x0000000000000000, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000, 0x0000000000000001, 0x00008000000007ff, 0x0000000080000000
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
},
{
0x0000000000000000
},
};
template <general_category Cat>
bool is(char32_t u) noexcept {
return table_for<Cat>(u);
}
inline const bool total_size =
table_for<general_category::c>.size() +
table_for<general_category::cc>.size() +
table_for<general_category::cf>.size() +
table_for<general_category::cn>.size() +
table_for<general_category::co>.size() +
// table_for<general_category::cs>.size() +
table_for<general_category::l>.size() +
table_for<general_category::ll>.size() +
table_for<general_category::lm>.size() +
table_for<general_category::lo>.size() +
table_for<general_category::lt>.size() +
table_for<general_category::lu>.size() +
table_for<general_category::m>.size() +
table_for<general_category::mc>.size() +
table_for<general_category::me>.size() +
table_for<general_category::mn>.size() +
table_for<general_category::n>.size() +
table_for<general_category::nd>.size() +
table_for<general_category::nl>.size() +
table_for<general_category::no>.size() +
table_for<general_category::p>.size() +
table_for<general_category::pc>.size() +
table_for<general_category::pd>.size() +
table_for<general_category::pe>.size() +
table_for<general_category::pf>.size() +
table_for<general_category::pi>.size() +
table_for<general_category::po>.size() +
table_for<general_category::ps>.size() +
table_for<general_category::sc>.size() +
table_for<general_category::sk>.size() +
table_for<general_category::sm>.size() +
table_for<general_category::so>.size() +
table_for<general_category::z>.size() +
table_for<general_category::zl>.size() +
table_for<general_category::zp>.size() +
table_for<general_category::zs>.size();
template <general_category Cat>
inline const bool size_for = table_for<Cat>.size();
}
}
| |
b1f00b7a0010ff94cae4b6cce48456faebe2e868 | 1dd7e766f7a81353ddec17709fe4cb4813646349 | /include/rkhisto.h | 36fbebb63392cab65808ccfcfddd731db082f377 | [] | no_license | goodfuture/qt-rkdaa4gui | 88ca4f056f480fd74166a5a13661aa836d5abd84 | 130b992b0e106f7ef6e1f70c7dd5b1145556af12 | refs/heads/master | 2021-01-25T05:22:39.723192 | 2014-09-26T09:52:20 | 2014-09-26T09:52:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 899 | h | rkhisto.h | #ifndef _RK_HISTOGRAM_H_
#define _RK_HISTOGRAM_H_
#include <qwidget.h>
#include <qvaluevector.h>
class rkHistoItem
{
public:
QString name;
double value;
QColor color;
QRect rect;
};
class rkHisto : public QWidget
{
Q_OBJECT
public:
rkHisto(QWidget *parent = 0, const char *name = 0);
void addItem(const QString &name, double value, const QColor &color);
void setMaxValue(int maxValue);
void setItemValue(unsigned int index, double value);
void setItemName(unsigned int index, const QString &name);
private:
enum rkHistoOpt
{
pillarIndent = 10,
xAxisOffset = 30,
yAxisOffset = 30,
textRectHeight = 28,
};
int blankWidth;
double maxValue;
QValueVector<rkHistoItem> items;
protected:
virtual void paintEvent( QPaintEvent *);
void drawPillars();
void drawText();
void drawScale();
public slots:
signals:
};
#endif /* _RK_HISTOGRAM_H_ */
|
2c2a61d2c26bb95ed1931c37d3db675e6ca7a39d | 4e864b8552a1cf4b668aac3bdc648afdccd7a658 | /node_old.cpp | 4766a04d81504cfe3cc73a602d737c3593c7df2c | [] | no_license | eivindeh/MasterOppg | a95062e6172832373ef1254674100bba30dd75e6 | 9abc11497406782f4e0249925a0084099ce50373 | refs/heads/master | 2021-01-11T00:17:05.454463 | 2016-11-26T01:56:11 | 2016-11-26T01:56:11 | 70,565,839 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,373 | cpp | node_old.cpp | #include <armadillo>
#include "node.h"
#include <fstream>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <armadillo>
#include <time.h>
using namespace std;
using namespace arma;
void node::setConnections(Pipe pipes[],node nodes[],int N,int M){
int n = (index-1)%(N);
int m = floor((index-1)/N);
leftPipe = &pipes[(m*((N+M-1))+n)+(n==0)*(N)];
leftNode = &nodes[index-1+(n==0)*(N)];
rightPipe = &pipes[m*((N+M-1))+n+1];
rightNode = &nodes[index+1-(n==(N-1))*(N)];
double above = m*((N+M-1))+N+(double)(n+1+((m+1)%(2)))/2;
double below = m*((N+M-1))-(double)(M-n+((m+1)%(2)))/2+(m==0)*(N+M-1)*M;
if (ceil(above) == above){
horizontalPipe = &pipes[(int)above];
horizontalNode = &nodes[index+N-(m==(M-1))*N*M];
}
else{
horizontalPipe = &pipes[(int)below];
horizontalNode = &nodes[index-N+(m==0)*N*M];
}
}
void node::fillAandB(mat *A, mat *B){
cout<<"node is "<<index<<endl<<"horizontal is "<<horizontalNode->index<<"lef is "<<leftNode->index<<endl<<"right is " <<rightNode->index<<endl;
(*A)(index-1,index-1) = -pow(rightPipe->radius,4)-pow(leftPipe->radius,4)-pow(horizontalPipe->radius,4);
(*A)(index-1,horizontalNode->index-1) = pow(horizontalPipe->radius,4);
(*A)(index-1,leftNode->index-1) = pow(leftPipe->radius,4);
(*A)(index-1,rightNode->index-1) = pow(rightPipe->radius,4);
}
|
aac66c71e0335b8c00fb3879fa4644cfa5a0dc83 | 1cd376c43e0c06f04585c2bd2b8a638d0213bdba | /src/daemon/PersistManager.cpp | d3dba7698ba34aa173901403de9243c579346189 | [
"MIT"
] | permissive | HanixNicolas/app-mesh | 4c7bf38467ccb74f0055ce0500e7fa645348d03b | 8ee77a6adb1091b3a0afcbc34d271b4b9508840e | refs/heads/main | 2023-09-01T10:46:59.218660 | 2021-09-26T09:39:11 | 2021-09-26T09:39:11 | 410,509,095 | 0 | 0 | MIT | 2021-09-26T09:34:43 | 2021-09-26T09:34:42 | null | UTF-8 | C++ | false | false | 4,851 | cpp | PersistManager.cpp | #include <fstream>
#include "../common/os/linux.hpp"
#include "Configuration.h"
#include "PersistManager.h"
#include "application/Application.h"
#include "consul/ConsulConnection.h"
#include "process/AppProcess.h"
#define SNAPSHOT_JSON_KEY_pid "pid"
#define SNAPSHOT_JSON_KEY_starttime "starttime"
//////////////////////////////////////////////////////////////////////////
/// HA for app process recover
//////////////////////////////////////////////////////////////////////////
PersistManager::PersistManager()
: m_persistedSnapshot(std::make_shared<Snapshot>())
{
}
PersistManager::~PersistManager()
{
}
std::shared_ptr<Snapshot> PersistManager::captureSnapshot()
{
auto snap = std::make_shared<Snapshot>();
auto apps = Configuration::instance()->getApps();
for (auto &app : apps)
{
if (!app->isEnabled())
continue;
auto pid = app->getpid();
auto snapAppIter = m_persistedSnapshot->m_apps.find(app->getName());
if (snapAppIter != m_persistedSnapshot->m_apps.end() && snapAppIter->second.m_pid == pid)
{
// if application does not changed pid, do not need call stat
snap->m_apps.insert(std::pair<std::string, AppSnap>(
app->getName(),
AppSnap(snapAppIter->second.m_pid, snapAppIter->second.m_startTime)));
}
else
{
// application pid changed
auto stat = os::status(pid);
if (stat)
{
snap->m_apps.insert(std::pair<std::string, AppSnap>(
app->getName(),
AppSnap(pid, (int64_t)stat->starttime)));
}
}
}
snap->m_consulSessionId = ConsulConnection::instance()->consulSessionId();
return snap;
}
void PersistManager::persistSnapshot()
{
const static char fname[] = "HealthCheckTask::persistSnapshot() ";
try
{
auto snapshot = this->captureSnapshot();
if (snapshot->operator==(*m_persistedSnapshot))
{
return;
}
else
{
m_persistedSnapshot = snapshot;
m_persistedSnapshot->persist();
}
}
catch (const std::exception &ex)
{
LOG_WAR << fname << "got exception: " << ex.what();
}
catch (...)
{
LOG_WAR << fname << "exception";
}
}
std::unique_ptr<PersistManager> &PersistManager::instance()
{
static auto singleton = std::make_unique<PersistManager>();
return singleton;
}
bool Snapshot::operator==(const Snapshot &snapshort) const
{
if (snapshort.m_apps.size() != m_apps.size())
return false;
for (const auto &app : m_apps)
{
if (0 == snapshort.m_apps.count(app.first))
return false;
if (app.second == snapshort.m_apps.find(app.first)->second)
{
// continue;
}
else
{
return false;
}
}
return snapshort.m_consulSessionId == m_consulSessionId;
}
web::json::value Snapshot::AsJson() const
{
web::json::value result = web::json::value::object();
// Applications
web::json::value apps = web::json::value::object();
for (const auto &app : m_apps)
{
auto json = web::json::value::object();
json[SNAPSHOT_JSON_KEY_pid] = web::json::value::number(app.second.m_pid);
json[SNAPSHOT_JSON_KEY_starttime] = web::json::value::number(app.second.m_startTime);
apps[app.first] = json;
}
result["Applications"] = apps;
result["ConsulSessionId"] = web::json::value::string(m_consulSessionId);
return result;
}
std::shared_ptr<Snapshot> Snapshot::FromJson(const web::json::value &obj)
{
auto snap = std::make_shared<Snapshot>();
if (!obj.is_null() && obj.is_object())
{
if (obj.has_object_field("Applications"))
for (auto app : obj.at("Applications").as_object())
{
if (HAS_JSON_FIELD(app.second, SNAPSHOT_JSON_KEY_pid) && HAS_JSON_FIELD(app.second, SNAPSHOT_JSON_KEY_starttime) &&
app.second.has_number_field(SNAPSHOT_JSON_KEY_pid) && app.second.has_number_field(SNAPSHOT_JSON_KEY_starttime))
{
snap->m_apps.insert(std::pair<std::string, AppSnap>(
app.first,
AppSnap(
GET_JSON_INT_VALUE(app.second, SNAPSHOT_JSON_KEY_pid),
GET_JSON_NUMBER_VALUE(app.second, SNAPSHOT_JSON_KEY_starttime))));
}
}
snap->m_consulSessionId = GET_JSON_STR_VALUE(obj, "ConsulSessionId");
}
return snap;
}
void Snapshot::persist()
{
const static char fname[] = "Snapshot::persist() ";
static auto tmpFile = std::string(SNAPSHOT_FILE_NAME) + "." + std::to_string(Utility::getThreadId());
std::ofstream ofs(tmpFile, std::ios::trunc);
if (ofs.is_open())
{
ofs << this->AsJson().serialize();
ofs.close();
if (ACE_OS::rename(tmpFile.c_str(), SNAPSHOT_FILE_NAME) == 0)
{
LOG_DBG << fname << "write snapshot success";
}
else
{
LOG_ERR << fname << "Failed to create snapshot file <" << SNAPSHOT_FILE_NAME << ">, error :" << std::strerror(errno);
}
}
else
{
LOG_WAR << fname << "Failed to open snapshot file";
}
}
AppSnap::AppSnap(pid_t pid, int64_t starttime)
: m_pid(pid), m_startTime(starttime)
{
}
bool AppSnap::operator==(const AppSnap &snapshort) const
{
return (m_startTime == snapshort.m_startTime && m_pid == snapshort.m_pid);
}
|
5863d7b68a1a56ab701a783581c0c4406166ac01 | 22d5d10c1f67efe97b8854760b7934d8e16d269b | /LeetCodeCPP/368. Largest Divisible Subset/main.cpp | afbe7d1fa043404179e990307afea1113e168d4c | [
"Apache-2.0"
] | permissive | 18600130137/leetcode | 42241ece7fce1536255d427a87897015b26fd16d | fd2dc72c0b85da50269732f0fcf91326c4787d3a | refs/heads/master | 2020-04-24T01:48:03.049019 | 2019-10-17T06:02:57 | 2019-10-17T06:02:57 | 171,612,908 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,262 | cpp | main.cpp | //
// main.cpp
// 368. Largest Divisible Subset
//
// Created by admin on 2019/9/18.
// Copyright © 2019年 liu. All rights reserved.
//
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
vector<int> largestDivisibleSubset(vector<int>& nums) {
int m=nums.size();
vector<int> count(m,1);
vector<int> pre(m,-1);
sort(nums.begin(),nums.end());
int maxSeq=0;
int idx=-1;
for(int i=0;i<m;i++){
for(int j=i-1;j>=0;j--){
if(nums[i]%nums[j]==0){
if(count[i]<count[j]+1){
count[i]=count[j]+1;
pre[i]=j;
}
}
}
if(count[i]>maxSeq){
maxSeq=count[i];
idx=i;
}
}
vector<int> ret;
while(idx!=-1){
ret.push_back(nums[idx]);
idx=pre[idx];
}
return ret;
}
};
int main(int argc, const char * argv[]) {
vector<int> input={1,2,4,8};
Solution so=Solution();
vector<int> ret=so.largestDivisibleSubset(input);
for(auto r:ret){
cout<<r<<" ";
}
cout<<endl;
return 0;
}
|
7e50b49c85495eaf26caa42e502473322d20a937 | 51e15084b06d901e0426737fab57f884165b0b21 | /server/config/reConfigs/lmuisa.re | 34298924f02eb4b2b9013234311ba6eac3a91c99 | [] | no_license | hajaalin/LMUISA_iRODS | 6552ff50240d54e5fafe23f398a9b0c3372aa4b8 | 0089185f5a04e3e93a0575815e8ebe66d2e7bbfd | refs/heads/master | 2021-01-17T14:17:03.605987 | 2012-12-21T14:41:43 | 2012-12-21T14:41:43 | 4,156,292 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,330 | re | lmuisa.re |
acCreateUserLMUISACollections {
acLog("acCreateUserLMUISACollections");
acCreateCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Data");
acCreateCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Conversions");
acCreateCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Results");
acCreateCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Trash");}
acDeleteUserLMUISACollections {
acLog("acDeleteUserLMUISACollections1");
acDeleteCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Data");
acLog("acDeleteUserLMUISACollections2");
acDeleteCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Conversions");
acLog("acDeleteUserLMUISACollections3");
acDeleteCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Results");
#msiSetACL("default","admin:own",$otherUserName,"/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Trash")
#msiSetACL("default","admin:null","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Trash")
acLog("acDeleteUserLMUISACollections4");
acDeleteCollByAdmin("/"++$rodsZoneProxy++"/home/"++$otherUserName,"Trash");}
acSetAclForLMUISACollections {
acLog("acSetAclForLMUISACollections");
if ($otherUserName != "lmu-staff" && $otherUserName != "lmu-instruments") then {
acSetAclForData;
#acSetStaffAclForTrash;
#acSetUserAclForTrash;
}
}
acSetAclForData {
acLog("acSetACLForData");
# staff can read files in user's Data
msiSetACL("recursive","admin:inherit","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Data");
msiSetACL("default","admin:read","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Data");
# instrument accounts can write to user's Data
msiSetACL("recursive","admin:inherit","lmu-instruments","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Data");
msiSetACL("default","admin:write","lmu-instruments","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Data");
msiSetACL("default","admin:read","lmu-instruments","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Data");
# staff can read files in user's Conversions
msiSetACL("recursive","admin:inherit","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Conversions");
msiSetACL("default","admin:read","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Conversions");
# staff can write to user's Results folder
msiSetACL("recursive","admin:inherit","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Results");
msiSetACL("default","admin:write","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Results");
# the user can read everythins in Results (also files created by staff)
msiSetACL("recursive","admin:inherit",$otherUserName,"/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Results");
msiSetACL("default","admin:read",$otherUserName,"/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Results");
}
acSetStaffAclForTrash{
acLog("acSetStaffACLForTrash");
msiSetACL("recursive","admin:inherit","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Trash"):::acLog("fail1");
msiSetACL("default","admin:own","lmu-staff","/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Trash"):::acLog("fail2");}
acSetUserAclForTrash{
acLog("acSetUserACLForTrash");
msiSetACL("recursive","admin:inherit",$otherUserName,"/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Trash");
msiSetACL("default","admin:write",$otherUserName,"/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Trash");
msiSetACL("default","admin:read",$otherUserName,"/"++$rodsZoneProxy++"/home/"++$otherUserName++"/Trash");}
# perform the conversion if the collection is ready
acTrackLeicaColl(*coll) {
msiIsReadyHcsColl(*coll,*ready,*foo);
if (*ready == "READY") {
acLog("acTrackLeicaColl: Collection "++*coll++" ready for conversion.");
acLeica2Cellomics(*coll);}
else {
acLog("acTrackLeicaColl: Collection "++*coll++" not ready.");}
}
# create a scheduled job that observes a Leica experiment--* folder
acCreateTrackerForLeicaColl(*coll) {
acLog("acCreateTrackerForLeicaColl "++$userNameClient++" "++*coll++" ...");
delay("<PLUSET>300s</PLUSET><EF>300s DOUBLE 2 TIMES</EF>") {
acTrackLeicaColl(*coll);}
}
|
afcc131264b14283de1d6a690b1a9b4a50a49a26 | 8d1d851e1d1db49825cb5480a97bbc4db1b0ac8d | /src/mkb10/mainmkb10widget.h | dc2ee63436ae95eee4a45e849902196d7945002a | [] | no_license | megakoko/m-system | 58f1ead3ae53c91d811f7a9481538df09a113e9a | c98a44617a9f30a19aced30390c49d42b0615723 | refs/heads/master | 2020-08-27T12:13:47.947378 | 2015-09-03T08:40:52 | 2015-09-03T08:40:52 | 217,363,524 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 597 | h | mainmkb10widget.h | #pragma once
#include "pluginwidget.h"
#include "ui_mainmkb10widget.h"
class QSqlRecord;
class QSqlQueryModel;
class MainMkb10Widget : public PluginWidget, private Ui::MainMkb10Widget
{
Q_OBJECT
public:
explicit MainMkb10Widget(QWidget *parent = 0);
private:
static QTreeWidgetItem* createItem(const QSqlRecord& rec);
static QList<QTreeWidgetItem*> createItems(const QVariant& parentId = QVariant());
void initTreeWidget();
static QString filterText();
QSqlQueryModel* m_filterModel;
private slots:
void treeWidgetItemExpanded(QTreeWidgetItem* item);
void filterDeseases();
};
|
2be170c33b37eb35fb55b60eb0abdde40292bb68 | 911958d63c4121d70863815155e97a137cf8d474 | /shapewars/src/ShapeWars.h | a3a08e609ae7be38aca0247f4cd451177fe8aa69 | [] | no_license | oilandrust/shapewars | 8927d78a366adc6fe7e28f1d4600d3a1320f7776 | de995edb0c89eb4e541659e92c80ea8c2d6b6c7d | refs/heads/master | 2020-12-30T23:23:22.879836 | 2016-05-23T14:38:45 | 2016-05-23T14:38:45 | 29,812,380 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,298 | h | ShapeWars.h | #ifndef GETTHEFLAGH
#define GETTHEFLAGH
#include <cassert>
#include <cmath>
#include <csignal>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#ifdef _MSC_VER
#define DEBUG_BREAK __debugbreak()
#else
#define DEBUG_BREAK raise(SIGTRAP)
#endif
#ifndef NDEBUG
#define ASSERT_MSG(condition, message, ...) \
do { \
if (!(condition)) { \
std::cerr << "Assertion `" #condition "` failed in " << __FILE__ << " line " << __LINE__ << ": "; \
printf(message, ##__VA_ARGS__); \
printf("\n"); \
DEBUG_BREAK; \
} \
} while (false)
#else
#define ASSERT_MSG(condition, message, ...) \
do { \
} while (false)
#endif
#define ASSERT assert
#ifdef NDEBUG
#define LOG(fmt, ...) printf(fmt, ##__VA_ARGS__)
#else
#define LOG(fmt, ...)
#endif
#define arrayCount(a) (sizeof(a) / sizeof((a)[0]))
typedef char int8;
typedef unsigned char uint8;
typedef short int16;
typedef unsigned short uint16;
typedef int int32;
typedef unsigned int uint32;
typedef int64_t int64;
typedef uint64_t uint64;
typedef float real32;
typedef double real64;
struct RGB {
uint8 r;
uint8 g;
uint8 b;
};
struct RGBA {
uint8 r;
uint8 g;
uint8 b;
uint8 a;
};
#define PI 3.14159265f
#define Kilobytes(Value) ((Value)*1024LL)
#define Megabytes(Value) (Kilobytes(Value) * 1024LL)
#define Gigabytes(Value) (Megabytes(Value) * 1024LL)
#define Terabytes(Value) (Gigabytes(Value) * 1024LL)
template <typename T>
inline T max(const T& a, const T& b)
{
return a < b ? b : a;
}
template <typename T>
inline T min(const T& a, const T& b)
{
return a < b ? a : b;
}
inline uint32 roundReal32toInt32(real32 r)
{
return (uint32)floor(r + 0.5f);
}
inline real32 randRangeReal32(real32 min, real32 max)
{
real32 range = max - min;
return min + range * rand() / RAND_MAX;
}
struct MemoryArena {
size_t used;
size_t size;
uint8* begin;
};
struct Memory {
MemoryArena persistentArena;
MemoryArena temporaryArena;
};
inline void initializeArena(MemoryArena* arena, void* base, size_t size)
{
arena->begin = (uint8*)base;
arena->size = size;
arena->used = 0;
for (size_t i = 0; i < size / 4; i++) {
((int32*)base)[i] = 0xdeadbeef;
}
}
inline void resetArena(MemoryArena* arena)
{
arena->used = 0;
}
inline void resetArena(MemoryArena* arena, size_t marker) {
arena->used = marker;
}
inline void* pushSize(MemoryArena* arena, size_t size)
{
ASSERT(arena->used + size < arena->size);
void* ptr = (void*)(arena->begin + arena->used);
arena->used += size;
return ptr;
}
inline void popSize(MemoryArena* arena, size_t size)
{
ASSERT(arena->used - size >= 0);
arena->used -= size;
}
template <class T>
inline T* pushStruct(MemoryArena* arena)
{
return (T*)pushSize(arena, sizeof(T));
}
template <class T>
inline T* pushStructZeroed(MemoryArena* arena)
{
T* ptr = (T*)pushSize(arena, sizeof(T));
memset(ptr, 0, sizeof(T));
return ptr;
}
template <class T>
inline T* pushArray(MemoryArena* arena, size_t count)
{
return (T*)pushSize(arena, count * sizeof(T));
}
template <class T>
inline T* pushArrayZeroed(MemoryArena* arena, size_t count)
{
T* ptr = (T*)pushSize(arena, count * sizeof(T));
memset(ptr, 0, sizeof(T) * count);
return ptr;
}
template <class T>
inline T* pushArray(MemoryArena* arena, size_t count, T val)
{
T* ptr = (T*)pushSize(arena, count * sizeof(T));
for (uint32 i = 0; i < count; i++) {
ptr[i] = val;
}
return ptr;
}
template <class T>
inline void popArray(MemoryArena* arena, size_t count)
{
popSize(arena, count * sizeof(T));
}
#endif |
6e1c0f40b08a34d3504d9bd25b4c3c6839ce5db1 | aad6d99fff4bb40442f2a953a581b891e289400a | /main.cc | 7fe3f4f1318b6ab923f37f0c8bc82d487e091d26 | [] | no_license | CSUF-CPSC121-2021S13/siligame-05-zaavaleta33 | 3939dfda6d3078a28ec185a79813109af6447860 | 1f71bbc41ba82155f2f79001b252a4fe1caf26e8 | refs/heads/main | 2023-04-23T10:50:05.746898 | 2021-05-14T22:07:13 | 2021-05-14T22:07:13 | 361,907,984 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 245 | cc | main.cc | #include <iostream>
#include <memory>
#include "game.h"
#include "game_element.h"
#include "opponent.h"
#include "player.h"
int main() {
Game game;
game.OnAnimationStep();
game.Init();
game.UpdateScreen();
game.Start();
return 0;
}
|
f72de3a2c45c4c444462c4d2fba46ad74e4003e7 | 858dc012ed841ccecb032084d276c514776076a8 | /source/DistributeCandies.cpp | 742e0bdff0b228b58606b119ec4cd9038ec72dde | [] | no_license | navyhu/LeetCodeCpp | 43ac8944df414fab38f42efa526416a38a660a82 | f772eaad71aeb019bdc58ccb6c1ba9c4614759be | refs/heads/master | 2020-05-17T03:25:47.789400 | 2018-07-20T03:57:08 | 2018-07-20T03:57:08 | 32,626,934 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | cpp | DistributeCandies.cpp | #include <iostream>
#include <vector>
#include <set>
using namespace std;
class Solution {
public:
int distributeCandies(vector<int>& candies) {
int n = candies.size() / 2;
set<int> lCandies;
for (auto candy : candies) {
lCandies.insert(candy);
}
return lCandies.size() > n ? n : lCandies.size();
}
};
|
f206c3a36a25a60050f174b09266481a17bb33a3 | e561d7d36ae0c58e151b68562652a105c2030030 | /CSE163Project2/Scene.cpp | 139148dd3f7a807003133f689231fc4138344c1b | [] | no_license | ZiqiGan/ProgressiveMesh | b3431a2741ce85b01ee1097d8fabd3d3bc120ba5 | af24f0b2d0483e1f07d0330a1a844f8650db7a33 | refs/heads/master | 2021-06-18T13:33:39.809038 | 2017-05-22T05:55:58 | 2017-05-22T05:55:58 | 90,571,989 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 829 | cpp | Scene.cpp | #include "Scene.h"
Scene::Scene(char * path)
{
object = Model(path);
model = glm::translate(model, glm::vec3(0.0f, -1.5f, 0.5f)); // Translate it down a bit so it's at the center of the scene
model = glm::scale(model, glm::vec3(0.5f, 0.5f, 0.5f)); // It's a bit too big for our scene, so scale it down
}
void Scene::render(const mat4 & projection, const mat4 & modelview)
{
Shader shader("./shader.vs", "./shader.frag");
shader.Use();
glUniformMatrix4fv(glGetUniformLocation(shader.Program, "projection"), 1, GL_FALSE, glm::value_ptr(projection));
glUniformMatrix4fv(glGetUniformLocation(shader.Program, "view"), 1, GL_FALSE, glm::value_ptr(modelview));
glUniformMatrix4fv(glGetUniformLocation(shader.Program, "model"), 1, GL_FALSE, glm::value_ptr(model));
object.Draw(shader,modelview);
}
Scene::~Scene()
{
}
|
979261ab462e6dfc79b3a085e708bcdb79ba693e | 383f00bef64f5adbefd7932003eb77f23829ac67 | /Languages/C++/Code/cpp11/day01/13_强类型枚举.cpp | d45562f42e7643b503e78c78c5ded774c1b3fcb1 | [] | no_license | WShiBin/Notes | 8fa64a8ebd4238404c1d08ce1394330246ca2c8c | 2d595c874d5f1ac4702d56b7f2af90c494b3bb5e | refs/heads/main | 2023-02-25T12:27:22.232451 | 2021-01-16T09:47:42 | 2021-01-16T09:47:42 | 330,110,828 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 825 | cpp | 13_强类型枚举.cpp | #define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
int main()
{
//强类型枚举, enum后面加上class或struct修饰
enum class Status { Ok, Error };
enum struct Status2 { Ok, Error };
//Status flag = Ok; //err, 必须枚举类型的作用域
Status flag = Status::Ok; //ok
//强类型枚举,可以指定成员变量的类型
enum struct Status3: char { Ok, Error };
cout << sizeof(Status3::Ok) << endl;
enum struct Status4: long long { Ok, Error };
cout << sizeof(Status4::Ok) << endl;
system("pause");
return 0;
}
int main01(void)
{
enum Status {Ok, Error};
// “Ok”: 重定义;以前的定义是“枚举数”
//enum Status2 { Ok, Error };
Status flag = Ok;
cout << sizeof(Ok) << endl; //4
system("pause");
return 0;
}
|
c199bfcfff36229a1cb9ade5f760851f3abfa43e | d5a0efec338b15e95440db9b91d05940ff707e41 | /Easy/ROWNANIE.cpp | d05af01e77d9e00b6b640512ff2070b8dd11e922 | [] | no_license | tadamczyk/SPOJ | d4d393383b8f347da7ea7bbafd967600d1982765 | e8fb1b04523ba04009126a7826ccf805faea7fb9 | refs/heads/master | 2020-07-01T17:14:16.480357 | 2017-01-07T16:16:55 | 2017-01-07T16:16:55 | 74,268,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 264 | cpp | ROWNANIE.cpp | // ROWNANIE.cpp
#include <iostream>
using namespace std;
int main()
{
long double a,b,c,wynik=0;
while(cin>>a>>b>>c)
{
wynik=(b*b)-4*a*c;
if (wynik>0) cout<<2<<endl;
if (wynik==0) cout<<1<<endl;
if (wynik<0) cout<<0<<endl;
}
return 0;
}
|
2115af7c7250f6a57ba6134d115cdf933c0631a7 | aaba6d264025d7ff1a7874b3e329c61ecec01bd6 | /hdoj/acm/acm/hdu1466-计算直线的交点数.cpp | 8bbaa6dcfc7781e1e3e995def60e0f76f9db7a66 | [] | no_license | liuzixing/scut | b8118c3f0fea497a6babbe1ccbed94f2997b07d3 | 930c90abbabc98ac0bff4cb4fcde2c46f92a2937 | refs/heads/master | 2020-06-09T06:59:29.230684 | 2014-03-19T11:29:52 | 2014-03-19T11:29:52 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,640 | cpp | hdu1466-计算直线的交点数.cpp | //将n 条直线排成一个序列,直线2和直线1最多只有一个交点,直线3和直线1,2最多有两个交点,。。。。。。,直线n 和其他n-1条直线最多有n-1个交点。由此得出n条直线互不平行且无三线共点的最多交点数:
//
// Max = 1 +2 +。。。。(n-1)=n(n-1)/2;
//
//但本题不这么简单,这些直线有多少种不同的交点数?
//
//
// 容易列举出i=1,2,3的情况如下图所示,来分析n=4的情况:
//
// 1. 四条直线全部平行,无交点
//
// 2. 其中三条平行,交点数: (n-1)*1 +0=3;
//
// 3. 其中两条平行,而另外两条直线的交点既可能平行也可能相交,因此交点数据分别为:
//
// (n-2)*2+0=4
//
// (n-2)*2 +1=5
//
// 4. 四条直线互不平行, 交点数为(n-3)*3+3条直线的相交情况:
//
// (n-3)*3+0=3
// (n-3)*3+2=5
// (n-3)*3+3=6
//
// 即n=4时,有0, 3, 4, 5, 6个不同的交点数.所有有5种可能
//
// 从上述n=4的分析过程中,发现:
//
// M条直线的交点方案数=(m-r)条平行线与r条直线交叉的交点数+r条直线本身的交点方案=
//
// (m-r)*r +r条
//
#include <iostream>
#include <cstdio>
using namespace std;
int n;
bool f[21][191];
int main(){
for (int i = 1;i < 21;i++)
f[i][0] = 1;
for (int i = 2;i < 21;i++)
for (int j = i - 1;j > 0 ;j--)
for (int k = 0;k < 191;k++)
if (f[i - j][k])
f[i][(i - j) * j + k] = 1;
while (scanf("%d",&n) != EOF){
printf("0");
for (int i = 1;i < 191;i++)
if (f[n][i])
printf(" %d",i);
puts("");
}
} |
16a9f8b8edc33231470af160c0aca160aefe4878 | 839192daec6e99039755404478cfa904852311b7 | /GameEngine/GameEngine/LTexture.h | 97b7e06e192a67bf6417e1836bd6ae6e152cb4df | [] | no_license | Bulldocer/GameEngine | 4880d0f8bb520d4d0503520d3d6b9d2f9a3c09b4 | 28f7ace2a08ebb92386b06a2de07b33ed8c24fe9 | refs/heads/master | 2020-12-24T06:52:11.169659 | 2017-01-18T18:44:30 | 2017-01-18T18:44:30 | 73,393,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 529 | h | LTexture.h | #pragma once
#include <SDL.h>
class LTexture
{
public:
//Initializes variables
LTexture();
//Deallocates memory
~LTexture();
//Loads image at specified path
bool loadFromFile(char* path);
//Deallocates texture
void free();
//Renders texture at given point
void render(int x, int y, SDL_Rect* clip = NULL);
//Gets image dimensions
int getWidth();
int getHeight();
private:
//The actual hardware texture
SDL_Texture* mTexture;
//Image dimensions
int mWidth;
int mHeight;
};
|
8b17a2b5524dcb23edc3c631efd533a81097a980 | 93e454370aafead885c0ccf0e383d741f3495d52 | /test/test_dynamic_matrix_assign.cpp | 97811fbfc4d955e6837f8f53646e012787cd4295 | [
"MIT"
] | permissive | AMatrix/AMatrix | c40e82f6eee07c9c97c4afbb0b26d7c9e1e753d9 | 325c3b59d99605f0b50b6e7be3556dd23881992c | refs/heads/master | 2021-07-12T05:40:14.505386 | 2019-01-07T18:03:12 | 2019-01-07T18:03:12 | 105,769,866 | 25 | 7 | MIT | 2019-01-24T16:35:30 | 2017-10-04T13:11:45 | C++ | UTF-8 | C++ | false | false | 2,615 | cpp | test_dynamic_matrix_assign.cpp | #include "amatrix.h"
#include "checks.h"
template <std::size_t TSize1, std::size_t TSize2>
int TestZeroMatrixAssign() {
AMatrix::Matrix<double, AMatrix::dynamic, AMatrix::dynamic> a_matrix(1,1);
a_matrix = AMatrix::ZeroMatrix<double>(TSize1, TSize2);
AMATRIX_CHECK_EQUAL(a_matrix.size1(), TSize1);
AMATRIX_CHECK_EQUAL(a_matrix.size2(), TSize2);
for (std::size_t i = 0; i < a_matrix.size1(); i++)
for (std::size_t j = 0; j < a_matrix.size2(); j++)
AMATRIX_CHECK_EQUAL(a_matrix(i, j), 0.00);
return 0; // not failed
}
int TestMatrixAssign(std::size_t Size1, std::size_t Size2) {
AMatrix::Matrix<double, AMatrix::dynamic, AMatrix::dynamic> a_matrix(Size1, Size2);
AMatrix::Matrix<double, AMatrix::dynamic, AMatrix::dynamic> b_matrix(Size1, Size2);
for (std::size_t i = 0; i < a_matrix.size1(); i++)
for (std::size_t j = 0; j < a_matrix.size2(); j++)
a_matrix(i, j) = 2.33 * i - 4.52 * j;
b_matrix = a_matrix;
AMATRIX_CHECK_EQUAL(b_matrix.size1(), Size1);
AMATRIX_CHECK_EQUAL(b_matrix.size2(), Size2);
for (std::size_t i = 0; i < a_matrix.size1(); i++)
for (std::size_t j = 0; j < a_matrix.size2(); j++)
AMATRIX_CHECK_EQUAL(b_matrix(i, j), 2.33 * i - 4.52 * j);
return 0; // not failed
}
int main() {
int number_of_failed_tests = 0;
number_of_failed_tests += TestZeroMatrixAssign<1, 1>();
number_of_failed_tests += TestZeroMatrixAssign<1, 2>();
number_of_failed_tests += TestZeroMatrixAssign<2, 1>();
number_of_failed_tests += TestZeroMatrixAssign<2, 2>();
number_of_failed_tests += TestZeroMatrixAssign<3, 1>();
number_of_failed_tests += TestZeroMatrixAssign<3, 2>();
number_of_failed_tests += TestZeroMatrixAssign<3, 3>();
number_of_failed_tests += TestZeroMatrixAssign<1, 3>();
number_of_failed_tests += TestZeroMatrixAssign<2, 3>();
number_of_failed_tests += TestZeroMatrixAssign<3, 3>();
number_of_failed_tests += TestMatrixAssign(1, 1);
number_of_failed_tests += TestMatrixAssign(1, 2);
number_of_failed_tests += TestMatrixAssign(2, 1);
number_of_failed_tests += TestMatrixAssign(2, 2);
number_of_failed_tests += TestMatrixAssign(3, 1);
number_of_failed_tests += TestMatrixAssign(3, 2);
number_of_failed_tests += TestMatrixAssign(3, 3);
number_of_failed_tests += TestMatrixAssign(1, 3);
number_of_failed_tests += TestMatrixAssign(2, 3);
number_of_failed_tests += TestMatrixAssign(3, 3);
std::cout << number_of_failed_tests << "tests failed" << std::endl;
return number_of_failed_tests;
}
|
bf06cb547792bf2f50fba6ffdbaa87f300f751c1 | 4745ca1076cde46e7b08f5831102efb69d81698b | /app/src/main/cpp/NIST_PQC_Round1/KEM/ROUND5/R5N1_1KEM_0d/r5_cpa_kem.cpp | cbff9603913a9e7a02054f56adc1c51a1decc127 | [] | no_license | LiuYuancheng/KeyExchangeApp | ec3173b27a82afb905a5d71e436acda575d9f63c | 60db1eb303286f80fb80bd1a29fd8252d606b7f0 | refs/heads/master | 2023-02-07T08:07:36.272549 | 2020-12-28T08:59:46 | 2020-12-28T08:59:46 | 315,569,884 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,427 | cpp | r5_cpa_kem.cpp | /*
* Copyright (c) 2018, Koninklijke Philips N.V.
*/
/**
* @file
* Implementation of the CPA KEM functions.
*/
#include "r5_cpa_kem.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "r5_core.h"
#include "r5_cpa_pke.h"
#include "pack.h"
#include "r5_hash.h"
#include "misc.h"
#include "r5_memory.h"
#include "lib/rng.h"
#include "drbg.h"
/*******************************************************************************
* Public functions
******************************************************************************/
int r5_cpa_kem_keygen(unsigned char *pk, unsigned char *sk, const parameters *params) {
return r5_cpa_pke_keygen(pk, sk, params);
}
int r5_cpa_kem_encapsulate(unsigned char *ct, unsigned char *k, const unsigned char *pk, const parameters *params) {
unsigned char *rho;
unsigned char *m;
unsigned char *hash_input;
/* Generate a random m */
m = (unsigned char *)checked_malloc(params->kappa_bytes);
randombytes(m, (unsigned long long)params->kappa_bytes);
/* Randomly generate rho */
rho = (unsigned char *)checked_malloc(params->kappa_bytes);
randombytes(rho, (unsigned long long)params->kappa_bytes);
/* Encrypt m */
r5_cpa_pke_encrypt(ct, pk, m, rho, params);
/* k = H(m, ct) */
hash_input = (unsigned char *)checked_malloc((size_t) (params->kappa_bytes + params->ct_size));
memcpy(hash_input, m, params->kappa_bytes);
memcpy(hash_input + params->kappa_bytes, ct, params->ct_size);
hash(k, params->kappa_bytes, hash_input, (size_t) (params->kappa_bytes + params->ct_size), params->kappa_bytes);
free(hash_input);
free(rho);
free(m);
return 0;
}
int r5_cpa_kem_decapsulate(unsigned char *k, const unsigned char *ct, const unsigned char *sk, const parameters *params) {
unsigned char *hash_input;
unsigned char *m;
/* Allocate space */
hash_input = (unsigned char *)checked_malloc((size_t) (params->kappa_bytes + params->ct_size));
m = (unsigned char *)checked_malloc(params->kappa_bytes);
/* Decrypt m */
r5_cpa_pke_decrypt(m, sk, ct, params);
/* k = H(m, ct) */
memcpy(hash_input, m, params->kappa_bytes);
memcpy(hash_input + params->kappa_bytes, ct, params->ct_size);
hash(k, params->kappa_bytes, hash_input, (size_t) (params->kappa_bytes + params->ct_size), params->kappa_bytes);
free(hash_input);
free(m);
return 0;
}
|
e2d6b2e92c3c8dfe3380479e3ec259cba9cc4aac | da48afcbd478f79d70767170da625b5f206baf9a | /tbmessage/websend/src3/ShutdownDlg.cpp | b2c5a9f0f65dfef6e825bb7ec42c466342874751 | [] | no_license | haokeyy/fahister | 5ba50a99420dbaba2ad4e5ab5ee3ab0756563d04 | c71dc56a30b862cc4199126d78f928fce11b12e5 | refs/heads/master | 2021-01-10T19:09:22.227340 | 2010-05-06T13:17:35 | 2010-05-06T13:17:35 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,110 | cpp | ShutdownDlg.cpp | // ShutdownDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "BatchMessage.h"
#include "ShutdownDlg.h"
#include ".\shutdowndlg.h"
// CShutdownDlg 对话框
IMPLEMENT_DYNAMIC(CShutdownDlg, CDialog)
CShutdownDlg::CShutdownDlg(CWnd* pParent /*=NULL*/)
: CDialog(CShutdownDlg::IDD, pParent)
{
nTimerElapse = 15;
}
CShutdownDlg::~CShutdownDlg()
{
}
void CShutdownDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BOOL CShutdownDlg::OnInitDialog()
{
CDialog::OnInitDialog();
this->SetTimer(101, 1000, NULL);
return TRUE;
}
BEGIN_MESSAGE_MAP(CShutdownDlg, CDialog)
ON_WM_TIMER()
ON_BN_CLICKED(IDC_BTN_SHUTDOWN, OnBnClickedBtnShutdown)
END_MESSAGE_MAP()
// CShutdownDlg 消息处理程序
void CShutdownDlg::OnTimer(UINT nIDEvent)
{
CString szPrompt;
szPrompt.Format("您的计算机将在%d秒内关闭。", nTimerElapse--);
this->SetDlgItemText(IDC_PROMPT, szPrompt);
if (nTimerElapse < 0)
{
MySystemShutdown();
this->KillTimer(100);
}
CDialog::OnTimer(nIDEvent);
}
void CShutdownDlg::OnBnClickedBtnShutdown()
{
MySystemShutdown();
}
BOOL MySystemShutdown()
{
HANDLE hToken;
TOKEN_PRIVILEGES tkp;
// Get a token for this process.
if (!OpenProcessToken(GetCurrentProcess(),
TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
return( FALSE );
// Get the LUID for the shutdown privilege.
LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME,
&tkp.Privileges[0].Luid);
tkp.PrivilegeCount = 1; // one privilege to set
tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
// Get the shutdown privilege for this process.
AdjustTokenPrivileges(hToken, FALSE, &tkp, 0,
(PTOKEN_PRIVILEGES)NULL, 0);
if (GetLastError() != ERROR_SUCCESS)
return FALSE;
// Shut down the system and force all applications to close.
if (!ExitWindowsEx(EWX_SHUTDOWN | EWX_FORCE, 0))
return FALSE;
return TRUE;
}
|
91aeaad469009b0b19294c2e78f9b7327527256f | 53cad3dc0c4b1c71685bb9af1f6a5523c58d8bc8 | /CP3/Graph Theory/UVA-924/main.cpp | 21bcea07aedec8a115c57b009eb91aa6fa4f2161 | [] | no_license | PiasRoY/SGIPC | 67874667093a4944b4ae05355731899dba3d4e54 | d6fed5580594a8f03faa3625e25e9cfd3c486f75 | refs/heads/master | 2021-07-19T10:23:47.768942 | 2020-06-21T09:39:58 | 2020-06-21T09:39:58 | 171,158,111 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,077 | cpp | main.cpp | #include <bits/stdc++.h>
using namespace std;
#define MX 3000
#define inf 1e9
#define pb push_back
#define mp make_pair
vector <int> adj[MX];
int dist[MX], n, M, D;
void bfs(int src)
{
fill(dist, dist+MX, inf);
queue <int> q;
q.push(src);
dist[src] = M = D = 0;
while(!q.empty()) {
int u = q.front();
q.pop();
for(int i = 0; i < adj[u].size(); i++) {
int v = adj[u][i];
if(dist[v] == inf) {
q.push(v);
dist[v] = dist[u] + 1;
}
}
if((q.size() > M) && (dist[q.front()] == dist[u]+1)) {
M = q.size();
D = dist[u]+1;
}
}
}
void reset()
{
for(int i = 0; i < n; i++)
adj[i].clear();
}
int main()
{
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
int u, v, test;
while(scanf("%d", &n) != EOF) {
reset();
for(int j = 0; j < n; j++) {
scanf("%d", &u);
for(int i = 0; i < u; i++) {
scanf("%d", &v);
adj[j].pb(v);
}
}
scanf("%d", &test);
for(int t = 1; t <= test; t++) {
scanf("%d", &u);
bfs(u);
if(M == 0) printf("0\n");
else printf("%d %d\n", M, D);
}
}
}
|
5b1192a84be7440a2a9f3d7ffffb8308954a4420 | 916b0f08c06c6efd3cd1c766a13bcf1f50bb35f1 | /LineFollowingAllBranches/RubiksControl.h | 922616fe6aa0bb8d89f703bfa5477cad9d98e1dd | [] | no_license | tcarmichael/ttu-secon-hardware | f7bff9ccf437dadaa158dc1cbe9d8cf6a9240a79 | d9d0b211e9ed106a4617916f1e0bb99736866db2 | refs/heads/master | 2021-03-16T03:33:21.923213 | 2015-04-19T17:03:30 | 2015-04-19T17:03:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 244 | h | RubiksControl.h | #include "GameControl.h"
class RubiksControl : public GameControl
{
// Wrapper for the Rubik's cube functions
public:
RubiksControl(ArmControl* parent) : GameControl(parent) {}
void Grab();
void Rotate();
void Release();
void Play();
}; |
9ad19adee3a02cb1ac94cf4d3d3493e2a24c73f4 | 1bb7b76e49f47f65caccc504b58c45e49fbc5975 | /Castlevania/Door.cpp | dada11212c29dc611eaf9dc08a186f5ea110178e | [] | no_license | mrtanloveoflife/Castlevania | b0e64091ced12cf4632f256edeedfb2e08650ad0 | b3eb5c7e0d4154bce2b511add45735c420e4a324 | refs/heads/master | 2020-04-15T00:04:59.630498 | 2019-01-05T15:41:56 | 2019-01-05T15:41:56 | 164,095,564 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,797 | cpp | Door.cpp | #include "Door.h"
void Door::LoadDoorTextures(int ID_TEX_DOORS, LPCWSTR DOORS_TEXTURE_PATH, D3DCOLOR DOORS_TEXTURE_BACKGROUND_COLOR)
{
CTextures * textures = CTextures::GetInstance();
textures->Add(ID_TEX_DOORS, DOORS_TEXTURE_PATH, DOORS_TEXTURE_BACKGROUND_COLOR);
CSprites * sprites = CSprites::GetInstance();
CAnimations * animations = CAnimations::GetInstance();
LPDIRECT3DTEXTURE9 texDoors = textures->Get(ID_TEX_DOORS);
LPANIMATION ani;
ifstream in;
in.open(DOOR_SPRITES_PATH);
int n, nState, id, left, top, right, bottom;
in >> nState;
for (int i = 0; i < nState; i++)
{
in >> n;
ani = new CAnimation(100);
for (int j = 0; j < n; j++)
{
in >> id >> left >> top >> right >> bottom;
sprites->Add(id, left, top, right, bottom, texDoors);
ani->Add(id);
}
animations->Add(ID_TEX_DOORS + i, ani);
}
}
Door::Door(float x, float y, int nx)
{
SetState(DOOR_STATE_CLOSED);
SetPosition(x, y);
this->nx = nx;
AddAnimation(800);
AddAnimation(801);
AddAnimation(802);
AddAnimation(803);
isUsed = false;
}
void Door::GetBoundingBox(float &left, float &top, float &right, float &bottom)
{
left = x + 8;
top = y;
right = left + DOOR_BBOX_WIDTH;
bottom = top + DOOR_BBOX_HEIGHT;
}
void Door::Render()
{
Camera *camera = Camera::GetInstance();
int SCREEN_WIDTH = camera->GetScreenWidth();
Point pos = camera->PositionOnCamera(x, y);
if (pos.x >= -16 && pos.x <= SCREEN_WIDTH)
{
// if the door has done its opening or closing state, reset animation (to avoid errors) and change its state
if (animations[state]->GetCurrentFrame() == 2)
{
animations[state]->SetCurrentFrame(-1);
if (state == DOOR_STATE_OPENING)
SetState(DOOR_STATE_OPENED);
else
SetState(DOOR_STATE_CLOSED);
}
animations[state]->Render(pos.x, pos.y);
}
} |
1c3169e8fc691bf723caf396682e19c5e6d06506 | 01583d445503213f2ff68e03405499023c9899f7 | /ch02/ex2_02.cpp | 2ec39881f38eec49bacf34c47f56c0339513eced | [] | no_license | myCigar/Cpp-Primer | 69b8264ad3f4df8ae0039c1186391a18b2063165 | 2a1accf4694c75680477450919b6b097a842cf06 | refs/heads/master | 2022-12-10T22:26:13.297270 | 2020-09-08T03:19:26 | 2020-09-08T03:19:26 | 275,531,952 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 279 | cpp | ex2_02.cpp | /*
* 利率
* 选用double
* 利率是一个小数,而一般不建议用float。
*/
/*
* 本金
* 一般为整数,且无符号
* 选用unsigned int,能够保存4亿多以下的金额
*/
/*
* 付款
* 为小数,且无符号
* 选用double
*/
|
f9f533c223a211691aa84ecfd406b719723bc3c9 | 806cc689c74d143634d19fce5126835a26d2676c | /TinyXML2/TinyXML2Demo/TinyXML2Demo/Demo.cpp | ae3f66d54532468e0f0000d0d015cd8849839c79 | [] | no_license | asdlei99/ThirdParty_SDK | 0db96af830959555b64aa5f7c149aa82295493f8 | ef3e8d91dec060e66d2d3eb0541eef340bc21079 | refs/heads/master | 2020-08-21T12:02:49.410070 | 2018-09-08T03:21:44 | 2018-09-08T03:21:44 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,243 | cpp | Demo.cpp | #include <stdio.h>
#include <iostream>
#include <tchar.h>
#include "TinyXML2\tinyxml2.h"
#pragma warning(disable:4996)
using namespace std;
void BroweAllElement(tinyxml2::XMLElement* ParentElement);
void PrintElementInfo(tinyxml2::XMLElement* CurrentElement);
//针对UTF-8和ANSI文件编码的说明
//注意,在默认情况下TinyXML(2)的字符编码处理方式依据xml文件编码而定,TinyXML和TinyXML2的API大体相同
void main()
{
tinyxml2::XMLDocument doc;
//doc.LoadFile("skin(UTF-8).xml");
doc.LoadFile("skin(ANSI).xml");
//doc.Print();//打印整个XML DOM
//printf("节点名为:%s,第一个属性值为:%s\n", doc.FirstChildElement()->Name(), doc.FirstChildElement()->FirstAttribute()->Value());
//查找信息
tinyxml2::XMLElement* RootElement = doc.FirstChildElement("Window");
//添加元素
tinyxml2::XMLElement* AddEle = doc.NewElement("addelement");
AddEle->SetAttribute("alfsjd", "了解阿飞");
AddEle->SetAttribute("kjj", "777777777777");
AddEle->SetText("离开家阿费莱解放党");
//RootElement->LinkEndChild(AddEle);
RootElement->InsertEndChild(AddEle);//会根据XMLDocument不同而改变,在同一个XMLDocument下,效果和LinkEndChild()一样
//RootElement->InsertFirstChild(AddEle);
doc.Print();
system("pause");
//删除操作
cout << "即将执行删除操作" << endl;
tinyxml2::XMLElement* NewEle = RootElement->FirstChildElement("addelement");//Attribute("kjj") << endl;
PrintElementInfo(NewEle);
//doc.Print();
system("pause");
//删除属性
cout << "即将执行删除属性" << endl;
NewEle->DeleteAttribute("kjj");
PrintElementInfo(NewEle);
system("pause");
cout << "即将执行删除元素" << endl;
doc.Print();
system("pause");
//删除某个子元素
RootElement->DeleteChild(RootElement->FirstChildElement("addelement"));
doc.Print();
system("pause");
//删除所有子元素
RootElement->DeleteChildren();
doc.Print();
system("pause");
//遍历所有元素
//BroweAllElement(RootElement);
//保存到文件上
//doc.SaveFile("OtherSave.xml");
system("pause");
}
void BroweAllElement(tinyxml2::XMLElement* ParentElement)
{
if (ParentElement != NULL)
{
PrintElementInfo(ParentElement);
if(0 == stricmp(ParentElement->Name(),"Button"))
{
ParentElement->SetName("lajfdldfj");
}
if (!ParentElement->NoChildren())
{
//遍历所有同级子元素
tinyxml2::XMLElement* ElementPos = NULL;
for (ElementPos = ParentElement->FirstChildElement(); ElementPos != NULL; ElementPos = ElementPos->NextSiblingElement())
BroweAllElement(ElementPos);
}
else
cout << "底层元素名:" << ParentElement->Name() << endl;
}
else
cout << "此元素不存在" << endl;
}
//输出元素的属性信息
void PrintElementInfo(tinyxml2::XMLElement* CurrentElement)
{
if (CurrentElement->FirstAttribute() != NULL)
{
printf("节点名为:%s\n", CurrentElement->FirstAttribute()->Name());
//判断某属性是否存在
const char* PropName1 = "roundcorner";
printf("%s属性是否存在? %d\n", PropName1, CurrentElement->BoolAttribute(PropName1));
//查询某节点的非字符串类型属性值,官方提供了Int、float、double、bool、unsigned int等数据支持
const char* PropName2 = "IntValue";
int PropValue2 = 10;
CurrentElement->QueryAttribute(PropName2, &PropValue2);//此函数重载了4次,分别对应上述数据类型
if (CurrentElement->BoolAttribute(PropName2))
printf("%s属性的数值: %d\n", PropName2, PropValue2);
//查询某节点的字符串类型属性值
const char* PropName3 = "sizebox";
const char* PropValue3 = CurrentElement->Attribute(PropName3);
if (CurrentElement->BoolAttribute(PropName3))
{
printf("%s属性的数值: %s\n", PropName3, PropValue3);
//设置属性
CurrentElement->SetAttribute("Custom","你好吗?");//添加属性
CurrentElement->SetAttribute("sizebox","10000");//修改属性
system("pause");
}
//遍历所有属性
const tinyxml2::XMLAttribute* AttributePos = NULL;
for (AttributePos = CurrentElement->FirstAttribute(); AttributePos != NULL; AttributePos = AttributePos->Next())
printf("属性名:%s 属性数值:%s\n", AttributePos->Name(), AttributePos->Value());
}
} |
b7a4251539f0387a87ae1aa4bb0d1fa52dcb5b05 | c3c4e0d0d8fb88e04ff932c505b04625bd3c260b | /src/engine/systems/SpriteSystem.cpp | 5d4000e0959a51fa6485a8a3301afb0698d80ab6 | [] | no_license | mantelpiece/2d-builder | 594ff6ae606aaf91b4e543a412ab36c60568b289 | 0c67ebb6b1f35c3f3492ff545be1ad6b944b6d12 | refs/heads/master | 2021-01-12T11:08:33.242551 | 2018-12-29T10:38:48 | 2018-12-29T11:06:57 | 72,846,116 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | cpp | SpriteSystem.cpp | #include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include "SpriteSystem.h"
#include "Components.h"
SpriteSystem::SpriteSystem() {}
SpriteSystem::~SpriteSystem() {
printf("..sprite system destroyed\n");
}
bool SpriteSystem::init(SDL_Renderer* renderer) {
_renderer = renderer;
// TODO: Write some fancy way of working this out.
auto meeple = IMG_Load("dat/meeple.png");
auto meepleTexture = SDL_CreateTextureFromSurface(_renderer, meeple);
SDL_FreeSurface(meeple);
if (meepleTexture == nullptr) {
printf("Failed to initialise meeple texture during pre-render: %s\n", SDL_GetError());
return false;
}
_spriteSheets.insert({"meeple", meepleTexture});
return true;
}
void SpriteSystem::cleanup() {
for (auto texture : _spriteSheets) {
SDL_DestroyTexture(texture.second);
}
_spriteSheets.clear();
printf("..shutdown sprite system\n");
}
bool SpriteSystem::render(Position * const position, Sprite * const sprite) {
return true;
}
|
f080a549b3f9927985d1e172eef9720ff2d5b65a | 8bf71dd2883befffb1b326ad633cc2b1c03bc490 | /classwork/05_assign/main.cpp | 8f5c199e63458d86fe8e6ecba5499776c7cf12ba | [
"MIT"
] | permissive | acc-cosc-1337-spring-2019/acc-cosc-1337-spring-2019-MahdevGiri | bd12f2379cbc33c8dae096cf20c124bea3e2a125 | 91322930bedf6897b6244c778c707231560ccb15 | refs/heads/master | 2020-04-18T10:09:38.098524 | 2019-05-16T14:47:16 | 2019-05-16T14:47:16 | 167,458,394 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 979 | cpp | main.cpp | #include "rectangle.h"
#include<iostream>
#include<vector>
/*
Create a vector of rectangles
Add 3 Rectangle classes to the vector:
Width Height Area
4 5 20
10 10 100
100 10 1000
Iterate the vector and display the Area for each Rectangle on one line and the total area for the
3 rectangles.
*/
int main()
{
std::vector<acc::Rectangle> rectangles;
acc::Rectangle rectangle1(4, 5); // object 1 to pass the value w = 4 and h = 5
acc::Rectangle rectangle2(10, 10); // object 2
acc::Rectangle rectangle3(100, 10); // object 3
rectangles.push_back(rectangle1);
rectangles.push_back(rectangle2);
rectangles.push_back(rectangle3);
for (auto a : rectangles)
{
std::cout << a.get_area() << "\n";
}
std::cout <<"Recatangle1 is: "<< rectangle1.get_area() << " \n";
std::cout <<"Recatangle2 is: " << rectangle2.get_area() << " \n";
std::cout <<"Recatangle3 is: " << rectangle3.get_area() << " \n";
return 0;
} |
e4c71b5d778c36128a64bfed7b871984209d254d | bd43b403961916679561b5bb174c87f01c43f172 | /Classes/Ranfunc.h | 8c07423fa5fbd12978ffcdaa876021c3eac98cf7 | [] | no_license | lingjiawen/colorWeekend | 2413526f268d24112cb6a79df5829096123fe523 | ba6167d927cd1b58c79bcffac58ecb8f2e6fcaf9 | refs/heads/master | 2021-01-23T06:15:13.082505 | 2017-09-06T04:44:20 | 2017-09-06T04:44:20 | 102,495,410 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 350 | h | Ranfunc.h | #ifndef _RANFUC_H_
#define _RANFUC_H_
#include <random>
#include <time.h>
#include "Tag.h"
namespace RanFunc
{
float GetRandomNumber(std::default_random_engine &e,int i1, int i2);
#define INIT_RANDOM_ENGINE std::default_random_engine e(time(0)) //随机数引擎类,初始化e()
#define rn(a,b) GetRandomNumber(e,a,b)
}
#endif |
f8163ef026ff7d0900c775eae7e8c0f2540d4511 | 136b76fbc57d9d9d7e761b1481a18184bf10fee2 | /include/mixr/dafif/records/Runway.hpp | be482069df6a7a0a31225691eb8ad5550851b608 | [] | no_license | WarfareCode/mixr | c2487869fa22e7df667d822982d8fff04cf9f05e | baecfda072c783bb72bf9874ca58436989af5389 | refs/heads/master | 2022-10-02T22:01:53.224217 | 2022-08-11T12:48:58 | 2022-08-11T12:48:58 | 193,439,718 | 0 | 0 | null | 2019-06-24T05:29:49 | 2019-06-24T05:29:49 | null | UTF-8 | C++ | false | false | 5,294 | hpp | Runway.hpp |
#ifndef __mixr_dafif_Runway_HPP__
#define __mixr_dafif_Runway_HPP__
#include "mixr/dafif/records/Record.hpp"
#include <string>
namespace mixr {
namespace dafif {
//------------------------------------------------------------------------------
// Class: Runway
// Description: Access to the DAFIF Airport/Runway records
//------------------------------------------------------------------------------
// EDL Interface:
//
// Factory name: Runway
// Slots: none
//------------------------------------------------------------------------------
class Runway final: public Record
{
DECLARE_SUBCLASS(Runway, Record)
public:
// length of a DAFIF Runway record pair
enum { RECORD_LENGTH = RUNWAY_RECORD_LEN };
enum WhichEnd { LOW_END = 0, HIGH_END = 1 };
public:
Runway();
Runway(const std::string&);
// Return the values of the latitude, longitude, elevation, slope
// and magnetic heading fields for 'whichEnd' of the runway.
// WhichEnd is Runway::HIGH_END or Runway::LOW_END.
double latitude(const WhichEnd whichEnd) const;
double longitude(const WhichEnd whichEnd) const;
float elevation(const WhichEnd whichEnd) const;
float magHeading(const WhichEnd whichEnd) const;
float slope(const WhichEnd whichEnd) const;
// returns the value of the runway's (end) identifier field in 'id'
void ident(char ident[], const WhichEnd whichEnd) const;
// returns true if 'id' is equal to the runway's (end) id field
int isIdent(const char id[], const WhichEnd whichEnd) const;
// returns the width of the runway (feet)
int width() const;
// returns the length of the runway (feet)
int length() const;
// returns the record key of the airport
void airportKey(char apKey[]) const;
void getRunwayMagHeading(const double aclat, const double aclon, const double acelev, float* magHeading1, float* magHeading2, double* trueBearing1, double* trueBearing2) const;
void printRunwayMagHeading(std::ostream& sout, const double aclat, const double aclon, const double acelev) const;
// returns which end of the runway matches the runway end id
WhichEnd whichEnd(const char rwEndId[]) const;
private:
static const Ptbl ptable;
void printRecordImpl(std::ostream& sout) const final;
};
// ident: returns the runway identifier field
inline void Runway::ident(char ident[], const WhichEnd whichEnd) const
{
if (whichEnd == LOW_END)
dsGetString(ident, makePointer(RW_LE_IDENT_POS), RW_XE_IDENT_LEN);
else
dsGetString(ident, makePointer(RW_HE_IDENT_POS), RW_XE_IDENT_LEN);
}
// isIdent: returns true if id runway the identifier field
inline int Runway::isIdent(const char id[], const WhichEnd whichEnd) const
{
if (whichEnd == LOW_END)
return dsIsString( makePointer(RW_LE_IDENT_POS), id );
else
return dsIsString( makePointer(RW_HE_IDENT_POS), id );
}
// latitude: returns the value of the runway end latitude field
inline double Runway::latitude(const WhichEnd whichEnd) const
{
if (whichEnd == LOW_END)
return dsLatitude( makePointer(RW_LE_LATITUDE_POS) );
else
return dsLatitude( makePointer(RW_HE_LATITUDE_POS) );
}
// longitude: returns the value of the runway end longitude field
inline double Runway::longitude(const WhichEnd whichEnd) const
{
if (whichEnd == LOW_END)
return dsLongitude( makePointer(RW_LE_LONGITUDE_POS) );
else
return dsLongitude( makePointer(RW_HE_LONGITUDE_POS) );
}
// elevation: returns the value of the runway end elevation field
inline float Runway::elevation(const WhichEnd whichEnd) const
{
if (whichEnd == LOW_END)
return dsElevation1( makePointer(RW_LE_ELEVATION_POS) );
else
return dsElevation1( makePointer(RW_HE_ELEVATION_POS) );
}
// slope: returns the value of the runway end slope field
inline float Runway::slope(const WhichEnd whichEnd) const
{
if (whichEnd == LOW_END)
return static_cast<float>(dsAtoln( makePointer(RW_LE_SLOPE_POS), RW_XE_SLOPE_LEN ));
else
return static_cast<float>(dsAtoln( makePointer(RW_HE_SLOPE_POS), RW_XE_SLOPE_LEN ));
}
// magHeading: returns the value of the runway end mag heading field
inline float Runway::magHeading(const WhichEnd whichEnd) const
{
if (whichEnd == LOW_END)
return dsMagHeading( makePointer(RW_LE_MAGHDG_POS) );
else
return dsMagHeading( makePointer(RW_HE_MAGHDG_POS) );
}
// width: returns the value of the runway width field
inline int Runway::width() const
{
return dsAtoln( makePointer(RW_WIDTH_POS), RW_WIDTH_LEN );
}
// length: returns the value of the runway length field
inline int Runway::length() const
{
return dsAtoln( makePointer(RW_LENGTH_POS), RW_LENGTH_LEN );
}
// airportKey: returns the value of the airport identifier
inline void Runway::airportKey(char apKey[]) const
{
dsGetString( apKey, makePointer(RW_APKEY_POS), AP_KEY_LEN );
}
// whichEnd: which end of the runway are we approaching?
inline Runway::WhichEnd Runway::whichEnd(const char rwEndId[]) const
{
Runway::WhichEnd we = Runway::HIGH_END;
if ( !isIdent(rwEndId,we) ) we = Runway::LOW_END;
return we;
}
}
}
#endif
|
3e670b8d57c38b494fc14bad345186833740afda | ac28a5e5d93abddcefca5d19b7f06cfbae85ae26 | /manejo_txt.cpp | 702eff344f5125834ad34cd7fe9e89d7e62dc75a | [] | no_license | Juan-garcia19/Lab3_cajero | 52cd2270dbe9981781c7e39dd585b5c1a6662066 | 162c8ce3bde9c15c91c8191a7395ea58b88e90c6 | refs/heads/master | 2023-07-15T18:36:27.344008 | 2021-08-27T12:12:33 | 2021-08-27T12:12:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,209 | cpp | manejo_txt.cpp | #include "manejo_txt.h"
manejo_txt::manejo_txt()
{
}
string manejo_txt::Str_Bin(string contenido)
{
int tamCad = contenido.length();
string cadBinario;
for(int i=0;i < tamCad*8;i++){
cadBinario += ' ';
}
int carac=0;
for(int cont=0;cont<tamCad;cont++){
carac = (int)contenido[cont];
for(int elem=0, palBin=(cont + 1)*8-1 ; elem<8 ; elem++,palBin--){
cadBinario[palBin]=(char)(carac%2+48);
carac/=2;
}
}
return cadBinario;
}
string manejo_txt::Bin_Str(string CadCode)
{
int tamCad= CadCode.length(),multiplicador=1;
int decimal=0;
string CadTxt;
for(int cont=0;cont<tamCad/8;cont++){
multiplicador=1;
decimal=0;
for(int elem=0, palBin=(cont + 1)*8-1 ; elem<8 ; elem++,palBin--){
if (CadCode[palBin] == '1'){
decimal += multiplicador;
}
multiplicador = multiplicador*2;
}
CadTxt+=decimal;
}
return CadTxt;
}
string manejo_txt::codificar(int n, string CadText)
{
string CadBinario;
string CadCode;
CadBinario = Str_Bin(CadText);
int Especial=0, PartSup;
int Longitud=CadBinario.length();
for(int elem = 0; elem<Longitud;elem++){
CadCode += ' ';
}
if (Longitud%n != 0){
Especial++;
}
PartSup = Especial == 1 ? (Longitud/n)+1 : Longitud/n;
for(int NLego = 0 ;NLego < PartSup; NLego ++){
Especial=Longitud%n;
if(NLego==Longitud/n){
CadCode[NLego*n] = CadBinario[(NLego*n + Especial)-1];
for (int i = n*NLego ;i < (NLego*n + Especial-1) ; i++){
CadCode[i+1]=CadBinario[i];
}
}
else{
CadCode[NLego*n]=CadBinario[n*(NLego+1)-1];
for (int i = n*NLego ;i < (n*(NLego+1)-1); i++){
CadCode[i+1]=CadBinario[i];
}
}
}
return CadCode;
}
string manejo_txt::decodificar(int n, string CadBinario)
{
string CadCode;
string CadTxt;
int Especial=0, PartSup;
int Longitud=CadBinario.length();
for(int elem = 0; elem<Longitud;elem++){
CadCode += ' ';
}
if (Longitud%n != 0){
Especial++;
}
PartSup = Especial == 1 ? (Longitud/n)+1 : Longitud/n;
for(int NLego = 0 ;NLego < PartSup; NLego ++){
Especial=Longitud%n;
if(NLego==Longitud/n){
CadCode[(NLego*n + Especial)-1] = CadBinario[NLego*n];
for (int i = n*NLego ;i < (NLego*n + Especial-1) ; i++){
CadCode[i]=CadBinario[i+1];
}
}
else{
CadCode[n*(NLego+1)-1]=CadBinario[NLego*n];
for (int i = n*NLego ;i < (n*(NLego+1)-1); i++){
CadCode[i]=CadBinario[i+1];
}
}
}
CadTxt=Bin_Str(CadCode);
return CadTxt;
}
string manejo_txt::LectuArchi(){
string data;
// Abre el archivo en modo lectura
ifstream infile;
// Se pone de manera explicita la ruta relativa donde se encuentra el archivo
infile.open(txt);
// Se comprueba si el archivo fue abierto exitosamente
if (!infile.is_open())
{
cout << "Error abriendo el archivo" << endl;
exit(1);
}
cout << "Leyendo el archivo" << endl;
infile >> data;
// Se escribe el dato en la pantalla
cout << data << endl;
string linea;
int contador =0;
while(!infile.eof()){
contador++;
if (contador>1){
data+='\n';
}
getline(infile,linea);
data+=linea;
}
// Se cierra el archivo abierto
infile.close();
return data;
}
void manejo_txt::Bin_lectura(){
string archi2 = LectuArchi();
string copiaArch,C,txtBin;
int longitud2 = archi2.length();
for(int i=0;i<longitud2;i++){
if (archi2[i]=='\n' or archi2[i]==' '){
C=decodificar(4,copiaArch);
txtBin+=C;
if (archi2[i]=='\n'){
txtBin+='\n';
}
else{
txtBin+=' ';
}
copiaArch="";
}
else {
copiaArch+=archi2[i];
}
}
C=decodificar(4,copiaArch);
txtBin+=C;
archivo=txtBin;
}
void manejo_txt::escribir(string contenido,string txt)
{
ofstream archi;
archi.open(txt);
if (!archi.is_open())
{
cout << "Error abriendo el archivo" << endl;
exit(1);
}
archi << contenido;
archi.close();
}
string manejo_txt::getArchivo() const
{
return archivo;
}
void manejo_txt::setArchivo(const string &value)
{
archivo = value;
}
void manejo_txt::codi_escritura(){
int longitud=archivo.length();
string copiaArch,C,txtBin;
for(int i=0;i<longitud;i++){
if (archivo[i]=='\n' or archivo[i]==' '){
C=codificar(4,copiaArch);
txtBin+=C;
if (archivo[i]=='\n'){
txtBin+='\n';
}
else{
txtBin+=' ';
}
copiaArch="";
}
else {
copiaArch+=archivo[i];
}
}
C=codificar(4,copiaArch);
txtBin+=C;
escribir(txtBin,txt);
}
|
f5076c8b01ede4ec2a6f7e99b16a37a8eb838e61 | a06515f4697a3dbcbae4e3c05de2f8632f8d5f46 | /corpus/taken_from_cppcheck_tests/stolen_9500.cpp | 50efe59ceba85fc31a8daab4ecee2b4dd0ba2b29 | [] | no_license | pauldreik/fuzzcppcheck | 12d9c11bcc182cc1f1bb4893e0925dc05fcaf711 | 794ba352af45971ff1f76d665b52adeb42dcab5f | refs/heads/master | 2020-05-01T01:55:04.280076 | 2019-03-22T21:05:28 | 2019-03-22T21:05:28 | 177,206,313 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 72 | cpp | stolen_9500.cpp | void f() {
FILE*f=fopen(fname,a);
std::unique_ptr<FILE> fp{f};
} |
e35d47656efb4ff5be45c17834f2998abf523b5e | 09b6249a2aa46f1bf0420c74f12b7118bd9f7841 | /android/脱壳类/20171030-360加固被还原/360虚拟壳修复工具和代码/360calc_switch/360calc_switch/360calc_switch.cpp | fee517c8f78bad10ed3bce89a68324054f9c4cd0 | [] | no_license | BiteFoo/ebook | b77221498516efc34676dccb2656ed647c067f6e | bebf35dc70063a8058080e20f60d943a61c7d1bf | refs/heads/master | 2021-08-21T20:37:55.366648 | 2017-11-29T01:34:52 | 2017-11-29T01:34:52 | 111,646,955 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,688 | cpp | 360calc_switch.cpp | // 360calc_switch.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <stdlib.h>
int _tmain(int argc, _TCHAR* argv[])
{
unsigned char tempa=0x00;
unsigned char tempb=0x00;
unsigned char tempc=0x00;
unsigned char tempd=0x00;
unsigned int switch_table[]=//这里是switch table对应的偏移
{0x00002e6a,
0x00001fea,
0x00001286,
0x00003ffc,
0x00003ede,
0x00003458,
0x00002ee4,
0x000044d2,
0x000043e4,
0x000021e8,
0x0000047a,
0x00000f82,
0x000005c8,
0x00004022,
0x00003eb6,
0x00003232,
0x000038a0,
0x000041fe,
0x00003a56,
0x00000632,
0x000036f8,
0x0000350c,
0x000025e4,
0x00002716,
0x00003bca,
0x0000264a,
0x00003cfa,
0x000034b4,
0x00002848,
0x00003f8e,
0x00002d2c,
0x00003016,
0x000044d2,
0x00001b12,
0x000044d2,
0x000044d2,
0x0000150a,
0x00003e8e,
0x00002e00,
0x00001982,
0x000004f8,
0x00004048,
0x0000395e,
0x000009fc,
0x00002e6a,
0x0000231a,
0x000044d2,
0x000011dc,
0x000004de,
0x00000d70,
0x00000436,
0x00003c96,
0x00002e6a,
0x00002cc2,
0x0000211c,
0x00003488,
0x00000bf0,
0x00002b1a,
0x00000402,
0x000032d2,
0x0000134e,
0x0000049e,
0x0000366c,
0x000013a2,
0x000044d2,
0x00002ff2,
0x000006be,
0x00003350,
0x0000122e,
0x000044d2,
0x000030d6,
0x0000424e,
0x00001c04,
0x00003a18,
0x00003732,
0x00000604,
0x000044d2,
0x00001f84,
0x000038fc,
0x00003428,
0x000006a2,
0x00000fa6,
0x000044d2,
0x00003ace,
0x00003bee,
0x0000324c,
0x00003218,
0x0000125a,
0x0000144a,
0x00002e6a,
0x00001efc,
0x00003d9e,
0x00002f08,
0x000044d2,
0x00002f50,
0x000007d6,
0x00000f90,
0x0000376c,
0x000042d0,
0x000037ea,
0x00002e6a,
0x00000840,
0x000037a6,
0x000044d2,
0x00003c56,
0x000024b2,
0x000012ea,
0x00003072,
0x00000b3e,
0x00003c36,
0x0000041a,
0x000026b0,
0x00003aae,
0x000044d2,
0x00000f00,
0x00003d20,
0x000044d2,
0x00002a46,
0x00003c12,
0x000015ca,
0x000010fa,
0x00000c96,
0x0000392a,
0x000005aa,
0x000029e0,
0x00001e4a,
0x00002e6a,
0x000003fc,
0x00002eb6,
0x00002b84,
0x00000682,
0x00001ccc,
0x0000359c,
0x000028ae,
0x00002ab0,
0x00001378,
0x00004070,
0x000042a0,
0x000033f8,
0x000013cc,
0x000044d2,
0x000020b6,
0x00003b5c,
0x0000174a,
0x00002e6a,
0x00000552,
0x00003872,
0x00003160,
0x00002bee,
0x00001420,
0x000023e6,
0x000027e2,
0x00002f6e,
0x00001058,
0x00001178,
0x0000277c,
0x0000443c,
0x000010aa,
0x00000770,
0x000018dc,
0x0000297a,
0x00002050,
0x00002e6a,
0x0000051c,
0x00000d0c,
0x000013f6,
0x000040ea,
0x00001828,
0x0000224e,
0x000044d2,
0x000044d2,
0x00002c58,
0x000044d2,
0x00002d96,
0x00002380,
0x00004226,
0x00000aa6,
0x00003e42,
0x00000fb8,
0x00004410,
0x00003278,
0x000004ca,
0x000040c0,
0x00003c76,
0x00004160,
0x00000fec,
0x00002f28,
0x000022b4,
0x00000534,
0x0000399c,
0x00003fb0,
0x0000131c,
0x00002e7e,
0x000044d2,
0x000043b8,
0x000032a4,
0x000012b8,
0x000031fa,
0x00001a4a,
0x0000045a,
0x00004344,
0x000044d2,
0x0000427a,
0x00001d88,
0x0000382e,
0x000044d2,
0x00004098,
0x00002e6a,
0x000038ce,
0x00003f6c,
0x00003554,
0x000044d2,
0x000044d2,
0x00002914,
0x00000590,
0x000005e0,
0x00002f90,
0x00003cc8,
0x0000244c,
0x000044d2,
0x000044d2,
0x000030f8,
0x0000065a,
0x00003f4a,
0x00003aee,
0x000035e0,
0x000006e4,
0x00002518,
0x000044d2,
0x000044d2,
0x00002e9a,
0x00003f28,
0x00002e6a,
0x00002fcc,
0x000041d6,
0x00003e1c,
0x00000dd4,
0x00003e68,
0x000044d2,
0x000044d2,
0x00003f06,
0x00002fb2,
0x000031d2,
0x0000446e,
0x0000257e,
0x0000168a,
0x00002182,
0x00000704,
0x0000091e,
0x000044d2,
0x000039da,
0x000044a0,
0x000034e0,
0x00003fd6,
0x00000570
};
int switch_base=0x35CCC;
int opcode=0xd8; //这里填写switch之前的opcode,下面得到此case的地址
int i=opcode-1;
int opcode_realaddr=switch_table[i]+switch_base;
printf("addr=0x%x,off=+0x%x\n",opcode_realaddr,switch_table[i]);//ida中opcode的地址
system("PAUSE");
return 0;
} |
9f02d756f715b791f3fc7e1773bc034713496de7 | f8bee118391a4657c117dbebd21f508424094863 | /chapterDemo/07-Chapter/7-Test2-ChessMoveProblem/ChessMoveProblem_Main.cpp | e3b3b264cd6bc756bc676f68bcdfda22769f2806 | [] | no_license | BoKiMoMo/myC--ProgramPractice | 9ef8b2afe189fbe1aa573f8e2ef0cdce4308658f | bd3602bc79110edfc995cd72b0ffd25296d969f7 | refs/heads/master | 2023-06-09T05:08:33.366842 | 2021-06-23T10:36:25 | 2021-06-23T10:36:25 | 274,411,954 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 149 | cpp | ChessMoveProblem_Main.cpp | #include "ChessMoveProblem.h"
int main()
{
srand(time(NULL));
ChessMoveProblem Knight01;
Knight01.initialization();
Knight01.userInterface();
} |
c476007ed37050b3a9f403b42bff3a65bfebfc12 | 16803d429d7edad2a71cd5a4842f97b38ab3d537 | /binary-tree-traversal.h | edfa9f05df8146cbfb661fba066cd9178347aceb | [] | no_license | mkinsz/tcode | aaf0c57dba31205981cbbc97aaf60a7f428c3d34 | 65d09cff5dab4572f79004ce26b114426a642d56 | refs/heads/master | 2022-11-30T18:54:14.536990 | 2020-07-31T06:27:34 | 2020-07-31T06:27:34 | 283,953,898 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,187 | h | binary-tree-traversal.h | #ifndef BINARYTREETRAVERSAL_H
#define BINARYTREETRAVERSAL_H
/*
* 二叉树的后序遍历
* 给定一个二叉树,返回它的 后序 遍历。
* 前序: 根左右的遍历方式
* 后序: 左右根的遍历方式
*/
#include <vector>
#include <stack>
#include <iterator>
#include <algorithm>
#include <queue>
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
// 将前序遍历的模型,进行修改,使其成根右左,再最后加上reverse进行反转,得到左右根,即使后序遍历
std::vector<int> postorderTraversal(TreeNode* root) {
std::vector<int> ret;
std::stack<TreeNode*> stk;
TreeNode* cur = root;
while(cur || stk.size()) {
while(cur) {
stk.push(cur);
ret.push_back(cur->val); //根
cur = cur->right; //右
}
cur = stk.top();
stk.pop();
cur = cur->left; //左
}
std::reverse(ret.begin(), ret.end());
return ret;
}
std::vector<int> ret;
std::vector<int> postorder_recursion(TreeNode* root) {
if(root) {
postorderTraversal(root->left);
postorderTraversal(root->right);
ret.push_back(root->val);
}
return ret;
}
/*
* 给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节点)。
* 示例:
* 二叉树:[3,9,20,null,null,15,7],
* 3
* / \
*9 20
* / \
* 15 7
* 返回其层次遍历结果:
* [
* [3],
* [9,20],
* [15,7]
* ]
*/
std::vector<std::vector<int>> levelOrder(TreeNode* root) {
std::vector <std::vector <int>> ret;
if (!root) return ret;
std::queue <TreeNode*> q;
q.push(root);
while (!q.empty()) {
int currentLevelSize = q.size();
ret.push_back(std::vector <int> ());
for (int i = 1; i <= currentLevelSize; ++i) {
auto node = q.front(); q.pop();
ret.back().push_back(node->val);
if (node->left) q.push(node->left);
if (node->right) q.push(node->right);
}
}
return ret;
}
#endif // BINARYTREETRAVERSAL_H
|
be293e2323b615b59de53cad3c22fe3124302975 | df9de80e6a36a73502db652fe8d73ff8e9f00815 | /AuroraFlux/Source/AI/RollingMovement.cpp | 3afe59bbe2d074df63595371ae6b4e6f5544dfc5 | [] | no_license | BSchotanes/AuroraFlux | 090137d66f566f96ff8a3d5092206f54e8b3986d | 6819056104601ac582260e22b7545db908162420 | refs/heads/master | 2021-07-08T01:57:49.783068 | 2017-10-04T22:54:11 | 2017-10-04T22:54:11 | 105,750,121 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,659 | cpp | RollingMovement.cpp | /***********************************************
* Filename: FlankingMovement.cpp
* Date: 11/27/2012
* Mod. Date: 11/29/2012
* Mod. Initials: AR
* Author: Andrew A Rosser
* Purpose: Enemies will flank their target.
************************************************/
#include "../StdAfx.h"
#include "RollingMovement.h"
#include "../Entity/Enemy.h"
#include "ChaseMovement.h"
#include "FleeMovement.h"
#include "WanderingMovement.h"
#include "DeathMovement.h"
#include "..\Entity\Player.h"
#include "..\Entity\YellowEnemy.h"
#include "..\Entity\RedEnemy.h"
#include "../Collision/Physics.h"
/************************************ *****************************
* CFlankingMovement(): Overload Constructor will set its type. Does mostly nothing.
* Ins: _pEnemy
* Outs: None
* Returns: None
* Mod. Date: 11/29/2012
* Mod. Initials: AR
*****************************************************************/
CRollingMovement::CRollingMovement(CEnemy* _pEnenmy) : CMovementBehavior(_pEnenmy)
{
m_fTimeToRoll = 0.85f;
if (_pEnenmy->GetType() == eRED_ENEMY )
{
((CRedEnemy*)_pEnenmy)->SetIsRolling(true);
}
//create points
for(unsigned int waypointsToPath = 1; waypointsToPath < 4; waypointsToPath++)
{
D3DXVECTOR3 d3dNewPoint = D3DXVECTOR3(((((rand() % 1050) - 525 ))) + m_pEnemy->GetPosition().x ,(((((rand() % 1050) - 525 ) ))) + m_pEnemy->GetPosition().y,(rand() % 50 ) - 25 + m_pEnemy->GetPosition().z);
if (d3dNewPoint.x == 0)
{
d3dNewPoint.x = 100;
}
if (d3dNewPoint.y == 0)
{
d3dNewPoint.y = 100;
}
m_d3dWanderingPoints.push_back(d3dNewPoint);
}
//set target to first point
m_d3dCurrentWaypoint = m_d3dWanderingPoints[0];
}
/*Destructor*/
CRollingMovement::~CRollingMovement(void)
{
}
/*****************************************************************
* Update(): Flanking
* Ins: fElapedTime
* Outs: None
* Returns: void
* Mod. Date: 11/29/2012
* Mod. Initials: AR
*****************************************************************/
void CRollingMovement::Update(float _fElapedTime)
{
if(m_pEnemy->GetHealth() <= 0)
{
m_pEnemy->PushBehavior(new CDeathMovement(m_pEnemy));
return;
}
static float rollTimer = 0.0f;
rollTimer+=_fElapedTime;
if (rollTimer <= .665)
{
m_pEnemy->Rotate(_fElapedTime * 12,0,0,1);
}
else
{
//turn to new wayPoints
//////////////////////////////////////////////////////////////////////////
CPhysics::TurnTo(m_pEnemy, &m_d3dCurrentWaypoint, _fElapedTime, m_pEnemy->GetTurnRate());
//////////////////////////////////////////////////////////////////////////
}
m_fTimeToRoll-=_fElapedTime;
if (m_fTimeToRoll <= 0.0f)
{
if (m_pEnemy->GetType() == eRED_ENEMY )
{
((CRedEnemy*)m_pEnemy)->SetIsRolling(false);
}
m_pEnemy->PopBehavior();
return;
}
//find the correcet waypoint
if ( D3DXVec3Length( &(m_pEnemy->GetPosition() - m_d3dCurrentWaypoint ) ) < WANDERING_WAYPOINT_RANGE )
{
m_uiWaypointIndex++;
if (m_uiWaypointIndex >= m_d3dWanderingPoints.size())
{
m_uiWaypointIndex = 0;
}
m_d3dCurrentWaypoint = m_d3dWanderingPoints[m_uiWaypointIndex];
}
D3DXVECTOR3 d3dVelocity = D3DXVECTOR3(0,0,((CEnemy*)m_pEnemy)->GetVelocityModifier());
///// ////////////////////Foward Movement
D3DXMATRIX d3dMat;
D3DXMatrixIdentity( &d3dMat );
d3dMat._41 = d3dVelocity.x * _fElapedTime;
d3dMat._42 = d3dVelocity.y * _fElapedTime;
d3dMat._43 = d3dVelocity.z * _fElapedTime;
m_pEnemy->SetMatrix( &( d3dMat * ( *m_pEnemy->GetMatrix() ) ) );
//////////////////////////
if (m_pEnemy->GetShouldChasePlayer())
{
((CRedEnemy*)m_pEnemy)->PopBehavior();
return;
}
} |
60e715e0e7ec0bd1c0e303c958224021502c9b29 | 7950c4faf15ec1dc217391d839ddc21efd174ede | /cpp/0797.0_All_Paths_From_Source_to_Target.cpp | e6189efd85a1e54bef2c2914a570beccf90f4cf0 | [] | no_license | lixiang2017/leetcode | f462ecd269c7157aa4f5854f8c1da97ca5375e39 | f93380721b8383817fe2b0d728deca1321c9ef45 | refs/heads/master | 2023-08-25T02:56:58.918792 | 2023-08-22T16:43:36 | 2023-08-22T16:43:36 | 153,090,613 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,559 | cpp | 0797.0_All_Paths_From_Source_to_Target.cpp | /*
Backtracking
Runtime: 20 ms, faster than 51.98% of C++ online submissions for All Paths From Source to Target.
Memory Usage: 15.6 MB, less than 31.58% of C++ online submissions for All Paths From Source to Target.
*/
class Solution {
public:
vector<vector<int>> paths;
vector<vector<int>> allPathsSourceTarget(vector<vector<int>>& graph) {
int n = graph.size();
vector<int> p(1, 0);
backtracking(n, graph, 0, p);
return paths;
}
void backtracking(int n, vector<vector<int>>& graph, int node, vector<int> p) {
if (node == n - 1) {
paths.push_back(p);
return;
}
for (auto child: graph[node]) {
p.push_back(child);
backtracking(n, graph, child, p);
p.pop_back();
}
}
};
/*
to use vector<int>& p, instead of vector<int> p
Runtime: 12 ms, faster than 83.33% of C++ online submissions for All Paths From Source to Target.
Memory Usage: 11.9 MB, less than 63.83% of C++ online submissions for All Paths From Source to Target.
*/
class Solution {
public:
vector<vector<int>> paths;
vector<vector<int>> allPathsSourceTarget(vector<vector<int>>& graph) {
int n = graph.size();
vector<int> p(1, 0);
backtracking(n, graph, 0, p);
return paths;
}
void backtracking(int n, vector<vector<int>>& graph, int node, vector<int>& p) {
if (node == n - 1) {
paths.push_back(p);
return;
}
for (auto child: graph[node]) {
p.push_back(child);
backtracking(n, graph, child, p);
p.pop_back();
}
}
};
/*
Runtime: 12 ms, faster than 83.33% of C++ online submissions for All Paths From Source to Target.
Memory Usage: 10.6 MB, less than 85.55% of C++ online submissions for All Paths From Source to Target.
*/
class Solution {
public:
vector<vector<int>> allPathsSourceTarget(vector<vector<int>>& graph) {
int n = graph.size();
vector<vector<int>> paths;
vector<int> p(1, 0);
backtracking(n, graph, paths, 0, p);
return paths;
}
void backtracking(int n, vector<vector<int>>& graph, vector<vector<int>>& paths, int node, vector<int>& p) {
if (node == n - 1) {
paths.push_back(p);
return;
}
for (auto child: graph[node]) {
p.push_back(child);
backtracking(n, graph, paths, child, p);
p.pop_back();
}
}
};
|
a0449aecc371baed0e4667ffd695e108f4459309 | a766ee23c2243f850ebdb83a69d0fb8a5359c07d | /2012/day16(7-15)/exam6.cpp | 4ff7bdf43514ed64881e70dbf8265be8eeaab248 | [
"MIT"
] | permissive | jasha64/jasha64 | 24e127e57dd8852e5a006ba98be6c17312733597 | 653881f0f79075a628f98857e77eac27aef1919d | refs/heads/master | 2021-06-23T08:34:27.220649 | 2021-06-20T06:05:50 | 2021-06-20T06:05:50 | 218,268,953 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 280 | cpp | exam6.cpp | #include<iostream>
#include<cmath>
using namespace std;
double pai()
{
double s(0.0);
for (int i=1;1.0/(i*i)>=1e-10;i++)
s+=1.0/(i*i);
return sqrt(6*s);
}
int main()
{
double pi;
pi=pai();
printf("%.7lf\n",pi);
system("pause");
return 0;
}
|
ea77e7a81fa2a586a9cc4ee2b3db26cf599fe06a | 1d4f51af666147aeea3649e7ce344fb6f1258838 | /Final Hololens App/Il2CppOutputProject/Source/il2cppOutput/Generics68.cpp | e1fbb55c75866ab7695b0991fd1bb6f747be6fdb | [] | no_license | Mori-Levinzon/CAD-Inspector | d75d29ff663761e2305055babdbc1b927ee364d5 | 780b133ad1ef3b7846f95237763d702086e638a7 | refs/heads/master | 2023-06-07T04:47:38.784636 | 2021-07-02T12:25:29 | 2021-07-02T12:25:29 | 250,212,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,319,506 | cpp | Generics68.cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.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, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2>
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 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);
}
};
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 T1, typename T2, typename T3>
struct VirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct VirtActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, 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, typename T2>
struct GenericVirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct GenericVirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, 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 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);
}
};
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, typename T2, typename T3>
struct GenericVirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct GenericVirtActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, 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>
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, 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, typename T1, typename T2, typename T3>
struct InterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, 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 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);
}
};
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 T1, typename T2, typename T3>
struct InterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct InterfaceActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, 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);
}
};
template <typename R, typename T1, typename T2>
struct GenericInterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct GenericInterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, 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);
}
};
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);
}
};
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, typename T2, typename T3>
struct GenericInterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct GenericInterfaceActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// UnityEngine.Events.BaseInvokableCall
struct BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// System.Collections.IComparer
struct IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68;
// UnityEngine.Events.InvokableCall
struct InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Type
struct Type_t;
// UnityEngine.Events.UnityAction
struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099;
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenCallback
struct ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026;
// TMPro.FloatTween/FloatTweenCallback
struct FloatTweenCallback_tFA05DE1963C7BD69C06DEAD6FFA6C107A9E1D949;
// UnityEngine.UI.CoroutineTween.FloatTween/FloatTweenCallback
struct FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23;
// System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
struct List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Decimal>
struct Transformer_1_tC9194191386E267034CCDBD796CBAE0F96002D63;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Double>
struct Transformer_1_t77DD442701A959DAE27DA4559054353BDB343B34;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tEBC899D34A444538AF2C5EFBED4C84DB4BC45848;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Guid>
struct Transformer_1_t1E44C39C080C0C1BCAA3AA096BC46637DC78FFC8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int16>
struct Transformer_1_t8DA922273DCF1348A863E22DAED50A28F2E7EC4A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int32>
struct Transformer_1_tE2F5517F18DDC45C27EB0CF011655F7290022FB0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int64>
struct Transformer_1_t2468BF9AC5C45B9D777B0E34EC1949CE193D20F7;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.IntPtr>
struct Transformer_1_tCB7EE8D213E31FE3EAB291CBAEA6B0F015D13840;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Object>
struct Transformer_1_t0001CA8726D9CA184026588C57396CC776ACEF06;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.SByte>
struct Transformer_1_t56AC8DD64FA3E1A9651D456D3D911E023CF88DCD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Single>
struct Transformer_1_tE78CCD9D44957F7F042B573ED59E8EE04C13D047;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.TimeSpan>
struct Transformer_1_t3348AF6EA9D56F7672FDA766E48C0EC31D244732;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt16>
struct Transformer_1_t1BE0C17B380E3D75E214DF3668E20BEF6DCA9A4A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt32>
struct Transformer_1_t90F32598CDB2668A5BBD1A101374312C05F60543;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt64>
struct Transformer_1_t04C7EED1579F30358FBDCDB6143DBC088C63AFDE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UIntPtr>
struct Transformer_1_t11D2CE81C8B59E67AB536F4C77727A85FD129449;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t121D121059312ABFEA00E7E0857D05CCC9415A45;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Boolean>
struct Transformer_1_t60047D12F19EC963BBD5F0CEBE2F8036A20172F0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Byte>
struct Transformer_1_t5DE73FA1B0F7652CC9FB816D61938EA68158297B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Char>
struct Transformer_1_t3050C701F0AE1E95352D4339BFE606D2343F7F90;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.DateTime>
struct Transformer_1_t10ED8D0D8FCCF8A65A34FD9CB0BB769E97C65617;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.DateTimeOffset>
struct Transformer_1_t769CC26F0F28BAA04C91A2DD4CA912A1C75B527C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Decimal>
struct Transformer_1_tC127664D3E7D230D4A314537786A12688DFA7A3E;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Double>
struct Transformer_1_t98913A0CAF0396077F92C767353DCECE1CAE9D37;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tF07E13438506E2B3D01E6482C5493016DBECA428;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Guid>
struct Transformer_1_t7065170F0C1062F0BFC8CE0818DF6CB978951894;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int16>
struct Transformer_1_t286C753C28D2786E159E55BCD77AAC5FE99C8A6E;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int32>
struct Transformer_1_t4BE8EE1016BCB2E59D59BB8EBAD050C01F69481F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int64>
struct Transformer_1_t0265D6C648532D20930747AC00E60A57882836D4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.IntPtr>
struct Transformer_1_t1008B5FEF2C9C85E523733A1465641C24C2EF895;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Object>
struct Transformer_1_t63A740E462CAF5DE201265ACF49D1F387549E5C2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.SByte>
struct Transformer_1_tF3157E7DF7ABB616E4FBC816F8F899563EBAB35C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Single>
struct Transformer_1_tCBB0F5293357FBCE6345652A671907F2D668E97B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.TimeSpan>
struct Transformer_1_tC9FFC78A73E6932AA70D077126BE4CA3FE45A302;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt16>
struct Transformer_1_t1C80BF86214358F246CD19A956D8B220FCA25D7B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt32>
struct Transformer_1_t814D676F5A4ACC9A116D07D1C0A35D5BABDF8CAE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt64>
struct Transformer_1_t005021C08874BCC5C2A50167CE4E532B9CF4CD79;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UIntPtr>
struct Transformer_1_t30E16CDE25487279253BB11A42DBEE6A21368087;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t130D77E1B8D207F951F6D90F2C4A8E3792897617;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Boolean>
struct Transformer_1_t80B7BC576266310FBF99805713CB124FB1325AFD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Byte>
struct Transformer_1_tB710AA1A4EF63E7A608E1F3552AD32FF1D7EC200;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Char>
struct Transformer_1_t4C49EDB12597C819D2161020E90B0C9F2BFA6CB2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.DateTime>
struct Transformer_1_t704F728FBE3D274B344E93D43F1EB70A681EABD0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.DateTimeOffset>
struct Transformer_1_t99A6CF18BE9023163F159E1157E9EB2EADB175E5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Decimal>
struct Transformer_1_t2097FB14F7FB610418928F6C00B8B3C776B86D03;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Double>
struct Transformer_1_t668A4176A39C3B956441F6D0CCC1AED020F7D6AF;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4B5213C886234DE9246BB2EED20A4270B0BF8241;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Guid>
struct Transformer_1_t33F4656CC027550D29904EEB3703DEA5DB5A933E;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int16>
struct Transformer_1_t984F8DDF73126BB7D0564B2C8DB5B43DADEB1B87;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int32>
struct Transformer_1_t9E27086EA83291A9CB562EC6DF2DDCF1F811D348;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int64>
struct Transformer_1_tE5AF7FD8199D2F817240AC1D32C549AE12D4AAE9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.IntPtr>
struct Transformer_1_t9509B600985704E02CF30F84A4CA3E70DFDC190C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Object>
struct Transformer_1_t65B23DA04E78FC4F4D12CDB469679D9D5C4ED9C4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.SByte>
struct Transformer_1_tD9F86289E24471473065EC7A0AC7282EFFF25909;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Single>
struct Transformer_1_tD47677532E0EB9F83E58642BAF11E614584BE1E4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.TimeSpan>
struct Transformer_1_tFE1A34D9527A7310C69F3A1F2171ADE7234E1D64;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt16>
struct Transformer_1_tB25EE30C228D308ED1E3D17E8A08E8FF7F6A0D77;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt32>
struct Transformer_1_t39A024DD4A4E9FB07B8999CACF5FA5483C6572BF;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt64>
struct Transformer_1_t236D9CA15237017ADE5E5DF9D4F03CC889C8C551;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UIntPtr>
struct Transformer_1_t191E38853FA538EEEDB722F48BA28E2796E116E1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t1DD85867F626725FB9A574D7B656426FB6D860E7;
// System.Net.Http.Headers.TryParseDelegate`1<System.DateTimeOffset>
struct TryParseDelegate_1_t1A032F9C7FB843555CAC1A5A0DAE025C701B9DBB;
// System.Net.Http.Headers.TryParseDelegate`1<System.Int32>
struct TryParseDelegate_1_t378D47B65FBF136068B8E912864B44F4AC22B17B;
// System.Net.Http.Headers.TryParseDelegate`1<System.Int64>
struct TryParseDelegate_1_tFF75BDCAFAB03B78E1A2CC0252493F25EC928302;
// System.Net.Http.Headers.TryParseDelegate`1<System.TimeSpan>
struct TryParseDelegate_1_t213385FD8BFC5A6E4730E7A057FE90A68C7E7C5A;
// System.Net.Http.Headers.TryParseDelegate`1<System.Object>
struct TryParseDelegate_1_tBFE6C978F45C3B0AC2C16BFB037564F99603C140;
// System.Net.Http.Headers.TryParseListDelegate`1<System.Object>
struct TryParseListDelegate_1_t4C11679A4128BBD4FB62D9CC255FBB3C0D3119BE;
// System.Tuple`2<System.Guid,System.Int32>
struct Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85;
// System.Tuple`2<System.Guid,System.Object>
struct Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1;
// System.Tuple`2<System.Int32,System.Int32>
struct Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800;
// System.Tuple`2<System.Int32,System.Object>
struct Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407;
// System.Tuple`2<System.Int32Enum,System.ByteEnum>
struct Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D;
// System.Tuple`2<System.Int32Enum,System.Int32>
struct Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E;
// System.Tuple`2<System.Int32Enum,System.Int32Enum>
struct Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0;
// System.Tuple`2<System.Int32Enum,System.Object>
struct Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2;
// System.Tuple`2<System.Object,System.Char>
struct Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6;
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1;
// System.Tuple`2<System.Diagnostics.Tracing.EventProvider/SessionInfo,System.Boolean>
struct Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF;
// System.Tuple`3<System.Int32Enum,System.Object,System.Object>
struct Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4;
// System.Tuple`3<System.Object,System.Object,System.Object>
struct Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E;
// System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>
struct Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC;
// System.Tuple`3<System.Object,System.Object,System.UInt32>
struct Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8;
// System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>
struct Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808;
// System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>
struct Tuple_4_t936566050E79A53330A93469CAF15575A12A114D;
// System.Tuple`4<System.Object,System.Object,System.Object,System.Object>
struct Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44;
// TMPro.TweenRunner`1<TMPro.FloatTween>
struct TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>
struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>
struct TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D;
// Windows.Foundation.TypedEventHandler`2<System.Object,System.Object>
struct TypedEventHandler_2_t8D72D4CAB5DF9F7D9AE52E95A431BD4738A32CDC;
// UnityEngine.Events.UnityAction`1<System.Boolean>
struct UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF;
// UnityEngine.Events.UnityAction`1<UnityEngine.Color>
struct UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE;
// UnityEngine.Events.UnityAction`1<System.Int32>
struct UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79;
// UnityEngine.Events.UnityAction`1<System.Int32Enum>
struct UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD;
// UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>
struct UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2;
// UnityEngine.Events.UnityAction`1<System.Single>
struct UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB;
// UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>
struct UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0;
// UnityEngine.Events.UnityAction`1<System.Object>
struct UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A;
// UnityEngine.Events.UnityAction`2<System.Char,System.Int32>
struct UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D;
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>
struct UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50;
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>
struct UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4;
// UnityEngine.Events.UnityAction`2<System.Object,System.Object>
struct UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD;
// UnityEngine.Events.UnityAction`3<System.Object,System.Int32,System.Int32>
struct UnityAction_3_t8F495B8B0B41EBBD05F7C0A266F5164D7FA777E6;
// UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Int32>
struct UnityAction_3_tE847F1F2665A491A3D66E446E33C12E88EEB79DA;
// UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>
struct UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE;
// UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>
struct UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC;
// UnityEngine.Events.UnityEvent`1<System.Boolean>
struct UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB;
// UnityEngine.Events.UnityEvent`1<UnityEngine.Color>
struct UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350;
// UnityEngine.Events.UnityEvent`1<System.Int32>
struct UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF;
// UnityEngine.Events.UnityEvent`1<System.Int32Enum>
struct UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71;
// UnityEngine.Events.UnityEvent`1<System.Single>
struct UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC;
// UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>
struct UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C;
// UnityEngine.Events.UnityEvent`1<System.Object>
struct UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F;
// UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>
struct UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C;
// UnityEngine.Events.UnityEvent`2<System.Object,System.Object>
struct UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582;
// UnityEngine.Events.BaseInvokableCall[]
struct BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC;
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.Component
struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684;
// UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// UnityEngine.GameObject
struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319;
// System.Collections.IEnumerator
struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A;
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.String
struct String_t;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UIntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96;
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
IL2CPP_EXTERN_C String_t* _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73;
IL2CPP_EXTERN_C String_t* _stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7;
IL2CPP_EXTERN_C String_t* _stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0A837A1F7F7710E2DD94389321286D8B1880C518_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0C1B4D9117B7CF8A4F988297718B1FA127E4E4BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m32E365BA75B5D40061CF22C32F4EEE2F1AEC9661_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m5CCB277EDF4F9207DCCC76A43E9BFA826FD923A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m7CDFC96009D56EFB6793B31E25532DE3320B9D61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m97E1FECB667F69E4FA446CD4F24593C44EC832F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC6AC937E8C32FC149CC58384710B351E57D03208_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_mFF94A250F9C8BA7AC40F62F731430ED61358EAC6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_3_System_Collections_IStructuralComparable_CompareTo_m482A72B3CB0BA960139C4CAD20F9B2255F72911C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_3_System_Collections_IStructuralComparable_CompareTo_m4CCB5E7D744DBE453CB341B2DA8952A48D228ABA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_3_System_Collections_IStructuralComparable_CompareTo_mA96E8C6F129B415B99F34FE738B149D8ABB55D10_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m0BF8A0F29D5B03E36892AF5F48D1A6350CFD718B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m152A0AE2244D31EED60360245D841C95DC5F98B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m18FF96A4A10B8DB16062459FD6F96E73B7206C9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m2057F9FA447D6F021328F24EBBC0075B94E32D60_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m273674AA84C8827A8EB4F1F823283FEEB019675D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m27D3903EA3E0824E6CD34B9BEA59A3B6C696D71B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m283F9CDAE23C6FEC70AE04CFEC5610D16B63A507_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m2ADE5658BA23F4CAEEDCED9B09AF04B0C9973381_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m2AE7B5CE512749E5EA2005F9A043205BC4C0B468_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m326BA6D9E6446E6BF6A916C6A96D0289974C8D26_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m38A9175EFAD6FF53E2F2D625B7D09407880F8B1C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m3AAE904E9147ADEFC69DE21FC270FA2B8B71885F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m3CA1FAA1AE2629DB367ED82CA3E30F41E3FEA0EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m3F86A2B342D0F39310236624DE6100567D5E2422_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m41B437FE55565CD2FAE3171C387A095755A7B38E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m430D8DCF34B3A57785B2D4A51F9BF04747E88701_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m48FBEB56AE3E6F7F36407885E211D51C5751B5FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m49B7600738C79F33DC128825F98FF6C16403EF64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m5180F434C0A34AD719A607DE08307B420E88EE14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m533F5DD612F572522115E1DB59471C25BD0FCBB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m555793D8B54F169847CF1475728BDC5A91312486_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m5A337D54474A27C3BC3EF8DB1E0B8EB97F2C4AA1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m5A583EBF9325D6409C60F95BE182326C56A4E503_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m5AB95C16F9DB6C41933C7932C96D7D57865A9D80_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m634CED2C972E70DF6DE17BB74EAEA708668AD037_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m671FD2FB3F3F0DC28A7CC96421F4E87B475B27F0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m70C4E02FD305AF65FFC064CADC85578D73C87C8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m7A4D6A078957EA0D20A31265E1E500B25CA7E716_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m7BC12E5216638BF328F8A46472F05AE9AA72D342_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m8F039FF015A5010C47DF4E3719E1D9B784AA81DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m9C5B3976C18C5B042F756E5FBFF22EA5709B7953_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m9CC8A20952769DD59BF2624631DA8CD0AB1C2C40_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m9DAC9FCBA9CCCC4D66926DADA7567C96C8977D8B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m9F6E545B69C64F64B5F928EA346CC03C2B16B858_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_m9FAD5249B3EEEEF7D5D328E555767DBCE6F551A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mA0BC023643CA5E95BB9AD72B43648F39B01D7577_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mA1C14C65D7DDEE86AF7DD2BC4DABDE7CF55D6BF6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mA4FE93E64CDB81C627A23EEB180B281B6419D151_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mA5450CC6478614A3C36DBF0C10EC165739187C93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mA698735327A70959EF1C191E91CC15364848BDB1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mA92336172834278F111A1FE9F195575DAB425AB0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mACFF3DFD3D377E8DCA8CAA28669779BFA511292A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mB1E3DB3D8DFA665A866959ADB960AB8599919213_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mC99E16244EE7075D6141252005552BC97144D8BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mCD7DEA1718DE27D965957736EC407153F04197FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mCE99E29A99AEFFDE5A6D1281215EF5C99DF0FCDD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mD40F5D9CE5BB1923586BE71A3CCF5E1D7A5CA1CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mD8E0470E382C0E5008D95C998A6CAEDD09692F6D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mDDDDA8F8619668D4857F96564FE550EF4242CCEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mE0F7C8D28C75673B1A1E8CF2B6FFCB5D6CA4E9B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mE291C33C4205DB74BE04D55E703D0DAA268DA3CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mE5290B3E034BD6CC6B1686B5828584C91DD49E2B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mEAD8383CFBEB3505AB0D5ADA898C9A7C5620C81A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mEC892437AE5B13B725F80D0B49EAC41FB1285A8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mF0EB4C260BB15AA90CDAC802062BDA8858EB7FE4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mF69B50162458A1200730F990776AA75A88B37901_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mFA2DED37A5B123B70148F8ABAE03390E74A9FACB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Transformer_1_BeginInvoke_mFD6666598C9835E04935E87540FAB86CA525342C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TryParseDelegate_1_BeginInvoke_m28F304397876B0B79C5FDAFD94C6DFB60CFC4571_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TryParseDelegate_1_BeginInvoke_m3C270F3C1D5DD2C0C0B4AAB39C4C12EB7422CAFB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TryParseDelegate_1_BeginInvoke_mA2C21C680E6DD962699D758620E35561C66CB1D1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TryParseDelegate_1_BeginInvoke_mFF4A8E0974B22B89A8469BC1416CC50A6320CD27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TryParseListDelegate_1_BeginInvoke_mDC523512B895413CCBCD7631AC5F8134510DFD09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m18BEC9AFE32FD91B551ED59701AE02ABC7D6B97E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m36874A7EC22A48151827C01E2424DEC066C79BA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m44325B54D30A4C0ED321152C608794D71C480EBE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m5130435DFC80842673678E4F97E73A639107349E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m5A9D41D841F79603A6D2A865A19B3767CDE81A3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m7904D914C7F0D8920A3F2F0FB05BDA201DC34F7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m83556B862F565CFE5C1C0C2C62F015D12E8FF038_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_m8E1A6AED5DAF648BC7343AFF78D8BFC1B485092C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_mA700968F6412FCB98B7DED9BF4EAFF0B6D2E5FA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_mC13D56B08E3BF9AE03134F713E88F59AF49E0986_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_Equals_mDAA33D0919DBEB805F2A5752CB9113DB891A8692_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m219CB10B0E5A8C0F25711FE4B3431DCEC602F9B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m24EF21A335EEFFCFDA84DE18A0EC875B6A2DEDEC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m28645A2E530798D7ECBB3957942D45AAD0F8675B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m3090174018722B55E7AA918152B403DF2C3F0E60_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m56B88A8B03BF1856556DB8527DB575A497601841_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m6B1AB30FBBB5E0709AD99FF0ED1B3E54C47DF580_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m771751EAFFC7D755917C001B4A71308388C7C861_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_m93554844C338C3CFF8715DF628FCE38039872674_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_mAB859F3BF8098F09CDE5E9DA57427EE1F99A4C05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_mC92CC019B7F4E67519D23CC0FCA7B845379F1052_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_GetHashCode_mD7928791808BBB5BC58E32343B91A7EC9BF5EC58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0A837A1F7F7710E2DD94389321286D8B1880C518_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0C1B4D9117B7CF8A4F988297718B1FA127E4E4BF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m32E365BA75B5D40061CF22C32F4EEE2F1AEC9661_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m5CCB277EDF4F9207DCCC76A43E9BFA826FD923A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m7CDFC96009D56EFB6793B31E25532DE3320B9D61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m97E1FECB667F69E4FA446CD4F24593C44EC832F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC6AC937E8C32FC149CC58384710B351E57D03208_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mFF94A250F9C8BA7AC40F62F731430ED61358EAC6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m0862FE602DD1D14798FA1E06A0CCE44D9463E2A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m2CB7141FB57C649E73B54B1FE5B9F4140B8BB74B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m313BFDB02B9A9CDEC8D3953760841F797EF8EB27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m41B65CA18600A2BB17D4D815DFD780F6664FC795_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m4C4CE0A796D720CCA1948E963CDB55289D49513C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m5D8D9146937CAF26CB4489A88F2A75FCDDF3F83D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m76DD43DE79BB19BCD41673F706D96FE167C894B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_mB8764DDC777A14644C984149BC346B303F8CB7E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_mC43B3EC3439A58FFFCB8C7E46634AB9926FCFFA3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_mC9FE12C248ED0E9607288973417647056B5DEF90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_mDA509E459E316CAC14957A43DB9369CC4A487090_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m037BEF46A054102B8405EC32B091458801A8C315_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m5AA6FB0FBE1BC186ACBF97A4489D8A700E41734E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6210C585EBBDA0D508E23A4A609D622CB6FF54DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6A340118BEFB1DCC2307C8DD47CE2F3C121FF2D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6A8402570FA26D368443512574A0A03CBFAB7585_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mA19F9B26B652B581C6F60D3C46877EC7CFF9A87A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mA785B2D261195F1312CFC693D0D575D22B1DBA58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mBE0CEC2C775B964ADD4922E9FA4F66C5DABE1F7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mC537B0B94B81AFE40F05E07B16B6741735D1A376_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mD5440D129A74CA26049D1E7963E1ABF05AFD4FCE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mD86AA53E15FC0126A7C8DD364D2DE6D2C6FBB63C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_m0FB81164CA69BB5F29772A077579254D3F7EE3D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_m22DA06250AAEB99E71FD9E0A8DC7F0B27F35C1C5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_m752A5D697E902518D95A66C2AE6E8B177E2B2473_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_m89AC7DD410077B90CDDF4C302EE170EB81847E0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_m9F56832E563506449F01AB0020EDF8E99AD82E4D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_mBF0D209179DEB9A5FFDF980B1C9EA628EF61B64A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_mC4EA3DE5E76E810A21AEB446DD459162B0241810_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_mC8420E7B3F5EA8CA94CEE00B6F342167C69343BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_mDB94FBD8696694B2B10666C4AF6CB12620DD4D84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_mF10C7572747CDE1983E174774C46C07A2AD64442_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_IComparable_CompareTo_mF4F14B10882975FD1C86FF3921C3FBD0243AAA5F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m0AA0D6548E6629B72EB03D7F95E61FBC194C237C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m1B89587010473FDFE6AF6BE727975C0559C19F18_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m6A62262354E7D953100BDBBB6B2BF7107157C812_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m724F33EE73019CB664ED6464726F0D2E37E1DF1D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m7275B332821F82DDC5555D4A7EE8608DBF746F75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m81035E446B309D885CA4BE336CBA2971926791FC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m910380308358C7A726EC2516E3C9D9BD1E5F8EB6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_m93BF2411BB8D3B5ACF28D4A073C4903F38DB3678_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_mC05B5E1B32F8091B107E48CEBF163B6DA13E5DF1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_mC29992D30719486284F41C1DC333E9A321947EBE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_System_ITupleInternal_ToString_mCAE74B50268C33FDFF4937C36701367901982981_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_m1B9A60B20C13F9627C52A9849F723B15B0B4CAF8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_m2982B7FF92DB54114B3DAE3BC2C5DB84437FA6E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_m2E2FEB492CEDA8B61F6869909C0376A8F0DEEE9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_m3E795BE62D007F02D07913D2268D63E904AB70A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_m4716BA312083658378E315332FC6F3F27607FC75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_m4F1D997C1F791EC93E8E153E25B8802A2A111436_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_m91AF0B92D8C46FD0099D6CCE7FFBFF09D0F0AEE3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_mAB8D89170E4E392E49059CB094217F0762CEDC93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_mCE9BCEF217E3FD3CA0BCFE35E537621B8D757E03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_mDB56B6B5419E352A3D4098696910ED09110CE6DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_2_ToString_mF7FC5D12F27C990E84B68B5D82CAF28E309C7564_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_Equals_mA5C5D4A501D2A7DB7AD5AF445D80CDAEA6F7EF3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_Equals_mB5B53557A9A420A4748A488F23B5D3FCBBF2F792_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_Equals_mE4282D65B2614390D3D6131F38CA4F71E38BD30B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_Equals_mF70802FB9F4C8D734DBAC120EFEBF9F5FA9A3067_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_GetHashCode_m1AED3AC52D43DA1716AA4458567FC4E6F7454B1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_GetHashCode_m5815D1A808CE1639263C8D2A683F172D1E0B827F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_GetHashCode_mE1E8713737DF0BEEE35B3B013E2E62C999647541_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_GetHashCode_mEDC9816B22CB0A4032CC72C191E87097C819F900_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_m482A72B3CB0BA960139C4CAD20F9B2255F72911C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_m4CCB5E7D744DBE453CB341B2DA8952A48D228ABA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_mA96E8C6F129B415B99F34FE738B149D8ABB55D10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_Equals_m23575F1B59D86FAD58B484EAE59264B76E03DA09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_Equals_m94DE7458A9071B90BA7FECA9358B16F88EC1B0FF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_Equals_mC0D0C105DDA322C1B2E2BEF716D15EE7E7A97B04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_Equals_mC27022B5F68C5EAD7B54624D83DC00199F4D46B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m551D32031D8E37AB27FCBE93C39B5543F5478EB5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m64C75EE1F144BBF0539D92AEC518ECEF964CC28A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m84F8FEB77634E719544434F8F604E15EC1132102_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_mE274897447ACF83891E9E12E3945F9911610CB04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_IComparable_CompareTo_m05EBE1FB3D5EC3D3D2E5E000151E4BC686A27ABE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_IComparable_CompareTo_m66B7166E41172B9AC64C38A6EA9B0A7FF946F01C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_IComparable_CompareTo_m6C0E1D57ECCA758E7BA346DF12EDD7CF92E7A717_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_IComparable_CompareTo_mECFD519343B353A2A0797133015E2AE018CE034E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_ITupleInternal_ToString_m4F76DADB72F5B19087E28BBB75EBDEA50E7E66C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_ITupleInternal_ToString_m5046AE03511E0B9C88E28D1AD9922A3136987A27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_ITupleInternal_ToString_m5B9310EE550CC41905FF3002D70DEB87884DED37_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_System_ITupleInternal_ToString_m83180ED086A59842A5E77E697F3E4B831E3254EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_ToString_m1DB2F7D16C5D2896CFA74704DEE99C23D917D21E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_ToString_m96B918423D9BBE3EA66EBFE4A617DFF628ECEA42_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_ToString_m974BBBCB203CF20512D71895011EB5DEADD47C35_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_3_ToString_mED8D0D784199B6CF4F8B25D987B82C2E0FDA08D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_Equals_m042A5CE75B4D17100FB0E1551A63210C25A73FFB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_Equals_m5C403AB876CFEAF4C4028B2D1EB921B708D71F6F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_Equals_m810C373812C46799F30A72566664D98AC7479B75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_GetHashCode_m28DA0628D9C280E13AF9F542BF8FCC2863B1DE20_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_GetHashCode_m3A029A56DAEEB113ABF2D3AD2DADB85639C8602C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_GetHashCode_mBEAFF2CF8410683A95B984E1D6E7A124628B42A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralEquatable_Equals_m4D98FC6CDD2A2F03599B851155EDAE0EB7061B1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralEquatable_Equals_m6B3ECD79C777FAA44B212F29225AF083FE0CE81B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralEquatable_Equals_mC341E26E37DC309E38C469E7ABBF5876E0968250_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m3190A0B3F0D6190BF877960D6CE45D7FF2AC8C57_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mCB6BD9BCC93AEBE5BA5AC38BE364147BDCFA03B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mE07FC3048629FBAA9B0B82A519C487058250B690_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_IComparable_CompareTo_m2B700CC28D1C26FB41FEBDECFE79456612AAABC5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_IComparable_CompareTo_m36B26DE3F3643B16458329A69219006C3EA77170_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_IComparable_CompareTo_mF0A90DFEA25BC907CC567B76D7AE08EFACBC0DD5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_ITupleInternal_ToString_m2889AE2B9D7612D7959D60A9860437BC14410CDA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_ITupleInternal_ToString_mA2E8553C515EBC17C075C2308A166E23790A96FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_System_ITupleInternal_ToString_mB66A60246AE894A28DF4D6F01DE3AAB1AA085E6A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_ToString_m6F6C0FA75C7EC8ED752BBD3F11B41C4760F7E6A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_ToString_m76E3B38EF334DF95D2D2F5853F7F83D031AC7972_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Tuple_4_ToString_mCAB40D7255D4673FFDD91D1A2EBC91E83E84A661_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TweenRunner_1_StartTween_m09DC67B7A264102E3C1B318979F603F9E5B1C05B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TweenRunner_1_StartTween_m5122B35809FA66ABAA40020C9781B136DA94D0F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TweenRunner_1_StartTween_m644BE60640B50CE2B6BFF8979DAA7710B0487B82_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_1_BeginInvoke_m50A0084C1E73C78361F32170CF616D08681D7380_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_1_BeginInvoke_m769BC6D74C17069B97AA096698E2A1072F478C20_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_1_BeginInvoke_mA6A81E3B39C49A2A483B7EC5A7FC6F305C84BDCD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_1_BeginInvoke_mDC9B183A81287E65A2FD249F920BB63D36ED75A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_1_BeginInvoke_mEAA1361DECE0C4E7F731346AD77D6999664527CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_1_BeginInvoke_mF0799ACC3D5BF95C48D11D03FFEDE24F53C00475_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_1_BeginInvoke_mF4A4312C4C5D7EC10F1D0AC32360D20951F3E276_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_2_BeginInvoke_mDCEEB031BDBB99CF9F4FD8C66C8764E7145F233E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_2_BeginInvoke_mE5BB79302F95376E4F878699ABC47CAF63750016_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_2_BeginInvoke_mEA01486964659C4609BA96B58825B2E9B851FE10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_3_BeginInvoke_m92BA91531F4F7AE3599CCF0BB6A49B34BC9352D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityAction_3_BeginInvoke_mBA60B03A85F538EDA299D8CE82EBA6FAA2F34733_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_FindMethod_Impl_m0622108A7CD81D5EF2A59382C769DC733EF3530F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_FindMethod_Impl_m4737379F2E23EA022A5577626A9B77BC652C6C81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_FindMethod_Impl_m87D815FEE9AA0E17B7B827751412B54C5BB32B60_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_FindMethod_Impl_m883CB9322DD397C11303E11CE1D75DE4DAB7A2A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_FindMethod_Impl_m8C7040459D38C21B6CA252658570FF207DFD5634_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_FindMethod_Impl_mAEF284CEE451CDF002B423EAD1920E36A12A9CF0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_FindMethod_Impl_mD224BED27BA52E7AC6F73C03A4993BC4BD3CCA8A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_Invoke_m1DA4CADD93DA296D31E00A263219A99A9E0AFB0E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_Invoke_m2C3D89FA16884071FFCCB2A7CE61A84C80F170F5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_Invoke_m737D4B17859A00D896B4A8D187B5EF444DCFD559_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_Invoke_m73C0FE7D4CDD8627332257E8503F2E9862E33C3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_Invoke_m75A79471AE45A1246054BDE3A9BFCEBA14967530_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_Invoke_m93A9A80D13EE147EB2805A92EFD48453AF727D7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_1_Invoke_mB4A40E66B8302949068CCFA2E3E1C15F625EA1CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_2_FindMethod_Impl_m8CD9E3AEB2E49C956C6159A63CDE535EB19CBD3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_2_FindMethod_Impl_m9DEDA5637D671AC58D580000A01B4B335B9923F0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_2_Invoke_mBF66265092F853A13F5698ED2B62F0ADA48E4F0A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityEvent_2_Invoke_mEB1052C9C47D165F5AD163CF8CD8374706D9E465_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
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.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* 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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
struct List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____items_1)); }
inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* get__items_1() const { return ____items_1; }
inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* 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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD, ____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_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD_StaticFields, ____emptyArray_5)); }
inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* get__emptyArray_5() const { return ____emptyArray_5; }
inline BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BaseInvokableCallU5BU5D_t570CBF7FBDDEACA4C5E08A107956C5126C6AB8CC* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.ObjectEqualityComparer
struct ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 : public RuntimeObject
{
public:
public:
};
struct ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields
{
public:
// System.Collections.Generic.ObjectEqualityComparer System.Collections.Generic.ObjectEqualityComparer::Default
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * ___Default_0;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields, ___Default_0)); }
inline ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * get_Default_0() const { return ___Default_0; }
inline ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 ** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
}
};
// System.Collections.LowLevelComparer
struct LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 : public RuntimeObject
{
public:
public:
};
struct LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields
{
public:
// System.Collections.LowLevelComparer System.Collections.LowLevelComparer::Default
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * ___Default_0;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields, ___Default_0)); }
inline LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * get_Default_0() const { return ___Default_0; }
inline LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 ** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___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_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* 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.Tuple`2<System.Int32,System.Int32>
struct Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
int32_t ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Int32,System.Object>
struct Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
};
// System.Tuple`2<System.Object,System.Char>
struct Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
Il2CppChar ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6, ___m_Item2_1)); }
inline Il2CppChar get_m_Item2_1() const { return ___m_Item2_1; }
inline Il2CppChar* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(Il2CppChar value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
};
// System.Tuple`3<System.Object,System.Object,System.Object>
struct Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E : public RuntimeObject
{
public:
// T1 System.Tuple`3::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`3::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`3::m_Item3
RuntimeObject * ___m_Item3_2;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item3_2), (void*)value);
}
};
// System.Tuple`3<System.Object,System.Object,System.UInt32>
struct Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 : public RuntimeObject
{
public:
// T1 System.Tuple`3::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`3::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`3::m_Item3
uint32_t ___m_Item3_2;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8, ___m_Item3_2)); }
inline uint32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline uint32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(uint32_t value)
{
___m_Item3_2 = value;
}
};
// System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>
struct Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
int32_t ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
bool ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808, ___m_Item4_3)); }
inline bool get_m_Item4_3() const { return ___m_Item4_3; }
inline bool* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(bool value)
{
___m_Item4_3 = value;
}
};
// System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>
struct Tuple_4_t936566050E79A53330A93469CAF15575A12A114D : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
int32_t ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t936566050E79A53330A93469CAF15575A12A114D, ___m_Item4_3)); }
inline int32_t get_m_Item4_3() const { return ___m_Item4_3; }
inline int32_t* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(int32_t value)
{
___m_Item4_3 = value;
}
};
// System.Tuple`4<System.Object,System.Object,System.Object,System.Object>
struct Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
RuntimeObject * ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
RuntimeObject * ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item3_2), (void*)value);
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44, ___m_Item4_3)); }
inline RuntimeObject * get_m_Item4_3() const { return ___m_Item4_3; }
inline RuntimeObject ** get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(RuntimeObject * value)
{
___m_Item4_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item4_3), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// TMPro.TweenRunner`1<TMPro.FloatTween>
struct TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA : public RuntimeObject
{
public:
// UnityEngine.MonoBehaviour TMPro.TweenRunner`1::m_CoroutineContainer
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___m_CoroutineContainer_0;
// System.Collections.IEnumerator TMPro.TweenRunner`1::m_Tween
RuntimeObject* ___m_Tween_1;
public:
inline static int32_t get_offset_of_m_CoroutineContainer_0() { return static_cast<int32_t>(offsetof(TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA, ___m_CoroutineContainer_0)); }
inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * get_m_CoroutineContainer_0() const { return ___m_CoroutineContainer_0; }
inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A ** get_address_of_m_CoroutineContainer_0() { return &___m_CoroutineContainer_0; }
inline void set_m_CoroutineContainer_0(MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * value)
{
___m_CoroutineContainer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CoroutineContainer_0), (void*)value);
}
inline static int32_t get_offset_of_m_Tween_1() { return static_cast<int32_t>(offsetof(TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA, ___m_Tween_1)); }
inline RuntimeObject* get_m_Tween_1() const { return ___m_Tween_1; }
inline RuntimeObject** get_address_of_m_Tween_1() { return &___m_Tween_1; }
inline void set_m_Tween_1(RuntimeObject* value)
{
___m_Tween_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tween_1), (void*)value);
}
};
// UnityEngine.Events.BaseInvokableCall
struct BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 : public RuntimeObject
{
public:
public:
};
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB : public RuntimeObject
{
public:
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * ___m_Calls_0;
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * ___m_PersistentCalls_1;
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
bool ___m_CallsDirty_2;
public:
inline static int32_t get_offset_of_m_Calls_0() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_Calls_0)); }
inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * get_m_Calls_0() const { return ___m_Calls_0; }
inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 ** get_address_of_m_Calls_0() { return &___m_Calls_0; }
inline void set_m_Calls_0(InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * value)
{
___m_Calls_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Calls_0), (void*)value);
}
inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_PersistentCalls_1)); }
inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; }
inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; }
inline void set_m_PersistentCalls_1(PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * value)
{
___m_PersistentCalls_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PersistentCalls_1), (void*)value);
}
inline static int32_t get_offset_of_m_CallsDirty_2() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_CallsDirty_2)); }
inline bool get_m_CallsDirty_2() const { return ___m_CallsDirty_2; }
inline bool* get_address_of_m_CallsDirty_2() { return &___m_CallsDirty_2; }
inline void set_m_CallsDirty_2(bool value)
{
___m_CallsDirty_2 = value;
}
};
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>
struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 : public RuntimeObject
{
public:
// UnityEngine.MonoBehaviour UnityEngine.UI.CoroutineTween.TweenRunner`1::m_CoroutineContainer
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___m_CoroutineContainer_0;
// System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1::m_Tween
RuntimeObject* ___m_Tween_1;
public:
inline static int32_t get_offset_of_m_CoroutineContainer_0() { return static_cast<int32_t>(offsetof(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3, ___m_CoroutineContainer_0)); }
inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * get_m_CoroutineContainer_0() const { return ___m_CoroutineContainer_0; }
inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A ** get_address_of_m_CoroutineContainer_0() { return &___m_CoroutineContainer_0; }
inline void set_m_CoroutineContainer_0(MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * value)
{
___m_CoroutineContainer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CoroutineContainer_0), (void*)value);
}
inline static int32_t get_offset_of_m_Tween_1() { return static_cast<int32_t>(offsetof(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3, ___m_Tween_1)); }
inline RuntimeObject* get_m_Tween_1() const { return ___m_Tween_1; }
inline RuntimeObject** get_address_of_m_Tween_1() { return &___m_Tween_1; }
inline void set_m_Tween_1(RuntimeObject* value)
{
___m_Tween_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tween_1), (void*)value);
}
};
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>
struct TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D : public RuntimeObject
{
public:
// UnityEngine.MonoBehaviour UnityEngine.UI.CoroutineTween.TweenRunner`1::m_CoroutineContainer
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___m_CoroutineContainer_0;
// System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1::m_Tween
RuntimeObject* ___m_Tween_1;
public:
inline static int32_t get_offset_of_m_CoroutineContainer_0() { return static_cast<int32_t>(offsetof(TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D, ___m_CoroutineContainer_0)); }
inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * get_m_CoroutineContainer_0() const { return ___m_CoroutineContainer_0; }
inline MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A ** get_address_of_m_CoroutineContainer_0() { return &___m_CoroutineContainer_0; }
inline void set_m_CoroutineContainer_0(MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * value)
{
___m_CoroutineContainer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CoroutineContainer_0), (void*)value);
}
inline static int32_t get_offset_of_m_Tween_1() { return static_cast<int32_t>(offsetof(TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D, ___m_Tween_1)); }
inline RuntimeObject* get_m_Tween_1() const { return ___m_Tween_1; }
inline RuntimeObject** get_address_of_m_Tween_1() { return &___m_Tween_1; }
inline void set_m_Tween_1(RuntimeObject* value)
{
___m_Tween_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tween_1), (void*)value);
}
};
// UnityEngine.YieldInstruction
struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
{
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t0111FAB8B8685667EDDAF77683F0D8F86B659056
{
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_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14
{
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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___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(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___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.DateTime
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405
{
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_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7
{
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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* 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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Zero_7)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___One_8)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_One_8() const { return ___One_8; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinusOne_9)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MaxValue_10)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinValue_11)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Diagnostics.Tracing.EmptyStruct
struct EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62
{
public:
union
{
struct
{
};
uint8_t EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62__padding[1];
};
public:
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo
struct SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7
{
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_t693487E54200EFD8E3528A4947ECBF85A0DABCE7, ___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_t693487E54200EFD8E3528A4947ECBF85A0DABCE7, ___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.Double
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
{
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_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
}
};
// System.Int16
struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A
{
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_tD0F031114106263BB459DA1F099FF9F42691295A, ___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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___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_t378EE0D608BD3107E77238E85F30D2BBD46981F3
{
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_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___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.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
// System.SByte
struct SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B
{
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_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B, ___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_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
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_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.UInt16
struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD
{
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_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___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_tE60352A06233E4E69DD198BCC67142159F686B15
{
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_tE60352A06233E4E69DD198BCC67142159F686B15, ___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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
{
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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___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_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// System.VoidValueTypeParameter
struct VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC
{
public:
union
{
struct
{
};
uint8_t VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC__padding[1];
};
public:
};
// TMPro.FloatTween
struct FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97
{
public:
// TMPro.FloatTween_FloatTweenCallback TMPro.FloatTween::m_Target
FloatTweenCallback_tFA05DE1963C7BD69C06DEAD6FFA6C107A9E1D949 * ___m_Target_0;
// System.Single TMPro.FloatTween::m_StartValue
float ___m_StartValue_1;
// System.Single TMPro.FloatTween::m_TargetValue
float ___m_TargetValue_2;
// System.Single TMPro.FloatTween::m_Duration
float ___m_Duration_3;
// System.Boolean TMPro.FloatTween::m_IgnoreTimeScale
bool ___m_IgnoreTimeScale_4;
public:
inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97, ___m_Target_0)); }
inline FloatTweenCallback_tFA05DE1963C7BD69C06DEAD6FFA6C107A9E1D949 * get_m_Target_0() const { return ___m_Target_0; }
inline FloatTweenCallback_tFA05DE1963C7BD69C06DEAD6FFA6C107A9E1D949 ** get_address_of_m_Target_0() { return &___m_Target_0; }
inline void set_m_Target_0(FloatTweenCallback_tFA05DE1963C7BD69C06DEAD6FFA6C107A9E1D949 * value)
{
___m_Target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartValue_1() { return static_cast<int32_t>(offsetof(FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97, ___m_StartValue_1)); }
inline float get_m_StartValue_1() const { return ___m_StartValue_1; }
inline float* get_address_of_m_StartValue_1() { return &___m_StartValue_1; }
inline void set_m_StartValue_1(float value)
{
___m_StartValue_1 = value;
}
inline static int32_t get_offset_of_m_TargetValue_2() { return static_cast<int32_t>(offsetof(FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97, ___m_TargetValue_2)); }
inline float get_m_TargetValue_2() const { return ___m_TargetValue_2; }
inline float* get_address_of_m_TargetValue_2() { return &___m_TargetValue_2; }
inline void set_m_TargetValue_2(float value)
{
___m_TargetValue_2 = value;
}
inline static int32_t get_offset_of_m_Duration_3() { return static_cast<int32_t>(offsetof(FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97, ___m_Duration_3)); }
inline float get_m_Duration_3() const { return ___m_Duration_3; }
inline float* get_address_of_m_Duration_3() { return &___m_Duration_3; }
inline void set_m_Duration_3(float value)
{
___m_Duration_3 = value;
}
inline static int32_t get_offset_of_m_IgnoreTimeScale_4() { return static_cast<int32_t>(offsetof(FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97, ___m_IgnoreTimeScale_4)); }
inline bool get_m_IgnoreTimeScale_4() const { return ___m_IgnoreTimeScale_4; }
inline bool* get_address_of_m_IgnoreTimeScale_4() { return &___m_IgnoreTimeScale_4; }
inline void set_m_IgnoreTimeScale_4(bool value)
{
___m_IgnoreTimeScale_4 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.FloatTween
struct FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97_marshaled_pinvoke
{
FloatTweenCallback_tFA05DE1963C7BD69C06DEAD6FFA6C107A9E1D949 * ___m_Target_0;
float ___m_StartValue_1;
float ___m_TargetValue_2;
float ___m_Duration_3;
int32_t ___m_IgnoreTimeScale_4;
};
// Native definition for COM marshalling of TMPro.FloatTween
struct FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97_marshaled_com
{
FloatTweenCallback_tFA05DE1963C7BD69C06DEAD6FFA6C107A9E1D949 * ___m_Target_0;
float ___m_StartValue_1;
float ___m_TargetValue_2;
float ___m_Duration_3;
int32_t ___m_IgnoreTimeScale_4;
};
// UnityEngine.Color
struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659
{
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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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.Events.InvokableCall
struct InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction UnityEngine.Events.InvokableCall::Delegate
UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741, ___Delegate_0)); }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`1<System.Boolean>
struct InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493, ___Delegate_0)); }
inline UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`1<System.Int32>
struct InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9, ___Delegate_0)); }
inline UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`1<System.Int32Enum>
struct InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0, ___Delegate_0)); }
inline UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`1<System.Object>
struct InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF, ___Delegate_0)); }
inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`1<System.Single>
struct InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690, ___Delegate_0)); }
inline UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`1<UnityEngine.Color>
struct InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D, ___Delegate_0)); }
inline UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>
struct InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF, ___Delegate_0)); }
inline UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`2<System.Char,System.Int32>
struct InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`2<T1,T2> UnityEngine.Events.InvokableCall`2::Delegate
UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6, ___Delegate_0)); }
inline UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.InvokableCall`2<System.Object,System.Object>
struct InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 : public BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784
{
public:
// UnityEngine.Events.UnityAction`2<T1,T2> UnityEngine.Events.InvokableCall`2::Delegate
UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90, ___Delegate_0)); }
inline UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Delegate_0), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Boolean>
struct UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Int32>
struct UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Int32Enum>
struct UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Object>
struct UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Single>
struct UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.Color>
struct UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>
struct UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>
struct UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`2::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`2<System.Object,System.Object>
struct UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`2::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.SceneManagement.Scene
struct Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE
{
public:
// System.Int32 UnityEngine.SceneManagement.Scene::m_Handle
int32_t ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE, ___m_Handle_0)); }
inline int32_t get_m_Handle_0() const { return ___m_Handle_0; }
inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(int32_t value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.UI.CoroutineTween.FloatTween
struct FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228
{
public:
// UnityEngine.UI.CoroutineTween.FloatTween_FloatTweenCallback UnityEngine.UI.CoroutineTween.FloatTween::m_Target
FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * ___m_Target_0;
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_StartValue
float ___m_StartValue_1;
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_TargetValue
float ___m_TargetValue_2;
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_Duration
float ___m_Duration_3;
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::m_IgnoreTimeScale
bool ___m_IgnoreTimeScale_4;
public:
inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_Target_0)); }
inline FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * get_m_Target_0() const { return ___m_Target_0; }
inline FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 ** get_address_of_m_Target_0() { return &___m_Target_0; }
inline void set_m_Target_0(FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * value)
{
___m_Target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartValue_1() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_StartValue_1)); }
inline float get_m_StartValue_1() const { return ___m_StartValue_1; }
inline float* get_address_of_m_StartValue_1() { return &___m_StartValue_1; }
inline void set_m_StartValue_1(float value)
{
___m_StartValue_1 = value;
}
inline static int32_t get_offset_of_m_TargetValue_2() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_TargetValue_2)); }
inline float get_m_TargetValue_2() const { return ___m_TargetValue_2; }
inline float* get_address_of_m_TargetValue_2() { return &___m_TargetValue_2; }
inline void set_m_TargetValue_2(float value)
{
___m_TargetValue_2 = value;
}
inline static int32_t get_offset_of_m_Duration_3() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_Duration_3)); }
inline float get_m_Duration_3() const { return ___m_Duration_3; }
inline float* get_address_of_m_Duration_3() { return &___m_Duration_3; }
inline void set_m_Duration_3(float value)
{
___m_Duration_3 = value;
}
inline static int32_t get_offset_of_m_IgnoreTimeScale_4() { return static_cast<int32_t>(offsetof(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228, ___m_IgnoreTimeScale_4)); }
inline bool get_m_IgnoreTimeScale_4() const { return ___m_IgnoreTimeScale_4; }
inline bool* get_address_of_m_IgnoreTimeScale_4() { return &___m_IgnoreTimeScale_4; }
inline void set_m_IgnoreTimeScale_4(bool value)
{
___m_IgnoreTimeScale_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.CoroutineTween.FloatTween
struct FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228_marshaled_pinvoke
{
FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * ___m_Target_0;
float ___m_StartValue_1;
float ___m_TargetValue_2;
float ___m_Duration_3;
int32_t ___m_IgnoreTimeScale_4;
};
// Native definition for COM marshalling of UnityEngine.UI.CoroutineTween.FloatTween
struct FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228_marshaled_com
{
FloatTweenCallback_t56E4D48C62B03C68A69708463C2CCF8E02BBFB23 * ___m_Target_0;
float ___m_StartValue_1;
float ___m_TargetValue_2;
float ___m_Duration_3;
int32_t ___m_IgnoreTimeScale_4;
};
// UnityEngine.Vector2
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9
{
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_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___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_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___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_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___negativeInfinityVector_9 = value;
}
};
// System.ByteEnum
struct ByteEnum_t39285A9D8C7F88982FF718C04A9FA1AE64827307
{
public:
// System.Byte System.ByteEnum::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t39285A9D8C7F88982FF718C04A9FA1AE64827307, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// System.DateTimeOffset
struct DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5
{
public:
// System.DateTime System.DateTimeOffset::m_dateTime
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___m_dateTime_2;
// System.Int16 System.DateTimeOffset::m_offsetMinutes
int16_t ___m_offsetMinutes_3;
public:
inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___m_dateTime_2)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_m_dateTime_2() const { return ___m_dateTime_2; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; }
inline void set_m_dateTime_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___m_dateTime_2 = value;
}
inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___m_offsetMinutes_3)); }
inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; }
inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; }
inline void set_m_offsetMinutes_3(int16_t value)
{
___m_offsetMinutes_3 = value;
}
};
struct DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields
{
public:
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MaxValue_1;
public:
inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MinValue_0)); }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MinValue_0() const { return ___MinValue_0; }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MinValue_0() { return &___MinValue_0; }
inline void set_MinValue_0(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
___MinValue_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MaxValue_1)); }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MaxValue_1() const { return ___MaxValue_1; }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
___MaxValue_1 = 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * 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_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* 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_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Int32Enum
struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C
{
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_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
{
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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___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.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
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_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___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.TimeSpan
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
public:
inline static int32_t get_offset_of__ticks_22() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_22)); }
inline int64_t get__ticks_22() const { return ____ticks_22; }
inline int64_t* get_address_of__ticks_22() { return &____ticks_22; }
inline void set__ticks_22(int64_t value)
{
____ticks_22 = value;
}
};
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_21;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_23;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_24;
public:
inline static int32_t get_offset_of_Zero_19() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; }
inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Zero_19 = value;
}
inline static int32_t get_offset_of_MaxValue_20() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; }
inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaxValue_20 = value;
}
inline static int32_t get_offset_of_MinValue_21() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; }
inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinValue_21 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_23)); }
inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; }
inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; }
inline void set__legacyConfigChecked_23(bool value)
{
____legacyConfigChecked_23 = value;
}
inline static int32_t get_offset_of__legacyMode_24() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_24)); }
inline bool get__legacyMode_24() const { return ____legacyMode_24; }
inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; }
inline void set__legacyMode_24(bool value)
{
____legacyMode_24 = value;
}
};
// System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>
struct Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
bool ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF, ___m_Item1_0)); }
inline SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 get_m_Item1_0() const { return ___m_Item1_0; }
inline SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 * get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF, ___m_Item2_1)); }
inline bool get_m_Item2_1() const { return ___m_Item2_1; }
inline bool* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(bool value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Guid,System.Int32>
struct Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
Guid_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
int32_t ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85, ___m_Item1_0)); }
inline Guid_t get_m_Item1_0() const { return ___m_Item1_0; }
inline Guid_t * get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Guid_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Guid,System.Object>
struct Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
Guid_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1, ___m_Item1_0)); }
inline Guid_t get_m_Item1_0() const { return ___m_Item1_0; }
inline Guid_t * get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Guid_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
};
// System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>
struct Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC : public RuntimeObject
{
public:
// T1 System.Tuple`3::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`3::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`3::m_Item3
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC ___m_Item3_2;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC, ___m_Item3_2)); }
inline VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC get_m_Item3_2() const { return ___m_Item3_2; }
inline VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC * get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC value)
{
___m_Item3_2 = value;
}
};
// TMPro.TweenRunner`1_<Start>d__2<TMPro.FloatTween>
struct U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E : public RuntimeObject
{
public:
// System.Int32 TMPro.TweenRunner`1_<Start>d__2::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object TMPro.TweenRunner`1_<Start>d__2::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// T TMPro.TweenRunner`1_<Start>d__2::tweenInfo
FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 ___tweenInfo_2;
// System.Single TMPro.TweenRunner`1_<Start>d__2::<elapsedTime>5__2
float ___U3CelapsedTimeU3E5__2_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E, ___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(U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E, ___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_tweenInfo_2() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E, ___tweenInfo_2)); }
inline FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 get_tweenInfo_2() const { return ___tweenInfo_2; }
inline FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 * get_address_of_tweenInfo_2() { return &___tweenInfo_2; }
inline void set_tweenInfo_2(FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 value)
{
___tweenInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___tweenInfo_2))->___m_Target_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CelapsedTimeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E, ___U3CelapsedTimeU3E5__2_3)); }
inline float get_U3CelapsedTimeU3E5__2_3() const { return ___U3CelapsedTimeU3E5__2_3; }
inline float* get_address_of_U3CelapsedTimeU3E5__2_3() { return &___U3CelapsedTimeU3E5__2_3; }
inline void set_U3CelapsedTimeU3E5__2_3(float value)
{
___U3CelapsedTimeU3E5__2_3 = value;
}
};
// UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF
{
public:
// System.IntPtr UnityEngine.Coroutine::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : 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_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___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_tF2F3778131EFF286AF62B7B013A170F95A91571A_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_tF2F3778131EFF286AF62B7B013A170F95A91571A_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_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode
struct ColorTweenMode_tC8254CFED9F320A1B7A452159F60A143952DFE19
{
public:
// System.Int32 UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorTweenMode_tC8254CFED9F320A1B7A452159F60A143952DFE19, ___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.UI.CoroutineTween.TweenRunner`1_<Start>d__2<UnityEngine.UI.CoroutineTween.FloatTween>
struct U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// T UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::tweenInfo
FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 ___tweenInfo_2;
// System.Single UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<elapsedTime>5__2
float ___U3CelapsedTimeU3E5__2_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___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(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___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_tweenInfo_2() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___tweenInfo_2)); }
inline FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 get_tweenInfo_2() const { return ___tweenInfo_2; }
inline FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 * get_address_of_tweenInfo_2() { return &___tweenInfo_2; }
inline void set_tweenInfo_2(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 value)
{
___tweenInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___tweenInfo_2))->___m_Target_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CelapsedTimeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12, ___U3CelapsedTimeU3E5__2_3)); }
inline float get_U3CelapsedTimeU3E5__2_3() const { return ___U3CelapsedTimeU3E5__2_3; }
inline float* get_address_of_U3CelapsedTimeU3E5__2_3() { return &___U3CelapsedTimeU3E5__2_3; }
inline void set_U3CelapsedTimeU3E5__2_3(float value)
{
___U3CelapsedTimeU3E5__2_3 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// System.Tuple`2<System.Int32Enum,System.ByteEnum>
struct Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
uint8_t ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D, ___m_Item2_1)); }
inline uint8_t get_m_Item2_1() const { return ___m_Item2_1; }
inline uint8_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(uint8_t value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Int32Enum,System.Int32>
struct Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
int32_t ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Int32Enum,System.Int32Enum>
struct Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
int32_t ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Int32Enum,System.Object>
struct Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
};
// System.Tuple`3<System.Int32Enum,System.Object,System.Object>
struct Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 : public RuntimeObject
{
public:
// T1 System.Tuple`3::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`3::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`3::m_Item3
RuntimeObject * ___m_Item3_2;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item3_2), (void*)value);
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* 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_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.Component
struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.GameObject
struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339
{
public:
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenCallback UnityEngine.UI.CoroutineTween.ColorTween::m_Target
ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * ___m_Target_0;
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_StartColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_StartColor_1;
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_TargetColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_TargetColor_2;
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode UnityEngine.UI.CoroutineTween.ColorTween::m_TweenMode
int32_t ___m_TweenMode_3;
// System.Single UnityEngine.UI.CoroutineTween.ColorTween::m_Duration
float ___m_Duration_4;
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::m_IgnoreTimeScale
bool ___m_IgnoreTimeScale_5;
public:
inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_Target_0)); }
inline ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * get_m_Target_0() const { return ___m_Target_0; }
inline ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 ** get_address_of_m_Target_0() { return &___m_Target_0; }
inline void set_m_Target_0(ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * value)
{
___m_Target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartColor_1() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_StartColor_1)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_StartColor_1() const { return ___m_StartColor_1; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_StartColor_1() { return &___m_StartColor_1; }
inline void set_m_StartColor_1(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_StartColor_1 = value;
}
inline static int32_t get_offset_of_m_TargetColor_2() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_TargetColor_2)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_TargetColor_2() const { return ___m_TargetColor_2; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_TargetColor_2() { return &___m_TargetColor_2; }
inline void set_m_TargetColor_2(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_TargetColor_2 = value;
}
inline static int32_t get_offset_of_m_TweenMode_3() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_TweenMode_3)); }
inline int32_t get_m_TweenMode_3() const { return ___m_TweenMode_3; }
inline int32_t* get_address_of_m_TweenMode_3() { return &___m_TweenMode_3; }
inline void set_m_TweenMode_3(int32_t value)
{
___m_TweenMode_3 = value;
}
inline static int32_t get_offset_of_m_Duration_4() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_Duration_4)); }
inline float get_m_Duration_4() const { return ___m_Duration_4; }
inline float* get_address_of_m_Duration_4() { return &___m_Duration_4; }
inline void set_m_Duration_4(float value)
{
___m_Duration_4 = value;
}
inline static int32_t get_offset_of_m_IgnoreTimeScale_5() { return static_cast<int32_t>(offsetof(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339, ___m_IgnoreTimeScale_5)); }
inline bool get_m_IgnoreTimeScale_5() const { return ___m_IgnoreTimeScale_5; }
inline bool* get_address_of_m_IgnoreTimeScale_5() { return &___m_IgnoreTimeScale_5; }
inline void set_m_IgnoreTimeScale_5(bool value)
{
___m_IgnoreTimeScale_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339_marshaled_pinvoke
{
ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * ___m_Target_0;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_StartColor_1;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_TargetColor_2;
int32_t ___m_TweenMode_3;
float ___m_Duration_4;
int32_t ___m_IgnoreTimeScale_5;
};
// Native definition for COM marshalling of UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339_marshaled_com
{
ColorTweenCallback_tFD140F68C9A5F1C9799A2A82FA463C4EF56F9026 * ___m_Target_0;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_StartColor_1;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_TargetColor_2;
int32_t ___m_TweenMode_3;
float ___m_Duration_4;
int32_t ___m_IgnoreTimeScale_5;
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
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_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___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_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t121D121059312ABFEA00E7E0857D05CCC9415A45 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Decimal>
struct Transformer_1_tC9194191386E267034CCDBD796CBAE0F96002D63 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tEBC899D34A444538AF2C5EFBED4C84DB4BC45848 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Double>
struct Transformer_1_t77DD442701A959DAE27DA4559054353BDB343B34 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Guid>
struct Transformer_1_t1E44C39C080C0C1BCAA3AA096BC46637DC78FFC8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int16>
struct Transformer_1_t8DA922273DCF1348A863E22DAED50A28F2E7EC4A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int32>
struct Transformer_1_tE2F5517F18DDC45C27EB0CF011655F7290022FB0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int64>
struct Transformer_1_t2468BF9AC5C45B9D777B0E34EC1949CE193D20F7 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.IntPtr>
struct Transformer_1_tCB7EE8D213E31FE3EAB291CBAEA6B0F015D13840 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Object>
struct Transformer_1_t0001CA8726D9CA184026588C57396CC776ACEF06 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.SByte>
struct Transformer_1_t56AC8DD64FA3E1A9651D456D3D911E023CF88DCD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Single>
struct Transformer_1_tE78CCD9D44957F7F042B573ED59E8EE04C13D047 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.TimeSpan>
struct Transformer_1_t3348AF6EA9D56F7672FDA766E48C0EC31D244732 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt16>
struct Transformer_1_t1BE0C17B380E3D75E214DF3668E20BEF6DCA9A4A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt32>
struct Transformer_1_t90F32598CDB2668A5BBD1A101374312C05F60543 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt64>
struct Transformer_1_t04C7EED1579F30358FBDCDB6143DBC088C63AFDE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UIntPtr>
struct Transformer_1_t11D2CE81C8B59E67AB536F4C77727A85FD129449 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Boolean>
struct Transformer_1_t60047D12F19EC963BBD5F0CEBE2F8036A20172F0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Byte>
struct Transformer_1_t5DE73FA1B0F7652CC9FB816D61938EA68158297B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Char>
struct Transformer_1_t3050C701F0AE1E95352D4339BFE606D2343F7F90 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t130D77E1B8D207F951F6D90F2C4A8E3792897617 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTime>
struct Transformer_1_t10ED8D0D8FCCF8A65A34FD9CB0BB769E97C65617 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTimeOffset>
struct Transformer_1_t769CC26F0F28BAA04C91A2DD4CA912A1C75B527C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Decimal>
struct Transformer_1_tC127664D3E7D230D4A314537786A12688DFA7A3E : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tF07E13438506E2B3D01E6482C5493016DBECA428 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Double>
struct Transformer_1_t98913A0CAF0396077F92C767353DCECE1CAE9D37 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Guid>
struct Transformer_1_t7065170F0C1062F0BFC8CE0818DF6CB978951894 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int16>
struct Transformer_1_t286C753C28D2786E159E55BCD77AAC5FE99C8A6E : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int32>
struct Transformer_1_t4BE8EE1016BCB2E59D59BB8EBAD050C01F69481F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int64>
struct Transformer_1_t0265D6C648532D20930747AC00E60A57882836D4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.IntPtr>
struct Transformer_1_t1008B5FEF2C9C85E523733A1465641C24C2EF895 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Object>
struct Transformer_1_t63A740E462CAF5DE201265ACF49D1F387549E5C2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.SByte>
struct Transformer_1_tF3157E7DF7ABB616E4FBC816F8F899563EBAB35C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Single>
struct Transformer_1_tCBB0F5293357FBCE6345652A671907F2D668E97B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.TimeSpan>
struct Transformer_1_tC9FFC78A73E6932AA70D077126BE4CA3FE45A302 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt16>
struct Transformer_1_t1C80BF86214358F246CD19A956D8B220FCA25D7B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt32>
struct Transformer_1_t814D676F5A4ACC9A116D07D1C0A35D5BABDF8CAE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt64>
struct Transformer_1_t005021C08874BCC5C2A50167CE4E532B9CF4CD79 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UIntPtr>
struct Transformer_1_t30E16CDE25487279253BB11A42DBEE6A21368087 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Boolean>
struct Transformer_1_t80B7BC576266310FBF99805713CB124FB1325AFD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Byte>
struct Transformer_1_tB710AA1A4EF63E7A608E1F3552AD32FF1D7EC200 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Char>
struct Transformer_1_t4C49EDB12597C819D2161020E90B0C9F2BFA6CB2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t1DD85867F626725FB9A574D7B656426FB6D860E7 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTime>
struct Transformer_1_t704F728FBE3D274B344E93D43F1EB70A681EABD0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTimeOffset>
struct Transformer_1_t99A6CF18BE9023163F159E1157E9EB2EADB175E5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Decimal>
struct Transformer_1_t2097FB14F7FB610418928F6C00B8B3C776B86D03 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4B5213C886234DE9246BB2EED20A4270B0BF8241 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Double>
struct Transformer_1_t668A4176A39C3B956441F6D0CCC1AED020F7D6AF : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Guid>
struct Transformer_1_t33F4656CC027550D29904EEB3703DEA5DB5A933E : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int16>
struct Transformer_1_t984F8DDF73126BB7D0564B2C8DB5B43DADEB1B87 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int32>
struct Transformer_1_t9E27086EA83291A9CB562EC6DF2DDCF1F811D348 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int64>
struct Transformer_1_tE5AF7FD8199D2F817240AC1D32C549AE12D4AAE9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.IntPtr>
struct Transformer_1_t9509B600985704E02CF30F84A4CA3E70DFDC190C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Object>
struct Transformer_1_t65B23DA04E78FC4F4D12CDB469679D9D5C4ED9C4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.SByte>
struct Transformer_1_tD9F86289E24471473065EC7A0AC7282EFFF25909 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Single>
struct Transformer_1_tD47677532E0EB9F83E58642BAF11E614584BE1E4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.TimeSpan>
struct Transformer_1_tFE1A34D9527A7310C69F3A1F2171ADE7234E1D64 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt16>
struct Transformer_1_tB25EE30C228D308ED1E3D17E8A08E8FF7F6A0D77 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt32>
struct Transformer_1_t39A024DD4A4E9FB07B8999CACF5FA5483C6572BF : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt64>
struct Transformer_1_t236D9CA15237017ADE5E5DF9D4F03CC889C8C551 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UIntPtr>
struct Transformer_1_t191E38853FA538EEEDB722F48BA28E2796E116E1 : public MulticastDelegate_t
{
public:
public:
};
// System.Net.Http.Headers.TryParseDelegate`1<System.DateTimeOffset>
struct TryParseDelegate_1_t1A032F9C7FB843555CAC1A5A0DAE025C701B9DBB : public MulticastDelegate_t
{
public:
public:
};
// System.Net.Http.Headers.TryParseDelegate`1<System.Int32>
struct TryParseDelegate_1_t378D47B65FBF136068B8E912864B44F4AC22B17B : public MulticastDelegate_t
{
public:
public:
};
// System.Net.Http.Headers.TryParseDelegate`1<System.Int64>
struct TryParseDelegate_1_tFF75BDCAFAB03B78E1A2CC0252493F25EC928302 : public MulticastDelegate_t
{
public:
public:
};
// System.Net.Http.Headers.TryParseDelegate`1<System.Object>
struct TryParseDelegate_1_tBFE6C978F45C3B0AC2C16BFB037564F99603C140 : public MulticastDelegate_t
{
public:
public:
};
// System.Net.Http.Headers.TryParseDelegate`1<System.TimeSpan>
struct TryParseDelegate_1_t213385FD8BFC5A6E4730E7A057FE90A68C7E7C5A : public MulticastDelegate_t
{
public:
public:
};
// System.Net.Http.Headers.TryParseListDelegate`1<System.Object>
struct TryParseListDelegate_1_t4C11679A4128BBD4FB62D9CC255FBB3C0D3119BE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Boolean>
struct UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Int32>
struct UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Int32Enum>
struct UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Object>
struct UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Single>
struct UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<UnityEngine.Color>
struct UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>
struct UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>
struct UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`2<System.Char,System.Int32>
struct UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`2<System.Object,System.Object>
struct UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>
struct UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>
struct UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`3<System.Object,System.Int32,System.Int32>
struct UnityAction_3_t8F495B8B0B41EBBD05F7C0A266F5164D7FA777E6 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Int32>
struct UnityAction_3_tE847F1F2665A491A3D66E446E33C12E88EEB79DA : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>
struct UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>
struct UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2<UnityEngine.UI.CoroutineTween.ColorTween>
struct U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// T UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::tweenInfo
ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 ___tweenInfo_2;
// System.Single UnityEngine.UI.CoroutineTween.TweenRunner`1_<Start>d__2::<elapsedTime>5__2
float ___U3CelapsedTimeU3E5__2_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___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(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___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_tweenInfo_2() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___tweenInfo_2)); }
inline ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 get_tweenInfo_2() const { return ___tweenInfo_2; }
inline ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 * get_address_of_tweenInfo_2() { return &___tweenInfo_2; }
inline void set_tweenInfo_2(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 value)
{
___tweenInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___tweenInfo_2))->___m_Target_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CelapsedTimeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388, ___U3CelapsedTimeU3E5__2_3)); }
inline float get_U3CelapsedTimeU3E5__2_3() const { return ___U3CelapsedTimeU3E5__2_3; }
inline float* get_address_of_U3CelapsedTimeU3E5__2_3() { return &___U3CelapsedTimeU3E5__2_3; }
inline void set_U3CelapsedTimeU3E5__2_3(float value)
{
___U3CelapsedTimeU3E5__2_3 = value;
}
};
// Windows.Foundation.TypedEventHandler`2<System.Object,System.Object>
struct TypedEventHandler_2_t8D72D4CAB5DF9F7D9AE52E95A431BD4738A32CDC : public MulticastDelegate_t
{
public:
public:
};
// COM Callable Wrapper interface definition for Windows.Foundation.TypedEventHandler`2<System.Object,System.Object>
struct ITypedEventHandler_2_t8D72D4CAB5DF9F7D9AE52E95A431BD4738A32CDC_ComCallableWrapper : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL Invoke(Il2CppIInspectable* ___sender0, Il2CppIInspectable* ___args1) = 0;
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : 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.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : 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.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755 : 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);
}
};
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method);
// System.String SR::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m34B16565FCB93CC63DAF544CC55CD4459A7435AB (int32_t ___h10, int32_t ___h21, int32_t ___h32, const RuntimeMethod* method);
// System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3 (int32_t ___h10, int32_t ___h21, int32_t ___h32, int32_t ___h43, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogWarning(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7 (RuntimeObject * ___message0, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.GameObject::get_activeInHierarchy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameObject_get_activeInHierarchy_mA3990AC5F61BB35283188E925C2BE7F7BF67734B (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method);
// System.Void TMPro.FloatTween::TweenValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_TweenValue_mC9D96B33108145F670145DE57210C0D3D24EC172 (FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 * __this, float ___floatPercentage0, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method);
// System.Void UnityEngine.MonoBehaviour::StopCoroutine(System.Collections.IEnumerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::TweenValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_TweenValue_m5F8B59F75D4CE627BC5F6E34A1345D41941FDCC6 (ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 * __this, float ___floatPercentage0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::TweenValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_TweenValue_mF21AE3A616B020B1D351E237D1F3145B508ACB11 (FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 * __this, float ___floatPercentage0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEventBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101 (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEventBase::AddCall(UnityEngine.Events.BaseInvokableCall)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * ___call0, const RuntimeMethod* method);
// System.Object System.Delegate::get_Target()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline (Delegate_t * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Delegate::get_Method()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227 (Delegate_t * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEventBase::RemoveListener(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
// System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::GetValidMethodInfo(System.Type,System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36 (Type_t * ___objectType0, String_t* ___functionName1, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___argumentTypes2, const RuntimeMethod* method);
// System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> UnityEngine.Events.UnityEventBase::PrepareInvoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D (UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Item(System.Int32)
inline BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method);
}
// System.Void UnityEngine.Events.InvokableCall::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7 (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Count()
inline int32_t List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Decimal>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m72CC8457290B04FA471BA2F3A21BDE37B9878C60_gshared (Transformer_1_tC9194191386E267034CCDBD796CBAE0F96002D63 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Decimal>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m02BA8AFA1FFC70F8F71246A1634F36806FAE8897_gshared (Transformer_1_tC9194191386E267034CCDBD796CBAE0F96002D63 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Decimal>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m7BC12E5216638BF328F8A46472F05AE9AA72D342_gshared (Transformer_1_tC9194191386E267034CCDBD796CBAE0F96002D63 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m7BC12E5216638BF328F8A46472F05AE9AA72D342_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Decimal>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m96263FA5E87DD118FE08BD0B59EC7CE473BECB70_gshared (Transformer_1_tC9194191386E267034CCDBD796CBAE0F96002D63 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Double>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mE61773750D98A400D932330EB9D5B5091AC44C07_gshared (Transformer_1_t77DD442701A959DAE27DA4559054353BDB343B34 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Double>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m6B8B4E8CD518E0619868B2DEDCDB446E51788D0B_gshared (Transformer_1_t77DD442701A959DAE27DA4559054353BDB343B34 * __this, double ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, double >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, double >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Double>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mD8E0470E382C0E5008D95C998A6CAEDD09692F6D_gshared (Transformer_1_t77DD442701A959DAE27DA4559054353BDB343B34 * __this, double ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mD8E0470E382C0E5008D95C998A6CAEDD09692F6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Double>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mDB032316A4AB8833F8B9FD30BB96649030F88C95_gshared (Transformer_1_t77DD442701A959DAE27DA4559054353BDB343B34 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m6081AF8AC9A383ADD32DF284E5C4ABA7201A7A9A_gshared (Transformer_1_tEBC899D34A444538AF2C5EFBED4C84DB4BC45848 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m7EEF63960D9F328657B6D82E0BF048E01C064660_gshared (Transformer_1_tEBC899D34A444538AF2C5EFBED4C84DB4BC45848 * __this, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m27D3903EA3E0824E6CD34B9BEA59A3B6C696D71B_gshared (Transformer_1_tEBC899D34A444538AF2C5EFBED4C84DB4BC45848 * __this, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m27D3903EA3E0824E6CD34B9BEA59A3B6C696D71B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m682957FD2A62F6CEEF3ECBF85C9912BBA1223E45_gshared (Transformer_1_tEBC899D34A444538AF2C5EFBED4C84DB4BC45848 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Guid>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mD86831761E2A673CFEB7EA6C39CDE95E5D1B3EC4_gshared (Transformer_1_t1E44C39C080C0C1BCAA3AA096BC46637DC78FFC8 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Guid>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_mB56F60619A7F4250924EA4BEEDE92EF924D26EEA_gshared (Transformer_1_t1E44C39C080C0C1BCAA3AA096BC46637DC78FFC8 * __this, Guid_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, Guid_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, Guid_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Guid>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m9C5B3976C18C5B042F756E5FBFF22EA5709B7953_gshared (Transformer_1_t1E44C39C080C0C1BCAA3AA096BC46637DC78FFC8 * __this, Guid_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m9C5B3976C18C5B042F756E5FBFF22EA5709B7953_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Guid_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Guid>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m1C050CF9EB62970B9C3A565A715D67C6CEA94C08_gshared (Transformer_1_t1E44C39C080C0C1BCAA3AA096BC46637DC78FFC8 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int16>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m69794DDF2C77592D74FCA45325FDB632A04DEC4B_gshared (Transformer_1_t8DA922273DCF1348A863E22DAED50A28F2E7EC4A * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int16>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_mEE6CC773DBDE355021B051F5FC4D3326C8293D51_gshared (Transformer_1_t8DA922273DCF1348A863E22DAED50A28F2E7EC4A * __this, int16_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, int16_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, int16_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, int16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, int16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int16>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m2057F9FA447D6F021328F24EBBC0075B94E32D60_gshared (Transformer_1_t8DA922273DCF1348A863E22DAED50A28F2E7EC4A * __this, int16_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m2057F9FA447D6F021328F24EBBC0075B94E32D60_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int16>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mFC2D0C8D5E3CAF4E6764719023B9DD6973C88904_gshared (Transformer_1_t8DA922273DCF1348A863E22DAED50A28F2E7EC4A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mB5B7F79BE4A06DBF8C4A2EE231C3291F5C67AD47_gshared (Transformer_1_tE2F5517F18DDC45C27EB0CF011655F7290022FB0 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int32>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m064F14ADF7BEFCE637F9DF3A8A37DB0BCA8E8A74_gshared (Transformer_1_tE2F5517F18DDC45C27EB0CF011655F7290022FB0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, int32_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, int32_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int32>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mA1C14C65D7DDEE86AF7DD2BC4DABDE7CF55D6BF6_gshared (Transformer_1_tE2F5517F18DDC45C27EB0CF011655F7290022FB0 * __this, int32_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mA1C14C65D7DDEE86AF7DD2BC4DABDE7CF55D6BF6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mF4A29BAE9459A297A2AC0350BA12774CE4A5F3CC_gshared (Transformer_1_tE2F5517F18DDC45C27EB0CF011655F7290022FB0 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m72E749C6E785A202604A6DE093E173FC93C7EF28_gshared (Transformer_1_t2468BF9AC5C45B9D777B0E34EC1949CE193D20F7 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int64>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m957B9413E6AF9FF351BDCCA149AD5F5035ECE10C_gshared (Transformer_1_t2468BF9AC5C45B9D777B0E34EC1949CE193D20F7 * __this, int64_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, int64_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, int64_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int64>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m48FBEB56AE3E6F7F36407885E211D51C5751B5FE_gshared (Transformer_1_t2468BF9AC5C45B9D777B0E34EC1949CE193D20F7 * __this, int64_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m48FBEB56AE3E6F7F36407885E211D51C5751B5FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mA1B3119BA3E7E55E1610719A94C77BDFBEB85C6E_gshared (Transformer_1_t2468BF9AC5C45B9D777B0E34EC1949CE193D20F7 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.IntPtr>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mD9D8C979AB544E1F829CC6223B2CB8BCC246446D_gshared (Transformer_1_tCB7EE8D213E31FE3EAB291CBAEA6B0F015D13840 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.IntPtr>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_mD869E27B2F207935F9132450295F860722A5DFA8_gshared (Transformer_1_tCB7EE8D213E31FE3EAB291CBAEA6B0F015D13840 * __this, intptr_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, intptr_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, intptr_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.IntPtr>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m283F9CDAE23C6FEC70AE04CFEC5610D16B63A507_gshared (Transformer_1_tCB7EE8D213E31FE3EAB291CBAEA6B0F015D13840 * __this, intptr_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m283F9CDAE23C6FEC70AE04CFEC5610D16B63A507_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.IntPtr>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m8D739C55F892AF93AF09D9441CA746893DE04964_gshared (Transformer_1_tCB7EE8D213E31FE3EAB291CBAEA6B0F015D13840 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m5FF56A5B7C2115431C6275BB13646F0DB81D7D8A_gshared (Transformer_1_t0001CA8726D9CA184026588C57396CC776ACEF06 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Object>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_mA46289FB3B1063C92E14D488F4C6CC49EB85E276_gshared (Transformer_1_t0001CA8726D9CA184026588C57396CC776ACEF06 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (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< uint16_t >::Invoke(targetMethod, ___value0);
else
result = GenericVirtFuncInvoker0< uint16_t >::Invoke(targetMethod, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___value0);
else
result = VirtFuncInvoker0< uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0);
}
}
else
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Object>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m82775DD82FBEDCF4A4A1290B8A8422E8F5AE159F_gshared (Transformer_1_t0001CA8726D9CA184026588C57396CC776ACEF06 * __this, RuntimeObject * ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___value0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mDE49D48C7B7CD7A1F2C0B62FC63720795AC3DED8_gshared (Transformer_1_t0001CA8726D9CA184026588C57396CC776ACEF06 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.SByte>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mF656F2B962278048301BB2359776A0840F8BF7CB_gshared (Transformer_1_t56AC8DD64FA3E1A9651D456D3D911E023CF88DCD * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.SByte>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m035913FB1F55BB083240F0E1B5F433E471553FAA_gshared (Transformer_1_t56AC8DD64FA3E1A9651D456D3D911E023CF88DCD * __this, int8_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, int8_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, int8_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.SByte>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mEC892437AE5B13B725F80D0B49EAC41FB1285A8C_gshared (Transformer_1_t56AC8DD64FA3E1A9651D456D3D911E023CF88DCD * __this, int8_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mEC892437AE5B13B725F80D0B49EAC41FB1285A8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.SByte>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mECBA543930669D445BD8B05B2ED64D1461E8C63A_gshared (Transformer_1_t56AC8DD64FA3E1A9651D456D3D911E023CF88DCD * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Single>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m57B15F81A0986F7F967E352DEC92C47D879E158B_gshared (Transformer_1_tE78CCD9D44957F7F042B573ED59E8EE04C13D047 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Single>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m321D596AE95DD9A7ED70CC4C18467875FC4CEC5D_gshared (Transformer_1_tE78CCD9D44957F7F042B573ED59E8EE04C13D047 * __this, float ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, float >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, float >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Single>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m70C4E02FD305AF65FFC064CADC85578D73C87C8C_gshared (Transformer_1_tE78CCD9D44957F7F042B573ED59E8EE04C13D047 * __this, float ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m70C4E02FD305AF65FFC064CADC85578D73C87C8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Single>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m7F1E0A355A7E92A17FDF1A2C8B1F49AF5E10B624_gshared (Transformer_1_tE78CCD9D44957F7F042B573ED59E8EE04C13D047 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.TimeSpan>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m2875067A881A1353B8645B6D705822C88681274B_gshared (Transformer_1_t3348AF6EA9D56F7672FDA766E48C0EC31D244732 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.TimeSpan>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m584CC32C75AD085F267EA0D274354013F521FE62_gshared (Transformer_1_t3348AF6EA9D56F7672FDA766E48C0EC31D244732 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.TimeSpan>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m8F039FF015A5010C47DF4E3719E1D9B784AA81DC_gshared (Transformer_1_t3348AF6EA9D56F7672FDA766E48C0EC31D244732 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m8F039FF015A5010C47DF4E3719E1D9B784AA81DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.TimeSpan>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m4A0DD9E171551DCEE87F88BCBBA6B0387628E33D_gshared (Transformer_1_t3348AF6EA9D56F7672FDA766E48C0EC31D244732 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt16>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m6291F71BDB0B5C15AA235A484C736FF2D16B19CC_gshared (Transformer_1_t1BE0C17B380E3D75E214DF3668E20BEF6DCA9A4A * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt16>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m00B67892D23A1E1E7E8B84B03C8C7AB22D7088A6_gshared (Transformer_1_t1BE0C17B380E3D75E214DF3668E20BEF6DCA9A4A * __this, uint16_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, uint16_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, uint16_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt16>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mEAD8383CFBEB3505AB0D5ADA898C9A7C5620C81A_gshared (Transformer_1_t1BE0C17B380E3D75E214DF3668E20BEF6DCA9A4A * __this, uint16_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mEAD8383CFBEB3505AB0D5ADA898C9A7C5620C81A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt16>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m6467CBE4A03B5146C4D62F50704F2FE87A9315D5_gshared (Transformer_1_t1BE0C17B380E3D75E214DF3668E20BEF6DCA9A4A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mDF87D7BD424F0508AE9587933B167BD64124D9EE_gshared (Transformer_1_t90F32598CDB2668A5BBD1A101374312C05F60543 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt32>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m480F08CABDA5A04342042E1363A81812B5C424DA_gshared (Transformer_1_t90F32598CDB2668A5BBD1A101374312C05F60543 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, uint32_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, uint32_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt32>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mD40F5D9CE5BB1923586BE71A3CCF5E1D7A5CA1CD_gshared (Transformer_1_t90F32598CDB2668A5BBD1A101374312C05F60543 * __this, uint32_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mD40F5D9CE5BB1923586BE71A3CCF5E1D7A5CA1CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m8F7B3B7C7E9D18E0F0EC192DE2EB1D39D94BA54F_gshared (Transformer_1_t90F32598CDB2668A5BBD1A101374312C05F60543 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m3AF2FB17DABC857588B1839D8CF32F1FA0ECB57D_gshared (Transformer_1_t04C7EED1579F30358FBDCDB6143DBC088C63AFDE * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt64>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m8DF5459AF955E33B2302CFA9FEF3D71DC906A6A8_gshared (Transformer_1_t04C7EED1579F30358FBDCDB6143DBC088C63AFDE * __this, uint64_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, uint64_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, uint64_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt64>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m555793D8B54F169847CF1475728BDC5A91312486_gshared (Transformer_1_t04C7EED1579F30358FBDCDB6143DBC088C63AFDE * __this, uint64_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m555793D8B54F169847CF1475728BDC5A91312486_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mF1634F50EF04E7F611D962EB046E55F717F97F7E_gshared (Transformer_1_t04C7EED1579F30358FBDCDB6143DBC088C63AFDE * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UIntPtr>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m7471B7E07A7BBE2F513A6E2D1DDDA2FEA0FCE233_gshared (Transformer_1_t11D2CE81C8B59E67AB536F4C77727A85FD129449 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UIntPtr>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_mE929F58BD5281A02E0F6C457D96AA0BF1282132E_gshared (Transformer_1_t11D2CE81C8B59E67AB536F4C77727A85FD129449 * __this, uintptr_t ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, uintptr_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, uintptr_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, uintptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, uintptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UIntPtr>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mDDDDA8F8619668D4857F96564FE550EF4242CCEF_gshared (Transformer_1_t11D2CE81C8B59E67AB536F4C77727A85FD129449 * __this, uintptr_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mDDDDA8F8619668D4857F96564FE550EF4242CCEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UIntPtr_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UIntPtr>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_m44ABB8621B2240EFD207373983EC4F67820108BE_gshared (Transformer_1_t11D2CE81C8B59E67AB536F4C77727A85FD129449 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m931A563639911C55663BECFD2250FA95365EAB4A_gshared (Transformer_1_t121D121059312ABFEA00E7E0857D05CCC9415A45 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_Invoke_m928203386F4E2863E4E81183D45010576C881EBB_gshared (Transformer_1_t121D121059312ABFEA00E7E0857D05CCC9415A45 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value0, const RuntimeMethod* method)
{
uint16_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint16_t (*FunctionPointerType) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint16_t (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint16_t (*FunctionPointerType) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint16_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint16_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint16_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint16_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint16_t (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mFA2DED37A5B123B70148F8ABAE03390E74A9FACB_gshared (Transformer_1_t121D121059312ABFEA00E7E0857D05CCC9415A45 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mFA2DED37A5B123B70148F8ABAE03390E74A9FACB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Transformer_1_EndInvoke_mE1BAAEF482833B668F1E28078A92782271B143F4_gshared (Transformer_1_t121D121059312ABFEA00E7E0857D05CCC9415A45 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint16_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mB71F7FABBEBF2608ABE69E0EC65E9634B523B17C_gshared (Transformer_1_t60047D12F19EC963BBD5F0CEBE2F8036A20172F0 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Boolean>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mD089030DDC58E70A8C5DE80033FFF377618B013C_gshared (Transformer_1_t60047D12F19EC963BBD5F0CEBE2F8036A20172F0 * __this, bool ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, bool >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, bool >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Boolean>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m2AE7B5CE512749E5EA2005F9A043205BC4C0B468_gshared (Transformer_1_t60047D12F19EC963BBD5F0CEBE2F8036A20172F0 * __this, bool ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m2AE7B5CE512749E5EA2005F9A043205BC4C0B468_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Boolean>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m574591466C7A90803E4A879E14597DD7AE1909DA_gshared (Transformer_1_t60047D12F19EC963BBD5F0CEBE2F8036A20172F0 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Byte>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m0594A6E63870AC5C5334A957CFD3191D3F4D5BB3_gshared (Transformer_1_t5DE73FA1B0F7652CC9FB816D61938EA68158297B * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Byte>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m2566196BD5CE935EB70D0A887448D6F7267ABA60_gshared (Transformer_1_t5DE73FA1B0F7652CC9FB816D61938EA68158297B * __this, uint8_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, uint8_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, uint8_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Byte>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m41B437FE55565CD2FAE3171C387A095755A7B38E_gshared (Transformer_1_t5DE73FA1B0F7652CC9FB816D61938EA68158297B * __this, uint8_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m41B437FE55565CD2FAE3171C387A095755A7B38E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Byte>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_mB9DF47A92F945D2CCFFDEAA3E87AC4E4731B52D2_gshared (Transformer_1_t5DE73FA1B0F7652CC9FB816D61938EA68158297B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Char>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mE1309CC63AA7F7FB55690602E4B94D9C28874DEE_gshared (Transformer_1_t3050C701F0AE1E95352D4339BFE606D2343F7F90 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Char>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mE6B203783467CE37847C7397248C274B48D724FA_gshared (Transformer_1_t3050C701F0AE1E95352D4339BFE606D2343F7F90 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, Il2CppChar >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, Il2CppChar >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Char>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mA698735327A70959EF1C191E91CC15364848BDB1_gshared (Transformer_1_t3050C701F0AE1E95352D4339BFE606D2343F7F90 * __this, Il2CppChar ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mA698735327A70959EF1C191E91CC15364848BDB1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Char>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m0C3BC97EB70727FD4B3037A83B91AD6DAC3278F8_gshared (Transformer_1_t3050C701F0AE1E95352D4339BFE606D2343F7F90 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTime>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m664F408C80DEF87E0FF9A5EA27DE4D25CAD1F465_gshared (Transformer_1_t10ED8D0D8FCCF8A65A34FD9CB0BB769E97C65617 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTime>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m3D0CABCCF1C384A6F3970C65E7AE72980B286E30_gshared (Transformer_1_t10ED8D0D8FCCF8A65A34FD9CB0BB769E97C65617 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTime>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mC99E16244EE7075D6141252005552BC97144D8BE_gshared (Transformer_1_t10ED8D0D8FCCF8A65A34FD9CB0BB769E97C65617 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mC99E16244EE7075D6141252005552BC97144D8BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTime>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m628DBEBACB1BAAFCB4980528E9CE2E896518B49B_gshared (Transformer_1_t10ED8D0D8FCCF8A65A34FD9CB0BB769E97C65617 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTimeOffset>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mE5CA4BE94E839C545A39604BE73A9AA5E095218B_gshared (Transformer_1_t769CC26F0F28BAA04C91A2DD4CA912A1C75B527C * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTimeOffset>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m4849F263BE167ED0C7A7715D096DD0CF6FB4005D_gshared (Transformer_1_t769CC26F0F28BAA04C91A2DD4CA912A1C75B527C * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTimeOffset>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m152A0AE2244D31EED60360245D841C95DC5F98B7_gshared (Transformer_1_t769CC26F0F28BAA04C91A2DD4CA912A1C75B527C * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m152A0AE2244D31EED60360245D841C95DC5F98B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTimeOffset>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m0566C802F17EAD53EB0CF4D48B64A01FF6F8DF9C_gshared (Transformer_1_t769CC26F0F28BAA04C91A2DD4CA912A1C75B527C * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Decimal>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mAF82009D358F01AB8DA0F8605EFCE691B83666EF_gshared (Transformer_1_tC127664D3E7D230D4A314537786A12688DFA7A3E * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Decimal>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m769DEDED250052363A647E00BFF481A5D1E5A1A0_gshared (Transformer_1_tC127664D3E7D230D4A314537786A12688DFA7A3E * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Decimal>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m7A4D6A078957EA0D20A31265E1E500B25CA7E716_gshared (Transformer_1_tC127664D3E7D230D4A314537786A12688DFA7A3E * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m7A4D6A078957EA0D20A31265E1E500B25CA7E716_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Decimal>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m9D8507FC8AD9AC9E207690E0ADC769FEF529B81F_gshared (Transformer_1_tC127664D3E7D230D4A314537786A12688DFA7A3E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Double>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m39256E37D7408EA496018229E12225173781E5E2_gshared (Transformer_1_t98913A0CAF0396077F92C767353DCECE1CAE9D37 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Double>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mC135BC5D3E7A9F20D041DB4141858D5EB652BB5E_gshared (Transformer_1_t98913A0CAF0396077F92C767353DCECE1CAE9D37 * __this, double ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, double >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, double >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Double>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m49B7600738C79F33DC128825F98FF6C16403EF64_gshared (Transformer_1_t98913A0CAF0396077F92C767353DCECE1CAE9D37 * __this, double ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m49B7600738C79F33DC128825F98FF6C16403EF64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Double>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m27D8E829D7025DB2DD9328C11179254C2836B1DC_gshared (Transformer_1_t98913A0CAF0396077F92C767353DCECE1CAE9D37 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m41E2C0D0EBACF06E63E6594113ED7B4CB5C15578_gshared (Transformer_1_tF07E13438506E2B3D01E6482C5493016DBECA428 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mAABB4309992842F675A367C437F8265EC0D77A84_gshared (Transformer_1_tF07E13438506E2B3D01E6482C5493016DBECA428 * __this, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m9DAC9FCBA9CCCC4D66926DADA7567C96C8977D8B_gshared (Transformer_1_tF07E13438506E2B3D01E6482C5493016DBECA428 * __this, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m9DAC9FCBA9CCCC4D66926DADA7567C96C8977D8B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m57C3E6508613E8C6879DD2AB13EE0FD4B2CD0368_gshared (Transformer_1_tF07E13438506E2B3D01E6482C5493016DBECA428 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Guid>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mF9D29C86D2817FF816AD1A0253A1FE1DE3A3EFE2_gshared (Transformer_1_t7065170F0C1062F0BFC8CE0818DF6CB978951894 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Guid>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m4A39E630053BC936D15581C94CFD02FDFB074B99_gshared (Transformer_1_t7065170F0C1062F0BFC8CE0818DF6CB978951894 * __this, Guid_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, Guid_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, Guid_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Guid>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mE5290B3E034BD6CC6B1686B5828584C91DD49E2B_gshared (Transformer_1_t7065170F0C1062F0BFC8CE0818DF6CB978951894 * __this, Guid_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mE5290B3E034BD6CC6B1686B5828584C91DD49E2B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Guid_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Guid>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m194B685CE3676662034F5C248ED96B66FAE3070A_gshared (Transformer_1_t7065170F0C1062F0BFC8CE0818DF6CB978951894 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int16>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m81AEB32DDFD3CE644C7597D44A26A1B5BB7592DE_gshared (Transformer_1_t286C753C28D2786E159E55BCD77AAC5FE99C8A6E * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int16>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mAA7AC4B5491EDFFB5027F61B5A9299DF63F8A28D_gshared (Transformer_1_t286C753C28D2786E159E55BCD77AAC5FE99C8A6E * __this, int16_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, int16_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, int16_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, int16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, int16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int16>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mB1E3DB3D8DFA665A866959ADB960AB8599919213_gshared (Transformer_1_t286C753C28D2786E159E55BCD77AAC5FE99C8A6E * __this, int16_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mB1E3DB3D8DFA665A866959ADB960AB8599919213_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int16>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m9CFC120E3001DCDE4E2D73524E7C1E88C066C41F_gshared (Transformer_1_t286C753C28D2786E159E55BCD77AAC5FE99C8A6E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m1A9B4A72652D56EF3BD5DD022043999818CA4199_gshared (Transformer_1_t4BE8EE1016BCB2E59D59BB8EBAD050C01F69481F * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int32>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m7FFFF53160B0D59D4CC689CF306C3BEEBD178309_gshared (Transformer_1_t4BE8EE1016BCB2E59D59BB8EBAD050C01F69481F * __this, int32_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, int32_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, int32_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int32>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m5A337D54474A27C3BC3EF8DB1E0B8EB97F2C4AA1_gshared (Transformer_1_t4BE8EE1016BCB2E59D59BB8EBAD050C01F69481F * __this, int32_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m5A337D54474A27C3BC3EF8DB1E0B8EB97F2C4AA1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m1B6235F32AD3CE7D10E0F1C3334DC840C40CBF6A_gshared (Transformer_1_t4BE8EE1016BCB2E59D59BB8EBAD050C01F69481F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mDC95D72CA859C17A282117654844230C1B6C5ECC_gshared (Transformer_1_t0265D6C648532D20930747AC00E60A57882836D4 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int64>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mE6BCC9927EB61C1BF7269CB528208E077B52078C_gshared (Transformer_1_t0265D6C648532D20930747AC00E60A57882836D4 * __this, int64_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, int64_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, int64_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int64>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m5AB95C16F9DB6C41933C7932C96D7D57865A9D80_gshared (Transformer_1_t0265D6C648532D20930747AC00E60A57882836D4 * __this, int64_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m5AB95C16F9DB6C41933C7932C96D7D57865A9D80_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m850855410DA21E7CED3047630DB9F2C29965BE10_gshared (Transformer_1_t0265D6C648532D20930747AC00E60A57882836D4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.IntPtr>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m86453B9528E4DF96395CFE4923A3EAFED3307458_gshared (Transformer_1_t1008B5FEF2C9C85E523733A1465641C24C2EF895 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.IntPtr>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mCF7FFA4D585DABADF1ED65D884337801F76AD896_gshared (Transformer_1_t1008B5FEF2C9C85E523733A1465641C24C2EF895 * __this, intptr_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, intptr_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, intptr_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.IntPtr>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m3CA1FAA1AE2629DB367ED82CA3E30F41E3FEA0EC_gshared (Transformer_1_t1008B5FEF2C9C85E523733A1465641C24C2EF895 * __this, intptr_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m3CA1FAA1AE2629DB367ED82CA3E30F41E3FEA0EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.IntPtr>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m5A453FE06867222F62B479665BAAC1148293A1F4_gshared (Transformer_1_t1008B5FEF2C9C85E523733A1465641C24C2EF895 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m1E9E589EBA266CDF1D18957354159072E0993E26_gshared (Transformer_1_t63A740E462CAF5DE201265ACF49D1F387549E5C2 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Object>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m4E13D67C4CEBB3D8B6B2FECDF1B86A4C255FA82C_gshared (Transformer_1_t63A740E462CAF5DE201265ACF49D1F387549E5C2 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (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< uint32_t >::Invoke(targetMethod, ___value0);
else
result = GenericVirtFuncInvoker0< uint32_t >::Invoke(targetMethod, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___value0);
else
result = VirtFuncInvoker0< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0);
}
}
else
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Object>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m0E7109DF44A706859DB8F7113B3490101DD20DA7_gshared (Transformer_1_t63A740E462CAF5DE201265ACF49D1F387549E5C2 * __this, RuntimeObject * ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___value0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_mBCA4FEA59EF6C1D46515831D55E300AB3C47620E_gshared (Transformer_1_t63A740E462CAF5DE201265ACF49D1F387549E5C2 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.SByte>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m38FD6511DEE6BBEE28C197841F5872924654D5E8_gshared (Transformer_1_tF3157E7DF7ABB616E4FBC816F8F899563EBAB35C * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.SByte>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m9E32938A23EEFA066ABC56E3B3677A045B35C8BA_gshared (Transformer_1_tF3157E7DF7ABB616E4FBC816F8F899563EBAB35C * __this, int8_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, int8_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, int8_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.SByte>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m671FD2FB3F3F0DC28A7CC96421F4E87B475B27F0_gshared (Transformer_1_tF3157E7DF7ABB616E4FBC816F8F899563EBAB35C * __this, int8_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m671FD2FB3F3F0DC28A7CC96421F4E87B475B27F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.SByte>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m859CCF309FEBE397D56468ADD2B15FC2358B0B2A_gshared (Transformer_1_tF3157E7DF7ABB616E4FBC816F8F899563EBAB35C * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Single>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m4A70B283EC13B7F1175CB092B4C8A83F999AE30B_gshared (Transformer_1_tCBB0F5293357FBCE6345652A671907F2D668E97B * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Single>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m4E42A111695C22381249C1F85D78E43703295154_gshared (Transformer_1_tCBB0F5293357FBCE6345652A671907F2D668E97B * __this, float ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, float >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, float >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Single>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mACFF3DFD3D377E8DCA8CAA28669779BFA511292A_gshared (Transformer_1_tCBB0F5293357FBCE6345652A671907F2D668E97B * __this, float ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mACFF3DFD3D377E8DCA8CAA28669779BFA511292A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Single>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m56DB48F7433F8C4880B9D5CFE3A0C53A34F8CC31_gshared (Transformer_1_tCBB0F5293357FBCE6345652A671907F2D668E97B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.TimeSpan>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m9C02ADBDC4BE36690AC2C2F3C4DDB4B558C7DEF7_gshared (Transformer_1_tC9FFC78A73E6932AA70D077126BE4CA3FE45A302 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.TimeSpan>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mEB25A8332784911979AE8447167FDF12A36420C6_gshared (Transformer_1_tC9FFC78A73E6932AA70D077126BE4CA3FE45A302 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.TimeSpan>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m9CC8A20952769DD59BF2624631DA8CD0AB1C2C40_gshared (Transformer_1_tC9FFC78A73E6932AA70D077126BE4CA3FE45A302 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m9CC8A20952769DD59BF2624631DA8CD0AB1C2C40_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.TimeSpan>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m1691BD16760F72ED213BBE1F5FC2959F745D08EF_gshared (Transformer_1_tC9FFC78A73E6932AA70D077126BE4CA3FE45A302 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt16>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m786C72461FC6F6CE009B07C06B84ACB218767437_gshared (Transformer_1_t1C80BF86214358F246CD19A956D8B220FCA25D7B * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt16>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mD193A1E000C2FC1C89E69542E4DADE4251CA28E2_gshared (Transformer_1_t1C80BF86214358F246CD19A956D8B220FCA25D7B * __this, uint16_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, uint16_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, uint16_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt16>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m5180F434C0A34AD719A607DE08307B420E88EE14_gshared (Transformer_1_t1C80BF86214358F246CD19A956D8B220FCA25D7B * __this, uint16_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m5180F434C0A34AD719A607DE08307B420E88EE14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt16>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m4CFDA1038984623EE5C9B0D5284358FF759268CB_gshared (Transformer_1_t1C80BF86214358F246CD19A956D8B220FCA25D7B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mF02F517A859DFA2C7CBFE404A2A83F2B500C2611_gshared (Transformer_1_t814D676F5A4ACC9A116D07D1C0A35D5BABDF8CAE * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt32>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_mBDF603292BF2C24354A0FEC2BEC7B6AB2C5B91CD_gshared (Transformer_1_t814D676F5A4ACC9A116D07D1C0A35D5BABDF8CAE * __this, uint32_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, uint32_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, uint32_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt32>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m3AAE904E9147ADEFC69DE21FC270FA2B8B71885F_gshared (Transformer_1_t814D676F5A4ACC9A116D07D1C0A35D5BABDF8CAE * __this, uint32_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m3AAE904E9147ADEFC69DE21FC270FA2B8B71885F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m5A2E89AFEFAB2E9AB36D8B1DBE3FED457F540AC1_gshared (Transformer_1_t814D676F5A4ACC9A116D07D1C0A35D5BABDF8CAE * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m68B1A5410D11FAFEDF6641855767EB5A1DC33ACC_gshared (Transformer_1_t005021C08874BCC5C2A50167CE4E532B9CF4CD79 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt64>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m0DCB746B5889675B39A462CAB499A9BAE85FA763_gshared (Transformer_1_t005021C08874BCC5C2A50167CE4E532B9CF4CD79 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, uint64_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, uint64_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt64>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mA0BC023643CA5E95BB9AD72B43648F39B01D7577_gshared (Transformer_1_t005021C08874BCC5C2A50167CE4E532B9CF4CD79 * __this, uint64_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mA0BC023643CA5E95BB9AD72B43648F39B01D7577_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m672F2AC6DECFBBC586B1CF33A28C1E2845A8C81C_gshared (Transformer_1_t005021C08874BCC5C2A50167CE4E532B9CF4CD79 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UIntPtr>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mE8860955A3E1D0BB91AE103B51A50F374AE05B8A_gshared (Transformer_1_t30E16CDE25487279253BB11A42DBEE6A21368087 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UIntPtr>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m0C680D06CB0A227C80AF14871E6C6C937FDEDC95_gshared (Transformer_1_t30E16CDE25487279253BB11A42DBEE6A21368087 * __this, uintptr_t ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, uintptr_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, uintptr_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, uintptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, uintptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UIntPtr>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mF0EB4C260BB15AA90CDAC802062BDA8858EB7FE4_gshared (Transformer_1_t30E16CDE25487279253BB11A42DBEE6A21368087 * __this, uintptr_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mF0EB4C260BB15AA90CDAC802062BDA8858EB7FE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UIntPtr_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UIntPtr>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_m446DE813F185932008B7010A29343E426E0372EC_gshared (Transformer_1_t30E16CDE25487279253BB11A42DBEE6A21368087 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m8C65F25602516529CB6CAEF2EAD24465A766F176_gshared (Transformer_1_t130D77E1B8D207F951F6D90F2C4A8E3792897617 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_Invoke_m23A4D70EC827589C5D347D6FC4E1B494C9C913F2_gshared (Transformer_1_t130D77E1B8D207F951F6D90F2C4A8E3792897617 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value0, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint32_t (*FunctionPointerType) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint32_t (*FunctionPointerType) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint32_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint32_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint32_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint32_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mE291C33C4205DB74BE04D55E703D0DAA268DA3CA_gshared (Transformer_1_t130D77E1B8D207F951F6D90F2C4A8E3792897617 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mE291C33C4205DB74BE04D55E703D0DAA268DA3CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Transformer_1_EndInvoke_mC54E3209B5A3184021B7345F4B5A0B80C02BED41_gshared (Transformer_1_t130D77E1B8D207F951F6D90F2C4A8E3792897617 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mA2A75FF15B56C348D3ED03246679B0207672CFE4_gshared (Transformer_1_t80B7BC576266310FBF99805713CB124FB1325AFD * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Boolean>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mEA62AA61EF5A1876C36F24E7CAAB05BC105B7381_gshared (Transformer_1_t80B7BC576266310FBF99805713CB124FB1325AFD * __this, bool ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, bool >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, bool >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Boolean>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m5A583EBF9325D6409C60F95BE182326C56A4E503_gshared (Transformer_1_t80B7BC576266310FBF99805713CB124FB1325AFD * __this, bool ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m5A583EBF9325D6409C60F95BE182326C56A4E503_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Boolean>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m0FD79B55D5E47DB27A7BE9DC3EDC85C2E51ECFC0_gshared (Transformer_1_t80B7BC576266310FBF99805713CB124FB1325AFD * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Byte>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m6ECCE321686F9FFF6704EB101B0926CAA57B0BBD_gshared (Transformer_1_tB710AA1A4EF63E7A608E1F3552AD32FF1D7EC200 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Byte>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m6A6E952DA4FE5490A3AB7E2527DCC2EB1A02C618_gshared (Transformer_1_tB710AA1A4EF63E7A608E1F3552AD32FF1D7EC200 * __this, uint8_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, uint8_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, uint8_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Byte>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m533F5DD612F572522115E1DB59471C25BD0FCBB9_gshared (Transformer_1_tB710AA1A4EF63E7A608E1F3552AD32FF1D7EC200 * __this, uint8_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m533F5DD612F572522115E1DB59471C25BD0FCBB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Byte>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mF2B1ACC358FA56F16B71AAFB8DD9D8D64F4FC664_gshared (Transformer_1_tB710AA1A4EF63E7A608E1F3552AD32FF1D7EC200 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Char>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mA815CF672551F3EF44350A42512ACF6D61BB297D_gshared (Transformer_1_t4C49EDB12597C819D2161020E90B0C9F2BFA6CB2 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Char>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m5680681B6E5DA1C0B1B6EF7D69E19AD634B284CE_gshared (Transformer_1_t4C49EDB12597C819D2161020E90B0C9F2BFA6CB2 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, Il2CppChar >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, Il2CppChar >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Char>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m2ADE5658BA23F4CAEEDCED9B09AF04B0C9973381_gshared (Transformer_1_t4C49EDB12597C819D2161020E90B0C9F2BFA6CB2 * __this, Il2CppChar ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m2ADE5658BA23F4CAEEDCED9B09AF04B0C9973381_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Char>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m1556EF6A19A4AC276E5F05909D9529FA4DF897EE_gshared (Transformer_1_t4C49EDB12597C819D2161020E90B0C9F2BFA6CB2 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTime>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m65D72E60D731580E7538441FA3D86D58CF235576_gshared (Transformer_1_t704F728FBE3D274B344E93D43F1EB70A681EABD0 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTime>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mD72FCE24C3D760BFF66D6FCA4F503E6FA1EE31FD_gshared (Transformer_1_t704F728FBE3D274B344E93D43F1EB70A681EABD0 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTime>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mE0F7C8D28C75673B1A1E8CF2B6FFCB5D6CA4E9B1_gshared (Transformer_1_t704F728FBE3D274B344E93D43F1EB70A681EABD0 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mE0F7C8D28C75673B1A1E8CF2B6FFCB5D6CA4E9B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTime>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m4ACB886679C443BAEF621B2E6B39D0C87743C1BA_gshared (Transformer_1_t704F728FBE3D274B344E93D43F1EB70A681EABD0 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTimeOffset>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m0BFAAF5745D71075B4819DD2F9D36CB8D9969EDC_gshared (Transformer_1_t99A6CF18BE9023163F159E1157E9EB2EADB175E5 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTimeOffset>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m5FC2D88264085B7F5F327A706B9F47985E24FFD5_gshared (Transformer_1_t99A6CF18BE9023163F159E1157E9EB2EADB175E5 * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTimeOffset>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m38A9175EFAD6FF53E2F2D625B7D09407880F8B1C_gshared (Transformer_1_t99A6CF18BE9023163F159E1157E9EB2EADB175E5 * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m38A9175EFAD6FF53E2F2D625B7D09407880F8B1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTimeOffset>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mA824868302355BFDDF0DD7B335FB274405244FC6_gshared (Transformer_1_t99A6CF18BE9023163F159E1157E9EB2EADB175E5 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Decimal>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m1D01011F5640D0CECE0D273DF2770522A3224725_gshared (Transformer_1_t2097FB14F7FB610418928F6C00B8B3C776B86D03 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Decimal>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m1B6B0841564E6091689D19DABEE39F24ABF8C60E_gshared (Transformer_1_t2097FB14F7FB610418928F6C00B8B3C776B86D03 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Decimal>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mCE99E29A99AEFFDE5A6D1281215EF5C99DF0FCDD_gshared (Transformer_1_t2097FB14F7FB610418928F6C00B8B3C776B86D03 * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mCE99E29A99AEFFDE5A6D1281215EF5C99DF0FCDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Decimal>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m9BE6005D658F0B498D5DDE9A9BF4EFF343D2D511_gshared (Transformer_1_t2097FB14F7FB610418928F6C00B8B3C776B86D03 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Double>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m4473A2DE8783F0537C5AEC89F4E3136EEB3E23CF_gshared (Transformer_1_t668A4176A39C3B956441F6D0CCC1AED020F7D6AF * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Double>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m4ED1395F535BB7BB647FC1054A7666C1C141C417_gshared (Transformer_1_t668A4176A39C3B956441F6D0CCC1AED020F7D6AF * __this, double ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, double >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, double >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, double, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Double>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m0BF8A0F29D5B03E36892AF5F48D1A6350CFD718B_gshared (Transformer_1_t668A4176A39C3B956441F6D0CCC1AED020F7D6AF * __this, double ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m0BF8A0F29D5B03E36892AF5F48D1A6350CFD718B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Double>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mE404663809F9B719C1D2661CE5FCC17322C05E69_gshared (Transformer_1_t668A4176A39C3B956441F6D0CCC1AED020F7D6AF * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m136C5623E0AF6AE6EDE563A579FD72AE1C1E943C_gshared (Transformer_1_t4B5213C886234DE9246BB2EED20A4270B0BF8241 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m8579EC6CC939077ADD5B76EB4D20550E489D9EA1_gshared (Transformer_1_t4B5213C886234DE9246BB2EED20A4270B0BF8241 * __this, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m273674AA84C8827A8EB4F1F823283FEEB019675D_gshared (Transformer_1_t4B5213C886234DE9246BB2EED20A4270B0BF8241 * __this, EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m273674AA84C8827A8EB4F1F823283FEEB019675D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(EmptyStruct_t4261C00C8DDCEA2FE01A2264519DDB55BA275F62_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mD677B539FCAC90CF71C714EA5976F145A33FCCDB_gshared (Transformer_1_t4B5213C886234DE9246BB2EED20A4270B0BF8241 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Guid>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m53E6E8E76A5153E14BA4BA74556E6F561A3F8761_gshared (Transformer_1_t33F4656CC027550D29904EEB3703DEA5DB5A933E * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Guid>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m13EE68ED68704C41F3CDC9B89747256FCD5A1B45_gshared (Transformer_1_t33F4656CC027550D29904EEB3703DEA5DB5A933E * __this, Guid_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, Guid_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, Guid_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Guid>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mA92336172834278F111A1FE9F195575DAB425AB0_gshared (Transformer_1_t33F4656CC027550D29904EEB3703DEA5DB5A933E * __this, Guid_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mA92336172834278F111A1FE9F195575DAB425AB0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Guid_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Guid>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mDE65EBA01742B5A24E4B3818A2EC4487ED4A724C_gshared (Transformer_1_t33F4656CC027550D29904EEB3703DEA5DB5A933E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int16>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m4B3C74BCD3D30B4AC445964187AC38BFD00B0330_gshared (Transformer_1_t984F8DDF73126BB7D0564B2C8DB5B43DADEB1B87 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int16>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m1E4BCDDD2027A8A31D53F26BFE65BEFBEC9345B8_gshared (Transformer_1_t984F8DDF73126BB7D0564B2C8DB5B43DADEB1B87 * __this, int16_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, int16_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, int16_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, int16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, int16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, int16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int16>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mF69B50162458A1200730F990776AA75A88B37901_gshared (Transformer_1_t984F8DDF73126BB7D0564B2C8DB5B43DADEB1B87 * __this, int16_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mF69B50162458A1200730F990776AA75A88B37901_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int16>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m9C04C7A42F5C53594A810169BAC81AC798835DFE_gshared (Transformer_1_t984F8DDF73126BB7D0564B2C8DB5B43DADEB1B87 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m4A83C92F51629AF06278AA9A70EA859FEACC05A0_gshared (Transformer_1_t9E27086EA83291A9CB562EC6DF2DDCF1F811D348 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int32>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m9EF74BCE1DBBD172BAFDF4FDFD5B0BF7697BE032_gshared (Transformer_1_t9E27086EA83291A9CB562EC6DF2DDCF1F811D348 * __this, int32_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, int32_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, int32_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int32>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m3F86A2B342D0F39310236624DE6100567D5E2422_gshared (Transformer_1_t9E27086EA83291A9CB562EC6DF2DDCF1F811D348 * __this, int32_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m3F86A2B342D0F39310236624DE6100567D5E2422_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m2CE85644B6CC6E69027E0A5D993ED7F2155E345C_gshared (Transformer_1_t9E27086EA83291A9CB562EC6DF2DDCF1F811D348 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mA551310A99F9BE754C57A6F371BA18065A28BBF3_gshared (Transformer_1_tE5AF7FD8199D2F817240AC1D32C549AE12D4AAE9 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int64>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mE691668E411CC451BE0E4595AD1BE92EC750F7B9_gshared (Transformer_1_tE5AF7FD8199D2F817240AC1D32C549AE12D4AAE9 * __this, int64_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, int64_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, int64_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int64>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mA5450CC6478614A3C36DBF0C10EC165739187C93_gshared (Transformer_1_tE5AF7FD8199D2F817240AC1D32C549AE12D4AAE9 * __this, int64_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mA5450CC6478614A3C36DBF0C10EC165739187C93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m2483C236E21BD33A99F3F13033B2A5AD08B93A57_gshared (Transformer_1_tE5AF7FD8199D2F817240AC1D32C549AE12D4AAE9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.IntPtr>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mD004A7FAD30F8A5C821953B71BDED43B69DD353A_gshared (Transformer_1_t9509B600985704E02CF30F84A4CA3E70DFDC190C * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.IntPtr>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m17C2F85486E4D79435DB2504D668F4DFE84FFEE0_gshared (Transformer_1_t9509B600985704E02CF30F84A4CA3E70DFDC190C * __this, intptr_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, intptr_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, intptr_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.IntPtr>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m9FAD5249B3EEEEF7D5D328E555767DBCE6F551A7_gshared (Transformer_1_t9509B600985704E02CF30F84A4CA3E70DFDC190C * __this, intptr_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m9FAD5249B3EEEEF7D5D328E555767DBCE6F551A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.IntPtr>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m54EABEF436ED0313335368A02CDBCFEF4F83CD7C_gshared (Transformer_1_t9509B600985704E02CF30F84A4CA3E70DFDC190C * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mB28B2E288184E1CCB6E7E46871C4A00425F69CB9_gshared (Transformer_1_t65B23DA04E78FC4F4D12CDB469679D9D5C4ED9C4 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Object>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mEDFCBBF77C3230F0AFFD00818ADC3871B7284C4B_gshared (Transformer_1_t65B23DA04E78FC4F4D12CDB469679D9D5C4ED9C4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (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< uint64_t >::Invoke(targetMethod, ___value0);
else
result = GenericVirtFuncInvoker0< uint64_t >::Invoke(targetMethod, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___value0);
else
result = VirtFuncInvoker0< uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0);
}
}
else
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, RuntimeObject * >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Object>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m02B7E1353C6AD9E6049328676E15C4EED579217B_gshared (Transformer_1_t65B23DA04E78FC4F4D12CDB469679D9D5C4ED9C4 * __this, RuntimeObject * ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___value0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m7A6DA8164D22FAEBDDC483364C42F22DC1AB2E29_gshared (Transformer_1_t65B23DA04E78FC4F4D12CDB469679D9D5C4ED9C4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.SByte>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mE65EDE5CE1A7F4493104A633DE622A1EFF658C0B_gshared (Transformer_1_tD9F86289E24471473065EC7A0AC7282EFFF25909 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.SByte>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m0E7BEEEE54B20BEE7CD6B5F57E7DBB27D4695125_gshared (Transformer_1_tD9F86289E24471473065EC7A0AC7282EFFF25909 * __this, int8_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, int8_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, int8_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.SByte>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m430D8DCF34B3A57785B2D4A51F9BF04747E88701_gshared (Transformer_1_tD9F86289E24471473065EC7A0AC7282EFFF25909 * __this, int8_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m430D8DCF34B3A57785B2D4A51F9BF04747E88701_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.SByte>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mD849E89F7393A6D7BCA5EF3CB095DD8DEA2434C3_gshared (Transformer_1_tD9F86289E24471473065EC7A0AC7282EFFF25909 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Single>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m15AEE5783A2CBF4F066A5A00ED704E2FC2B3D37D_gshared (Transformer_1_tD47677532E0EB9F83E58642BAF11E614584BE1E4 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Single>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m5730E348A76892DE2665EE09439D2E7E8BBFDCF2_gshared (Transformer_1_tD47677532E0EB9F83E58642BAF11E614584BE1E4 * __this, float ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, float >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, float >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Single>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m634CED2C972E70DF6DE17BB74EAEA708668AD037_gshared (Transformer_1_tD47677532E0EB9F83E58642BAF11E614584BE1E4 * __this, float ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m634CED2C972E70DF6DE17BB74EAEA708668AD037_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Single>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m2274D73C4FF89B1C5CA73CDB34C7C08BB9B0144D_gshared (Transformer_1_tD47677532E0EB9F83E58642BAF11E614584BE1E4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.TimeSpan>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m58A38EC208876D106F58E2DC9A867B56E4CB8F84_gshared (Transformer_1_tFE1A34D9527A7310C69F3A1F2171ADE7234E1D64 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.TimeSpan>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m19B7BCB4E00587B2B0081CF1DBA29C200A83BC6F_gshared (Transformer_1_tFE1A34D9527A7310C69F3A1F2171ADE7234E1D64 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.TimeSpan>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mA4FE93E64CDB81C627A23EEB180B281B6419D151_gshared (Transformer_1_tFE1A34D9527A7310C69F3A1F2171ADE7234E1D64 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mA4FE93E64CDB81C627A23EEB180B281B6419D151_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.TimeSpan>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m86A8036B25E007F514658368800BCD1D5DFE861B_gshared (Transformer_1_tFE1A34D9527A7310C69F3A1F2171ADE7234E1D64 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt16>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m1642C09B8DBE9CC6D6E96A6BE668D3DD8B24BB92_gshared (Transformer_1_tB25EE30C228D308ED1E3D17E8A08E8FF7F6A0D77 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt16>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_m6C0C4B5E99BB3ED2115EE8406A5F49F8E55A3426_gshared (Transformer_1_tB25EE30C228D308ED1E3D17E8A08E8FF7F6A0D77 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, uint16_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, uint16_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt16>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m326BA6D9E6446E6BF6A916C6A96D0289974C8D26_gshared (Transformer_1_tB25EE30C228D308ED1E3D17E8A08E8FF7F6A0D77 * __this, uint16_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m326BA6D9E6446E6BF6A916C6A96D0289974C8D26_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt16>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mA0FDFC4A78E7BCA2FB3DF72ACFC2CDBEAB962C52_gshared (Transformer_1_tB25EE30C228D308ED1E3D17E8A08E8FF7F6A0D77 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mACAEE6FFE50D9849654EB80DE7FB25F6390643C6_gshared (Transformer_1_t39A024DD4A4E9FB07B8999CACF5FA5483C6572BF * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt32>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mFF210B069099F5F1AC55B7C87DA27587106C6CA9_gshared (Transformer_1_t39A024DD4A4E9FB07B8999CACF5FA5483C6572BF * __this, uint32_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, uint32_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, uint32_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt32>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mCD7DEA1718DE27D965957736EC407153F04197FE_gshared (Transformer_1_t39A024DD4A4E9FB07B8999CACF5FA5483C6572BF * __this, uint32_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mCD7DEA1718DE27D965957736EC407153F04197FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mB4375C1A5C6DD9E8A106EDB6E22FB199270457FF_gshared (Transformer_1_t39A024DD4A4E9FB07B8999CACF5FA5483C6572BF * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mD23E82C8E9DCA412D253362864E2D5F22C3CF0DD_gshared (Transformer_1_t236D9CA15237017ADE5E5DF9D4F03CC889C8C551 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt64>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mAF43F70E31DD9BBD7EADA2494DED89C0C0E172BF_gshared (Transformer_1_t236D9CA15237017ADE5E5DF9D4F03CC889C8C551 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, uint64_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, uint64_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt64>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m9F6E545B69C64F64B5F928EA346CC03C2B16B858_gshared (Transformer_1_t236D9CA15237017ADE5E5DF9D4F03CC889C8C551 * __this, uint64_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m9F6E545B69C64F64B5F928EA346CC03C2B16B858_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_mDC358649389FCEA28E86D39614F382A3B4B28F66_gshared (Transformer_1_t236D9CA15237017ADE5E5DF9D4F03CC889C8C551 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UIntPtr>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_mCB075AE87E283FC9BC2ACBC1DEB7596A9322C223_gshared (Transformer_1_t191E38853FA538EEEDB722F48BA28E2796E116E1 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UIntPtr>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mE9A0821D216DCB977AC88D72FF09364935FBEB3E_gshared (Transformer_1_t191E38853FA538EEEDB722F48BA28E2796E116E1 * __this, uintptr_t ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, uintptr_t >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, uintptr_t >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, uintptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, uintptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, uintptr_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UIntPtr>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_mFD6666598C9835E04935E87540FAB86CA525342C_gshared (Transformer_1_t191E38853FA538EEEDB722F48BA28E2796E116E1 * __this, uintptr_t ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_mFD6666598C9835E04935E87540FAB86CA525342C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UIntPtr_t_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UIntPtr>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m089009533621C1D89DA0609B4B1FDD2C4C362CFC_gshared (Transformer_1_t191E38853FA538EEEDB722F48BA28E2796E116E1 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transformer_1__ctor_m548386000F9272A988AEC1F77FB5834D53CA486B_gshared (Transformer_1_t1DD85867F626725FB9A574D7B656426FB6D860E7 * __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);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Invoke(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_Invoke_mB3F2B17814D61CA22C3F52ADF7E0C0983A8ADD35_gshared (Transformer_1_t1DD85867F626725FB9A574D7B656426FB6D860E7 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value0, const RuntimeMethod* method)
{
uint64_t result = 0;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 uint64_t (*FunctionPointerType) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else
{
// closed
typedef uint64_t (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef uint64_t (*FunctionPointerType) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< uint64_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___value0);
else
result = GenericVirtFuncInvoker1< uint64_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(targetMethod, targetThis, ___value0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< uint64_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0);
else
result = VirtFuncInvoker1< uint64_t, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___value0) - 1), targetMethod);
}
else
{
typedef uint64_t (*FunctionPointerType) (void*, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::BeginInvoke(ValueType,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transformer_1_BeginInvoke_m18FF96A4A10B8DB16062459FD6F96E73B7206C9B_gshared (Transformer_1_t1DD85867F626725FB9A574D7B656426FB6D860E7 * __this, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___value0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Transformer_1_BeginInvoke_m18FF96A4A10B8DB16062459FD6F96E73B7206C9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_il2cpp_TypeInfo_var, &___value0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Transformer_1_EndInvoke_m9DD6F000B6E730CB543F1B87F97C0BF7EF571374_gshared (Transformer_1_t1DD85867F626725FB9A574D7B656426FB6D860E7 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint64_t*)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.Net.Http.Headers.TryParseDelegate`1<System.DateTimeOffset>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TryParseDelegate_1__ctor_m9A5F65B78B2AC63E9C9244FFACE5FB84AE92E8FB_gshared (TryParseDelegate_1_t1A032F9C7FB843555CAC1A5A0DAE025C701B9DBB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.DateTimeOffset>::Invoke(System.String,T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_Invoke_m28BFC67BE86219D774CBE293E596499A218444A1_gshared (TryParseDelegate_1_t1A032F9C7FB843555CAC1A5A0DAE025C701B9DBB * __this, String_t* ___value0, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * ___result1, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 bool (*FunctionPointerType) (String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (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, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(targetMethod, ___value0, ___result1);
else
result = GenericVirtFuncInvoker1< bool, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(targetMethod, ___value0, ___result1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___value0, ___result1);
else
result = VirtFuncInvoker1< bool, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0, ___result1);
}
}
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*>(___result1) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< bool, String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(targetMethod, targetThis, ___value0, ___result1);
else
result = GenericVirtFuncInvoker2< bool, String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(targetMethod, targetThis, ___value0, ___result1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< bool, String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0, ___result1);
else
result = VirtFuncInvoker2< bool, String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0, ___result1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef bool (*FunctionPointerType) (RuntimeObject*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), ___result1, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, String_t*, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Net.Http.Headers.TryParseDelegate`1<System.DateTimeOffset>::BeginInvoke(System.String,T&,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TryParseDelegate_1_BeginInvoke_mFF4A8E0974B22B89A8469BC1416CC50A6320CD27_gshared (TryParseDelegate_1_t1A032F9C7FB843555CAC1A5A0DAE025C701B9DBB * __this, String_t* ___value0, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * ___result1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TryParseDelegate_1_BeginInvoke_mFF4A8E0974B22B89A8469BC1416CC50A6320CD27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___value0;
__d_args[1] = Box(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var, &*___result1);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.DateTimeOffset>::EndInvoke(T&,System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_EndInvoke_m893D5DD5B5D38DD6B3CA3ED072830DA9E164174C_gshared (TryParseDelegate_1_t1A032F9C7FB843555CAC1A5A0DAE025C701B9DBB * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * ___result0, RuntimeObject* _____result1, const RuntimeMethod* method)
{
void* ___out_args[] = {
___result0,
};
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) _____result1, ___out_args);
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.Net.Http.Headers.TryParseDelegate`1<System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TryParseDelegate_1__ctor_m9EF883EC2AA1AE5E6C263A25CA1E0628CDC8ACBB_gshared (TryParseDelegate_1_t378D47B65FBF136068B8E912864B44F4AC22B17B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.Int32>::Invoke(System.String,T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_Invoke_mE1001AA138FDDC1DECD9B8EE7B03097322D430A0_gshared (TryParseDelegate_1_t378D47B65FBF136068B8E912864B44F4AC22B17B * __this, String_t* ___value0, int32_t* ___result1, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 bool (*FunctionPointerType) (String_t*, int32_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, String_t*, int32_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (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, ___value0, ___result1);
else
result = GenericVirtFuncInvoker1< bool, int32_t* >::Invoke(targetMethod, ___value0, ___result1);
}
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), ___value0, ___result1);
else
result = VirtFuncInvoker1< bool, int32_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0, ___result1);
}
}
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*>(___result1) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (String_t*, int32_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (String_t*, int32_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< bool, String_t*, int32_t* >::Invoke(targetMethod, targetThis, ___value0, ___result1);
else
result = GenericVirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(targetMethod, targetThis, ___value0, ___result1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< bool, String_t*, int32_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0, ___result1);
else
result = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0, ___result1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef bool (*FunctionPointerType) (RuntimeObject*, int32_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), ___result1, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, String_t*, int32_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Net.Http.Headers.TryParseDelegate`1<System.Int32>::BeginInvoke(System.String,T&,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TryParseDelegate_1_BeginInvoke_m3C270F3C1D5DD2C0C0B4AAB39C4C12EB7422CAFB_gshared (TryParseDelegate_1_t378D47B65FBF136068B8E912864B44F4AC22B17B * __this, String_t* ___value0, int32_t* ___result1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TryParseDelegate_1_BeginInvoke_m3C270F3C1D5DD2C0C0B4AAB39C4C12EB7422CAFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___value0;
__d_args[1] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &*___result1);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.Int32>::EndInvoke(T&,System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_EndInvoke_m1A2732A82C9EC26A0F53857AFAECB35296E4E56B_gshared (TryParseDelegate_1_t378D47B65FBF136068B8E912864B44F4AC22B17B * __this, int32_t* ___result0, RuntimeObject* _____result1, const RuntimeMethod* method)
{
void* ___out_args[] = {
___result0,
};
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) _____result1, ___out_args);
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.Net.Http.Headers.TryParseDelegate`1<System.Int64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TryParseDelegate_1__ctor_mC4F5A9D9EC633D0F40FB30DDD130786F7D2BBCD5_gshared (TryParseDelegate_1_tFF75BDCAFAB03B78E1A2CC0252493F25EC928302 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.Int64>::Invoke(System.String,T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_Invoke_m72D7C2728AFA3080D74CC10426736C8B584E1C3A_gshared (TryParseDelegate_1_tFF75BDCAFAB03B78E1A2CC0252493F25EC928302 * __this, String_t* ___value0, int64_t* ___result1, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 bool (*FunctionPointerType) (String_t*, int64_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, String_t*, int64_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (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, ___value0, ___result1);
else
result = GenericVirtFuncInvoker1< bool, int64_t* >::Invoke(targetMethod, ___value0, ___result1);
}
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), ___value0, ___result1);
else
result = VirtFuncInvoker1< bool, int64_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0, ___result1);
}
}
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*>(___result1) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (String_t*, int64_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (String_t*, int64_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< bool, String_t*, int64_t* >::Invoke(targetMethod, targetThis, ___value0, ___result1);
else
result = GenericVirtFuncInvoker2< bool, String_t*, int64_t* >::Invoke(targetMethod, targetThis, ___value0, ___result1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< bool, String_t*, int64_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0, ___result1);
else
result = VirtFuncInvoker2< bool, String_t*, int64_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0, ___result1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef bool (*FunctionPointerType) (RuntimeObject*, int64_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), ___result1, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, String_t*, int64_t*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Net.Http.Headers.TryParseDelegate`1<System.Int64>::BeginInvoke(System.String,T&,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TryParseDelegate_1_BeginInvoke_mA2C21C680E6DD962699D758620E35561C66CB1D1_gshared (TryParseDelegate_1_tFF75BDCAFAB03B78E1A2CC0252493F25EC928302 * __this, String_t* ___value0, int64_t* ___result1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TryParseDelegate_1_BeginInvoke_mA2C21C680E6DD962699D758620E35561C66CB1D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___value0;
__d_args[1] = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &*___result1);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.Int64>::EndInvoke(T&,System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_EndInvoke_m136ECA9A2A543C57C486557D495619E6F039CBCE_gshared (TryParseDelegate_1_tFF75BDCAFAB03B78E1A2CC0252493F25EC928302 * __this, int64_t* ___result0, RuntimeObject* _____result1, const RuntimeMethod* method)
{
void* ___out_args[] = {
___result0,
};
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) _____result1, ___out_args);
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.Net.Http.Headers.TryParseDelegate`1<System.TimeSpan>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TryParseDelegate_1__ctor_m3B7F1F432E8CD0F697FE5E5EECC4FC7B194EEC20_gshared (TryParseDelegate_1_t213385FD8BFC5A6E4730E7A057FE90A68C7E7C5A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.TimeSpan>::Invoke(System.String,T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_Invoke_m3F15444DF48E5B114FCEA225162D2ABD6B97A093_gshared (TryParseDelegate_1_t213385FD8BFC5A6E4730E7A057FE90A68C7E7C5A * __this, String_t* ___value0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result1, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 bool (*FunctionPointerType) (String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (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, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(targetMethod, ___value0, ___result1);
else
result = GenericVirtFuncInvoker1< bool, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(targetMethod, ___value0, ___result1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___value0, ___result1);
else
result = VirtFuncInvoker1< bool, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0, ___result1);
}
}
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*>(___result1) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< bool, String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(targetMethod, targetThis, ___value0, ___result1);
else
result = GenericVirtFuncInvoker2< bool, String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(targetMethod, targetThis, ___value0, ___result1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< bool, String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0, ___result1);
else
result = VirtFuncInvoker2< bool, String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0, ___result1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef bool (*FunctionPointerType) (RuntimeObject*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), ___result1, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, String_t*, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Net.Http.Headers.TryParseDelegate`1<System.TimeSpan>::BeginInvoke(System.String,T&,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TryParseDelegate_1_BeginInvoke_m28F304397876B0B79C5FDAFD94C6DFB60CFC4571_gshared (TryParseDelegate_1_t213385FD8BFC5A6E4730E7A057FE90A68C7E7C5A * __this, String_t* ___value0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TryParseDelegate_1_BeginInvoke_m28F304397876B0B79C5FDAFD94C6DFB60CFC4571_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___value0;
__d_args[1] = Box(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var, &*___result1);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.TimeSpan>::EndInvoke(T&,System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_EndInvoke_m10E0E5842795013F0BB4639E328A20014F50684D_gshared (TryParseDelegate_1_t213385FD8BFC5A6E4730E7A057FE90A68C7E7C5A * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result0, RuntimeObject* _____result1, const RuntimeMethod* method)
{
void* ___out_args[] = {
___result0,
};
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) _____result1, ___out_args);
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.Net.Http.Headers.TryParseDelegate`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TryParseDelegate_1__ctor_m372941D4FB1721EBFEEFCA3A4B50EE65B9987BA5_gshared (TryParseDelegate_1_tBFE6C978F45C3B0AC2C16BFB037564F99603C140 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.Object>::Invoke(System.String,T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_Invoke_mBFCA604527189B127D4510723BC2A136EF320A93_gshared (TryParseDelegate_1_tBFE6C978F45C3B0AC2C16BFB037564F99603C140 * __this, String_t* ___value0, RuntimeObject ** ___result1, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 bool (*FunctionPointerType) (String_t*, RuntimeObject **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, String_t*, RuntimeObject **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (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, ___value0, ___result1);
else
result = GenericVirtFuncInvoker1< bool, RuntimeObject ** >::Invoke(targetMethod, ___value0, ___result1);
}
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), ___value0, ___result1);
else
result = VirtFuncInvoker1< bool, RuntimeObject ** >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0, ___result1);
}
}
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*>(___result1) - 1), targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (String_t*, RuntimeObject **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (String_t*, RuntimeObject **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___result1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< bool, String_t*, RuntimeObject ** >::Invoke(targetMethod, targetThis, ___value0, ___result1);
else
result = GenericVirtFuncInvoker2< bool, String_t*, RuntimeObject ** >::Invoke(targetMethod, targetThis, ___value0, ___result1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< bool, String_t*, RuntimeObject ** >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0, ___result1);
else
result = VirtFuncInvoker2< bool, String_t*, RuntimeObject ** >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0, ___result1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef bool (*FunctionPointerType) (RuntimeObject*, RuntimeObject **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), ___result1, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, String_t*, RuntimeObject **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___result1, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Net.Http.Headers.TryParseDelegate`1<System.Object>::BeginInvoke(System.String,T&,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TryParseDelegate_1_BeginInvoke_mB1FC38EA898D4F1C7C694DB2108D57FB7500DFC1_gshared (TryParseDelegate_1_tBFE6C978F45C3B0AC2C16BFB037564F99603C140 * __this, String_t* ___value0, RuntimeObject ** ___result1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___value0;
__d_args[1] = *___result1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Boolean System.Net.Http.Headers.TryParseDelegate`1<System.Object>::EndInvoke(T&,System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseDelegate_1_EndInvoke_m4A1C9C376E6BA9B51CA325F9E03D2EDF7E2C084E_gshared (TryParseDelegate_1_tBFE6C978F45C3B0AC2C16BFB037564F99603C140 * __this, RuntimeObject ** ___result0, RuntimeObject* _____result1, const RuntimeMethod* method)
{
void* ___out_args[] = {
___result0,
};
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) _____result1, ___out_args);
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.Net.Http.Headers.TryParseListDelegate`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TryParseListDelegate_1__ctor_m61BF05E94F2CE3AE75104529A20656A684FF7D8E_gshared (TryParseListDelegate_1_t4C11679A4128BBD4FB62D9CC255FBB3C0D3119BE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Net.Http.Headers.TryParseListDelegate`1<System.Object>::Invoke(System.String,System.Int32,System.Collections.Generic.List`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseListDelegate_1_Invoke_m2DB20E8FD4906995B764587CDDFC817816C3C29C_gshared (TryParseListDelegate_1_t4C11679A4128BBD4FB62D9CC255FBB3C0D3119BE * __this, String_t* ___value0, int32_t ___minimalCount1, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** ___result2, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 == 3)
{
// open
typedef bool (*FunctionPointerType) (String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___minimalCount1, ___result2, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___minimalCount1, ___result2, targetMethod);
}
}
else if (___parameterCount != 3)
{
// open
if (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 = GenericInterfaceFuncInvoker2< bool, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(targetMethod, ___value0, ___minimalCount1, ___result2);
else
result = GenericVirtFuncInvoker2< bool, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(targetMethod, ___value0, ___minimalCount1, ___result2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< bool, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___value0, ___minimalCount1, ___result2);
else
result = VirtFuncInvoker2< bool, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0, ___minimalCount1, ___result2);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef bool (*FunctionPointerType) (RuntimeObject*, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___minimalCount1) - 1), ___result2, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___minimalCount1, ___result2, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___value0, ___minimalCount1, ___result2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker3< bool, String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(targetMethod, targetThis, ___value0, ___minimalCount1, ___result2);
else
result = GenericVirtFuncInvoker3< bool, String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(targetMethod, targetThis, ___value0, ___minimalCount1, ___result2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker3< bool, String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___value0, ___minimalCount1, ___result2);
else
result = VirtFuncInvoker3< bool, String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___value0, ___minimalCount1, ___result2);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef bool (*FunctionPointerType) (RuntimeObject*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___value0) - 1), ___minimalCount1, ___result2, targetMethod);
}
else
{
typedef bool (*FunctionPointerType) (void*, String_t*, int32_t, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 **, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, ___minimalCount1, ___result2, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Net.Http.Headers.TryParseListDelegate`1<System.Object>::BeginInvoke(System.String,System.Int32,System.Collections.Generic.List`1<T>&,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TryParseListDelegate_1_BeginInvoke_mDC523512B895413CCBCD7631AC5F8134510DFD09_gshared (TryParseListDelegate_1_t4C11679A4128BBD4FB62D9CC255FBB3C0D3119BE * __this, String_t* ___value0, int32_t ___minimalCount1, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** ___result2, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TryParseListDelegate_1_BeginInvoke_mDC523512B895413CCBCD7631AC5F8134510DFD09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = ___value0;
__d_args[1] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___minimalCount1);
__d_args[2] = *___result2;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Boolean System.Net.Http.Headers.TryParseListDelegate`1<System.Object>::EndInvoke(System.Collections.Generic.List`1<T>&,System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TryParseListDelegate_1_EndInvoke_m169136CBB7995F5EE59EDCC5151257824AC93887_gshared (TryParseListDelegate_1_t4C11679A4128BBD4FB62D9CC255FBB3C0D3119BE * __this, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** ___result0, RuntimeObject* _____result1, const RuntimeMethod* method)
{
void* ___out_args[] = {
___result0,
};
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) _____result1, ___out_args);
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
// T1 System.Tuple`2<System.Guid,System.Int32>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Tuple_2_get_Item1_m8CF182AA6CF3D90DEEFD6CB9B62CBADD0BCB5999_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, const RuntimeMethod* method)
{
{
Guid_t L_0 = (Guid_t )__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Guid,System.Int32>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item2_m097CC4D8D2EEB1D37AAF634B7A41AA744C9E55C7_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Guid,System.Int32>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m3D66774B70D2320651AB8B5DFA9DE0ED8AF7B326_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, Guid_t ___item10, int32_t ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
Guid_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
int32_t L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Guid,System.Int32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m18BEC9AFE32FD91B551ED59701AE02ABC7D6B97E_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m18BEC9AFE32FD91B551ED59701AE02ABC7D6B97E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Guid,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_mC9FE12C248ED0E9607288973417647056B5DEF90_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_mC9FE12C248ED0E9607288973417647056B5DEF90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 *)((Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
Guid_t L_4 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * L_7 = V_0;
NullCheck(L_7);
Guid_t L_8 = (Guid_t )L_7->get_m_Item1_0();
Guid_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
int32_t L_13 = (int32_t)__this->get_m_Item2_1();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = (int32_t)L_16->get_m_Item2_1();
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
return L_20;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Int32>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_mDB94FBD8696694B2B10666C4AF6CB12620DD4D84_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_mDB94FBD8696694B2B10666C4AF6CB12620DD4D84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0C1B4D9117B7CF8A4F988297718B1FA127E4E4BF_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0C1B4D9117B7CF8A4F988297718B1FA127E4E4BF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 *)((Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0C1B4D9117B7CF8A4F988297718B1FA127E4E4BF_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
Guid_t L_8 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * L_11 = V_0;
NullCheck(L_11);
Guid_t L_12 = (Guid_t )L_11->get_m_Item1_0();
Guid_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
int32_t L_19 = (int32_t)__this->get_m_Item2_1();
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_m_Item2_1();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
return L_26;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_mD7928791808BBB5BC58E32343B91A7EC9BF5EC58_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_mD7928791808BBB5BC58E32343B91A7EC9BF5EC58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mBE0CEC2C775B964ADD4922E9FA4F66C5DABE1F7D_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mBE0CEC2C775B964ADD4922E9FA4F66C5DABE1F7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
Guid_t L_1 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
int32_t L_10 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.Tuple`2<System.Guid,System.Int32>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_mF7FC5D12F27C990E84B68B5D82CAF28E309C7564_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_mF7FC5D12F27C990E84B68B5D82CAF28E309C7564_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Guid,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m1B89587010473FDFE6AF6BE727975C0559C19F18_gshared (Tuple_2_t8E5EA6D651EAD4ED55B00756D00172A86B79BC85 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m1B89587010473FDFE6AF6BE727975C0559C19F18_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
Guid_t L_1 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_9, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((RuntimeObject *)L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_10);
return L_11;
}
}
#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
// T1 System.Tuple`2<System.Guid,System.Object>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Tuple_2_get_Item1_m8A951F0536E0215A434D4257CE2766C2F9EF84AA_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, const RuntimeMethod* method)
{
{
Guid_t L_0 = (Guid_t )__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Guid,System.Object>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_m11C2BD2566E0232F4D93EEB3D2D9C6B04F134770_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Guid,System.Object>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m2872BF766DA232F87D623606965F2E34A032416B_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, Guid_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
Guid_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Guid,System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m36874A7EC22A48151827C01E2424DEC066C79BA8_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m36874A7EC22A48151827C01E2424DEC066C79BA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Guid,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m41B65CA18600A2BB17D4D815DFD780F6664FC795_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m41B65CA18600A2BB17D4D815DFD780F6664FC795_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)((Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
Guid_t L_4 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_7 = V_0;
NullCheck(L_7);
Guid_t L_8 = (Guid_t )L_7->get_m_Item1_0();
Guid_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
RuntimeObject * L_13 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_14 = V_0;
NullCheck(L_14);
RuntimeObject * L_15 = (RuntimeObject *)L_14->get_m_Item2_1();
NullCheck((RuntimeObject*)L_12);
bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15);
return L_16;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Object>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_mF4F14B10882975FD1C86FF3921C3FBD0243AAA5F_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_mF4F14B10882975FD1C86FF3921C3FBD0243AAA5F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)((Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3CF09D79D5D8A2AB975AD19304E63739C1E491E1_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
Guid_t L_8 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_11 = V_0;
NullCheck(L_11);
Guid_t L_12 = (Guid_t )L_11->get_m_Item1_0();
Guid_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item2_1();
NullCheck((RuntimeObject*)L_18);
int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21);
return L_22;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_mC92CC019B7F4E67519D23CC0FCA7B845379F1052_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_mC92CC019B7F4E67519D23CC0FCA7B845379F1052_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Guid,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m5AA6FB0FBE1BC186ACBF97A4489D8A700E41734E_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m5AA6FB0FBE1BC186ACBF97A4489D8A700E41734E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
Guid_t L_1 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_5);
int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_6);
int32_t L_8 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.String System.Tuple`2<System.Guid,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m91AF0B92D8C46FD0099D6CCE7FFBFF09D0F0AEE3_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m91AF0B92D8C46FD0099D6CCE7FFBFF09D0F0AEE3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Guid,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_mCAE74B50268C33FDFF4937C36701367901982981_gshared (Tuple_2_tDCABA049B1629C9645BDD4BE6BCD0592D0D025E1 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_mCAE74B50268C33FDFF4937C36701367901982981_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
Guid_t L_1 = (Guid_t )__this->get_m_Item1_0();
Guid_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_6, /*hidden argument*/NULL);
StringBuilder_t * L_7 = ___sb0;
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_7, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((RuntimeObject *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_8);
return 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
// T1 System.Tuple`2<System.Int32,System.Int32>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item1_mDD80BAE31CBB45588E597B8480586D0505C3CA9E_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Int32,System.Int32>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item2_m5D6F7E4C92BBD480D813546956284E11D1809F85_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Int32,System.Int32>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_mC35330EAFE7581697E11D5D4115980664268327D_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
int32_t L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Int32,System.Int32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m8E1A6AED5DAF648BC7343AFF78D8BFC1B485092C_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m8E1A6AED5DAF648BC7343AFF78D8BFC1B485092C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_mDA509E459E316CAC14957A43DB9369CC4A487090_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_mDA509E459E316CAC14957A43DB9369CC4A487090_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 *)((Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
int32_t L_13 = (int32_t)__this->get_m_Item2_1();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = (int32_t)L_16->get_m_Item2_1();
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
return L_20;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m89AC7DD410077B90CDDF4C302EE170EB81847E0D_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_m89AC7DD410077B90CDDF4C302EE170EB81847E0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m5CCB277EDF4F9207DCCC76A43E9BFA826FD923A0_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m5CCB277EDF4F9207DCCC76A43E9BFA826FD923A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 *)((Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_m5CCB277EDF4F9207DCCC76A43E9BFA826FD923A0_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
int32_t L_19 = (int32_t)__this->get_m_Item2_1();
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_m_Item2_1();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
return L_26;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_mAB859F3BF8098F09CDE5E9DA57427EE1F99A4C05_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_mAB859F3BF8098F09CDE5E9DA57427EE1F99A4C05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m037BEF46A054102B8405EC32B091458801A8C315_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m037BEF46A054102B8405EC32B091458801A8C315_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
int32_t L_10 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.Tuple`2<System.Int32,System.Int32>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_mAB8D89170E4E392E49059CB094217F0762CEDC93_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_mAB8D89170E4E392E49059CB094217F0762CEDC93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Int32,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m6A62262354E7D953100BDBBB6B2BF7107157C812_gshared (Tuple_2_t9780D2A61D8DBBB60BF3E0DEDBE022E5856BD800 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m6A62262354E7D953100BDBBB6B2BF7107157C812_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_9, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((RuntimeObject *)L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_10);
return L_11;
}
}
#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
// T1 System.Tuple`2<System.Int32,System.Object>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item1_mB85E7EC405DE8FB4AFB89CC15084FC03B65E7386_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Int32,System.Object>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_mE4ED99A48EA71A2ED3B1D95C6DB49DC56CC04B3F_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Int32,System.Object>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m3332A2770409D1B5E13D72DC4CCA664EF939A354_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, int32_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Int32,System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m83556B862F565CFE5C1C0C2C62F015D12E8FF038_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m83556B862F565CFE5C1C0C2C62F015D12E8FF038_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m0862FE602DD1D14798FA1E06A0CCE44D9463E2A5_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m0862FE602DD1D14798FA1E06A0CCE44D9463E2A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 *)((Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
RuntimeObject * L_13 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * L_14 = V_0;
NullCheck(L_14);
RuntimeObject * L_15 = (RuntimeObject *)L_14->get_m_Item2_1();
NullCheck((RuntimeObject*)L_12);
bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15);
return L_16;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Object>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m22DA06250AAEB99E71FD9E0A8DC7F0B27F35C1C5_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_m22DA06250AAEB99E71FD9E0A8DC7F0B27F35C1C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m97E1FECB667F69E4FA446CD4F24593C44EC832F3_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m97E1FECB667F69E4FA446CD4F24593C44EC832F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 *)((Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_m97E1FECB667F69E4FA446CD4F24593C44EC832F3_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item2_1();
NullCheck((RuntimeObject*)L_18);
int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21);
return L_22;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m6B1AB30FBBB5E0709AD99FF0ED1B3E54C47DF580_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m6B1AB30FBBB5E0709AD99FF0ED1B3E54C47DF580_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mA785B2D261195F1312CFC693D0D575D22B1DBA58_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mA785B2D261195F1312CFC693D0D575D22B1DBA58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_5);
int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_6);
int32_t L_8 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.String System.Tuple`2<System.Int32,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m4716BA312083658378E315332FC6F3F27607FC75_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m4716BA312083658378E315332FC6F3F27607FC75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Int32,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_mC05B5E1B32F8091B107E48CEBF163B6DA13E5DF1_gshared (Tuple_2_tE195A2ACBC3081F18BE32C32286161122EF29407 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_mC05B5E1B32F8091B107E48CEBF163B6DA13E5DF1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_6, /*hidden argument*/NULL);
StringBuilder_t * L_7 = ___sb0;
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_7, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((RuntimeObject *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_8);
return 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
// T1 System.Tuple`2<System.Int32Enum,System.ByteEnum>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item1_m01EBA1247861650FE9E3D7447B059948ABD48F23_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Int32Enum,System.ByteEnum>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Tuple_2_get_Item2_m3FE3AC566C56D24F2C6E708D73ED8F041AE490F2_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = (uint8_t)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Int32Enum,System.ByteEnum>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_mC1D1257BF18BD8B8DC6EE34912625E603C757C45_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, int32_t ___item10, uint8_t ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
uint8_t L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.ByteEnum>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m5130435DFC80842673678E4F97E73A639107349E_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m5130435DFC80842673678E4F97E73A639107349E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.ByteEnum>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_mC43B3EC3439A58FFFCB8C7E46634AB9926FCFFA3_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_mC43B3EC3439A58FFFCB8C7E46634AB9926FCFFA3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D *)((Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
uint8_t L_13 = (uint8_t)__this->get_m_Item2_1();
uint8_t L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * L_16 = V_0;
NullCheck(L_16);
uint8_t L_17 = (uint8_t)L_16->get_m_Item2_1();
uint8_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
return L_20;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.ByteEnum>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_mF10C7572747CDE1983E174774C46C07A2AD64442_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_mF10C7572747CDE1983E174774C46C07A2AD64442_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.ByteEnum>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mFF94A250F9C8BA7AC40F62F731430ED61358EAC6_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_mFF94A250F9C8BA7AC40F62F731430ED61358EAC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D *)((Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_mFF94A250F9C8BA7AC40F62F731430ED61358EAC6_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
uint8_t L_19 = (uint8_t)__this->get_m_Item2_1();
uint8_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * L_22 = V_0;
NullCheck(L_22);
uint8_t L_23 = (uint8_t)L_22->get_m_Item2_1();
uint8_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
return L_26;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.ByteEnum>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m771751EAFFC7D755917C001B4A71308388C7C861_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m771751EAFFC7D755917C001B4A71308388C7C861_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.ByteEnum>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6A340118BEFB1DCC2307C8DD47CE2F3C121FF2D3_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6A340118BEFB1DCC2307C8DD47CE2F3C121FF2D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
uint8_t L_6 = (uint8_t)__this->get_m_Item2_1();
uint8_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
int32_t L_10 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.ByteEnum>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m3E795BE62D007F02D07913D2268D63E904AB70A3_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m3E795BE62D007F02D07913D2268D63E904AB70A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.ByteEnum>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m724F33EE73019CB664ED6464726F0D2E37E1DF1D_gshared (Tuple_2_t0A61EF5EA49EA917E69C86E304B7729E9BF7420D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m724F33EE73019CB664ED6464726F0D2E37E1DF1D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
uint8_t L_6 = (uint8_t)__this->get_m_Item2_1();
uint8_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_9, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((RuntimeObject *)L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_10);
return L_11;
}
}
#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
// T1 System.Tuple`2<System.Int32Enum,System.Int32>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item1_mCD745C045D3366D9F16672D89653E6144CFB5E56_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Int32Enum,System.Int32>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item2_mBC93485EF2FED33CD50F18CE091167744DBCCC81_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Int32Enum,System.Int32>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_mB153B11C43C470BBE95BD5DB18EFE5160F549561_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
int32_t L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.Int32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m44325B54D30A4C0ED321152C608794D71C480EBE_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m44325B54D30A4C0ED321152C608794D71C480EBE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m5D8D9146937CAF26CB4489A88F2A75FCDDF3F83D_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m5D8D9146937CAF26CB4489A88F2A75FCDDF3F83D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E *)((Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
int32_t L_13 = (int32_t)__this->get_m_Item2_1();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = (int32_t)L_16->get_m_Item2_1();
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
return L_20;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_mC4EA3DE5E76E810A21AEB446DD459162B0241810_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_mC4EA3DE5E76E810A21AEB446DD459162B0241810_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0A837A1F7F7710E2DD94389321286D8B1880C518_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0A837A1F7F7710E2DD94389321286D8B1880C518_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E *)((Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_m0A837A1F7F7710E2DD94389321286D8B1880C518_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
int32_t L_19 = (int32_t)__this->get_m_Item2_1();
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_m_Item2_1();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
return L_26;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m28645A2E530798D7ECBB3957942D45AAD0F8675B_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m28645A2E530798D7ECBB3957942D45AAD0F8675B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mD5440D129A74CA26049D1E7963E1ABF05AFD4FCE_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mD5440D129A74CA26049D1E7963E1ABF05AFD4FCE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
int32_t L_10 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.Int32>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_mDB56B6B5419E352A3D4098696910ED09110CE6DC_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_mDB56B6B5419E352A3D4098696910ED09110CE6DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m93BF2411BB8D3B5ACF28D4A073C4903F38DB3678_gshared (Tuple_2_tBF1559BD3F5D13E2AA2F9BF3917393FBD4F1F22E * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m93BF2411BB8D3B5ACF28D4A073C4903F38DB3678_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_9, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((RuntimeObject *)L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_10);
return L_11;
}
}
#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
// T1 System.Tuple`2<System.Int32Enum,System.Int32Enum>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item1_m89636108C2C3EE52EF16CA5EEC6BC39DA622FFF6_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Int32Enum,System.Int32Enum>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item2_m66CE9051B2CB6380AECC7A29E19EA0ACA2898778_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Int32Enum,System.Int32Enum>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_mCE22C69F56ED0E02C56BC94B826BE84FED224E74_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
int32_t L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.Int32Enum>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_mDAA33D0919DBEB805F2A5752CB9113DB891A8692_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_mDAA33D0919DBEB805F2A5752CB9113DB891A8692_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.Int32Enum>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m4C4CE0A796D720CCA1948E963CDB55289D49513C_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m4C4CE0A796D720CCA1948E963CDB55289D49513C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 *)((Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
int32_t L_13 = (int32_t)__this->get_m_Item2_1();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = (int32_t)L_16->get_m_Item2_1();
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
return L_20;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32Enum>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_mBF0D209179DEB9A5FFDF980B1C9EA628EF61B64A_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_mBF0D209179DEB9A5FFDF980B1C9EA628EF61B64A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32Enum>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m32E365BA75B5D40061CF22C32F4EEE2F1AEC9661_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m32E365BA75B5D40061CF22C32F4EEE2F1AEC9661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 *)((Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_m32E365BA75B5D40061CF22C32F4EEE2F1AEC9661_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
int32_t L_19 = (int32_t)__this->get_m_Item2_1();
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_m_Item2_1();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
return L_26;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32Enum>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m3090174018722B55E7AA918152B403DF2C3F0E60_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m3090174018722B55E7AA918152B403DF2C3F0E60_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Int32Enum>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6210C585EBBDA0D508E23A4A609D622CB6FF54DF_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6210C585EBBDA0D508E23A4A609D622CB6FF54DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
int32_t L_10 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.Int32Enum>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_mCE9BCEF217E3FD3CA0BCFE35E537621B8D757E03_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_mCE9BCEF217E3FD3CA0BCFE35E537621B8D757E03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.Int32Enum>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m0AA0D6548E6629B72EB03D7F95E61FBC194C237C_gshared (Tuple_2_tA5740130857656FE9928BE90760A0DAD55B733C0 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m0AA0D6548E6629B72EB03D7F95E61FBC194C237C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_9, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((RuntimeObject *)L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_10);
return L_11;
}
}
#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
// T1 System.Tuple`2<System.Int32Enum,System.Object>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_get_Item1_mE4FC12083D2D613C7147968C757E554EEA89457B_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Int32Enum,System.Object>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_m98588D18724ED00448F54ABCDD743EA91A7244C7_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Int32Enum,System.Object>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m7849D30C8C0473A56BF228CDB5084B796EC30B47_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, int32_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m5A9D41D841F79603A6D2A865A19B3767CDE81A3A_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m5A9D41D841F79603A6D2A865A19B3767CDE81A3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Int32Enum,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m313BFDB02B9A9CDEC8D3953760841F797EF8EB27_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m313BFDB02B9A9CDEC8D3953760841F797EF8EB27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 *)((Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
RuntimeObject * L_13 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * L_14 = V_0;
NullCheck(L_14);
RuntimeObject * L_15 = (RuntimeObject *)L_14->get_m_Item2_1();
NullCheck((RuntimeObject*)L_12);
bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15);
return L_16;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Object>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m752A5D697E902518D95A66C2AE6E8B177E2B2473_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_m752A5D697E902518D95A66C2AE6E8B177E2B2473_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC6AC937E8C32FC149CC58384710B351E57D03208_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC6AC937E8C32FC149CC58384710B351E57D03208_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 *)((Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC6AC937E8C32FC149CC58384710B351E57D03208_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item2_1();
NullCheck((RuntimeObject*)L_18);
int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21);
return L_22;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m24EF21A335EEFFCFDA84DE18A0EC875B6A2DEDEC_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m24EF21A335EEFFCFDA84DE18A0EC875B6A2DEDEC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Int32Enum,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mD86AA53E15FC0126A7C8DD364D2DE6D2C6FBB63C_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mD86AA53E15FC0126A7C8DD364D2DE6D2C6FBB63C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_5);
int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_6);
int32_t L_8 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m2982B7FF92DB54114B3DAE3BC2C5DB84437FA6E7_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m2982B7FF92DB54114B3DAE3BC2C5DB84437FA6E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Int32Enum,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m81035E446B309D885CA4BE336CBA2971926791FC_gshared (Tuple_2_t4EA72BB2C0D471FC5CF30B0E78204499B7AE27B2 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m81035E446B309D885CA4BE336CBA2971926791FC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_6, /*hidden argument*/NULL);
StringBuilder_t * L_7 = ___sb0;
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_7, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((RuntimeObject *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_8);
return 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
// T1 System.Tuple`2<System.Object,System.Char>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m83FF713DB4A914365CB9A6D213C1D31B46269057_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Object,System.Char>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Tuple_2_get_Item2_m79AB8B3DC587FA8796EC216A623D10DC71A6E202_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = (Il2CppChar)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Object,System.Char>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m3F946F9DEA25CDC8A34638780152ABF5049BF165_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___item10, Il2CppChar ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
Il2CppChar L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Char>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_mC13D56B08E3BF9AE03134F713E88F59AF49E0986_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_mC13D56B08E3BF9AE03134F713E88F59AF49E0986_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_mB8764DDC777A14644C984149BC346B303F8CB7E7_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_mB8764DDC777A14644C984149BC346B303F8CB7E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)((Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_004c;
}
}
{
RuntimeObject* L_8 = ___comparer1;
Il2CppChar L_9 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_10);
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_12 = V_0;
NullCheck(L_12);
Il2CppChar L_13 = (Il2CppChar)L_12->get_m_Item2_1();
Il2CppChar L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
NullCheck((RuntimeObject*)L_8);
bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_11, (RuntimeObject *)L_15);
return L_16;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m9F56832E563506449F01AB0020EDF8E99AD82E4D_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_m9F56832E563506449F01AB0020EDF8E99AD82E4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)((Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_mC2E0B9CED1C1A4791DD33BD31E7666F6243D3BEF_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
Il2CppChar L_15 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_16 = L_15;
RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_16);
Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * L_18 = V_0;
NullCheck(L_18);
Il2CppChar L_19 = (Il2CppChar)L_18->get_m_Item2_1();
Il2CppChar L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
NullCheck((RuntimeObject*)L_14);
int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_21);
return L_22;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m56B88A8B03BF1856556DB8527DB575A497601841_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m56B88A8B03BF1856556DB8527DB575A497601841_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6A8402570FA26D368443512574A0A03CBFAB7585_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m6A8402570FA26D368443512574A0A03CBFAB7585_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
Il2CppChar L_4 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_5);
NullCheck((RuntimeObject*)L_3);
int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6);
int32_t L_8 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_2, (int32_t)L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.String System.Tuple`2<System.Object,System.Char>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m4F1D997C1F791EC93E8E153E25B8802A2A111436_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m4F1D997C1F791EC93E8E153E25B8802A2A111436_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Object,System.Char>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_mC29992D30719486284F41C1DC333E9A321947EBE_gshared (Tuple_2_t844F36656ADFD9CCC9527B1F549244BD1884E5F6 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_mC29992D30719486284F41C1DC333E9A321947EBE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_2, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
Il2CppChar L_4 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_5);
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
StringBuilder_t * L_7 = ___sb0;
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_7, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((RuntimeObject *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_8);
return 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
// T1 System.Tuple`2<System.Object,System.Object>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m80928C585ED22044C6E5DB8B8BFA895284E2BD9A_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Object,System.Object>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_m2A49F263317603E4A770D5B34222FFCCCB6AE4EB_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Object,System.Object>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m4D9875962578E3B6CC08739D79B226A806756051_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m7904D914C7F0D8920A3F2F0FB05BDA201DC34F7D_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m7904D914C7F0D8920A3F2F0FB05BDA201DC34F7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m76DD43DE79BB19BCD41673F706D96FE167C894B2_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m76DD43DE79BB19BCD41673F706D96FE167C894B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)((Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_004c;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
return L_12;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m0FB81164CA69BB5F29772A077579254D3F7EE3D4_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_m0FB81164CA69BB5F29772A077579254D3F7EE3D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)((Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_mCBD21F1F4D9CC6ACBD39EABCA34A0568453364DE_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
return L_18;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m93554844C338C3CFF8715DF628FCE38039872674_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m93554844C338C3CFF8715DF628FCE38039872674_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mC537B0B94B81AFE40F05E07B16B6741735D1A376_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mC537B0B94B81AFE40F05E07B16B6741735D1A376_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
int32_t L_6 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_2, (int32_t)L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.String System.Tuple`2<System.Object,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m2E2FEB492CEDA8B61F6869909C0376A8F0DEEE9A_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m2E2FEB492CEDA8B61F6869909C0376A8F0DEEE9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m910380308358C7A726EC2516E3C9D9BD1E5F8EB6_gshared (Tuple_2_t6E1BB48DA437DE519C0560A93AF96D1E1F3E3EA1 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m910380308358C7A726EC2516E3C9D9BD1E5F8EB6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_2, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_5, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
NullCheck((RuntimeObject *)L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_6);
return L_7;
}
}
#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
// T1 System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 Tuple_2_get_Item1_mBA8B6180886E56468866EC3F7BB26C99A18C3665_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, const RuntimeMethod* method)
{
{
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_0 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_get_Item2_mD87BFEB11AD913714CA755F3513F4FF24C52F642_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m6BAAD55B81AA42651F7E2F9B3B3E6D74E5C60B23_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 ___item10, bool ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_0 = ___item10;
__this->set_m_Item1_0(L_0);
bool L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_Equals_mA700968F6412FCB98B7DED9BF4EAFF0B6D2E5FA9_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_mA700968F6412FCB98B7DED9BF4EAFF0B6D2E5FA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m2CB7141FB57C649E73B54B1FE5B9F4140B8BB74B_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m2CB7141FB57C649E73B54B1FE5B9F4140B8BB74B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF *)((Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_4 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )__this->get_m_Item1_0();
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * L_7 = V_0;
NullCheck(L_7);
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_8 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )L_7->get_m_Item1_0();
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_004c;
}
}
{
RuntimeObject* L_12 = ___comparer1;
bool L_13 = (bool)__this->get_m_Item2_1();
bool L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * L_16 = V_0;
NullCheck(L_16);
bool L_17 = (bool)L_16->get_m_Item2_1();
bool L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
return L_20;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_mC8420E7B3F5EA8CA94CEE00B6F342167C69343BE_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_mC8420E7B3F5EA8CA94CEE00B6F342167C69343BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m7CDFC96009D56EFB6793B31E25532DE3320B9D61_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m7CDFC96009D56EFB6793B31E25532DE3320B9D61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF *)((Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_2_System_Collections_IStructuralComparable_CompareTo_m7CDFC96009D56EFB6793B31E25532DE3320B9D61_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_8 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )__this->get_m_Item1_0();
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * L_11 = V_0;
NullCheck(L_11);
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_12 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )L_11->get_m_Item1_0();
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
bool L_19 = (bool)__this->get_m_Item2_1();
bool L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * L_22 = V_0;
NullCheck(L_22);
bool L_23 = (bool)L_22->get_m_Item2_1();
bool L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
return L_26;
}
}
// System.Int32 System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m219CB10B0E5A8C0F25711FE4B3431DCEC602F9B5_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m219CB10B0E5A8C0F25711FE4B3431DCEC602F9B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mA19F9B26B652B581C6F60D3C46877EC7CFF9A87A_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_mA19F9B26B652B581C6F60D3C46877EC7CFF9A87A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_1 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )__this->get_m_Item1_0();
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
bool L_6 = (bool)__this->get_m_Item2_1();
bool L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
int32_t L_10 = Tuple_CombineHashCodes_mF9D7D71904B3F58A6D8570CE7F5A667115A30797((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m1B9A60B20C13F9627C52A9849F723B15B0B4CAF8_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m1B9A60B20C13F9627C52A9849F723B15B0B4CAF8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m7275B332821F82DDC5555D4A7EE8608DBF746F75_gshared (Tuple_2_t094E7488962AEB59312A866D5A24084C84DC99EF * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m7275B332821F82DDC5555D4A7EE8608DBF746F75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_1 = (SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 )__this->get_m_Item1_0();
SessionInfo_t693487E54200EFD8E3528A4947ECBF85A0DABCE7 L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
bool L_6 = (bool)__this->get_m_Item2_1();
bool L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_9, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((RuntimeObject *)L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_10);
return L_11;
}
}
#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
// T1 System.Tuple`3<System.Int32Enum,System.Object,System.Object>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_get_Item1_mEC4BF1EEE4F938C8F86FB6878139E07281226593_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`3<System.Int32Enum,System.Object,System.Object>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item2_m40017F6F13FF8753197AB9162D67DA1F0A527786_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`3<System.Int32Enum,System.Object,System.Object>::get_Item3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item3_m6B87AD819576AAF98CDE0B3DF908903074BF89FE_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item3_2();
return L_0;
}
}
// System.Void System.Tuple`3<System.Int32Enum,System.Object,System.Object>::.ctor(T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_3__ctor_mCBEA30384E87E3C9CA90E83F4CFD4630B5FFAD64_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, int32_t ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
RuntimeObject * L_2 = ___item32;
__this->set_m_Item3_2(L_2);
return;
}
}
// System.Boolean System.Tuple`3<System.Int32Enum,System.Object,System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_Equals_mB5B53557A9A420A4748A488F23B5D3FCBBF2F792_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_Equals_mB5B53557A9A420A4748A488F23B5D3FCBBF2F792_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`3<System.Int32Enum,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_System_Collections_IStructuralEquatable_Equals_mC27022B5F68C5EAD7B54624D83DC00199F4D46B9_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_Equals_mC27022B5F68C5EAD7B54624D83DC00199F4D46B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 *)((Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_006a;
}
}
{
RuntimeObject* L_12 = ___comparer1;
RuntimeObject * L_13 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_14 = V_0;
NullCheck(L_14);
RuntimeObject * L_15 = (RuntimeObject *)L_14->get_m_Item2_1();
NullCheck((RuntimeObject*)L_12);
bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15);
if (!L_16)
{
goto IL_006a;
}
}
{
RuntimeObject* L_17 = ___comparer1;
RuntimeObject * L_18 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_19 = V_0;
NullCheck(L_19);
RuntimeObject * L_20 = (RuntimeObject *)L_19->get_m_Item3_2();
NullCheck((RuntimeObject*)L_17);
bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_18, (RuntimeObject *)L_20);
return L_21;
}
IL_006a:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`3<System.Int32Enum,System.Object,System.Object>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_IComparable_CompareTo_m05EBE1FB3D5EC3D3D2E5E000151E4BC686A27ABE_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_IComparable_CompareTo_m05EBE1FB3D5EC3D3D2E5E000151E4BC686A27ABE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`3<System.Int32Enum,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_m482A72B3CB0BA960139C4CAD20F9B2255F72911C_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralComparable_CompareTo_m482A72B3CB0BA960139C4CAD20F9B2255F72911C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 *)((Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_3_System_Collections_IStructuralComparable_CompareTo_m482A72B3CB0BA960139C4CAD20F9B2255F72911C_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item2_1();
NullCheck((RuntimeObject*)L_18);
int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21);
V_1 = (int32_t)L_22;
int32_t L_23 = V_1;
if (!L_23)
{
goto IL_0075;
}
}
{
int32_t L_24 = V_1;
return L_24;
}
IL_0075:
{
RuntimeObject* L_25 = ___comparer1;
RuntimeObject * L_26 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * L_27 = V_0;
NullCheck(L_27);
RuntimeObject * L_28 = (RuntimeObject *)L_27->get_m_Item3_2();
NullCheck((RuntimeObject*)L_25);
int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_25, (RuntimeObject *)L_26, (RuntimeObject *)L_28);
return L_29;
}
}
// System.Int32 System.Tuple`3<System.Int32Enum,System.Object,System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_GetHashCode_mE1E8713737DF0BEEE35B3B013E2E62C999647541_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_GetHashCode_mE1E8713737DF0BEEE35B3B013E2E62C999647541_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`3<System.Int32Enum,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m84F8FEB77634E719544434F8F604E15EC1132102_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m84F8FEB77634E719544434F8F604E15EC1132102_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_5);
int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_6);
RuntimeObject* L_8 = ___comparer0;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((RuntimeObject*)L_8);
int32_t L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9);
int32_t L_11 = Tuple_CombineHashCodes_m34B16565FCB93CC63DAF544CC55CD4459A7435AB((int32_t)L_4, (int32_t)L_7, (int32_t)L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.Tuple`3<System.Int32Enum,System.Object,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_ToString_m974BBBCB203CF20512D71895011EB5DEADD47C35_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_ToString_m974BBBCB203CF20512D71895011EB5DEADD47C35_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`3<System.Int32Enum,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_System_ITupleInternal_ToString_m4F76DADB72F5B19087E28BBB75EBDEA50E7E66C3_gshared (Tuple_3_t31A54CF0D840D1D7CF2637FCBA8F805E7FEC87D4 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_ITupleInternal_ToString_m4F76DADB72F5B19087E28BBB75EBDEA50E7E66C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_6, /*hidden argument*/NULL);
StringBuilder_t * L_7 = ___sb0;
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_7, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((StringBuilder_t *)L_8);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_8, (RuntimeObject *)L_9, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((StringBuilder_t *)L_10);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_10, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
NullCheck((RuntimeObject *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_11);
return L_12;
}
}
#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
// T1 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item1_m2E4AA65247AA63A450A9C11604492811CA536DE9_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item2_m949C431D298B80641EAA69F86E66E10759727B3C_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item3_mAEE5571981A28E2BCA354F228E7741C0F16EBBD0_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item3_2();
return L_0;
}
}
// System.Void System.Tuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_3__ctor_m25271C40A72B98D04365B37AA075A393FA07DD82_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
RuntimeObject * L_2 = ___item32;
__this->set_m_Item3_2(L_2);
return;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_Equals_mE4282D65B2614390D3D6131F38CA4F71E38BD30B_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_Equals_mE4282D65B2614390D3D6131F38CA4F71E38BD30B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_System_Collections_IStructuralEquatable_Equals_mC0D0C105DDA322C1B2E2BEF716D15EE7E7A97B04_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_Equals_mC0D0C105DDA322C1B2E2BEF716D15EE7E7A97B04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)((Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_006a;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_006a;
}
}
{
RuntimeObject* L_13 = ___comparer1;
RuntimeObject * L_14 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_15 = V_0;
NullCheck(L_15);
RuntimeObject * L_16 = (RuntimeObject *)L_15->get_m_Item3_2();
NullCheck((RuntimeObject*)L_13);
bool L_17 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_14, (RuntimeObject *)L_16);
return L_17;
}
IL_006a:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_IComparable_CompareTo_m66B7166E41172B9AC64C38A6EA9B0A7FF946F01C_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_IComparable_CompareTo_m66B7166E41172B9AC64C38A6EA9B0A7FF946F01C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)((Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_3_System_Collections_IStructuralComparable_CompareTo_mD4E0DFF6339122FF9BD1CDA69488929C316F09CA_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
RuntimeObject * L_22 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = (RuntimeObject *)L_23->get_m_Item3_2();
NullCheck((RuntimeObject*)L_21);
int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24);
return L_25;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_GetHashCode_m1AED3AC52D43DA1716AA4458567FC4E6F7454B1A_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_GetHashCode_m1AED3AC52D43DA1716AA4458567FC4E6F7454B1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m64C75EE1F144BBF0539D92AEC518ECEF964CC28A_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m64C75EE1F144BBF0539D92AEC518ECEF964CC28A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((RuntimeObject*)L_6);
int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_7);
int32_t L_9 = Tuple_CombineHashCodes_m34B16565FCB93CC63DAF544CC55CD4459A7435AB((int32_t)L_2, (int32_t)L_5, (int32_t)L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_ToString_m96B918423D9BBE3EA66EBFE4A617DFF628ECEA42_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_ToString_m96B918423D9BBE3EA66EBFE4A617DFF628ECEA42_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_System_ITupleInternal_ToString_m5B9310EE550CC41905FF3002D70DEB87884DED37_gshared (Tuple_3_t64B8D81845E79878B9253853D4E5D72B5117DA4E * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_ITupleInternal_ToString_m5B9310EE550CC41905FF3002D70DEB87884DED37_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_2, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((StringBuilder_t *)L_8);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_8, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((RuntimeObject *)L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_9);
return L_10;
}
}
#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
// T1 System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item1_m7782733E7FA5DE8C699E86C9B429AC98466B0F89_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item2_mD32150A515FC59E264C46D185F6C2C59AFFF7566_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::get_Item3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC Tuple_3_get_Item3_m9FCC19D8AA951A560DE16F79F3BB7E278974DD47_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, const RuntimeMethod* method)
{
{
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_0 = (VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC )__this->get_m_Item3_2();
return L_0;
}
}
// System.Void System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::.ctor(T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_3__ctor_m50163C62C4B48DDA35C4FB880317268BF6C9BD94_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC ___item32, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_2 = ___item32;
__this->set_m_Item3_2(L_2);
return;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_Equals_mA5C5D4A501D2A7DB7AD5AF445D80CDAEA6F7EF3D_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_Equals_mA5C5D4A501D2A7DB7AD5AF445D80CDAEA6F7EF3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_System_Collections_IStructuralEquatable_Equals_m23575F1B59D86FAD58B484EAE59264B76E03DA09_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_Equals_m23575F1B59D86FAD58B484EAE59264B76E03DA09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC *)((Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_006a;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_006a;
}
}
{
RuntimeObject* L_13 = ___comparer1;
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_14 = (VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC )__this->get_m_Item3_2();
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_15 = L_14;
RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_15);
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_17 = V_0;
NullCheck(L_17);
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_18 = (VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC )L_17->get_m_Item3_2();
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_19 = L_18;
RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_19);
NullCheck((RuntimeObject*)L_13);
bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_16, (RuntimeObject *)L_20);
return L_21;
}
IL_006a:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_IComparable_CompareTo_m6C0E1D57ECCA758E7BA346DF12EDD7CF92E7A717_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_IComparable_CompareTo_m6C0E1D57ECCA758E7BA346DF12EDD7CF92E7A717_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_m4CCB5E7D744DBE453CB341B2DA8952A48D228ABA_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralComparable_CompareTo_m4CCB5E7D744DBE453CB341B2DA8952A48D228ABA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC *)((Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_3_System_Collections_IStructuralComparable_CompareTo_m4CCB5E7D744DBE453CB341B2DA8952A48D228ABA_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_22 = (VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC )__this->get_m_Item3_2();
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_23 = L_22;
RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_23);
Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * L_25 = V_0;
NullCheck(L_25);
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_26 = (VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC )L_25->get_m_Item3_2();
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_27 = L_26;
RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_27);
NullCheck((RuntimeObject*)L_21);
int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28);
return L_29;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_GetHashCode_m5815D1A808CE1639263C8D2A683F172D1E0B827F_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_GetHashCode_m5815D1A808CE1639263C8D2A683F172D1E0B827F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m551D32031D8E37AB27FCBE93C39B5543F5478EB5_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m551D32031D8E37AB27FCBE93C39B5543F5478EB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_7 = (VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC )__this->get_m_Item3_2();
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_8);
NullCheck((RuntimeObject*)L_6);
int32_t L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_9);
int32_t L_11 = Tuple_CombineHashCodes_m34B16565FCB93CC63DAF544CC55CD4459A7435AB((int32_t)L_2, (int32_t)L_5, (int32_t)L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_ToString_m1DB2F7D16C5D2896CFA74704DEE99C23D917D21E_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_ToString_m1DB2F7D16C5D2896CFA74704DEE99C23D917D21E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.VoidValueTypeParameter>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_System_ITupleInternal_ToString_m5046AE03511E0B9C88E28D1AD9922A3136987A27_gshared (Tuple_3_tB2D655FFCD27D3ED860AA2891176D7B0172B29DC * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_ITupleInternal_ToString_m5046AE03511E0B9C88E28D1AD9922A3136987A27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_2, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_7 = (VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC )__this->get_m_Item3_2();
VoidValueTypeParameter_tE3A581A2091DC722CAA86B9FD732C749E2EEB6FC L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_8);
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_6, (RuntimeObject *)L_9, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((StringBuilder_t *)L_10);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_10, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
NullCheck((RuntimeObject *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_11);
return L_12;
}
}
#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
// T1 System.Tuple`3<System.Object,System.Object,System.UInt32>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item1_mA4F53206E093382B21A273A9F6D2134303D362C9_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`3<System.Object,System.Object,System.UInt32>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item2_m2B2E7C2FBD3B4D2257C5132CA9A4481A514E316C_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`3<System.Object,System.Object,System.UInt32>::get_Item3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Tuple_3_get_Item3_m2AA28A1994CBC1027AE0E95513F61CEF0BAEB696_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, const RuntimeMethod* method)
{
{
uint32_t L_0 = (uint32_t)__this->get_m_Item3_2();
return L_0;
}
}
// System.Void System.Tuple`3<System.Object,System.Object,System.UInt32>::.ctor(T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_3__ctor_m8B94F76F2EBE6B1C763A00BB2812957B649E271A_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, uint32_t ___item32, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
uint32_t L_2 = ___item32;
__this->set_m_Item3_2(L_2);
return;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.UInt32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_Equals_mF70802FB9F4C8D734DBAC120EFEBF9F5FA9A3067_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_Equals_mF70802FB9F4C8D734DBAC120EFEBF9F5FA9A3067_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.UInt32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_3_System_Collections_IStructuralEquatable_Equals_m94DE7458A9071B90BA7FECA9358B16F88EC1B0FF_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_Equals_m94DE7458A9071B90BA7FECA9358B16F88EC1B0FF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 *)((Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_006a;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_006a;
}
}
{
RuntimeObject* L_13 = ___comparer1;
uint32_t L_14 = (uint32_t)__this->get_m_Item3_2();
uint32_t L_15 = L_14;
RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_15);
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_17 = V_0;
NullCheck(L_17);
uint32_t L_18 = (uint32_t)L_17->get_m_Item3_2();
uint32_t L_19 = L_18;
RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_19);
NullCheck((RuntimeObject*)L_13);
bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_16, (RuntimeObject *)L_20);
return L_21;
}
IL_006a:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.UInt32>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_IComparable_CompareTo_mECFD519343B353A2A0797133015E2AE018CE034E_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_IComparable_CompareTo_mECFD519343B353A2A0797133015E2AE018CE034E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.UInt32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_mA96E8C6F129B415B99F34FE738B149D8ABB55D10_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralComparable_CompareTo_mA96E8C6F129B415B99F34FE738B149D8ABB55D10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 *)((Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_3_System_Collections_IStructuralComparable_CompareTo_mA96E8C6F129B415B99F34FE738B149D8ABB55D10_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
uint32_t L_22 = (uint32_t)__this->get_m_Item3_2();
uint32_t L_23 = L_22;
RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_23);
Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * L_25 = V_0;
NullCheck(L_25);
uint32_t L_26 = (uint32_t)L_25->get_m_Item3_2();
uint32_t L_27 = L_26;
RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_27);
NullCheck((RuntimeObject*)L_21);
int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28);
return L_29;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.UInt32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_GetHashCode_mEDC9816B22CB0A4032CC72C191E87097C819F900_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_GetHashCode_mEDC9816B22CB0A4032CC72C191E87097C819F900_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.UInt32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_mE274897447ACF83891E9E12E3945F9911610CB04_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_mE274897447ACF83891E9E12E3945F9911610CB04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
uint32_t L_7 = (uint32_t)__this->get_m_Item3_2();
uint32_t L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_8);
NullCheck((RuntimeObject*)L_6);
int32_t L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_9);
int32_t L_11 = Tuple_CombineHashCodes_m34B16565FCB93CC63DAF544CC55CD4459A7435AB((int32_t)L_2, (int32_t)L_5, (int32_t)L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.UInt32>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_ToString_mED8D0D784199B6CF4F8B25D987B82C2E0FDA08D5_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_ToString_mED8D0D784199B6CF4F8B25D987B82C2E0FDA08D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.UInt32>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_3_System_ITupleInternal_ToString_m83180ED086A59842A5E77E697F3E4B831E3254EC_gshared (Tuple_3_tBBF284BBEBCF05039E6018D787F277F0DB9B92F8 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_ITupleInternal_ToString_m83180ED086A59842A5E77E697F3E4B831E3254EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_2, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
uint32_t L_7 = (uint32_t)__this->get_m_Item3_2();
uint32_t L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_8);
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_6, (RuntimeObject *)L_9, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((StringBuilder_t *)L_10);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_10, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
NullCheck((RuntimeObject *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_11);
return L_12;
}
}
#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
// T1 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item1_mDD520EBC4036ED8B5E5FF418030D3A37CC13A92D_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item2_mC8AE93EDC8022CE42C9CA1B48C6D2C5FBF395DBB_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_mF1E94C914EC35054CEDC1E5133A7B547C4957051_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item3_2();
return L_0;
}
}
// T4 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item4()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_get_Item4_mFB9D892ABD1D546E4833688CFA37C70953D90CAC_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_m_Item4_3();
return L_0;
}
}
// System.Void System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::.ctor(T1,T2,T3,T4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_m110DF42D7B274045F9DB5B0DDE4AB3BFD93219AF_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, int32_t ___item10, int32_t ___item21, int32_t ___item32, bool ___item43, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
int32_t L_1 = ___item21;
__this->set_m_Item2_1(L_1);
int32_t L_2 = ___item32;
__this->set_m_Item3_2(L_2);
bool L_3 = ___item43;
__this->set_m_Item4_3(L_3);
return;
}
}
// System.Boolean System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m042A5CE75B4D17100FB0E1551A63210C25A73FFB_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_Equals_m042A5CE75B4D17100FB0E1551A63210C25A73FFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m4D98FC6CDD2A2F03599B851155EDAE0EB7061B1A_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_Equals_m4D98FC6CDD2A2F03599B851155EDAE0EB7061B1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)((Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_5);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_0088;
}
}
{
RuntimeObject* L_12 = ___comparer1;
int32_t L_13 = (int32_t)__this->get_m_Item2_1();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_14);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = (int32_t)L_16->get_m_Item2_1();
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
if (!L_20)
{
goto IL_0088;
}
}
{
RuntimeObject* L_21 = ___comparer1;
int32_t L_22 = (int32_t)__this->get_m_Item3_2();
int32_t L_23 = L_22;
RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_23);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_25 = V_0;
NullCheck(L_25);
int32_t L_26 = (int32_t)L_25->get_m_Item3_2();
int32_t L_27 = L_26;
RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_27);
NullCheck((RuntimeObject*)L_21);
bool L_29 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28);
if (!L_29)
{
goto IL_0088;
}
}
{
RuntimeObject* L_30 = ___comparer1;
bool L_31 = (bool)__this->get_m_Item4_3();
bool L_32 = L_31;
RuntimeObject * L_33 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_32);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_34 = V_0;
NullCheck(L_34);
bool L_35 = (bool)L_34->get_m_Item4_3();
bool L_36 = L_35;
RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_36);
NullCheck((RuntimeObject*)L_30);
bool L_38 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_30, (RuntimeObject *)L_33, (RuntimeObject *)L_37);
return L_38;
}
IL_0088:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m36B26DE3F3643B16458329A69219006C3EA77170_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_IComparable_CompareTo_m36B26DE3F3643B16458329A69219006C3EA77170_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)((Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7FF20AD670FD1BA66B62808B2827DAEED3B387E3_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_9);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
int32_t L_19 = (int32_t)__this->get_m_Item2_1();
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_20);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_m_Item2_1();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
V_1 = (int32_t)L_26;
int32_t L_27 = V_1;
if (!L_27)
{
goto IL_0075;
}
}
{
int32_t L_28 = V_1;
return L_28;
}
IL_0075:
{
RuntimeObject* L_29 = ___comparer1;
int32_t L_30 = (int32_t)__this->get_m_Item3_2();
int32_t L_31 = L_30;
RuntimeObject * L_32 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_31);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_33 = V_0;
NullCheck(L_33);
int32_t L_34 = (int32_t)L_33->get_m_Item3_2();
int32_t L_35 = L_34;
RuntimeObject * L_36 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_35);
NullCheck((RuntimeObject*)L_29);
int32_t L_37 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_29, (RuntimeObject *)L_32, (RuntimeObject *)L_36);
V_1 = (int32_t)L_37;
int32_t L_38 = V_1;
if (!L_38)
{
goto IL_0097;
}
}
{
int32_t L_39 = V_1;
return L_39;
}
IL_0097:
{
RuntimeObject* L_40 = ___comparer1;
bool L_41 = (bool)__this->get_m_Item4_3();
bool L_42 = L_41;
RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_42);
Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * L_44 = V_0;
NullCheck(L_44);
bool L_45 = (bool)L_44->get_m_Item4_3();
bool L_46 = L_45;
RuntimeObject * L_47 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_46);
NullCheck((RuntimeObject*)L_40);
int32_t L_48 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_40, (RuntimeObject *)L_43, (RuntimeObject *)L_47);
return L_48;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m28DA0628D9C280E13AF9F542BF8FCC2863B1DE20_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_GetHashCode_m28DA0628D9C280E13AF9F542BF8FCC2863B1DE20_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m3190A0B3F0D6190BF877960D6CE45D7FF2AC8C57_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m3190A0B3F0D6190BF877960D6CE45D7FF2AC8C57_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
RuntimeObject* L_10 = ___comparer0;
int32_t L_11 = (int32_t)__this->get_m_Item3_2();
int32_t L_12 = L_11;
RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_12);
NullCheck((RuntimeObject*)L_10);
int32_t L_14 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13);
RuntimeObject* L_15 = ___comparer0;
bool L_16 = (bool)__this->get_m_Item4_3();
bool L_17 = L_16;
RuntimeObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_17);
NullCheck((RuntimeObject*)L_15);
int32_t L_19 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_15, (RuntimeObject *)L_18);
int32_t L_20 = Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3((int32_t)L_4, (int32_t)L_9, (int32_t)L_14, (int32_t)L_19, /*hidden argument*/NULL);
return L_20;
}
}
// System.String System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m6F6C0FA75C7EC8ED752BBD3F11B41C4760F7E6A7_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_ToString_m6F6C0FA75C7EC8ED752BBD3F11B41C4760F7E6A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_mA2E8553C515EBC17C075C2308A166E23790A96FE_gshared (Tuple_4_t261F9F934878FC10CFB74B1A5C5E9BF0D1564808 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_ITupleInternal_ToString_mA2E8553C515EBC17C075C2308A166E23790A96FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_4, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_9, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
int32_t L_11 = (int32_t)__this->get_m_Item3_2();
int32_t L_12 = L_11;
RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_12);
NullCheck((StringBuilder_t *)L_10);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_10, (RuntimeObject *)L_13, /*hidden argument*/NULL);
StringBuilder_t * L_14 = ___sb0;
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_14, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_15 = ___sb0;
bool L_16 = (bool)__this->get_m_Item4_3();
bool L_17 = L_16;
RuntimeObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_17);
NullCheck((StringBuilder_t *)L_15);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_15, (RuntimeObject *)L_18, /*hidden argument*/NULL);
StringBuilder_t * L_19 = ___sb0;
NullCheck((StringBuilder_t *)L_19);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_19, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_20 = ___sb0;
NullCheck((RuntimeObject *)L_20);
String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_20);
return L_21;
}
}
#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
// T1 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_m5F32E198862372BC9F9C510790E5098584906CAC_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_m70E2FD23ACE5513A49D47582782076A592E0A1AF_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_mB8D130AFCEE1037111D5F6387BF34F7893848F45_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item3_2();
return L_0;
}
}
// T4 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item4()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item4_mCB7860299592F8FA0F6F60C1EBA20767982B16DB_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item4_3();
return L_0;
}
}
// System.Void System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::.ctor(T1,T2,T3,T4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_mE6863E3E4159B58E5A98E9CBB854F41ED74FCD4B_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, int32_t ___item32, int32_t ___item43, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
int32_t L_2 = ___item32;
__this->set_m_Item3_2(L_2);
int32_t L_3 = ___item43;
__this->set_m_Item4_3(L_3);
return;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m810C373812C46799F30A72566664D98AC7479B75_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_Equals_m810C373812C46799F30A72566664D98AC7479B75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_mC341E26E37DC309E38C469E7ABBF5876E0968250_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_Equals_mC341E26E37DC309E38C469E7ABBF5876E0968250_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D *)((Tuple_4_t936566050E79A53330A93469CAF15575A12A114D *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_0088;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_0088;
}
}
{
RuntimeObject* L_13 = ___comparer1;
int32_t L_14 = (int32_t)__this->get_m_Item3_2();
int32_t L_15 = L_14;
RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_15);
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_17 = V_0;
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_m_Item3_2();
int32_t L_19 = L_18;
RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_19);
NullCheck((RuntimeObject*)L_13);
bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_16, (RuntimeObject *)L_20);
if (!L_21)
{
goto IL_0088;
}
}
{
RuntimeObject* L_22 = ___comparer1;
int32_t L_23 = (int32_t)__this->get_m_Item4_3();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_24);
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_26 = V_0;
NullCheck(L_26);
int32_t L_27 = (int32_t)L_26->get_m_Item4_3();
int32_t L_28 = L_27;
RuntimeObject * L_29 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_28);
NullCheck((RuntimeObject*)L_22);
bool L_30 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_22, (RuntimeObject *)L_25, (RuntimeObject *)L_29);
return L_30;
}
IL_0088:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m2B700CC28D1C26FB41FEBDECFE79456612AAABC5_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_IComparable_CompareTo_m2B700CC28D1C26FB41FEBDECFE79456612AAABC5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D *)((Tuple_4_t936566050E79A53330A93469CAF15575A12A114D *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_4_System_Collections_IStructuralComparable_CompareTo_mA0110BA541F52E932C0D2A53723D0D937059F058_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
int32_t L_22 = (int32_t)__this->get_m_Item3_2();
int32_t L_23 = L_22;
RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_23);
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_25 = V_0;
NullCheck(L_25);
int32_t L_26 = (int32_t)L_25->get_m_Item3_2();
int32_t L_27 = L_26;
RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_27);
NullCheck((RuntimeObject*)L_21);
int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28);
V_1 = (int32_t)L_29;
int32_t L_30 = V_1;
if (!L_30)
{
goto IL_0097;
}
}
{
int32_t L_31 = V_1;
return L_31;
}
IL_0097:
{
RuntimeObject* L_32 = ___comparer1;
int32_t L_33 = (int32_t)__this->get_m_Item4_3();
int32_t L_34 = L_33;
RuntimeObject * L_35 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_34);
Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * L_36 = V_0;
NullCheck(L_36);
int32_t L_37 = (int32_t)L_36->get_m_Item4_3();
int32_t L_38 = L_37;
RuntimeObject * L_39 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_38);
NullCheck((RuntimeObject*)L_32);
int32_t L_40 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_32, (RuntimeObject *)L_35, (RuntimeObject *)L_39);
return L_40;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_mBEAFF2CF8410683A95B984E1D6E7A124628B42A4_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_GetHashCode_mBEAFF2CF8410683A95B984E1D6E7A124628B42A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mE07FC3048629FBAA9B0B82A519C487058250B690_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mE07FC3048629FBAA9B0B82A519C487058250B690_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
int32_t L_7 = (int32_t)__this->get_m_Item3_2();
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_8);
NullCheck((RuntimeObject*)L_6);
int32_t L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_9);
RuntimeObject* L_11 = ___comparer0;
int32_t L_12 = (int32_t)__this->get_m_Item4_3();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_13);
NullCheck((RuntimeObject*)L_11);
int32_t L_15 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_11, (RuntimeObject *)L_14);
int32_t L_16 = Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3((int32_t)L_2, (int32_t)L_5, (int32_t)L_10, (int32_t)L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_mCAB40D7255D4673FFDD91D1A2EBC91E83E84A661_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_ToString_mCAB40D7255D4673FFDD91D1A2EBC91E83E84A661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_mB66A60246AE894A28DF4D6F01DE3AAB1AA085E6A_gshared (Tuple_4_t936566050E79A53330A93469CAF15575A12A114D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_ITupleInternal_ToString_mB66A60246AE894A28DF4D6F01DE3AAB1AA085E6A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_2, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
int32_t L_7 = (int32_t)__this->get_m_Item3_2();
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), &L_8);
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_6, (RuntimeObject *)L_9, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((StringBuilder_t *)L_10);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_10, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
int32_t L_12 = (int32_t)__this->get_m_Item4_3();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_13);
NullCheck((StringBuilder_t *)L_11);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_11, (RuntimeObject *)L_14, /*hidden argument*/NULL);
StringBuilder_t * L_15 = ___sb0;
NullCheck((StringBuilder_t *)L_15);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_15, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_16 = ___sb0;
NullCheck((RuntimeObject *)L_16);
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_16);
return L_17;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// T1 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_mB1DB3A2FC05B5B5E5B77912C84AFA3BF7FC379EE_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_m793197594101F09AE8784336E26407E9D9A1EE0F_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item3_mCD9FE68A6D1886B978288B54AF485139F1EBCC88_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item3_2();
return L_0;
}
}
// T4 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item4()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item4_mB8E300B37D00D2559EAA714799D1C6CB28D8006C_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item4_3();
return L_0;
}
}
// System.Void System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::.ctor(T1,T2,T3,T4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_m8E45C17903FA22DC75D1310AB2B1C1036514FAD0_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
RuntimeObject * L_2 = ___item32;
__this->set_m_Item3_2(L_2);
RuntimeObject * L_3 = ___item43;
__this->set_m_Item4_3(L_3);
return;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m5C403AB876CFEAF4C4028B2D1EB921B708D71F6F_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_Equals_m5C403AB876CFEAF4C4028B2D1EB921B708D71F6F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_1 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m6B3ECD79C777FAA44B212F29225AF083FE0CE81B_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_Equals_m6B3ECD79C777FAA44B212F29225AF083FE0CE81B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)((Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_0088;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_0088;
}
}
{
RuntimeObject* L_13 = ___comparer1;
RuntimeObject * L_14 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_15 = V_0;
NullCheck(L_15);
RuntimeObject * L_16 = (RuntimeObject *)L_15->get_m_Item3_2();
NullCheck((RuntimeObject*)L_13);
bool L_17 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_14, (RuntimeObject *)L_16);
if (!L_17)
{
goto IL_0088;
}
}
{
RuntimeObject* L_18 = ___comparer1;
RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item4_3();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item4_3();
NullCheck((RuntimeObject*)L_18);
bool L_22 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21);
return L_22;
}
IL_0088:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_mF0A90DFEA25BC907CC567B76D7AE08EFACBC0DD5_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_IComparable_CompareTo_mF0A90DFEA25BC907CC567B76D7AE08EFACBC0DD5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var);
LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673 * L_1 = ((LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_tE1AAB0112F35E5629CBBA2032E4B98AD63745673_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t6C0DB09DF1A343F629456373DB2D0CA3EAF0E939_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)((Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, (String_t*)L_5, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Tuple_4_System_Collections_IStructuralComparable_CompareTo_m7DBECBFF789051CAA919DDCFEA4CA7A2CAB03509_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
RuntimeObject * L_22 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = (RuntimeObject *)L_23->get_m_Item3_2();
NullCheck((RuntimeObject*)L_21);
int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24);
V_1 = (int32_t)L_25;
int32_t L_26 = V_1;
if (!L_26)
{
goto IL_0097;
}
}
{
int32_t L_27 = V_1;
return L_27;
}
IL_0097:
{
RuntimeObject* L_28 = ___comparer1;
RuntimeObject * L_29 = (RuntimeObject *)__this->get_m_Item4_3();
Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * L_30 = V_0;
NullCheck(L_30);
RuntimeObject * L_31 = (RuntimeObject *)L_30->get_m_Item4_3();
NullCheck((RuntimeObject*)L_28);
int32_t L_32 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_28, (RuntimeObject *)L_29, (RuntimeObject *)L_31);
return L_32;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m3A029A56DAEEB113ABF2D3AD2DADB85639C8602C_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_GetHashCode_m3A029A56DAEEB113ABF2D3AD2DADB85639C8602C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23 * L_0 = ((ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t72A30310D4F4EB2147D08A989E157CCCEEC78C23_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t3E75B180771187E7B568B32E61FE58C53BDCAE7D_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mCB6BD9BCC93AEBE5BA5AC38BE364147BDCFA03B5_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_mCB6BD9BCC93AEBE5BA5AC38BE364147BDCFA03B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((RuntimeObject*)L_6);
int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_7);
RuntimeObject* L_9 = ___comparer0;
RuntimeObject * L_10 = (RuntimeObject *)__this->get_m_Item4_3();
NullCheck((RuntimeObject*)L_9);
int32_t L_11 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_9, (RuntimeObject *)L_10);
int32_t L_12 = Tuple_CombineHashCodes_m01D5544F5BC0C150998D33968345997DCCABF0B3((int32_t)L_2, (int32_t)L_5, (int32_t)L_8, (int32_t)L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m76E3B38EF334DF95D2D2F5853F7F83D031AC7972_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_ToString_m76E3B38EF334DF95D2D2F5853F7F83D031AC7972_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_1, (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_tCDD0D789ADC1AD5E21563EA2F6177C41AEF60F69_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_m2889AE2B9D7612D7959D60A9860437BC14410CDA_gshared (Tuple_4_t476C850B9EE4258E8E165759EC4ED6CB5FE3EF44 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_ITupleInternal_ToString_m2889AE2B9D7612D7959D60A9860437BC14410CDA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_2, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_5, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((StringBuilder_t *)L_8);
StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1((StringBuilder_t *)L_8, (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
RuntimeObject * L_10 = (RuntimeObject *)__this->get_m_Item4_3();
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m545FFB72A578320B1D6EA3772160353FD62C344F((StringBuilder_t *)L_9, (RuntimeObject *)L_10, /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
NullCheck((StringBuilder_t *)L_11);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E((StringBuilder_t *)L_11, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_12 = ___sb0;
NullCheck((RuntimeObject *)L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_12);
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.Collections.IEnumerator TMPro.TweenRunner`1<TMPro.FloatTween>::Start(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TweenRunner_1_Start_m5F358174FB1ADD089196C4A06A45365FB178CAD9_gshared (FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 ___tweenInfo0, const RuntimeMethod* method)
{
{
U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E * L_0 = (U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E * L_1 = (U3CStartU3Ed__2_t304FCFAB5A6C91579B348828B88BB294DCACC83E *)L_0;
FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 L_2 = ___tweenInfo0;
NullCheck(L_1);
L_1->set_tweenInfo_2(L_2);
return L_1;
}
}
// System.Void TMPro.TweenRunner`1<TMPro.FloatTween>::Init(UnityEngine.MonoBehaviour)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_Init_mADBAC9BC0FA65B13BA017656B76C0C114B73587B_gshared (TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA * __this, MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___coroutineContainer0, const RuntimeMethod* method)
{
{
// m_CoroutineContainer = coroutineContainer;
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = ___coroutineContainer0;
__this->set_m_CoroutineContainer_0(L_0);
// }
return;
}
}
// System.Void TMPro.TweenRunner`1<TMPro.FloatTween>::StartTween(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StartTween_m5122B35809FA66ABAA40020C9781B136DA94D0F3_gshared (TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA * __this, FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 ___info0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TweenRunner_1_StartTween_m5122B35809FA66ABAA40020C9781B136DA94D0F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CoroutineContainer == null)
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// Debug.LogWarning("Coroutine container not configured... did you forget to call Init?");
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7((RuntimeObject *)_stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7, /*hidden argument*/NULL);
// return;
return;
}
IL_0019:
{
// StopTween();
NullCheck((TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA *)__this);
(( void (*) (TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
// if (!m_CoroutineContainer.gameObject.activeInHierarchy)
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_2 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
NullCheck((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2, /*hidden argument*/NULL);
NullCheck((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3);
bool L_4 = GameObject_get_activeInHierarchy_mA3990AC5F61BB35283188E925C2BE7F7BF67734B((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0044;
}
}
{
// info.TweenValue(1.0f);
FloatTween_TweenValue_mC9D96B33108145F670145DE57210C0D3D24EC172((FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 *)(FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 *)(&___info0), (float)(1.0f), /*hidden argument*/NULL);
// return;
return;
}
IL_0044:
{
// m_Tween = Start(info);
FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 L_5 = ___info0;
RuntimeObject* L_6 = (( RuntimeObject* (*) (FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((FloatTween_t5A586E52817A19AA6B977C2E775A83AB391BBC97 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
__this->set_m_Tween_1(L_6);
// m_CoroutineContainer.StartCoroutine(m_Tween);
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_7 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
RuntimeObject* L_8 = (RuntimeObject*)__this->get_m_Tween_1();
NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7);
MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7, (RuntimeObject*)L_8, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void TMPro.TweenRunner`1<TMPro.FloatTween>::StopTween()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StopTween_m35960EE909E5DEA90C61CB58DB44A744C8B71C7C_gshared (TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA * __this, const RuntimeMethod* method)
{
{
// if (m_Tween != null)
RuntimeObject* L_0 = (RuntimeObject*)__this->get_m_Tween_1();
if (!L_0)
{
goto IL_0020;
}
}
{
// m_CoroutineContainer.StopCoroutine(m_Tween);
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_1 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
RuntimeObject* L_2 = (RuntimeObject*)__this->get_m_Tween_1();
NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1);
MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1, (RuntimeObject*)L_2, /*hidden argument*/NULL);
// m_Tween = null;
__this->set_m_Tween_1((RuntimeObject*)NULL);
}
IL_0020:
{
// }
return;
}
}
// System.Void TMPro.TweenRunner`1<TMPro.FloatTween>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1__ctor_m49B0A8CFB386E0A98F8943BA47591C6D8138976F_gshared (TweenRunner_1_tE75A3C5885B8A7400F08DD90FD4AE5768176A7DA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((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.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::Start(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TweenRunner_1_Start_m25B8F14E0904DD545969F1C7F9DA8E8910CF6653_gshared (ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 ___tweenInfo0, const RuntimeMethod* method)
{
{
U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 * L_0 = (U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 * L_1 = (U3CStartU3Ed__2_tFB5B68ACD6B72236226A4DBFF90660409B533388 *)L_0;
ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 L_2 = ___tweenInfo0;
NullCheck(L_1);
L_1->set_tweenInfo_2(L_2);
return L_1;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::Init(UnityEngine.MonoBehaviour)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_Init_m37947E11CE7805113E3B020DABF236702307B4DA_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __this, MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___coroutineContainer0, const RuntimeMethod* method)
{
{
// m_CoroutineContainer = coroutineContainer;
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = ___coroutineContainer0;
__this->set_m_CoroutineContainer_0(L_0);
// }
return;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::StartTween(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StartTween_m644BE60640B50CE2B6BFF8979DAA7710B0487B82_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __this, ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 ___info0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TweenRunner_1_StartTween_m644BE60640B50CE2B6BFF8979DAA7710B0487B82_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CoroutineContainer == null)
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// Debug.LogWarning("Coroutine container not configured... did you forget to call Init?");
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7((RuntimeObject *)_stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7, /*hidden argument*/NULL);
// return;
return;
}
IL_0019:
{
// StopTween();
NullCheck((TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 *)__this);
(( void (*) (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
// if (!m_CoroutineContainer.gameObject.activeInHierarchy)
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_2 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
NullCheck((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2, /*hidden argument*/NULL);
NullCheck((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3);
bool L_4 = GameObject_get_activeInHierarchy_mA3990AC5F61BB35283188E925C2BE7F7BF67734B((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0044;
}
}
{
// info.TweenValue(1.0f);
ColorTween_TweenValue_m5F8B59F75D4CE627BC5F6E34A1345D41941FDCC6((ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 *)(ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 *)(&___info0), (float)(1.0f), /*hidden argument*/NULL);
// return;
return;
}
IL_0044:
{
// m_Tween = Start(info);
ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 L_5 = ___info0;
RuntimeObject* L_6 = (( RuntimeObject* (*) (ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((ColorTween_tB608DC1CF7A7F226B0D4DD8B269798F27CECE339 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
__this->set_m_Tween_1(L_6);
// m_CoroutineContainer.StartCoroutine(m_Tween);
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_7 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
RuntimeObject* L_8 = (RuntimeObject*)__this->get_m_Tween_1();
NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7);
MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7, (RuntimeObject*)L_8, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::StopTween()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StopTween_mF65C63AA3C8FD8762A7B8D89ED75269BD58659AC_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __this, const RuntimeMethod* method)
{
{
// if (m_Tween != null)
RuntimeObject* L_0 = (RuntimeObject*)__this->get_m_Tween_1();
if (!L_0)
{
goto IL_0020;
}
}
{
// m_CoroutineContainer.StopCoroutine(m_Tween);
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_1 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
RuntimeObject* L_2 = (RuntimeObject*)__this->get_m_Tween_1();
NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1);
MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1, (RuntimeObject*)L_2, /*hidden argument*/NULL);
// m_Tween = null;
__this->set_m_Tween_1((RuntimeObject*)NULL);
}
IL_0020:
{
// }
return;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1__ctor_mBF1550542F6C3B60A2B17D073075F0502BD2E5AD_gshared (TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((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.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Start(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TweenRunner_1_Start_m888375722375887F4EAA7B28502CB37595BEA876_gshared (FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 ___tweenInfo0, const RuntimeMethod* method)
{
{
U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 * L_0 = (U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 * L_1 = (U3CStartU3Ed__2_t9789962C60DA327F6B025DE2DD46F8C4CE6A5B12 *)L_0;
FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 L_2 = ___tweenInfo0;
NullCheck(L_1);
L_1->set_tweenInfo_2(L_2);
return L_1;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Init(UnityEngine.MonoBehaviour)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_Init_mDBA4ABFF50732BDC4F3B367DD80840325CD893E2_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __this, MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___coroutineContainer0, const RuntimeMethod* method)
{
{
// m_CoroutineContainer = coroutineContainer;
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = ___coroutineContainer0;
__this->set_m_CoroutineContainer_0(L_0);
// }
return;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StartTween(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StartTween_m09DC67B7A264102E3C1B318979F603F9E5B1C05B_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __this, FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 ___info0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TweenRunner_1_StartTween_m09DC67B7A264102E3C1B318979F603F9E5B1C05B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CoroutineContainer == null)
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_0 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54((Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// Debug.LogWarning("Coroutine container not configured... did you forget to call Init?");
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7((RuntimeObject *)_stringLiteralBE4A57F56A51C577CDB9BA98303B39F3486090F7, /*hidden argument*/NULL);
// return;
return;
}
IL_0019:
{
// StopTween();
NullCheck((TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D *)__this);
(( void (*) (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
// if (!m_CoroutineContainer.gameObject.activeInHierarchy)
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_2 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
NullCheck((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B((Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *)L_2, /*hidden argument*/NULL);
NullCheck((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3);
bool L_4 = GameObject_get_activeInHierarchy_mA3990AC5F61BB35283188E925C2BE7F7BF67734B((GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)L_3, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0044;
}
}
{
// info.TweenValue(1.0f);
FloatTween_TweenValue_mF21AE3A616B020B1D351E237D1F3145B508ACB11((FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 *)(FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 *)(&___info0), (float)(1.0f), /*hidden argument*/NULL);
// return;
return;
}
IL_0044:
{
// m_Tween = Start(info);
FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 L_5 = ___info0;
RuntimeObject* L_6 = (( RuntimeObject* (*) (FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((FloatTween_tFC6A79CB4DD9D51D99523093925F926E12D2F228 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
__this->set_m_Tween_1(L_6);
// m_CoroutineContainer.StartCoroutine(m_Tween);
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_7 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
RuntimeObject* L_8 = (RuntimeObject*)__this->get_m_Tween_1();
NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7);
MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_7, (RuntimeObject*)L_8, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StopTween()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StopTween_mE31B4433E3CB227FF85C4E05730EB271D541B8A4_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __this, const RuntimeMethod* method)
{
{
// if (m_Tween != null)
RuntimeObject* L_0 = (RuntimeObject*)__this->get_m_Tween_1();
if (!L_0)
{
goto IL_0020;
}
}
{
// m_CoroutineContainer.StopCoroutine(m_Tween);
MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * L_1 = (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)__this->get_m_CoroutineContainer_0();
RuntimeObject* L_2 = (RuntimeObject*)__this->get_m_Tween_1();
NullCheck((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1);
MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B((MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A *)L_1, (RuntimeObject*)L_2, /*hidden argument*/NULL);
// m_Tween = null;
__this->set_m_Tween_1((RuntimeObject*)NULL);
}
IL_0020:
{
// }
return;
}
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1__ctor_m926D76D1F26971585F424277168031854039B194_gshared (TweenRunner_1_t428873023FD8831B6DCE3CBD53ADD7D37AC8222D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((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 Windows.Foundation.TypedEventHandler`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypedEventHandler_2__ctor_m8F2F90B9242AB317F1CD9228A1220F9B14CC1782_gshared (TypedEventHandler_2_t8D72D4CAB5DF9F7D9AE52E95A431BD4738A32CDC * __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 Windows.Foundation.TypedEventHandler`2<System.Object,System.Object>::Invoke(TSender,TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypedEventHandler_2_Invoke_m5D952F3779C15A5E243841A324A3342D1D58CE67_gshared (TypedEventHandler_2_t8D72D4CAB5DF9F7D9AE52E95A431BD4738A32CDC * __this, RuntimeObject * ___sender0, RuntimeObject * ___args1, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___args1, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___sender0, ___args1);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___sender0, ___args1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___args1);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___args1);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___args1, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___args1, targetMethod);
}
}
}
}
}
#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 UnityEngine.Events.UnityAction`1<System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m7610B8631ECBD7E88D42E0FB686AC406253452BD_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __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 UnityEngine.Events.UnityAction`1<System.Boolean>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m0251CCA621F83D757C11A2CC5026DDA24A088866_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __this, bool ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00);
}
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), targetThis, ___arg00);
else
VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(&___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Boolean>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mF4A4312C4C5D7EC10F1D0AC32360D20951F3E276_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __this, bool ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_mF4A4312C4C5D7EC10F1D0AC32360D20951F3E276_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_mADA530A569FA02CEE365550C0B1364847F902DAC_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * __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.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m5529C0F3FFF9E3B541FD5C0239931C2575237973_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __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 UnityEngine.Events.UnityAction`1<UnityEngine.Color>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_mEC0F63D2F925ADACDD0D09B87C83E28BF13DDD5F_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(&___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Color>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m769BC6D74C17069B97AA096698E2A1072F478C20_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m769BC6D74C17069B97AA096698E2A1072F478C20_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m6E8C5B9F56F1C10C6DF482F1DC1E3CFFBC5FF5F5_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * __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.Void UnityEngine.Events.UnityAction`1<System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m595DA2ECB187B2DF951D640BFEBCE02F3F800A3F_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __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 UnityEngine.Events.UnityAction`1<System.Int32>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m34CD3B09DF7371CBA265F13CD7255906D697232D_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __this, int32_t ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(&___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Int32>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m50A0084C1E73C78361F32170CF616D08681D7380_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __this, int32_t ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m50A0084C1E73C78361F32170CF616D08681D7380_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m7320ACEFEBD2FA7D50C947BE9CEC62DAE429A329_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * __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.Void UnityEngine.Events.UnityAction`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m733035EDF9C22D4D048D98FE8ACEFB31C27FF0EB_gshared (UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * __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 UnityEngine.Events.UnityAction`1<System.Int32Enum>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m74DBA8433434A2BD595BF11212F0DF26D6F6DF3E_gshared (UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * __this, int32_t ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(&___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Int32Enum>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mDC9B183A81287E65A2FD249F920BB63D36ED75A3_gshared (UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * __this, int32_t ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_mDC9B183A81287E65A2FD249F920BB63D36ED75A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Int32Enum>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m485418FD970A5024B6BAC1E687F981364B1A7B35_gshared (UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * __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.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mA4ADF56200888B2A297C5913DA00A89F11BD87C5_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __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 UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m16F774E0F869579B89A02E33198957BF2B362763_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(&___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mA6A81E3B39C49A2A483B7EC5A7FC6F305C84BDCD_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_mA6A81E3B39C49A2A483B7EC5A7FC6F305C84BDCD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_mCC90A51C5C963477EEE746E3D3856AEBE78FB78A_gshared (UnityAction_1_t98C9D5462DAC5B38057FFF4D18D84AAE4783CBE2 * __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.Void UnityEngine.Events.UnityAction`1<System.Single>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m8CACADCAC18230FB18DF7A6BEC3D9EAD93FEDC3B_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __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 UnityEngine.Events.UnityAction`1<System.Single>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m2BCE3E687DD62E352139131BB1AD26D8AA444E77_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __this, float ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(&___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Single>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mEAA1361DECE0C4E7F731346AD77D6999664527CA_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __this, float ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_mEAA1361DECE0C4E7F731346AD77D6999664527CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Single>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m936D976DB36E14668A40522AADE9283923079869_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * __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.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mF26A01600BF18A3051372F4AA91E74AD1F557A12_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __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 UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m8C06062E095F203A1291F3CAB67A40EB89DF3712_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(&___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_mF0799ACC3D5BF95C48D11D03FFEDE24F53C00475_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_mF0799ACC3D5BF95C48D11D03FFEDE24F53C00475_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m02ED2BCB3DB958F9E000563E77EC2BCA9E5659C4_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * __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.Void UnityEngine.Events.UnityAction`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mDACAB67F7E76FF788C30CA0E51BF3274666F951E_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __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 UnityEngine.Events.UnityAction`1<System.Object>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_mB133B86EE623F225FC5B3B7C86B609072E8D0013_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __this, RuntimeObject * ___arg00, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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)(___arg00, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (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, ___arg00);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00);
}
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, ___arg00);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
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*>(___arg00) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Object>::BeginInvoke(T0,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m7C92F18128CD7BC314EECF7D6FBE3F0D99B87597_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __this, RuntimeObject * ___arg00, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___arg00;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_mF6CE051EB914150BEB88244003A263509CD42FDE_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __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.Void UnityEngine.Events.UnityAction`2<System.Char,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m040C95C2E381E1C63DFC1CF4F3FB2FE3B14CD1FB_gshared (UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * __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 UnityEngine.Events.UnityAction`2<System.Char,System.Int32>::Invoke(T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_m89BA5DA46A0426C16799C301270735D738B07F91_gshared (UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * __this, Il2CppChar ___arg00, int32_t ___arg11, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Il2CppChar, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Il2CppChar, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Il2CppChar, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Il2CppChar, int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< Il2CppChar, int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Il2CppChar, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< Il2CppChar, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___arg00) - 1), ___arg11, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, Il2CppChar, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`2<System.Char,System.Int32>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_mE5BB79302F95376E4F878699ABC47CAF63750016_gshared (UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * __this, Il2CppChar ___arg00, int32_t ___arg11, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_2_BeginInvoke_mE5BB79302F95376E4F878699ABC47CAF63750016_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &___arg00);
__d_args[1] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___arg11);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void UnityEngine.Events.UnityAction`2<System.Char,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m34A22E9BBFD434BF1644E36252BDE521D47D1C51_gshared (UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * __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.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m50E7B823E46CB327D49A2D55A761F57472037634_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __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 UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::Invoke(T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_m5AA1F690449F2F9671E0B94633F97A1FAD7E3ED1_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, int32_t ___arg11, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___arg00) - 1), ___arg11, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_mDCEEB031BDBB99CF9F4FD8C66C8764E7145F233E_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, int32_t ___arg11, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_2_BeginInvoke_mDCEEB031BDBB99CF9F4FD8C66C8764E7145F233E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg00);
__d_args[1] = Box(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_il2cpp_TypeInfo_var, &___arg11);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m490BFF59EA4C5D89B467DFF2EBB8294B4D2B625D_gshared (UnityAction_2_t808E43EBC9AA89CEA5830BD187EC213182A02B50 * __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.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m988975393D43562D1485F4253E0D0960EA45BDE1_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __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 UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::Invoke(T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_mBE8D06B5C36F3C91DE37A9D965AEB4B499832596_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg11, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___arg00) - 1), ___arg11, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_mEA01486964659C4609BA96B58825B2E9B851FE10_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg00, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___arg11, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_2_BeginInvoke_mEA01486964659C4609BA96B58825B2E9B851FE10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg00);
__d_args[1] = Box(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE_il2cpp_TypeInfo_var, &___arg11);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m66976206F24D939E2132FAB88213AB25CBC0AEED_gshared (UnityAction_2_t617D40B57FD0E410A99764D18A04CAA0E4CB35D4 * __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.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m8727842F47B6F77FCB70DE281A21C3E1DD2C7B5E_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __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 UnityEngine.Events.UnityAction`2<System.Object,System.Object>::Invoke(T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_mC190ED9AED96E2FE7A68F86FF0DE1AF6B3F8C270_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (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, ___arg00, ___arg11);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11);
}
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), ___arg00, ___arg11);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11);
}
}
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*>(___arg11) - 1), targetMethod);
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg00) - 1), ___arg11, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`2<System.Object,System.Object>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_m61A3E25D9705ECD97BB9634081BFE1F51A11BB72_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___arg00;
__d_args[1] = ___arg11;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m4915ABA44B9B53926A3A694CDF011EF8C7345CD6_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * __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.Void UnityEngine.Events.UnityAction`3<System.Object,System.Int32,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3__ctor_m651D5F00C6EE2A9CA6062F24B5D035E3AC420B15_gshared (UnityAction_3_t8F495B8B0B41EBBD05F7C0A266F5164D7FA777E6 * __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 UnityEngine.Events.UnityAction`3<System.Object,System.Int32,System.Int32>::Invoke(T0,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_Invoke_m187DC25F0CA9BE27006704A22A602F8B58956D8C_gshared (UnityAction_3_t8F495B8B0B41EBBD05F7C0A266F5164D7FA777E6 * __this, RuntimeObject * ___arg00, int32_t ___arg11, int32_t ___arg22, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 == 3)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
else if (___parameterCount != 3)
{
// open
if (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< int32_t, int32_t >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker2< int32_t, int32_t >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker2< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___arg11) - 1), ___arg22, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, int32_t, int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker3< RuntimeObject *, int32_t, int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker3< RuntimeObject *, int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg00) - 1), ___arg11, ___arg22, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`3<System.Object,System.Int32,System.Int32>::BeginInvoke(T0,T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_3_BeginInvoke_m92BA91531F4F7AE3599CCF0BB6A49B34BC9352D5_gshared (UnityAction_3_t8F495B8B0B41EBBD05F7C0A266F5164D7FA777E6 * __this, RuntimeObject * ___arg00, int32_t ___arg11, int32_t ___arg22, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_3_BeginInvoke_m92BA91531F4F7AE3599CCF0BB6A49B34BC9352D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = ___arg00;
__d_args[1] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___arg11);
__d_args[2] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___arg22);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Int32,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_EndInvoke_mFDB050A103FC2F2DAEA4B25D4E8FA74ACBA64EFD_gshared (UnityAction_3_t8F495B8B0B41EBBD05F7C0A266F5164D7FA777E6 * __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.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3__ctor_m5B61C00605D5FD98FE8857541B952C80FFF8F634_gshared (UnityAction_3_tE847F1F2665A491A3D66E446E33C12E88EEB79DA * __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 UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Int32>::Invoke(T0,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_Invoke_mA2C5EAA3DAC0EF861631EB20DF02BF985168E898_gshared (UnityAction_3_tE847F1F2665A491A3D66E446E33C12E88EEB79DA * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, int32_t ___arg22, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 == 3)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
else if (___parameterCount != 3)
{
// open
if (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 *, int32_t >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker2< RuntimeObject *, int32_t >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker2< RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg11) - 1), ___arg22, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg00) - 1), ___arg11, ___arg22, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Int32>::BeginInvoke(T0,T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_3_BeginInvoke_mBA60B03A85F538EDA299D8CE82EBA6FAA2F34733_gshared (UnityAction_3_tE847F1F2665A491A3D66E446E33C12E88EEB79DA * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, int32_t ___arg22, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_3_BeginInvoke_mBA60B03A85F538EDA299D8CE82EBA6FAA2F34733_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = ___arg00;
__d_args[1] = ___arg11;
__d_args[2] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___arg22);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_EndInvoke_mB8AFBBDEFDA5A026F94E2E9D5C7777DD23C3A2A4_gshared (UnityAction_3_tE847F1F2665A491A3D66E446E33C12E88EEB79DA * __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.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3__ctor_mB86D6414884FDC1E91052C11EDE9D2D76F7ECA4F_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __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 UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::Invoke(T0,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_Invoke_m6F58BD0703FA3C41CC7D6F3230771D8B1DF6CEC4_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 == 3)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
else if (___parameterCount != 3)
{
// open
if (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 *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg11) - 1), ___arg22, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg00) - 1), ___arg11, ___arg22, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_3_BeginInvoke_m88F46BFD94198E51067773C687AF1EA4E56BA6C9_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
void *__d_args[4] = {0};
__d_args[0] = ___arg00;
__d_args[1] = ___arg11;
__d_args[2] = ___arg22;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_3_EndInvoke_m61C295D3CAE75DAA73F736514C0F8305F21BF4D4_gshared (UnityAction_3_tFF5D8322DAB4A9502640ED870076B13C311DBDCE * __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.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_4__ctor_m77B1860A1697D777A50B461899187B1F788FED67_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __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 UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::Invoke(T0,T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_4_Invoke_m33FE7C261E18C40BF698970133F4C4AAE221453C_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, RuntimeObject * ___arg33, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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 == 4)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
else if (___parameterCount != 4)
{
// open
if (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))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg11) - 1), ___arg22, ___arg33, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
else
GenericVirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
else
VirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___arg00) - 1), ___arg11, ___arg22, ___arg33, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,T3,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_4_BeginInvoke_m340C3A0B9B1D3D5617E73EFF0AECC0D26BA2434B_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, RuntimeObject * ___arg33, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
void *__d_args[5] = {0};
__d_args[0] = ___arg00;
__d_args[1] = ___arg11;
__d_args[2] = ___arg22;
__d_args[3] = ___arg33;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_4_EndInvoke_mD613D87947DBD4EAA4AFAB2EAA52C64E61B53393_gshared (UnityAction_4_tF927F6A138A00CB05261F7DEA257F9DBA262A3DC * __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.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m55B3D17A5D50746ED6618952C2C745FB5A73BAA7_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m85ADA80CA03B5922F5B656382495EFED45465B72_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m8FD377ED71674BFC261CF0244A416C5C89AFF93D_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Boolean>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m4737379F2E23EA022A5577626A9B77BC652C6C81_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m4737379F2E23EA022A5577626A9B77BC652C6C81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
MethodInfo_t * L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_6;
goto IL_001e;
}
IL_001e:
{
MethodInfo_t * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Boolean>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m85C211C6A8878EB2C829C518B2E2825592A6BAD2_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * L_2 = (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Boolean>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_mB08C5D84E6AF7F4ED076E863ABC8924F3683531F_gshared (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF * L_0 = ___action0;
InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * L_1 = (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *, UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t11E0F272F18CD83EDF205B4A43689B005D10B7BF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m93A9A80D13EE147EB2805A92EFD48453AF727D7F_gshared (UnityEvent_1_t10C429A2DAF73A4517568E494115F7503F9E17EB * __this, bool ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m93A9A80D13EE147EB2805A92EFD48453AF727D7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_009b;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)((InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002f;
}
}
{
InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 * L_6 = V_2;
bool L_7 = ___arg00;
NullCheck((InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)L_6);
VirtActionInvoker1< bool >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(T1) */, (InvokableCall_1_t3C3B0B0B930948588A189C18F589C65343D49493 *)L_6, (bool)L_7);
goto IL_0096;
}
IL_002f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0;
int32_t L_9 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0053;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0053:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0;
int32_t L_15 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_0078;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_InvokeArray_3(L_19);
}
IL_0078:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
bool L_21 = ___arg00;
bool L_22 = L_21;
RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_24 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_25);
}
IL_0095:
{
}
IL_0096:
{
int32_t L_26 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_009b:
{
int32_t L_27 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_28 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28);
int32_t L_29 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_27) < ((int32_t)L_29))? 1 : 0);
bool L_30 = V_8;
if (L_30)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m632B1AC6010416860C58BFFD4788D8A11AEEB089_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m142F8EC4F0B95BE4817D1B8BAB5311BF82761B7B_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m3324210C9047391B2DBB94831C131C6111A43128_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m87D815FEE9AA0E17B7B827751412B54C5BB32B60_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m87D815FEE9AA0E17B7B827751412B54C5BB32B60_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
MethodInfo_t * L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_6;
goto IL_001e;
}
IL_001e:
{
MethodInfo_t * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m5835ECDAF9B756B926230F6D6C9E10F55C02E581_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_2 = (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m8A50FC09BAF3824EA8CE8A51E5EE425D06B1CA60_gshared (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE * L_0 = ___action0;
InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_1 = (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *, UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_tA672F8DCDC82A4F3E991BC74F9F2796AD16679FE *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m2C3D89FA16884071FFCCB2A7CE61A84C80F170F5_gshared (UnityEvent_1_t1238B72D437B572D32DDC7E67B423C2E90691350 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m2C3D89FA16884071FFCCB2A7CE61A84C80F170F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_009b;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)((InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002f;
}
}
{
InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D * L_6 = V_2;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_7 = ___arg00;
NullCheck((InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)L_6);
VirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Invoke(T1) */, (InvokableCall_1_t62804E45EDA037DAA4B294959796F919EDEBA47D *)L_6, (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 )L_7);
goto IL_0096;
}
IL_002f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0;
int32_t L_9 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0053;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0053:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0;
int32_t L_15 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_0078;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_InvokeArray_3(L_19);
}
IL_0078:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_21 = ___arg00;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_22 = L_21;
RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_24 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_25);
}
IL_0095:
{
}
IL_0096:
{
int32_t L_26 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_009b:
{
int32_t L_27 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_28 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28);
int32_t L_29 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_27) < ((int32_t)L_29))? 1 : 0);
bool L_30 = V_8;
if (L_30)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m30F443398054B5E3666B3C86E64A5C0FF97D93FF_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mFCFAC8ACA3F75283268DC2629ADEB5504E8FC0C2_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m0DDD8A7A01D83C10E72C71631F8487FE817B264D_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Int32>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m883CB9322DD397C11303E11CE1D75DE4DAB7A2A1_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m883CB9322DD397C11303E11CE1D75DE4DAB7A2A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
MethodInfo_t * L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_6;
goto IL_001e;
}
IL_001e:
{
MethodInfo_t * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m9F6A762AD5938FB4E433C68A6CAE0E064358B79E_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_2 = (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m042F0FF8A168ACCAC76DFF33398FF72BE89A13D4_gshared (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 * L_0 = ___action0;
InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_1 = (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *, UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t5CF46572372725E6225588C466A7AF5C8597AA79 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m75A79471AE45A1246054BDE3A9BFCEBA14967530_gshared (UnityEvent_1_tB235B5DAD099AC425DC059D10DEB8B97A35E2BBF * __this, int32_t ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m75A79471AE45A1246054BDE3A9BFCEBA14967530_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_009b;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)((InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002f;
}
}
{
InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 * L_6 = V_2;
int32_t L_7 = ___arg00;
NullCheck((InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)L_6);
VirtActionInvoker1< int32_t >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(T1) */, (InvokableCall_1_tB1DAF383EC84453DA99582568ED89C6570E979E9 *)L_6, (int32_t)L_7);
goto IL_0096;
}
IL_002f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0;
int32_t L_9 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0053;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0053:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0;
int32_t L_15 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_0078;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_InvokeArray_3(L_19);
}
IL_0078:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
int32_t L_21 = ___arg00;
int32_t L_22 = L_21;
RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_24 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_25);
}
IL_0095:
{
}
IL_0096:
{
int32_t L_26 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_009b:
{
int32_t L_27 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_28 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28);
int32_t L_29 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_27) < ((int32_t)L_29))? 1 : 0);
bool L_30 = V_8;
if (L_30)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_mF4194343755F31A6DED60B0D7440F095C4BD3203_gshared (UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32Enum>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mE8363C790213266D22FCF15CD7888B6877B69CE1_gshared (UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71 * __this, UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32Enum>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m4B2DEFA282AA624C8AB341A9C0057C1AFF76768A_gshared (UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71 * __this, UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Int32Enum>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_mD224BED27BA52E7AC6F73C03A4993BC4BD3CCA8A_gshared (UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71 * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_mD224BED27BA52E7AC6F73C03A4993BC4BD3CCA8A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
MethodInfo_t * L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_6;
goto IL_001e;
}
IL_001e:
{
MethodInfo_t * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32Enum>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_mDD2D26D8227EA2995329733330EC8E793208DA67_gshared (UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 * L_2 = (InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32Enum>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_mFA0F9A61E964D7C7AEC8BF38C9ABD2E1838ACE0A_gshared (UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD * L_0 = ___action0;
InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 * L_1 = (InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *, UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t8E314CE9A49CA6AB7DD04ED83B96940EEB001BDD *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32Enum>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m737D4B17859A00D896B4A8D187B5EF444DCFD559_gshared (UnityEvent_1_tE94A30F9AFE4AA4FC678798F316885AAF982CE71 * __this, int32_t ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m737D4B17859A00D896B4A8D187B5EF444DCFD559_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_009b;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *)((InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002f;
}
}
{
InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 * L_6 = V_2;
int32_t L_7 = ___arg00;
NullCheck((InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *)L_6);
VirtActionInvoker1< int32_t >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32Enum>::Invoke(T1) */, (InvokableCall_1_t2C92319644AD32CDD1B7383DB623896E8F911FE0 *)L_6, (int32_t)L_7);
goto IL_0096;
}
IL_002f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0;
int32_t L_9 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0053;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0053:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0;
int32_t L_15 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_0078;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_InvokeArray_3(L_19);
}
IL_0078:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
int32_t L_21 = ___arg00;
int32_t L_22 = L_21;
RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_24 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_25);
}
IL_0095:
{
}
IL_0096:
{
int32_t L_26 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_009b:
{
int32_t L_27 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_28 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28);
int32_t L_29 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_27) < ((int32_t)L_29))? 1 : 0);
bool L_30 = V_8;
if (L_30)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`1<System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m246DC0A35C4C4D26AD4DCE093E231B72C66C86ED_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mA73838FBF3836695F5183B32B797E9499BA5E59C_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m3EA4FA20F6DE6E6FC738060875193A99E19AD1C3_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Single>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m0622108A7CD81D5EF2A59382C769DC733EF3530F_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m0622108A7CD81D5EF2A59382C769DC733EF3530F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
MethodInfo_t * L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_6;
goto IL_001e;
}
IL_001e:
{
MethodInfo_t * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Single>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m67C17B30C677E6D59E0477957BC1B3645C39EE0C_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * L_2 = (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Single>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m40926337FC4AF792D319B9B4879DB2A5A8F723BC_gshared (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB * L_0 = ___action0;
InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * L_1 = (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *, UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t50101DC7058B3235A520FF57E827D51694843FBB *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m1DA4CADD93DA296D31E00A263219A99A9E0AFB0E_gshared (UnityEvent_1_t84B4EA1A2A00DEAC63B85AFAA89EBF67CA749DBC * __this, float ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m1DA4CADD93DA296D31E00A263219A99A9E0AFB0E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_009b;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)((InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002f;
}
}
{
InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 * L_6 = V_2;
float L_7 = ___arg00;
NullCheck((InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)L_6);
VirtActionInvoker1< float >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(T1) */, (InvokableCall_1_t13EC6185325262950E00B739E096E4B705195690 *)L_6, (float)L_7);
goto IL_0096;
}
IL_002f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0;
int32_t L_9 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0053;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0053:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0;
int32_t L_15 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_0078;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_InvokeArray_3(L_19);
}
IL_0078:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
float L_21 = ___arg00;
float L_22 = L_21;
RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_24 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_25);
}
IL_0095:
{
}
IL_0096:
{
int32_t L_26 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_009b:
{
int32_t L_27 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_28 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28);
int32_t L_29 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_27) < ((int32_t)L_29))? 1 : 0);
bool L_30 = V_8;
if (L_30)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_mF2353BD6855BD9E925E30E1CD4BC8582182DE0C7_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m69EA39B3DD1F41AAE09CE783C7D03AF61BA91E6B_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m4D54629C431821D2153C7E23584EDD379051B9DE_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m8C7040459D38C21B6CA252658570FF207DFD5634_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m8C7040459D38C21B6CA252658570FF207DFD5634_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
MethodInfo_t * L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_6;
goto IL_001e;
}
IL_001e:
{
MethodInfo_t * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m1443B62E96235B67C0275343AE1E00E5F456E82F_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_2 = (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m46723BEB228E805D70546FE0076C2F7B923334BE_gshared (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 * L_0 = ___action0;
InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_1 = (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *, UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_tB9CC1382F6773F1D7AE2D9938D64C8CE4034F5B0 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_mB4A40E66B8302949068CCFA2E3E1C15F625EA1CD_gshared (UnityEvent_1_t3E6599546F71BCEFF271ED16D5DF9646BD868D7C * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_mB4A40E66B8302949068CCFA2E3E1C15F625EA1CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_009b;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)((InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002f;
}
}
{
InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF * L_6 = V_2;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7 = ___arg00;
NullCheck((InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)L_6);
VirtActionInvoker1< Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Invoke(T1) */, (InvokableCall_1_t194FF118E5E42BBA25E068AB6C4BD62FAF2A4BBF *)L_6, (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 )L_7);
goto IL_0096;
}
IL_002f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0;
int32_t L_9 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0053;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0053:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0;
int32_t L_15 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_0078;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_InvokeArray_3(L_19);
}
IL_0078:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_21 = ___arg00;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_22 = L_21;
RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_24 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_24, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_25);
}
IL_0095:
{
}
IL_0096:
{
int32_t L_26 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_009b:
{
int32_t L_27 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_28 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28);
int32_t L_29 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_28, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_27) < ((int32_t)L_29))? 1 : 0);
bool L_30 = V_8;
if (L_30)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_mD87552C18A41196B69A62A366C8238FC246B151A_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m14DAE292BCF77B088359410E4C12071936DB681D_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m793372F5AF1175F5DD348F908874E7D607B16DBD_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Object>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_mAEF284CEE451CDF002B423EAD1920E36A12A9CF0_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_mAEF284CEE451CDF002B423EAD1920E36A12A9CF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
MethodInfo_t * L_6 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_6;
goto IL_001e;
}
IL_001e:
{
MethodInfo_t * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m7B52283F3C9BA5BFFADCEA8C22119BD2DEF4FD39_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_2 = (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_1_GetDelegate_m38113512C8395BCA851A99D1A947C8C56FF66C45_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * L_0 = ___action0;
InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_1 = (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::Invoke(T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m73C0FE7D4CDD8627332257E8503F2E9862E33C3E_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, RuntimeObject * ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m73C0FE7D4CDD8627332257E8503F2E9862E33C3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_009b;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)((InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002f;
}
}
{
InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF * L_6 = V_2;
RuntimeObject * L_7 = ___arg00;
NullCheck((InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)L_6);
VirtActionInvoker1< RuntimeObject * >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(T1) */, (InvokableCall_1_t09F9436D65A6C1E477AD9997511C4F06F5E9CFCF *)L_6, (RuntimeObject *)L_7);
goto IL_0096;
}
IL_002f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_8 = V_0;
int32_t L_9 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_10 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_8, (int32_t)L_9, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_10, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_11 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_11) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0053;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_13 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_13, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0053:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_14 = V_0;
int32_t L_15 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_16 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_14, (int32_t)L_15, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_16;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_17) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_0078;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_InvokeArray_3(L_19);
}
IL_0078:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
RuntimeObject * L_21 = ___arg00;
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_21);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_21);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_22 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_22);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_22, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_23);
}
IL_0095:
{
}
IL_0096:
{
int32_t L_24 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_009b:
{
int32_t L_25 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_26 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_26);
int32_t L_27 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_26, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_25) < ((int32_t)L_27))? 1 : 0);
bool L_28 = V_8;
if (L_28)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2__ctor_m5B554CF0C475AC7797000D04E2CB8751B27D4D71_gshared (UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>::AddListener(UnityEngine.Events.UnityAction`2<T0,T1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2_AddListener_mF74A5B98088A2375ABBC06CFD4E2CEC84FCBE9E7_gshared (UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C * __this, UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * ___call0, const RuntimeMethod* method)
{
{
UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>::RemoveListener(UnityEngine.Events.UnityAction`2<T0,T1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2_RemoveListener_m03904974FE7C9488BE3FD4EA8EE5322AB0ECC584_gshared (UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C * __this, UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * ___call0, const RuntimeMethod* method)
{
{
UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_2_FindMethod_Impl_m8CD9E3AEB2E49C956C6159A63CDE535EB19CBD3A_gshared (UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_2_FindMethod_Impl_m8CD9E3AEB2E49C956C6159A63CDE535EB19CBD3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_6 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 3)) };
Type_t * L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_8);
MethodInfo_t * L_9 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_6, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_9;
goto IL_002b;
}
IL_002b:
{
MethodInfo_t * L_10 = V_0;
return L_10;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_2_GetDelegate_m8F5DC86E54FB3F5B3EA4AD7FF5FA2F701CDEAEE4_gshared (UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 * L_2 = (InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4));
(( void (*) (InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>::GetDelegate(UnityEngine.Events.UnityAction`2<T0,T1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_2_GetDelegate_m6F2C224934C9C392644CC39A36FD8D0B38096E62_gshared (UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D * L_0 = ___action0;
InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 * L_1 = (InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *, UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_1, (UnityAction_2_t2DBD4C29FA19A55A3BDEF2C78EACA1F8300FC52D *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`2<System.Char,System.Int32>::Invoke(T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2_Invoke_mEB1052C9C47D165F5AD163CF8CD8374706D9E465_gshared (UnityEvent_2_t5304A7BB9DB39BB3BA59CAF408F8EA7341658E2C * __this, Il2CppChar ___arg00, int32_t ___arg11, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_2_Invoke_mEB1052C9C47D165F5AD163CF8CD8374706D9E465_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_00aa;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *)((InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_0030;
}
}
{
InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 * L_6 = V_2;
Il2CppChar L_7 = ___arg00;
int32_t L_8 = ___arg11;
NullCheck((InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *)L_6);
(( void (*) (InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *, Il2CppChar, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((InvokableCall_2_tB1739E5881C4CBF064F4BA8DF2EE6536EF1C3DD6 *)L_6, (Il2CppChar)L_7, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
goto IL_00a5;
}
IL_0030:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_9 = V_0;
int32_t L_10 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_9);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_11 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_9, (int32_t)L_10, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_11, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_12 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_12) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_13 = V_5;
if (!L_13)
{
goto IL_0054;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_14 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_14);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_14, /*hidden argument*/NULL);
goto IL_00a4;
}
IL_0054:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_15 = V_0;
int32_t L_16 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_15);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_17 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_15, (int32_t)L_16, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_17;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_18) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_19 = V_7;
if (!L_19)
{
goto IL_0079;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
__this->set_m_InvokeArray_3(L_20);
}
IL_0079:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
Il2CppChar L_22 = ___arg00;
Il2CppChar L_23 = L_22;
RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), &L_23);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_24);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_24);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
int32_t L_26 = ___arg11;
int32_t L_27 = L_26;
RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), &L_27);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_28);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_28);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_29 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_29);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_29, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_30);
}
IL_00a4:
{
}
IL_00a5:
{
int32_t L_31 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
}
IL_00aa:
{
int32_t L_32 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_33 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_33);
int32_t L_34 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_33, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_32) < ((int32_t)L_34))? 1 : 0);
bool L_35 = V_8;
if (L_35)
{
goto IL_000f;
}
}
{
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 UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2__ctor_mF60EF62AFB15A35F2DD69476A73537390423F21A_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_3((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase__ctor_m8F423B800E573ED81DF59EB55CD88D48E817B101((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::AddListener(UnityEngine.Events.UnityAction`2<T0,T1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2_AddListener_m03A808706EF8B435537D817F2A43FD453E639D6C_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * ___call0, const RuntimeMethod* method)
{
{
UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * L_0 = ___call0;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_1 = (( BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * (*) (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_AddCall_mB4825708CFE71BBF9B167EB16FC911CFF95D101C((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::RemoveListener(UnityEngine.Events.UnityAction`2<T0,T1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2_RemoveListener_mE340477D10D41DB3D0011507846998A5369C8E9F_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * ___call0, const RuntimeMethod* method)
{
{
UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * L_0 = ___call0;
NullCheck((Delegate_t *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline((Delegate_t *)L_0, /*hidden argument*/NULL);
UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * L_2 = ___call0;
NullCheck((Delegate_t *)L_2);
MethodInfo_t * L_3 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227((Delegate_t *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
UnityEventBase_RemoveListener_m0B091A723044E4120D592AC65CBD152AC3DF929E((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::FindMethod_Impl(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_2_FindMethod_Impl_m9DEDA5637D671AC58D580000A01B4B335B9923F0_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, String_t* ___name0, Type_t * ___targetObjType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_2_FindMethod_Impl_m9DEDA5637D671AC58D580000A01B4B335B9923F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
Type_t * L_0 = ___targetObjType1;
String_t* L_1 = ___name0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_2;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_6 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_3;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 3)) };
Type_t * L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_8);
MethodInfo_t * L_9 = UnityEventBase_GetValidMethodInfo_mBA413E99550A6AD8B36F5BEB8682B1536E976C36((Type_t *)L_0, (String_t*)L_1, (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)L_6, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_9;
goto IL_002b;
}
IL_002b:
{
MethodInfo_t * L_10 = V_0;
return L_10;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_2_GetDelegate_m8F25D40B052080876D1C4762AA6E7E6703D0249E_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 * L_2 = (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4));
(( void (*) (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_2;
goto IL_000b;
}
IL_000b:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::GetDelegate(UnityEngine.Events.UnityAction`2<T0,T1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * UnityEvent_2_GetDelegate_m28F0101FF8793DA3B977EFBD532420DDB28CBD6B_gshared (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_0 = NULL;
{
UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD * L_0 = ___action0;
InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 * L_1 = (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *, UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_1, (UnityAction_2_tEA79D6DFB08A416619D920D80581B3A7C1376CCD *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
V_0 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_1;
goto IL_000a;
}
IL_000a:
{
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::Invoke(T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_2_Invoke_mBF66265092F853A13F5698ED2B62F0ADA48E4F0A_gshared (UnityEvent_2_t28592AD5CBF18EB6ED3BE1B15D588E132DA53582 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_2_Invoke_mBF66265092F853A13F5698ED2B62F0ADA48E4F0A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 * V_2 = NULL;
bool V_3 = false;
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * V_4 = NULL;
bool V_5 = false;
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
{
NullCheck((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this);
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_0 = UnityEventBase_PrepareInvoke_m999D0F37E0D88375576323D30B67ED7FDC7A779D((UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB *)__this, /*hidden argument*/NULL);
V_0 = (List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_0;
V_1 = (int32_t)0;
goto IL_00aa;
}
IL_000f:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_3 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_2 = (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)((InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 * L_4 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_0030;
}
}
{
InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 * L_6 = V_2;
RuntimeObject * L_7 = ___arg00;
RuntimeObject * L_8 = ___arg11;
NullCheck((InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)L_6);
(( void (*) (InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((InvokableCall_2_t652C936CD7F97AA02F850799566B7AAD951D7F90 *)L_6, (RuntimeObject *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
goto IL_00a5;
}
IL_0030:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_9 = V_0;
int32_t L_10 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_9);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_11 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_9, (int32_t)L_10, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_4 = (InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)IsInst((RuntimeObject*)L_11, InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741_il2cpp_TypeInfo_var));
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_12 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_12) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_13 = V_5;
if (!L_13)
{
goto IL_0054;
}
}
{
InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 * L_14 = V_4;
NullCheck((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_14);
InvokableCall_Invoke_mC0E0B4D35F0795DCF2626DC15E5E92417430AAD7((InvokableCall_tFCDA359B453E64E6655CE5FF57315417F6EBB741 *)L_14, /*hidden argument*/NULL);
goto IL_00a4;
}
IL_0054:
{
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_15 = V_0;
int32_t L_16 = V_1;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_15);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_17 = List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_15, (int32_t)L_16, /*hidden argument*/List_1_get_Item_mBB4A194FB56DDFDE48C8A7CCB1124DB0B00BA90D_RuntimeMethod_var);
V_6 = (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_17;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_18) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_19 = V_7;
if (!L_19)
{
goto IL_0079;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
__this->set_m_InvokeArray_3(L_20);
}
IL_0079:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
RuntimeObject * L_22 = ___arg00;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_22);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
RuntimeObject * L_24 = ___arg11;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_24);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_24);
BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 * L_25 = V_6;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_26 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_m_InvokeArray_3();
NullCheck((BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_25);
VirtActionInvoker1< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_tEE2D6A7BA0C533CE83516B9CB652FB0982400784 *)L_25, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_26);
}
IL_00a4:
{
}
IL_00a5:
{
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_00aa:
{
int32_t L_28 = V_1;
List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD * L_29 = V_0;
NullCheck((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_29);
int32_t L_30 = List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_inline((List_1_tE59E678A3E54798EF83514F25BE9C5E3AAC595BD *)L_29, /*hidden argument*/List_1_get_Count_m16FFAC86792F8631507D4AA54DAD073DBD95E6BF_RuntimeMethod_var);
V_8 = (bool)((((int32_t)L_28) < ((int32_t)L_30))? 1 : 0);
bool L_31 = V_8;
if (L_31)
{
goto IL_000f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Delegate_get_Target_mA4C35D598EE379F0F1D49EA8670620792D25EAB1_inline (Delegate_t * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_target_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __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_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3);
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return L_0;
}
}
|
b5458a341e3e0e6005d76e7220504c7eeca5b05e | 12d9e3ed40f1d5706932a3e44e8a08ca185b52cf | /NinjaCoding/32 - Juego del límite.cc | 53363aa6353e9ea8d89e79e399607f7be7981686 | [] | no_license | SebastianJM/Competitive-Programming | 25f83ceb607fcc3d95fa35c5f06cb7894413b857 | 5cd9de9485ae3f882a7c85292a77e5d662fce08f | refs/heads/master | 2020-03-23T21:25:42.970408 | 2018-11-20T05:06:46 | 2018-11-20T05:06:46 | 142,105,914 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 340 | cc | 32 - Juego del límite.cc | #include <iostream>
#include <algorithm>
#include <math.h>
using namespace std;
int main()
{
int n,t,l,carta,pa,pb;
while(cin>>n>>t>>l)
{
n--;
pa=pb=0;
for(int i=0;i<n;i++)
{
cin>>carta;
if(abs(t-carta)<=l)
{
i%2==0?pa+=abs(t-carta):pb+=abs(t-carta);
t=carta;
}
}
cout<<pa<<" "<<pb<<endl;
}
return 0;
} |
bab04093830d69ab7b8ce21babc13ed02d17f7a7 | f1005a175332908543546c8829588ee8893ec798 | /third-lab/MatrixProfileFormat.h | 7f7188244a85bd060bffcd9ef89ac1f28edffd6e | [] | no_license | Dmozze/optimization-methods | 920a8137b058808977a48ece69f8796e384f61b9 | bc664a3a940095e3c330a9026428989d4f575e2b | refs/heads/master | 2023-05-15T09:44:38.159907 | 2021-06-06T21:32:58 | 2021-06-06T21:32:58 | 340,594,452 | 0 | 0 | null | 2021-03-02T16:18:54 | 2021-02-20T07:45:37 | C++ | UTF-8 | C++ | false | false | 1,491 | h | MatrixProfileFormat.h | #pragma once
#include <vector>
#include <algebra/Vector.h>
#include <algebra/Matrix.h>
class MatrixProfileFormat {
protected:
using T = long double;
using AL = std::vector<T>;
using AU = AL;
using Profile = std::vector<int>;
using Diag = AL;
T zero = 0.0L;
Profile profile{};
private:
AL al{};
AU au{};
Diag diag;
template <typename AL_OR_AU>
MatrixProfileFormat::T get_el_in_matrix(size_t i, size_t j, AL_OR_AU& al_or_au) const;
template <typename Type>
Type mul_vec(Type const& vec, T value) const {
Type newVec = vec;
for (auto& i : newVec) {
i *= value;
}
return newVec;
}
template <typename AL_OR_AU>
void set_value_in_matrix(size_t i, size_t j, AL_OR_AU& al_or_au, T value);
MatrixProfileFormat toProfileFormat(Matrix matrix);
public:
MatrixProfileFormat(AL al, AU au, Diag diag, Profile profile);
explicit MatrixProfileFormat(Matrix matrix);
size_t dim() const;
T operator()(size_t i, size_t j) const;
void set(size_t i, size_t j, T value);
int number_of_elements(size_t i);
MatrixProfileFormat operator+(MatrixProfileFormat& a);
MatrixProfileFormat operator-();
MatrixProfileFormat operator-(MatrixProfileFormat& matrix1);
MatrixProfileFormat operator*(T value) const;
Vector operator*(Vector const& vector) const;
std::vector<long double> operator*(std::vector<long double> const& vector) const;
};
|
f853b0c2d8eb40377d903ad65aecb9c9dd77c3c2 | 727c14f98e0a6973cfcd780983d076cfa3bb3b6d | /src/bot_new_version.cpp | 395b0609d7077cc9424c74aff66cb318e5e41708 | [] | no_license | ashwin1907/Multiplayer-Carrom | 4cb13f7fe1ad95112f3c6f633a4dd41cd5b103d4 | 32b0f0d7e16029903f25abebe421f55402a61595 | refs/heads/master | 2021-01-01T05:39:45.982060 | 2014-11-10T14:31:30 | 2014-11-10T14:31:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,689 | cpp | bot_new_version.cpp | struct sh_para
{
double ini_x;
double ini_y;
double fin_x;
double fin_y;
int hole;
};
int is_ball_on_board ( int i )
{
if ( Arr[i].radius < 0 )
return 0;
else
return 1;
}
double pos = 0.7;
double hole_arr0[4][2] = { { - 0.89, 0.89 }, { 0.89, 0.89 }, { 0.89, - 0.89 }, { - 0.89, - 0.89 } };
double hole_arr1[4][2] = { { 0.89, 0.89 }, { 0.89, - 0.89 }, { - 0.89, - 0.89 }, { - 0.89, 0.89 } };
double hole_arr2[4][2] = { { 0.89, - 0.89 }, { - 0.89, - 0.89 }, { - 0.89, 0.89 }, { 0.89, 0.89 } };
double hole_arr3[4][2] = { { - 0.89, - 0.89 }, { - 0.89, 0.89 }, { 0.89, 0.89 }, { 0.89, - 0.89 } };
double valid_len = 0.6;
sh_para check_for_headshot( int i ) // Checking for a head shot
{
sh_para fail;
fail.ini_x = -2.0;
fail.ini_y = -2.0;
fail.fin_x = -2.0;
fail.fin_y = -2.0;
double x2 = Arr[i].x;
double y2 = Arr[i].y;
//////////////////////////////////////////////////////////////////////
if ( turn == 0 )
{
if ( ( ( - pos - 0.09 ) <= y2 ) && ( y2<= ( - pos + 0.09 ) ) )
return fail;
int j = 0;
for ( j; j<4; j++ )
{
double y1 = hole_arr0[j][1];
if ( ( y2 + pos ) * ( y1 ) < 0 )
continue;
double x1 = hole_arr0[j][0];
double x = x2 + ( - pos - y2 ) * ( x2 - x1 ) / ( y2 - y1 );
if ( ( x < valid_len ) && ( x > - valid_len ) )
{
int counter = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x3 = Arr[k].x;
double y3 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( ( y3 + pos ) * y1 < 0 ) )
{counter++; continue;}
else
{
double temp1 = sqrt ( ( y2 - y1 ) * ( y2 - y1 ) + ( x2 - x1 ) * ( x2 - x1 ) );
double temp2 = x3 * ( y2 - y1 ) - y3 * ( x2 - x1 ) + y1 * x2 - y2 * x1;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{counter++; continue;}
else
break;
}
}
if ( counter == N )
{
sh_para a;
a.ini_x = x;
a.ini_y = - pos;
a.fin_x = hole_arr0[j][0];
a.fin_y = hole_arr0[j][1];
a.hole = j;
return a;
}
}
else
continue;
}
}
//////////////////////////////////////////////////////////////////////////////////
else if ( turn == 1 )
{
if ( ( ( - pos - 0.09 ) <= x2 ) && ( x2<= ( - pos + 0.09 ) ) )
return fail;
int j = 0;
for ( j; j<4; j++ )
{
double x1 = hole_arr1[j][0];
if ( ( x2 + pos ) * x1 < 0 )
continue;
double y1 = hole_arr1[j][1];
double y = y2 + ( - pos - x2 ) * ( y2 - y1 ) / ( x2 - x1 );
if ( ( y < valid_len ) && ( y > - valid_len ) )
{
int counter = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x3 = Arr[k].x;
double y3 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( ( x3 + pos ) * x1 < 0 ) )
{counter++; continue;}
else
{
double temp1 = sqrt ( ( y2 - y1 ) * ( y2 - y1 ) + ( x2 - x1 ) * ( x2 - x1 ) );
double temp2 = x3 * ( y2 - y1 ) - y3 * ( x2 - x1 ) + y1 * x2 - y2 * x1;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{counter++; continue;}
else
break;
}
}
if ( counter == N )
{
sh_para a;
a.ini_x = - pos;
a.ini_y = y;
a.fin_x = hole_arr1[j][0];
a.fin_y = hole_arr1[j][1];
a.hole = j;
return a;
}
}
else
continue;
}
}
//////////////////////////////////////////////////////////////////////////////////////////
else if ( turn == 2 )
{
if ( ( ( pos - 0.09 ) <= y2 ) && ( y2<= ( pos + 0.09 ) ) )
return fail;
int j = 0;
for ( j; j<4; j++ )
{
double y1 = hole_arr2[j][1];
if ( - ( y2 - pos ) * ( - y1 ) < 0 )
continue;
double x1 = hole_arr2[j][0];
double x = x2 + ( pos - y2 ) * ( x2 - x1 ) / ( y2 - y1 );
if ( ( x < valid_len ) && ( x > - valid_len ) )
{
int counter = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x3 = Arr[k].x;
double y3 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( ( y3 - pos ) * y1 < 0 ) )
{counter++; continue;}
else
{
double temp1 = sqrt ( ( y2 - y1 ) * ( y2 - y1 ) + ( x2 - x1 ) * ( x2 - x1 ) );
double temp2 = x3 * ( y2 - y1 ) - y3 * ( x2 - x1 ) + y1 * x2 - y2 * x1;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{counter++; continue;}
else
break;
}
}
if ( counter == N )
{
sh_para a;
a.ini_x = x;
a.ini_y = pos;
a.fin_x = hole_arr2[j][0];
a.fin_y = hole_arr2[j][1];
a.hole = j;
return a;
}
}
else
continue;
}
}
/////////////////////////////////////////////////////////////////////////////////
else if ( turn == 3 )
{
if ( ( ( pos - 0.09 ) <= x2 ) && ( x2<= ( pos + 0.09 ) ) )
return fail;
int j = 0;
for ( j; j<4; j++ )
{
double x1 = hole_arr3[j][0];
if ( ( x2 - pos ) * ( x1 ) < 0 )
continue;
double y1 = hole_arr3[j][1];
double y = y2 + ( pos - x2 ) * ( y2 - y1 ) / ( x2 - x1 );
if ( ( y < valid_len ) && ( y > - valid_len ) )
{
int counter = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x3 = Arr[k].x;
double y3 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( ( x3 - pos ) * x1 < 0 ) )
{counter++; continue;}
else
{
double temp1 = sqrt ( ( y2 - y1 ) * ( y2 - y1 ) + ( x2 - x1 ) * ( x2 - x1 ) );
double temp2 = x3 * ( y2 - y1 ) - y3 * ( x2 - x1 ) + y1 * x2 - y2 * x1;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{counter++; continue;}
else
break;
}
}
if ( counter == N )
{
sh_para a;
a.ini_x = pos;
a.ini_y = y;
a.fin_x = hole_arr3[j][0];
a.fin_y = hole_arr3[j][1];
a.hole = j;
return a;
}
}
else
continue;
}
}
return fail;
}
sh_para check_for_cutshot( int i ) // Checking for a cutshot
{
sh_para fail;
fail.ini_x = -2.0;
fail.ini_y = -2.0;
fail.fin_x = -2.0;
fail.fin_y = -2.0;
double x2 = Arr[i].x;
double y2 = Arr[i].y;
double x1;
double y1;
sh_para a;
a.ini_y = - pos;
if ( turn == 0 )
{
if ( ( x2 >= 0 ) && ( y2 > - pos + 0.09 ) )
{
x1 = hole_arr0[1][0];
y1 = hole_arr0[1][1];
if ( ( -159.0 / 89.0 * x2 + y2 + pos ) >= 0 )
a.ini_x = - valid_len;
else
a.ini_x = valid_len;
a.hole = 1;
}
else if ( x2 >=0 )
{
x1 = hole_arr0[2][0];
y1 = hole_arr0[2][1];
a.ini_x = - valid_len;
a.hole = 2;
}
else if ( ( x2 < 0 ) && ( y2 > - pos + 0.09 ) )
{
x1 = hole_arr0[0][0];
y1 = hole_arr0[0][1];
if ( ( 159.0 / 89.0 * x2 + y2 + pos ) >= 0 )
a.ini_x = valid_len;
else
a.ini_x = - valid_len;
a.hole = 0;
}
else
{
x1 = hole_arr0[3][0];
y1 = hole_arr0[3][1];
a.ini_x = valid_len;
a.hole = 3;
}
double dis = sqrt ( ( x2 - x1 ) * ( x2 - x1 ) + ( y2 - y1 ) * ( y2 - y1 ) );
double d1 = Arr[i].radius + Arr[N].radius;
double x4 = ( x2 * ( dis + d1 ) - d1 * x1 ) / dis;
double y4 = ( y2 * ( dis + d1 ) - d1 * y1 ) / dis;
int counter1 = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
double x3 = a.ini_x;
double y3 = a.ini_y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( x5 - x4 ) * x1 > 0 || ( x3 - x5 ) * x1 > 0 )
{ counter1++; continue; }
else
{
double temp1 = sqrt ( ( y4 - y3 ) * ( y4 - y3 ) + ( x4 - x3 ) * ( x4 - x3 ) );
double temp2 = x5 * ( y4 - y3 ) - y5 * ( x4 - x3 ) - x3 * y4 + y3 * x4;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter1++; continue; }
else
break;
}
}
int counter2 = 0;
k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( x2 - x5 ) * x1 > 0 )
{ counter2++; continue; }
else
{
double temp1 = sqrt ( ( y1 - y2 ) * ( y1 - y2 ) + ( x1 - x2 ) * ( x1 - x2 ) );
double temp2 = x5 * ( y1 - y2 ) - y5 * ( x1 - x2 ) - x2 * y1 + x1 * y2;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter2++; continue; }
else
break;
}
}
if ( ( counter1 == N ) && ( counter2 == N ) )
{
a.ini_y = - pos;
a.fin_x = x4;
a.fin_y = y4;
}
else
return fail;
}
//////////////////////////////////////////////////////////////////////////
else if ( turn == 1 )
{
if ( ( y2 <= 0 ) && ( x2 + pos - 0.09 >= 0 ) )
{
x1 = hole_arr1[1][0];
y1 = hole_arr1[1][1];
if ( ( 159.0 / 89.0 * y2 + x2 + pos ) >= 0 )
a.ini_y = valid_len;
else
a.ini_y = - valid_len;
a.hole = 1;
}
else if ( y2 <= 0 )
{
x1 = hole_arr1[2][0];
y1 = hole_arr1[2][1];
a.ini_y = valid_len;
a.hole = 2;
}
else if ( ( y2 > 0 ) && ( x2 + pos - 0.09 >= 0 ) )
{
x1 = hole_arr1[0][0];
y1 = hole_arr1[0][1];
if ( ( - 159.0 / 89.0 * y2 + x2 + pos ) >= 0 )
a.ini_y = - valid_len;
else
a.ini_y = valid_len;
a.hole = 0;
}
else
{
x1 = hole_arr1[3][0];
y1 = hole_arr1[3][1];
a.ini_x = - valid_len;
a.hole = 3;
}
double dis = sqrt ( ( x2 - x1 ) * ( x2 - x1 ) + ( y2 - y1 ) * ( y2 - y1 ) );
double d1 = Arr[i].radius + Arr[N].radius;
double x4 = ( x2 * ( dis + d1 ) - d1 * x1 ) / dis;
double y4 = ( y2 * ( dis + d1 ) - d1 * y1 ) / dis;
a.ini_x = - pos;
int counter1 = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
double x3 = a.ini_x;
double y3 = a.ini_y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( y4 - y5 ) * y1 < 0 || ( y5 - y3 ) * y1 < 0 )
{ counter1++; continue; }
else
{
double temp1 = sqrt ( ( y4 - y3 ) * ( y4 - y3 ) + ( x4 - x3 ) * ( x4 - x3 ) );
double temp2 = x5 * ( y4 - y3 ) - y5 * ( x4 - x3 ) - x3 * y4 + y3 * x4;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter1++; continue; }
else
break;
}
}
int counter2 = 0;
k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( y5 - y2 ) * y1 < 0 )
{ counter2++; continue; }
else
{
double temp1 = sqrt ( ( y1 - y2 ) * ( y1 - y2 ) + ( x1 - x2 ) * ( x1 - x2 ) );
double temp2 = x5 * ( y1 - y2 ) - y5 * ( x1 - x2 ) - x2 * y1 + x1 * y2;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter2++; continue; }
else
break;
}
}
if ( ( counter1 == N ) && ( counter2 == N ) )
{
a.ini_x = - pos;
a.fin_x = x4;
a.fin_y = y4;
}
else
return fail;
}
//////////////////////////////////////////////////////////////////////////////////
else if ( turn == 2 )
{
if ( ( x2 <= 0 ) && ( y2 < pos - 0.09 ) )
{
x1 = hole_arr2[1][0];
y1 = hole_arr2[1][1];
if ( ( 159.0 / 89.0 * x2 - y2 + pos ) >= 0 )
a.ini_x = valid_len;
else
a.ini_x = - valid_len;
a.hole = 1;
}
else if ( x2 <=0 )
{
x1 = hole_arr2[2][0];
y1 = hole_arr2[2][1];
a.ini_x = valid_len;
a.hole = 2;
}
else if ( ( x2 > 0 ) && ( y2 < pos - 0.09 ) )
{
x1 = hole_arr2[0][0];
y1 = hole_arr2[0][1];
if ( ( - 159.0 / 89.0 * x2 - y2 + pos ) >= 0 )
a.ini_x = - valid_len;
else
a.ini_x = valid_len;
a.hole = 0;
}
else
{
x1 = hole_arr2[3][0];
y1 = hole_arr2[3][1];
a.ini_x = - valid_len;
a.hole = 3;
}
double dis = sqrt ( ( x2 - x1 ) * ( x2 - x1 ) + ( y2 - y1 ) * ( y2 - y1 ) );
double d1 = Arr[i].radius + Arr[N].radius;
double x4 = ( x2 * ( dis + d1 ) - d1 * x1 ) / dis;
double y4 = ( y2 * ( dis + d1 ) - d1 * y1 ) / dis;
a.ini_y = pos;
int counter1 = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
double x3 = a.ini_x;
double y3 = a.ini_y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( x4 - x5 ) * x1 < 0 || ( x5 - x3 ) * x1 < 0 )
{ counter1++; continue; }
else
{
double temp1 = sqrt ( ( y4 - y3 ) * ( y4 - y3 ) + ( x4 - x3 ) * ( x4 - x3 ) );
double temp2 = x5 * ( y4 - y3 ) - y5 * ( x4 - x3 ) - x3 * y4 + y3 * x4;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter1++; continue; }
else
break;
}
}
int counter2 = 0;
k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( x5 - x2 ) * x1 < 0 )
{ counter2++; continue; }
else
{
double temp1 = sqrt ( ( y1 - y2 ) * ( y1 - y2 ) + ( x1 - x2 ) * ( x1 - x2 ) );
double temp2 = x5 * ( y1 - y2 ) - y5 * ( x1 - x2 ) - x2 * y1 + x1 * y2;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter2++; continue; }
else
break;
}
}
if ( ( counter1 == N ) && ( counter2 == N ) )
{
a.ini_y = pos;
a.fin_x = x4;
a.fin_y = y4;
}
else
return fail;
}
//////////////////////////////////////////////////////////////////////////
else
{
if ( ( y2 >= 0 ) && ( x2 < pos - 0.09 ) )
{
x1 = hole_arr3[1][0];
y1 = hole_arr3[1][1];
if ( ( -159.0 / 89.0 * y2 - x2 + pos ) >= 0 )
a.ini_y = - valid_len;
else
a.ini_y = valid_len;
a.hole = 1;
}
else if ( y2 >=0 )
{
x1 = hole_arr3[2][0];
y1 = hole_arr3[2][1];
a.ini_y = - valid_len;
a.hole = 2;
}
else if ( ( y2 < 0 ) && ( x2 < pos - 0.09 ) )
{
x1 = hole_arr3[0][0];
y1 = hole_arr3[0][1];
if ( ( 159.0 / 89.0 * y2 - x2 + pos ) >= 0 )
a.ini_y = valid_len;
else
a.ini_y = - valid_len;
a.hole = 0;
}
else
{
x1 = hole_arr3[3][0];
y1 = hole_arr3[3][1];
a.ini_y = valid_len;
a.hole = 3;
}
double dis = sqrt ( ( x2 - x1 ) * ( x2 - x1 ) + ( y2 - y1 ) * ( y2 - y1 ) );
double d1 = Arr[i].radius + Arr[N].radius;
double x4 = ( x2 * ( dis + d1 ) - d1 * x1 ) / dis;
double y4 = ( y2 * ( dis + d1 ) - d1 * y1 ) / dis;
a.ini_x = pos;
int counter1 = 0;
int k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
double x3 = a.ini_x;
double y3 = a.ini_y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( y5 - y4 ) * y1 > 0 || ( y3 - y5 ) * y1 > 0 )
{ counter1++; continue; }
else
{
double temp1 = sqrt ( ( y4 - y3 ) * ( y4 - y3 ) + ( x4 - x3 ) * ( x4 - x3 ) );
double temp2 = x5 * ( y4 - y3 ) - y5 * ( x4 - x3 ) - x3 * y4 + y3 * x4;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter1++; continue; }
else
break;
}
}
int counter2 = 0;
k = 0;
for ( k; k<N; k++ )
{
double x5 = Arr[k].x;
double y5 = Arr[k].y;
if ( ( is_ball_on_board(k) == 0 ) || ( k == i ) || ( y2 - y5 ) * y1 > 0 )
{ counter2++; continue; }
else
{
double temp1 = sqrt ( ( y1 - y2 ) * ( y1 - y2 ) + ( x1 - x2 ) * ( x1 - x2 ) );
double temp2 = x5 * ( y1 - y2 ) - y5 * ( x1 - x2 ) - x2 * y1 + x1 * y2;
double temp3 = abs ( temp2 ) / temp1;
if ( temp3 >= 0.09 )
{ counter2++; continue; }
else
break;
}
}
if ( ( counter1 == N ) && ( counter2 == N ) )
{
a.ini_x = pos;
a.fin_x = x4;
a.fin_y = y4;
}
else
return fail;
}
return a;
}
void shoot ( double a, double b, double c, double dd, int e, int f ) // Positions the striker and shoot in the required direction
{
double cos0, sin0;
double temp = sqrt ( ( c - a ) * ( c - a ) + ( dd - b ) * ( dd - b ) );
double temp1 = abs ( ( c - a ) / temp );
double temp2 = abs ( ( dd - b ) / temp );
if ( c >= a )
cos0 = temp1;
else
cos0 = -temp1;
if ( dd >= b )
sin0 = temp2;
else
sin0 = -temp2;
double d_factor;
if ( difficulty == 2 )
d_factor = 1.0;
else if ( difficulty == 1)
{
srand(time(NULL));
d_factor = 0.96 + 8.0 * ( rand()%100 ) / 10000;
}
else
{
srand(time(NULL));
d_factor = 0.92 + 16.0 * ( rand()%100 ) / 10000;
}
Arr[N].x = a;
Arr[N].y = b;
if ( e == -1 )
{
Arr[N].vx = 8 * aimlen * cos0;
Arr[N].vy = 8 * aimlen * sin0;
}
if ( f == 0 )
{
if ( e < 2 )
{
Arr[N].vx = 5.5 * aimlen * cos0 * d_factor;
Arr[N].vy = 5.5 * aimlen * sin0;
}
else
{
Arr[N].vx = 5.5 * aimlen_back * cos0 * d_factor;
Arr[N].vy = 5.5 * aimlen_back * sin0;
}
}
else
{
if ( e < 2 )
{
Arr[N].vx = 7 * aimlen * cos0 * d_factor;
Arr[N].vy = 7 * aimlen * sin0;
}
else
{
Arr[N].vx = 7 * aimlen_back * cos0 * d_factor;
Arr[N].vy = 7 * aimlen_back * sin0;
}
}
}
int head_flag1 = 0;
int head_flag2 = 0;
void bot_job() // Algorithm for the computer player
{
Arr[N].radius=0.05;
head_flag1 = 0;
head_flag2 = 0;
int i = 0;
for (i; i<N; i++)
{
if ( is_ball_on_board(i) == 0 )
continue;
sh_para a = check_for_headshot(i);
if ( a.ini_y != - 2.0 )
{
shoot( a.ini_x, a.ini_y, a.fin_x, a.fin_y, a.hole, 0 );
head_flag1 = 1;
break;
}
}
if ( head_flag1 != 1 )
{
i = 0;
for (i; i<N; i++)
{
if ( is_ball_on_board(i) == 0 )
continue;
sh_para b = check_for_cutshot(i);
if ( b.ini_y != - 2.0)
{
shoot ( b.ini_x, b.ini_y, b.fin_x, b.fin_y, b.hole, 1 );
head_flag2 = 1;
break;
}
else
continue;
}
}
if ( head_flag1 !=1 && head_flag2 != 1 )
{
i = 0;
for ( i; i<N; i++ )
{
if ( is_ball_on_board(i) == 0 )
continue;
if ( turn == 0 )
shoot ( valid_len , - pos, Arr[i].x, Arr[i].y, -1, 1 );
else if ( turn == 1 )
shoot ( - pos, - valid_len, Arr[i].x, Arr[i].y, -1, 1 );
else if ( turn == 2 )
shoot ( valid_len, pos, Arr[i].x, Arr[i].y, -1, 1 );
else
shoot ( pos, valid_len, Arr[i].x, Arr[i].y, -1, 1 );
break;
}
}
if(network==1)
{
int n1=write(sockfd,&Arr[N],sizeof(Arr[N]));
if(svr==1)
{
if(players==4)
{
n1=write(sockfd1,&Arr[N],sizeof(Arr[N]));
n1=write(sockfd2,&Arr[N],sizeof(Arr[N]));
}
}
}
clickl=2;
}
|
afbe99b5f2e91d42a429d36863fff880350692b8 | ab686eb3a176b5845919d80c66662f94624ecc05 | /REVISION DSA/Hashing/Count triplets with same array xor/code.cpp | 8d43c97aef145880537b71b87b4557f2735aabb5 | [] | no_license | chiragasawa/interview-prep | 341be6be58159a75b91c3ca3ec572c371a7c2caf | 0200ba04d9cc46f04c33f20276b77f49825ea091 | refs/heads/main | 2023-09-03T07:59:09.658756 | 2021-10-19T05:16:44 | 2021-10-19T05:16:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 701 | cpp | code.cpp | class Solution {
public:
int countTriplets(vector<int>& arr) {
map<int,vector<int>>mp;
// store the positions of xor values;
int ans= 0 ;
int xr = 0 ;
mp[0].push_back(-1);
int n=arr.size();
for(int i = 0 ; i < n ; ++i){
xr = xr ^ arr[i];
if(mp.find(xr)!=mp.end()){
for(auto k : mp[xr]){
ans = ans + (i - k ) - 1;
}
}
mp[xr].push_back(i);
}
return ans;
}
};
|
2b5e538ba20aa8d3fb77fe16dcae38e1d646667b | 96976a2c205d679261aa6ff6cd0db286c43ee350 | /src/revlanguage/datatypes/evolution/trees/RlTopology.h | 99e6a509b22ee7a405629a5421bb1ec58c33cd99 | [] | no_license | sundsx/RevBayes | f99305df6b72bd70039b046d5131c76557e53366 | 13e59c59512377783673d3b98c196e8eda6fedee | refs/heads/master | 2020-04-06T06:29:46.557485 | 2014-07-26T14:26:57 | 2014-07-26T14:26:57 | 36,248,250 | 0 | 1 | null | 2015-05-25T18:44:13 | 2015-05-25T18:44:13 | null | UTF-8 | C++ | false | false | 2,665 | h | RlTopology.h | /**
* @file
* This file contains the declaration of a Topology, which is
* the class that holds the topological structure of a tree.
*
* @brief Declaration of Topology
*
* (c) Copyright 2009-
* @date Last modified: $Date: $
* @author The RevBayes Development Core Team
* @license GPL version 3
*
* $Id$
*/
#ifndef RlTopology_H
#define RlTopology_H
#include "ModelObject.h"
#include "Topology.h"
#include <set>
#include <string>
#include <vector>
namespace RevLanguage {
class Topology : public ModelObject<RevBayesCore::Topology> {
public:
Topology(void); //!< Constructor requires character type
Topology(RevBayesCore::Topology *v); //!< Constructor requires character type
Topology(const RevBayesCore::Topology &v); //!< Constructor requires character type
Topology(RevBayesCore::TypedDagNode<RevBayesCore::Topology> *n); //!< Constructor requires character type
Topology(const Topology& d); //!< Constructor requires character type
typedef RevBayesCore::Topology valueType;
// Basic utility functions
Topology* clone(void) const; //!< Clone object
static const std::string& getClassType(void); //!< Get Rev type
static const TypeSpec& getClassTypeSpec(void); //!< Get class type spec
const TypeSpec& getTypeSpec(void) const; //!< Get language type of the object
// Member method inits
const MethodTable& getMethods(void) const; //!< Get methods
RevPtr<Variable> executeMethod(const std::string& name, const std::vector<Argument>& args); //!< Override to map member methods to internal functions
};
}
#endif
|
03f6db9fb03e45bcf2e7f010ee61e17c859d130f | 4875de333a61b497a70c68510293ebdc5f7653f8 | /include/TA/Common/zcta010.inl | 3bcdb8477e21d34fe59306b537b4e5dd58913157 | [] | no_license | dimroc/sunborn_igf | 35d69a88b8831f97c1eb767ffd3a1ad763c1b27c | 8a160c805f10ed1501497f6350733bb933288ef2 | refs/heads/master | 2020-12-24T13:44:57.308822 | 2014-04-13T16:58:08 | 2014-04-13T17:01:27 | 5,555,521 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 544 | inl | zcta010.inl | //---------------------------------------------------------------------------------
// File Name: zcta010.inl
//
// Copyright (C) 2004 - 2006 True Axis Pty Ltd, Australia.
// All Rights Reserved.
//
//---------------------------------------------------------------------------------
namespace\
TA\
{
inli\
ne
Ve\
c2
op\
er\
at\
o\
r
*
(
float
lOOO\
OOlllO
,
co\
nst
Vec2\
&
lOOlllllO\
Ol
)
{
Vec\
2\
lO\
Olll\
l\
l\
OlO
(
lO\
OOOOl\
ll\
O\
*
lOOlll\
l\
lOOl\
.
x
,
lOOOOOlll\
O\
*
lOOl\
ll\
l\
lOOl\
.
y
)
;
return
lOOlllll\
OlO
;
}
}
|
7f80e91ff36f0abaa4a0396cd21998ff6127290a | 625fa2d10a20d4f8db88e19b5c272fe574be2d7b | /Classes/view/layer/HallPetOfferLayer.cpp | a53fe233fc712da428217d496e5ede28822856a9 | [] | no_license | Crasader/life | 020ada76728f90ee6ba11a0ef465746d1d716172 | 69b68d6dd3fe37fc3081f7f92701750bd3afd3c5 | refs/heads/master | 2020-12-26T14:55:42.684115 | 2018-07-18T02:30:03 | 2018-07-18T02:30:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,570 | cpp | HallPetOfferLayer.cpp | //
// HallPetOfferLayer.cpp
// life
//
// Created by ff on 17/8/3.
//
//
#include "HallPetOfferLayer.h"
#include "GameDefine.h"
#include "ELProtocol.h"
#include "EventDefine.h"
#include "logic/ClientLogic.h"
#include "utils/GameUtils.h"
#include "utils/StringData.h"
#include "utils/TimeUtil.h"
#include "../node/TipsNode.h"
#include "SimpleAudioEngine.h"
#include "../scene/HallScene.h"
USING_NS_CC;
using namespace ui;
using namespace cocostudio;
using namespace CocosDenshion;
HallPetOfferLayer::HallPetOfferLayer():
refreshCD(0)
{
}
void HallPetOfferLayer::onEnter()
{
Layer::onEnter();
updateAllCDListener = EventListenerCustom::create(UPDATE_HALL_OFFER_ALL_CD, CC_CALLBACK_1(HallPetOfferLayer::updateAllCD, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(updateAllCDListener, -1);
updateBoardOfferListener = EventListenerCustom::create(UPDATE_PET_BOARD_OFFER, CC_CALLBACK_1(HallPetOfferLayer::updateBoardOffer, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(updateBoardOfferListener, -1);
openBoardOfferListener = EventListenerCustom::create(OPEN_PET_BOARD_OFFER, CC_CALLBACK_1(HallPetOfferLayer::openBoardOffer, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(openBoardOfferListener, -1);
addOfferPetListener = EventListenerCustom::create(ADD_OFFER_PET, CC_CALLBACK_1(HallPetOfferLayer::addOfferPet, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(addOfferPetListener, -1);
removeOfferPetListener = EventListenerCustom::create(REMOVE_OFFER_PET, CC_CALLBACK_1(HallPetOfferLayer::removeOfferPet, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(removeOfferPetListener, -1);
workOfferOverListener = EventListenerCustom::create(WORK_OFFER_OVER, CC_CALLBACK_1(HallPetOfferLayer::workOfferOver, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(workOfferOverListener, -1);
takeBoardOfferListener = EventListenerCustom::create(TAKE_BOARD_OFFER, CC_CALLBACK_1(HallPetOfferLayer::takeBoardOffer, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(takeBoardOfferListener, -1);
takeOfferRewardListener = EventListenerCustom::create(TAKE_OFFER_REWARD, CC_CALLBACK_1(HallPetOfferLayer::takeOfferReward, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(takeOfferRewardListener, -1);
showBuyOfferListener = EventListenerCustom::create(SHOW_BUY_OFFER, CC_CALLBACK_1(HallPetOfferLayer::showBuyOffer, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(showBuyOfferListener, -1);
buyOfferListener = EventListenerCustom::create(BUY_OFFER, CC_CALLBACK_1(HallPetOfferLayer::buyOffer, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(buyOfferListener, -1);
resetOfferRefreshCountListener = EventListenerCustom::create(RESET_OFFER_REFRESH_COUNT, CC_CALLBACK_1(HallPetOfferLayer::resetOfferRefreshCount, this));
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(resetOfferRefreshCountListener, -1);
}
HallPetOfferLayer::~HallPetOfferLayer()
{
Director::getInstance()->getEventDispatcher()->removeEventListener(updateAllCDListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(updateBoardOfferListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(openBoardOfferListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(addOfferPetListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(removeOfferPetListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(workOfferOverListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(takeBoardOfferListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(takeOfferRewardListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(showBuyOfferListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(buyOfferListener);
Director::getInstance()->getEventDispatcher()->removeEventListener(resetOfferRefreshCountListener);
ArmatureDataManager::destroyInstance();
Director::getInstance()->purgeCachedData();
}
bool HallPetOfferLayer::init()
{
if (!Layer::init()) {
return false;
}
auto callback = [](Touch * ,Event *)
{
return true;
};
auto listener = EventListenerTouchOneByOne::create();
listener->onTouchBegan = callback;
listener->setSwallowTouches(true);
getEventDispatcher()->addEventListenerWithSceneGraphPriority(listener,this);
auto root = CSLoader::createNode(HALL_PET_OFFER_UI);
rootAction = CSLoader::createTimeline(HALL_PET_OFFER_UI);
root->runAction(rootAction);
root->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
root->setPosition(GameUtils::winSize/2);
addChild(root);
auto rootBg = (ImageView*)root->getChildByName("bg_img");
auto closeButton = (Button *)rootBg->getChildByName("close_button");
closeButton->addClickEventListener(CC_CALLBACK_0(HallPetOfferLayer::clickClose, this));
petsBg = (ImageView*)rootBg->getChildByName("pet_bg");
workPetsBg = (ImageView*)rootBg->getChildByName("work_pet_bg");
auto boardBg = (ImageView*)rootBg->getChildByName("board_img");
auto workBg = (ImageView*)rootBg->getChildByName("work_bg");
for (int i = 0; i < 3; i++) {
auto workIcon = (ImageView*)workBg->getChildByTag(i+1);
workCDText[i] = (Text*)workIcon->getChildByName("cd_text");
workSelButton[i] = (Button*)workIcon->getChildByName("sel_button");
workSelButton[i]->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickWorkOffer, this));
}
boardRefreshCDText = (Text*)boardBg->getChildByName("refresh_cd_text");
auto refreshButton = (Button*)boardBg->getChildByName("refresh_button");
refreshButton->addClickEventListener(CC_CALLBACK_0(HallPetOfferLayer::clickRefresh, this));
for (int i = 0; i < 3; i++) {
boardOfferBg[i] = (ImageView*)boardBg ->getChildByTag(i+1);
auto selButton = (Button*)boardOfferBg[i] ->getChildByName("sel_button");
selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickOpenOffer, this));
}
for (int i = 0; i < 10; i++) {
auto selButton = (Button*)petsBg->getChildByTag(i+1);
selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickSelPet, this));
}
for (int i = 0; i < 3; i++) {
auto removeButton = (Button*)workPetsBg->getChildByTag(i+1)->getChildByName("remove_button");
removeButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickRemovePet, this));
}
refreshPriceText = (Text*)boardBg->getChildByName("refresh_price_text");
buyOfferLayer = nullptr;
buyOfferPos = 0;
return true;
}
void HallPetOfferLayer::setupView(cocos2d::EventCustom *event)
{
L2E_SHOW_HALL_PET_OFFER info = *static_cast<L2E_SHOW_HALL_PET_OFFER*>(event->getUserData());
boardRefreshCDText->setVisible(false);
for (int i = 0; i < 3; i++) {
workCDText[i]->setVisible(false);
}
petsBg->setVisible(false);
workPetsBg->setVisible(false);
memset(petsState, 0, sizeof(int)*10);
memset(readyPets, 0, sizeof(int)*3);
openOfferId = 0;
for (int i = 0; i < 3; i++) {
if(info.workOfferType[i] == 0)
{
workSelButton[i]->setVisible(false);
}else{
workSelButton[i]->loadTextureNormal(GameUtils::format(OFFER_ICON, info.workOfferType[i]));
if (info.workOfferState[i] == 2) {
workCDText[i]->setString(StringData::shared()->stringFromKey("can_take_reward"));
workCDText[i]->setVisible(true);
}
}
}
for (int i = 0; i < 3; i++) {
auto icon = (ImageView*)boardOfferBg[i]->getChildByName("type_img");
icon->loadTexture(GameUtils::format(OFFER_ICON, info.boardOfferType[i]));
auto costHourText = (Text*)boardOfferBg[i]->getChildByName("cost_time_text");
costHourText->setString(GameUtils::format(StringData::shared()->stringFromKey("offer_hours").c_str(), info.boardOfferCostTime[i]));
auto takeFlag = (Text*)boardOfferBg[i]->getChildByName("take_text");
auto selButton = (Button*)boardOfferBg[i] ->getChildByName("sel_button");
selButton->setVisible(info.boardOfferState[i] == 0);
// if (info.boardOfferState[i] == 0) {
selButton->loadTextureNormal(GameUtils::format(COMMON_DIR, "changanniu1.png"));
selButton->setTitleText(StringData::shared()->stringFromKey("open_offer"));
selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickOpenOffer, this));
// }else{
// selButton->loadTextureNormal(GameUtils::format(COMMON_DIR, "changanniu2.png"));
// selButton->setTitleText(StringData::shared()->stringFromKey("accept_offer"));
// selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickTakeOffer, this));
// }
costHourText->setVisible(info.boardOfferState[i] == 0);
takeFlag->setVisible(info.boardOfferState[i] != 0);
for (int j = 0; j < 3; j++) {
auto boundIcon = (ImageView*)boardOfferBg[i]->getChildByTag(j+1);
if (info.boundIcons[i][j] == "") {
boundIcon->setVisible(false);
}else{
boundIcon->loadTexture(GameUtils::format(COMMON_DIR, info.boundIcons[i][j].c_str()));
boundIcon->setVisible(true);
auto countText = (Text*)boundIcon->getChildByName("count_text");
countText->setString(Convert2String(info.boundCount[i][j]));
auto fragFlag = (ImageView*)boundIcon->getChildByName("frag_flag");
fragFlag->setVisible(info.boundType[i][j] == 2);
}
}
}
refreshPriceText->setString(Convert2String(info.refreshBoardPrice));
rootAction->play("in", false);
rootAction->setAnimationEndCallFunc("in", CC_CALLBACK_0(HallPetOfferLayer::getAllCD, this));
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "open.mp3").c_str(),false,1,0,0.5);
}
void HallPetOfferLayer::getAllCD()
{
HallScene::autoPopLayerId = NONE_LAYER;
E2L_COMMON info;
info.eProtocol = e2l_update_all_offer_cd;
ClientLogic::instance()->ProcessUIRequest(&info);
E2L_TRIGGER_OPEN_LAYER infoTrigger;
infoTrigger.eProtocol = e2l_trigger_open_layer;
infoTrigger.index = PET_OFFER_LAYER;
ClientLogic::instance()->ProcessUIRequest(&infoTrigger);
}
void HallPetOfferLayer::updateAllCD(cocos2d::EventCustom *event)
{
L2E_UPDATE_ALL_OFFER_CD info = *static_cast<L2E_UPDATE_ALL_OFFER_CD*>(event->getUserData());
refreshCD = info.refreshCD;
for (int i = 0; i < 3; i++) {
workOfferCD[i] = info.workOfferCD[i];
}
if (refreshCD >= 0) {
boardRefreshCDText->setString(TimeUtil::timeFormatToHMS(refreshCD));
boardRefreshCDText->setVisible(true);
}
for (int i = 0; i < 3; i++) {
if (workOfferCD[i] > 0) {
workCDText[i]->setString(TimeUtil::timeFormatToHMS(workOfferCD[i]));
workCDText[i]->setVisible(true);
}
}
scheduleUpdate();
}
void HallPetOfferLayer::updateBoardOffer(cocos2d::EventCustom *event)
{
L2E_UPDATE_BOARD_OFFER info = *static_cast<L2E_UPDATE_BOARD_OFFER*>(event->getUserData());
if (info.errNo == 1) {
std::string errStr = StringData::shared()->stringFromKey("diamond_not_enough");
auto tip = TipsNode::create();
tip->setupText(errStr);
tip->setPosition(GameUtils::winSize/2);
addChild(tip, 100);
return;
}
if (info.errNo != 0) {
return;
}
petsBg->setVisible(false);
workPetsBg->setVisible(false);
memset(petsState, 0, sizeof(int)*10);
memset(readyPets, 0, sizeof(int)*3);
openOfferId = 0;
refreshPriceText->setString(Convert2String(info.refreshPrice));
refreshCD = info.refreshCD;
if (refreshCD >= 0) {
boardRefreshCDText->setString(TimeUtil::timeFormatToHMS(refreshCD));
boardRefreshCDText->setVisible(true);
}
for (int i = 0; i < 3; i++) {
auto icon = (ImageView*)boardOfferBg[i]->getChildByName("type_img");
icon->loadTexture(GameUtils::format(OFFER_ICON, info.boardOfferType[i]));
auto costHourText = (Text*)boardOfferBg[i]->getChildByName("cost_time_text");
costHourText->setString(GameUtils::format(StringData::shared()->stringFromKey("offer_hours").c_str(), info.boardOfferCostTime[i]));
auto takeFlag = (Text*)boardOfferBg[i]->getChildByName("take_text");
auto selButton = (Button*)boardOfferBg[i]->getChildByName("sel_button");
selButton->setVisible(info.boardOfferState[i] == 0);
// if (info.boardOfferState[i] == 0) {
selButton->loadTextureNormal(GameUtils::format(COMMON_DIR, "changanniu1.png"));
selButton->setTitleText(StringData::shared()->stringFromKey("open_offer"));
selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickOpenOffer, this));
// }else{
// selButton->loadTextureNormal(GameUtils::format(COMMON_DIR, "changanniu2.png"));
// selButton->setTitleText(StringData::shared()->stringFromKey("accept_offer"));
// selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickTakeOffer, this));
// }
costHourText->setVisible(info.boardOfferState[i] == 0);
takeFlag->setVisible(info.boardOfferState[i] != 0);
for (int j = 0; j < 3; j++) {
auto boundIcon = (ImageView*)boardOfferBg[i]->getChildByTag(j+1);
if (info.boundIcons[i][j] == "") {
boundIcon->setVisible(false);
}else{
boundIcon->loadTexture(GameUtils::format(COMMON_DIR, info.boundIcons[i][j].c_str()));
boundIcon->setVisible(true);
auto countText = (Text*)boundIcon->getChildByName("count_text");
countText->setString(Convert2String(info.boundCount[i][j]));
auto fragFlag = (ImageView*)boundIcon->getChildByName("frag_flag");
fragFlag->setVisible(info.boundType[i][j] == 2);
}
}
}
}
void HallPetOfferLayer::takeBoardOffer(cocos2d::EventCustom *event)
{
L2E_TAKE_BOARD_OFFER info = *static_cast<L2E_TAKE_BOARD_OFFER*>(event->getUserData());
if (info.errNo != 0) {
std::string errStr = StringData::shared()->stringFromKey("take_offer_err1");
if (info.errNo == 4) {
errStr = StringData::shared()->stringFromKey("take_offer_err2");
}
auto tip = TipsNode::create();
tip->setupText(errStr);
tip->setPosition(GameUtils::winSize/2);
addChild(tip, 100);
return;
}
petsBg->setVisible(false);
workPetsBg->setVisible(false);
memset(petsState, 0, sizeof(int)*10);
memset(readyPets, 0, sizeof(int)*3);
openOfferId = 0;
auto costHourText = (Text*)boardOfferBg[info.boardOfferPos-1]->getChildByName("cost_time_text");
auto takeFlag = (Text*)boardOfferBg[info.boardOfferPos-1]->getChildByName("take_text");
auto selButton = (Button*)boardOfferBg[info.boardOfferPos-1]->getChildByName("sel_button");
selButton->setVisible(false);
costHourText->setVisible(false);
takeFlag->setVisible(true);
workOfferCD[info.workOfferPos-1] = info.workOfferCD;
workSelButton[info.workOfferPos-1]->loadTextureNormal(GameUtils::format(OFFER_ICON, info.workOfferType));
workCDText[info.workOfferPos-1]->setString(TimeUtil::timeFormatToHMS(info.workOfferCD));
workSelButton[info.workOfferPos-1]->setVisible(true);
}
void HallPetOfferLayer::workOfferOver(cocos2d::EventCustom *event)
{
L2E_UPDATE_ONE_VALUE info = *static_cast<L2E_UPDATE_ONE_VALUE*>(event->getUserData());
workCDText[info.value-1]->setString(StringData::shared()->stringFromKey("can_take_reward"));
workOfferCD[info.value-1] = 0;
if (buyOfferLayer) {
clickBuyClose();
}
}
void HallPetOfferLayer::takeOfferReward(cocos2d::EventCustom *event)
{
L2E_TAKE_OFFER_REWARD info = *static_cast<L2E_TAKE_OFFER_REWARD*>(event->getUserData());
if (info.errNo != 0) {
std::string errStr = StringData::shared()->stringFromKey("take_reward_err");
auto tip = TipsNode::create();
tip->setupText(errStr);
tip->setPosition(GameUtils::winSize/2);
addChild(tip, 100);
return;
}
workSelButton[info.workOfferPos-1]->setVisible(false);
workCDText[info.workOfferPos-1]->setVisible(false);
for (int i = 0; i < 10; i++) {
auto petBg = (Button*)petsBg->getChildByTag(i+1);
auto flag = (ImageView*)petBg->getChildByName("busy_flag");
flag->setVisible(false);
}
for (auto petId : info.workPet) {
auto petBg = (ImageView*)petsBg->getChildByTag(petId);
auto flag = (ImageView*)petBg->getChildByName("busy_flag");
flag->setVisible(true);
}
}
void HallPetOfferLayer::buyOffer(cocos2d::EventCustom *event)
{
L2E_BUY_OFFER info = *static_cast<L2E_BUY_OFFER*>(event->getUserData());
if (info.errNo != 0) {
std::string errStr("");
switch (info.errNo) {
case 1:
{
errStr = StringData::shared()->stringFromKey("buy_offer_err1");
}
break;
case 2:
{
errStr = StringData::shared()->stringFromKey("diamond_not_enough");
}
default:
break;
}
auto tip = TipsNode::create();
tip->setupText(errStr);
tip->setPosition(GameUtils::winSize/2);
addChild(tip, 100);
return;
}
clickBuyClose();
workSelButton[info.workOfferPos-1]->setVisible(false);
workCDText[info.workOfferPos-1]->setVisible(false);
workOfferCD[info.workOfferPos-1] = 0;
for (int i = 0; i < 10; i++) {
auto petBg = (Button*)petsBg->getChildByTag(i+1);
auto flag = (ImageView*)petBg->getChildByName("busy_flag");
flag->setVisible(false);
}
for (auto petId : info.workPet) {
auto petBg = (ImageView*)petsBg->getChildByTag(petId);
auto flag = (ImageView*)petBg->getChildByName("busy_flag");
flag->setVisible(true);
}
}
void HallPetOfferLayer::openBoardOffer(cocos2d::EventCustom *event)
{
L2E_OPEN_BOARD_OFFER info = *static_cast<L2E_OPEN_BOARD_OFFER*>(event->getUserData());
if (info.errNo != 0) {
std::string errStr = StringData::shared()->stringFromKey("work_offer_full");
if (info.errNo == 2) {
errStr = StringData::shared()->stringFromKey("board_offer_invalid");
}
auto tip = TipsNode::create();
tip->setupText(errStr);
tip->setPosition(GameUtils::winSize/2);
addChild(tip, 100);
return;
}
for (int i = 0; i < 3; i++) {
auto selButton = (Button*)boardOfferBg[i]->getChildByName("sel_button");
if (info.offerPos-1 == i) {
selButton->loadTextureNormal(GameUtils::format(COMMON_DIR, "changanniu2.png"));
selButton->setTitleText(StringData::shared()->stringFromKey("accept_offer"));
selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickTakeOffer, this));
}else{
selButton->loadTextureNormal(GameUtils::format(COMMON_DIR, "changanniu1.png"));
selButton->setTitleText(StringData::shared()->stringFromKey("open_offer"));
selButton->addClickEventListener(CC_CALLBACK_1(HallPetOfferLayer::clickOpenOffer, this));
}
}
petsBg->setVisible(true);
workPetsBg->setVisible(true);
memset(petsState, 0, sizeof(int)*10);
memset(readyPets, 0, sizeof(int)*3);
openOfferId = info.offerId;
readyCount = 0;
needCount = info.needCount;
for (int i = 0; i < 10; i++) {
auto petBg = (Button*)petsBg->getChildByTag(i+1);
petBg->loadTextureNormal(GameUtils::format(COMMON_DIR, info.petsIcon[i].c_str()));
auto flag = (ImageView*)petBg->getChildByName("busy_flag");
flag->setVisible(false);
auto ready = (ImageView*)petBg->getChildByName("ready");
ready->setVisible(false);
auto lock = (ImageView*)petBg->getChildByName("lock");
lock->setVisible(!info.unlock[i]);
}
for (auto petId : info.workPet) {
auto petBg = (ImageView*)petsBg->getChildByTag(petId);
auto flag = (ImageView*)petBg->getChildByName("busy_flag");
flag->setVisible(true);
}
for (int i = 0; i < 3; i++) {
auto petBg = (ImageView*)workPetsBg->getChildByTag(i+1);
petBg->setVisible(i<info.needCount);
auto removeButton = (Button*)petBg->getChildByName("remove_button");
removeButton->setVisible(false);
}
auto tipText = (Text*)petsBg->getChildByName("descript_text");
std::string tipStr("");
if (info.offerType == 4) {
tipStr = GameUtils::format(StringData::shared()->stringFromKey("pet_relation_offer_tip").c_str(), info.needCount);
}else{
tipStr = GameUtils::format(StringData::shared()->stringFromKey("pet_offer_tip").c_str(), info.needCount);
}
tipText->setString(tipStr);
}
void HallPetOfferLayer::showBuyOffer(cocos2d::EventCustom *event)
{
L2E_SHOW_BUY_OFFER info = *static_cast<L2E_SHOW_BUY_OFFER*>(event->getUserData());
buyOfferLayer = (Layer*)CSLoader::createNode(HALL_BUY_OFFER_UI);
buyAction = CSLoader::createTimeline(HALL_BUY_OFFER_UI);
buyOfferLayer->runAction(buyAction);
addChild(buyOfferLayer);
auto callback = [](Touch * ,Event *)
{
return true;
};
auto listener = EventListenerTouchOneByOne::create();
listener->onTouchBegan = callback;
listener->setSwallowTouches(true);
getEventDispatcher()->addEventListenerWithSceneGraphPriority(listener,buyOfferLayer);
buyOfferCDText = (Text*)buyOfferLayer->getChildByName("bg_img")->getChildByName("cd_text");
buyOfferPos = info.workOfferPos;
auto closeButton = (Button*)buyOfferLayer->getChildByName("bg_img")->getChildByName("close_button");
closeButton->addClickEventListener(CC_CALLBACK_0(HallPetOfferLayer::clickBuyClose, this));
auto okButton = (Button*)buyOfferLayer->getChildByName("bg_img")->getChildByName("ok_button");
okButton->addClickEventListener(CC_CALLBACK_0(HallPetOfferLayer::clickBuyOk, this));
auto priceText = (Text*)okButton->getChildByName("price_text");
priceText->setString(Convert2String(info.price));
for (int i = 0; i < 3; i++) {
auto petIcon = (ImageView*)buyOfferLayer->getChildByName("bg_img")->getChildByName(GameUtils::format("pet%d_img",i+1));
if (info.petIcons[i] == "") {
petIcon->setVisible(false);
}else{
petIcon->loadTexture(GameUtils::format(COMMON_DIR, info.petIcons[i].c_str()));
petIcon->setVisible(true);
}
}
for (int i = 0; i < 3; i++) {
auto boundIcon = (ImageView*)buyOfferLayer->getChildByName("bg_img")->getChildByName(GameUtils::format("bound%d_img",i+1));
if (info.boundIcons[i] == "") {
boundIcon->setVisible(false);
}else{
boundIcon->loadTexture(GameUtils::format(COMMON_DIR, info.boundIcons[i].c_str()));
boundIcon->setVisible(true);
auto countText = (Text*)boundIcon->getChildByName("count_text");
countText->setString(Convert2String(info.boundCount[i]));
auto fragFlag = (ImageView*)boundIcon->getChildByName("frag_flag");
fragFlag->setVisible(info.boundType[i] == 2);
}
}
auto icon = (ImageView*)buyOfferLayer->getChildByName("bg_img")->getChildByName("type_img");
icon->loadTexture(GameUtils::format(OFFER_ICON, info.workOfferType));
buyAction->play("in", false);
}
void HallPetOfferLayer::clickBuyClose()
{
buyAction->play("out", false);
buyAction->setAnimationEndCallFunc("out", CC_CALLBACK_0(HallPetOfferLayer::removeOffBuy, this));
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "close.mp3").c_str(),false,1,0,0.5);
}
void HallPetOfferLayer::clickBuyOk()
{
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "click.mp3").c_str(),false,1,0,0.5);
E2L_UPDATE_ONE_VALUE info;
info.eProtocol = e2l_buy_offer;
info.value = buyOfferPos;
ClientLogic::instance()->ProcessUIRequest(&info);
}
void HallPetOfferLayer::removeOffBuy()
{
removeChild(buyOfferLayer);
buyOfferLayer = nullptr;
buyOfferPos = 0;
}
void HallPetOfferLayer::update(float dt)
{
if (refreshCD > 0) {
refreshCD -= dt;
if (refreshCD <= 0) {
boardRefreshCDText->setString(StringData::shared()->stringFromKey("ready_refresh"));
}else{
boardRefreshCDText->setString(TimeUtil::timeFormatToHMS(refreshCD));
}
boardRefreshCDText->setVisible(true);
}
for (int i = 0; i < 3; i++) {
if (workOfferCD[i] > 0) {
workOfferCD[i] -= dt;
workCDText[i]->setString(TimeUtil::timeFormatToHMS(workOfferCD[i]));
workCDText[i]->setVisible(true);
if (buyOfferLayer && (buyOfferPos-1 == i)) {
buyOfferCDText->setString(TimeUtil::timeFormatToHMS(workOfferCD[i]));
}
}
}
}
void HallPetOfferLayer::clickClose()
{
rootAction->play("out", false);
rootAction->setAnimationEndCallFunc("out", CC_CALLBACK_0(HallPetOfferLayer::removeOff, this));
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "close.mp3").c_str(),false,1,0,0.5);
}
void HallPetOfferLayer::removeOff()
{
removeFromParent();
}
void HallPetOfferLayer::clickWorkOffer(cocos2d::Ref *pSender)
{
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "click.mp3").c_str(),false,1,0,0.5);
int tag = ((Button*)pSender)->getParent()->getTag();
E2L_UPDATE_ONE_VALUE info;
info.eProtocol = e2l_take_offer_reward;
info.value = tag;
ClientLogic::instance()->ProcessUIRequest(&info);
}
void HallPetOfferLayer::clickOpenOffer(cocos2d::Ref *pSender)
{
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "click.mp3").c_str(),false,1,0,0.5);
int tag = ((Button*)pSender)->getParent()->getTag();
E2L_UPDATE_ONE_VALUE info;
info.eProtocol = e2l_open_board_offer;
info.value = tag;
ClientLogic::instance()->ProcessUIRequest(&info);
}
void HallPetOfferLayer::clickTakeOffer(cocos2d::Ref *pSender)
{
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "click.mp3").c_str(),false,1,0,0.5);
int tag = ((Button*)pSender)->getParent()->getTag();
E2L_TAKE_BOARD_OFFER info;
info.eProtocol = e2l_take_board_offer;
memcpy(info.petsId, readyPets, sizeof(int)*3);
info.offerPos = tag;
ClientLogic::instance()->ProcessUIRequest(&info);
}
void HallPetOfferLayer::clickRefresh()
{
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "click.mp3").c_str(),false,1,0,0.5);
E2L_COMMON info;
info.eProtocol = e2l_click_refresh_offer;
ClientLogic::instance()->ProcessUIRequest(&info);
}
void HallPetOfferLayer::clickSelPet(cocos2d::Ref *pSender)
{
SimpleAudioEngine::getInstance()->playEffect(GameUtils::format(SOUND_DIR, "click.mp3").c_str(),false,1,0,0.5);
int tag = ((Button*)pSender)->getTag();
if (petsState[tag-1] == 1) {
removeReadyPet(tag);
return;
}
if (readyCount >= needCount) {
std::string errStr = StringData::shared()->stringFromKey("pet_count_enough");
auto tip = TipsNode::create();
tip->setupText(errStr);
tip->setPosition(GameUtils::winSize/2);
addChild(tip, 100);
return;
}
E2L_ADD_OFFER_PET info;
info.eProtocol = e2l_add_offer_pet;
info.petId = tag;
memcpy(info.readyPets, readyPets, sizeof(int)*3);
info.offerId = openOfferId;
ClientLogic::instance()->ProcessUIRequest(&info);
}
void HallPetOfferLayer::clickRemovePet(cocos2d::Ref *pSender)
{
int tag = ((Button*)pSender)->getParent()->getTag();
removeReadyPet(readyPets[tag-1]);
}
void HallPetOfferLayer::removeReadyPet(int petId)
{
petsState[petId-1] = 0;
auto petBg = (Button*)petsBg->getChildByTag(petId);
auto ready = (ImageView*)petBg->getChildByName("ready");
ready->setVisible(false);
for (int i = 0; i < 3; i++) {
auto petBg = (ImageView*)workPetsBg->getChildByTag(i+1);
auto removeButton = (Button*)petBg->getChildByName("remove_button");
if (readyPets[i] == petId) {
removeButton->setVisible(false);
readyPets[i] = 0;
readyCount--;
}
}
for (int i = 0; i < 10; i++) {
auto petBg = (Button*)petsBg->getChildByTag(i+1);
petBg->removeChildByTag(1000);
}
E2L_REMOVE_OFFER_PET info;
info.eProtocol = e2l_remove_offer_pet;
memcpy(info.readyPets, readyPets, sizeof(int)*3);
info.offerId = openOfferId;
ClientLogic::instance()->ProcessUIRequest(&info);
}
void HallPetOfferLayer::removeOfferPet(cocos2d::EventCustom *event)
{
L2E_REMOVE_OFFER_PET info = *static_cast<L2E_REMOVE_OFFER_PET*>(event->getUserData());
for (auto petId : info.relationPets) {
if (petsState[petId-1] == 1) {
continue;
}
auto petBg = (Button*)petsBg->getChildByTag(petId);
auto focusRoot = CSLoader::createNode(HALL_PET_RELATION_UI);
auto focusAction = CSLoader::createTimeline(HALL_PET_RELATION_UI);
focusRoot->runAction(focusAction);
focusRoot->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
focusRoot->setPosition(petBg->getContentSize()/2);
focusRoot->setTag(1000);
focusAction->play("play", true);
petBg->addChild(focusRoot);
}
}
void HallPetOfferLayer::addOfferPet(cocos2d::EventCustom *event)
{
L2E_ADD_OFFER_PET info = *static_cast<L2E_ADD_OFFER_PET*>(event->getUserData());
if (info.errNo != 0) {
std::string errStr = StringData::shared()->stringFromKey(GameUtils::format("add_offer_pet_err%d", info.errNo));
auto tip = TipsNode::create();
tip->setupText(errStr);
tip->setPosition(GameUtils::winSize/2);
addChild(tip, 100);
return;
}
for (int i = 0; i < 3; i++) {
if (readyPets[i] == 0) {
readyPets[i] = info.petId;
readyCount++;
auto petBg = (ImageView*)workPetsBg->getChildByTag(i+1);
auto removeButton = (Button*)petBg->getChildByName("remove_button");
removeButton->loadTextureNormal(GameUtils::format(COMMON_DIR, info.petIcon.c_str()));
removeButton->setVisible(true);
break;
}
}
petsState[info.petId-1] = 1;
auto petBg = (Button*)petsBg->getChildByTag(info.petId);
auto ready = (ImageView*)petBg->getChildByName("ready");
ready->setVisible(true);
for (int i = 0; i < 10; i++) {
auto petBg = (Button*)petsBg->getChildByTag(i+1);
petBg->removeChildByTag(1000);
}
for (auto petId : info.relationPets) {
if (petsState[petId-1] == 1) {
continue;
}
auto petBg = (Button*)petsBg->getChildByTag(petId);
auto focusRoot = CSLoader::createNode(HALL_PET_RELATION_UI);
auto focusAction = CSLoader::createTimeline(HALL_PET_RELATION_UI);
focusRoot->runAction(focusAction);
focusRoot->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
focusRoot->setPosition(petBg->getContentSize()/2);
focusRoot->setTag(1000);
focusAction->play("play", true);
petBg->addChild(focusRoot);
}
}
void HallPetOfferLayer::resetOfferRefreshCount(cocos2d::EventCustom *event)
{
L2E_UPDATE_ONE_VALUE info = *static_cast<L2E_UPDATE_ONE_VALUE*>(event->getUserData());
refreshPriceText->setString(Convert2String(info.value));
}
|
98a0b9ed44085f833545aa9cafd5d258a8a4ba0c | de00f324dbd593b0e4bf09773759bd9495871c36 | /stackc++.cpp | 56a05ff795b230a10cd0853c998f350f4181bf5a | [] | no_license | ZE0TRON/Snippets-For-DS-and-Algo | 243974dd51e55f3ab30abff5992b228a4bdac4ff | a9570bf767eb461dc8309ae1049733d358f7072b | refs/heads/master | 2021-09-02T14:48:37.737253 | 2018-01-03T08:50:23 | 2018-01-03T08:50:23 | 85,996,928 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 407 | cpp | stackc++.cpp | #include <iostream>
#include <vector>
using namespace std;
template <class T>
class Stack{
private:
vector<T> liste;
public:
void push(T elem){
liste.push_back(elem);
}
T pop(){
return liste.pop_back();
}
T top(){
return liste.back();
}
int size(){
return liste.length();
}
};
int main(){
Stack<int> intStack;
intStack.push(7);
cout<<intStack.top()<<endl;
return 0;
}
|
a485ef9516403102da41ef64daaf1a4388c9626f | afe94d3675f1d4ad2274cfd5f9eab0f378877bf1 | /lesson_07/01_extern_vars/main.cpp | 19ca9cd900084b7314dd8f24720246afa68cef1d | [] | no_license | Chuvi-w/cpp | d807f51fcc9431997dbe97244b4ebf5c177e3258 | be3066bfa4844f4bc08bac981f51f3ce628a4f2a | refs/heads/master | 2021-01-17T21:39:26.340626 | 2015-08-29T10:47:13 | 2015-08-29T10:47:13 | 42,061,059 | 1 | 0 | null | 2015-09-07T15:38:46 | 2015-09-07T15:38:45 | null | UTF-8 | C++ | false | false | 134 | cpp | main.cpp | #include "module1.h"
#include "module2.h"
int main() {
v1();
show1();
show2();
v2();
show1();
show2();
return 0;
}
|
b82fa70232ff670bbec961c29c4579cfd160b04e | 6680f8d317de48876d4176d443bfd580ec7a5aef | /Header/DICOM2Texture.h | fdf2de968d7736a86c95f42f820b24bde3519eae | [] | no_license | AlirezaMojtabavi/misInteractiveSegmentation | 1b51b0babb0c6f9601330fafc5c15ca560d6af31 | 4630a8c614f6421042636a2adc47ed6b5d960a2b | refs/heads/master | 2020-12-10T11:09:19.345393 | 2020-03-04T11:34:26 | 2020-03-04T11:34:26 | 233,574,482 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 942 | h | DICOM2Texture.h | #pragma once
#include "vtkTimeStamp.h"
#include "vtkImageData.h"
#include "vtkType.h"
#include <vtkgl.h>
class DICOM2Texture
{
public:
DICOM2Texture();
~DICOM2Texture();
//static DICOM2Texture *New();
vtkTimeStamp GetBuildTime();
void Bind();
void *Update(vtkImageData *input,
int cellFlag,
int textureExtent[6],
bool linearInterpolation,
double tableRange[2],
int maxMemoryInBytes);
double *GetLoadedBounds();
vtkIdType *GetLoadedExtent();
int GetLoadedCellFlag();
bool IsLoaded();
bool GetSupports_GL_ARB_texture_float();
void SetSupports_GL_ARB_texture_float(bool value);
const char *OpenGLErrorMessage( unsigned int errorCode);
GLuint TextureId;
protected:
vtkTimeStamp BuildTime;
double LoadedBounds[6];
vtkIdType LoadedExtent[6];
int LoadedCellFlag;
bool Loaded;
bool LinearInterpolation;
bool Supports_GL_ARB_texture_float;
double LoadedTableRange[2];
void *dataPtr;
};
|
9bc0c8b863e7b917cc98bb7352962f967eb18c70 | c656a019513845ac6bc21915b3ffdce5af989a7a | /source/UnitTest.Library.Desktop/EntityUnitTest.cpp | 19ce16897aedc148362d28a8e2119cd30f59e8bf | [] | no_license | peterdfinn/FIEA_Game_Engine | ca2b6f4ac0b0fb366f5cffe689e791698d47e935 | 4775469d4772789370896bcbcec9ce93d18f0c99 | refs/heads/master | 2020-03-17T04:23:23.056804 | 2018-05-16T16:20:04 | 2018-05-16T16:20:04 | 133,272,893 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,178 | cpp | EntityUnitTest.cpp | #include "pch.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
using namespace LibraryShared;
using namespace std;
namespace UnitTest
{
TEST_CLASS(EntityUnitTest)
{
private:
_CrtMemState initialMemoryState;
Entity dummyEntity;
Sector dummySector;
public:
TEST_METHOD_INITIALIZE(EntityUnitTestInit)
{
#ifdef _DEBUG
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF);
_CrtMemCheckpoint(&initialMemoryState);
#endif
}
TEST_METHOD_CLEANUP(EntityUnitTestCleanup)
{
#ifdef _DEBUG
_CrtMemState finalMemoryState, memoryStateDiff;
_CrtMemCheckpoint(&finalMemoryState);
if (_CrtMemDifference(&memoryStateDiff, &initialMemoryState, &finalMemoryState))
{
Assert::Fail(L"Memory is leaking!");
}
#endif
}
TEST_METHOD(EntityConstructorTest)
{
Sector s;
Assert::AreEqual(0u, s.Find("Entities"s)->Size());
Entity *e2 = new Entity("goodname"s, &s);
uint32_t numberOfEntitiesInSector = s.Find("Entities"s)->Size();
Assert::AreEqual(1u, numberOfEntitiesInSector);
Assert::IsTrue(e2->GetParent()->Is(Sector::TypeIdClass()));
Assert::IsTrue(e2->Name() == "goodname");
Assert::IsTrue(e2->GetSector() == &s);
}
TEST_METHOD(EntityMoveConstructorTest)
{
/*I expect the move constructor to move the name from the original
and have the same Sector as the original.*/
Sector s;
Entity* e = new Entity("e", &s);
Entity* copy = new Entity(move(*e));
Assert::IsTrue(copy->Name() == "e"s);
Assert::IsTrue(&s == copy->GetSector());
Assert::IsTrue(e->Name().empty());
Assert::IsTrue(&s == e->GetSector());
delete e;
}
TEST_METHOD(EntityMoveAssignmentOperatorTest)
{
/*I expect the move assignment operator to behave just like the move
constructor.*/
Sector s1, s2;
Entity *e1 = new Entity("e1", &s1), *e2 = new Entity("e2", &s2);
*e1 = move(*e2);
Assert::IsTrue(e1->Name() == "e2");
Assert::IsTrue(&s2 == e1->GetSector());
Assert::IsTrue(e2->Name().empty());
Assert::IsTrue(&s2 == e2->GetSector());
delete e2;
}
TEST_METHOD(EntitySetNameTest)
{
Entity e("name1");
e.SetName("name2");
Assert::IsTrue(e.Name() == "name2");
}
TEST_METHOD(EntitySetSectorTest)
{
/*I expect that a call to SetSector will update both the Entity for
which the method was called and its parent Sector. There are two
cases to test: setting a Sector from nullptr, or setting a Sector
from a non-null Sector pointer.*/
Entity* e1 = new Entity("e1");
//null to non-null
Sector s1;
e1->SetSector(s1);
Assert::IsTrue(&s1 == e1->GetSector());
Datum& s1EntitiesDatum = s1.Entities();
Assert::AreEqual(1u, s1EntitiesDatum.Size());
Assert::IsTrue(&s1EntitiesDatum.GetScope(0u) == e1);
//non-null to non-null
Sector s2, s3;
Entity* e2 = new Entity("e2", &s2);
e2->SetSector(s3);
Assert::IsNull(s2.Find(e2->Name()));
Assert::IsTrue(e2->GetSector() == &s3);
Datum& s2EntitiesDatum = s2.Entities();
Datum& s3EntitiesDatum = s3.Entities();
Assert::AreEqual(0u, s2EntitiesDatum.Size());
Assert::AreEqual(1u, s3EntitiesDatum.Size());
Assert::IsTrue(&s3EntitiesDatum.GetScope(0u) == e2);
}
};
} |
e8610c1778f7cbc1dc459df411f659e42f86d979 | d8cf3cfe29a2fef2fa43a99a35016158b319290c | /OtherStuff/eratosten_site.cpp | 41929598b42ab6ca95237bfadb85d2ded0ec5aff | [] | no_license | themechatron/Cpp | 194f39f00274fc21c3edd18e58391db4bf378dd0 | 0d7e5ee1423121f221c106ba14c0350f5aeef289 | refs/heads/master | 2021-01-17T22:08:22.283992 | 2017-04-25T16:09:59 | 2017-04-25T16:09:59 | 100,574,701 | 0 | 0 | null | 2017-08-17T07:29:19 | 2017-08-17T07:29:19 | null | UTF-8 | C++ | false | false | 493 | cpp | eratosten_site.cpp | #include<iostream>
using namespace std;
int main()
{
const long long int max = 65536;
int length;
std::cout << "Enter upper limit: ";
std::cin >> length;
bool primes[max];
for (int i = 0; i<max; i++){
primes[i] = true;
}
primes[0] = primes[1] = false;
for (int i = 2; i < length; i++){
if (primes[i]){
for (int j = i + i; j < length; j += i){
primes[j] = false;
}
}
}
for (int i = 0; i < length; i++){
if (primes[i]){
std::cout << i << " ";
}
}
return 0;
} |
644f41bdd6126806de4f25c830dde9017c27b217 | fa9918934c8d15bc2130d3f40fee522fc2220e33 | /Models/IModel.h | 07d7909ab5187a00fa91b82eef1cb155485226a4 | [
"MIT"
] | permissive | GianniMoretti/Tasky | 73f325b1cd968c34680b9bf72130180708f0a4a1 | f525fefd7b1d577b7908c24bf3f57fe943a80cdd | refs/heads/master | 2020-06-03T12:47:54.140357 | 2020-01-02T11:04:32 | 2020-01-02T11:04:32 | 191,572,959 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 339 | h | IModel.h | //
// Created by giannimoretti on 17/06/19.
//
#ifndef TASKY_IMODEL_H
#define TASKY_IMODEL_H
#include "../IObserver.h"
class IModel {
public:
virtual ~IModel() {};
virtual void notify() const = 0;
virtual void subscribe(IObserver *obs) = 0;
virtual void unsubscribe(IObserver *obs) = 0;
};
#endif //TASKY_IMODEL_H
|
634a59256d33ad940e3a484e24fb13c17eb25eee | d9827544674aa247059275d837937003c1d8535a | /model/ValidateCountryResponse.cpp | 76f672a0cf0590c6078e22ebf792ba08b6568eda | [
"Apache-2.0"
] | permissive | Cloudmersive/Cloudmersive.APIClient.CPP.Validate | 8b657be8f81f242010e37b24da303a5c5a67318f | fef8188b91223a2b28697a7b295254ceaa1f800b | refs/heads/master | 2023-06-08T22:19:49.437496 | 2023-06-03T22:41:39 | 2023-06-03T22:41:39 | 231,828,255 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,634 | cpp | ValidateCountryResponse.cpp | /**
* validateapi
* The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
*
* OpenAPI spec version: v1
*
*
* NOTE: This class is auto generated by the swagger code generator 2.4.11.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
#include "ValidateCountryResponse.h"
namespace io {
namespace swagger {
namespace client {
namespace model {
ValidateCountryResponse::ValidateCountryResponse()
{
m_Successful = false;
m_SuccessfulIsSet = false;
m_CountryFullName = utility::conversions::to_string_t("");
m_CountryFullNameIsSet = false;
m_ISOTwoLetterCode = utility::conversions::to_string_t("");
m_ISOTwoLetterCodeIsSet = false;
m_FIPSTwoLetterCode = utility::conversions::to_string_t("");
m_FIPSTwoLetterCodeIsSet = false;
m_ThreeLetterCode = utility::conversions::to_string_t("");
m_ThreeLetterCodeIsSet = false;
m_IsEuropeanUnionMember = false;
m_IsEuropeanUnionMemberIsSet = false;
m_TimezonesIsSet = false;
m_ISOCurrencyCode = utility::conversions::to_string_t("");
m_ISOCurrencyCodeIsSet = false;
m_CurrencySymbol = utility::conversions::to_string_t("");
m_CurrencySymbolIsSet = false;
m_CurrencyEnglishName = utility::conversions::to_string_t("");
m_CurrencyEnglishNameIsSet = false;
m_Region = utility::conversions::to_string_t("");
m_RegionIsSet = false;
m_Subregion = utility::conversions::to_string_t("");
m_SubregionIsSet = false;
}
ValidateCountryResponse::~ValidateCountryResponse()
{
}
void ValidateCountryResponse::validate()
{
// TODO: implement validation
}
web::json::value ValidateCountryResponse::toJson() const
{
web::json::value val = web::json::value::object();
if(m_SuccessfulIsSet)
{
val[utility::conversions::to_string_t("Successful")] = ModelBase::toJson(m_Successful);
}
if(m_CountryFullNameIsSet)
{
val[utility::conversions::to_string_t("CountryFullName")] = ModelBase::toJson(m_CountryFullName);
}
if(m_ISOTwoLetterCodeIsSet)
{
val[utility::conversions::to_string_t("ISOTwoLetterCode")] = ModelBase::toJson(m_ISOTwoLetterCode);
}
if(m_FIPSTwoLetterCodeIsSet)
{
val[utility::conversions::to_string_t("FIPSTwoLetterCode")] = ModelBase::toJson(m_FIPSTwoLetterCode);
}
if(m_ThreeLetterCodeIsSet)
{
val[utility::conversions::to_string_t("ThreeLetterCode")] = ModelBase::toJson(m_ThreeLetterCode);
}
if(m_IsEuropeanUnionMemberIsSet)
{
val[utility::conversions::to_string_t("IsEuropeanUnionMember")] = ModelBase::toJson(m_IsEuropeanUnionMember);
}
{
std::vector<web::json::value> jsonArray;
for( auto& item : m_Timezones )
{
jsonArray.push_back(ModelBase::toJson(item));
}
if(jsonArray.size() > 0)
{
val[utility::conversions::to_string_t("Timezones")] = web::json::value::array(jsonArray);
}
}
if(m_ISOCurrencyCodeIsSet)
{
val[utility::conversions::to_string_t("ISOCurrencyCode")] = ModelBase::toJson(m_ISOCurrencyCode);
}
if(m_CurrencySymbolIsSet)
{
val[utility::conversions::to_string_t("CurrencySymbol")] = ModelBase::toJson(m_CurrencySymbol);
}
if(m_CurrencyEnglishNameIsSet)
{
val[utility::conversions::to_string_t("CurrencyEnglishName")] = ModelBase::toJson(m_CurrencyEnglishName);
}
if(m_RegionIsSet)
{
val[utility::conversions::to_string_t("Region")] = ModelBase::toJson(m_Region);
}
if(m_SubregionIsSet)
{
val[utility::conversions::to_string_t("Subregion")] = ModelBase::toJson(m_Subregion);
}
return val;
}
void ValidateCountryResponse::fromJson(web::json::value& val)
{
if(val.has_field(utility::conversions::to_string_t("Successful")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("Successful")];
if(!fieldValue.is_null())
{
setSuccessful(ModelBase::boolFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("CountryFullName")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("CountryFullName")];
if(!fieldValue.is_null())
{
setCountryFullName(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("ISOTwoLetterCode")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("ISOTwoLetterCode")];
if(!fieldValue.is_null())
{
setISOTwoLetterCode(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("FIPSTwoLetterCode")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("FIPSTwoLetterCode")];
if(!fieldValue.is_null())
{
setFIPSTwoLetterCode(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("ThreeLetterCode")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("ThreeLetterCode")];
if(!fieldValue.is_null())
{
setThreeLetterCode(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("IsEuropeanUnionMember")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("IsEuropeanUnionMember")];
if(!fieldValue.is_null())
{
setIsEuropeanUnionMember(ModelBase::boolFromJson(fieldValue));
}
}
{
m_Timezones.clear();
std::vector<web::json::value> jsonArray;
if(val.has_field(utility::conversions::to_string_t("Timezones")))
{
for( auto& item : val[utility::conversions::to_string_t("Timezones")].as_array() )
{
if(item.is_null())
{
m_Timezones.push_back( std::shared_ptr<Timezone>(nullptr) );
}
else
{
std::shared_ptr<Timezone> newItem(new Timezone());
newItem->fromJson(item);
m_Timezones.push_back( newItem );
}
}
}
}
if(val.has_field(utility::conversions::to_string_t("ISOCurrencyCode")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("ISOCurrencyCode")];
if(!fieldValue.is_null())
{
setISOCurrencyCode(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("CurrencySymbol")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("CurrencySymbol")];
if(!fieldValue.is_null())
{
setCurrencySymbol(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("CurrencyEnglishName")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("CurrencyEnglishName")];
if(!fieldValue.is_null())
{
setCurrencyEnglishName(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("Region")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("Region")];
if(!fieldValue.is_null())
{
setRegion(ModelBase::stringFromJson(fieldValue));
}
}
if(val.has_field(utility::conversions::to_string_t("Subregion")))
{
web::json::value& fieldValue = val[utility::conversions::to_string_t("Subregion")];
if(!fieldValue.is_null())
{
setSubregion(ModelBase::stringFromJson(fieldValue));
}
}
}
void ValidateCountryResponse::toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix) const
{
utility::string_t namePrefix = prefix;
if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t("."))
{
namePrefix += utility::conversions::to_string_t(".");
}
if(m_SuccessfulIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("Successful"), m_Successful));
}
if(m_CountryFullNameIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("CountryFullName"), m_CountryFullName));
}
if(m_ISOTwoLetterCodeIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("ISOTwoLetterCode"), m_ISOTwoLetterCode));
}
if(m_FIPSTwoLetterCodeIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("FIPSTwoLetterCode"), m_FIPSTwoLetterCode));
}
if(m_ThreeLetterCodeIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("ThreeLetterCode"), m_ThreeLetterCode));
}
if(m_IsEuropeanUnionMemberIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("IsEuropeanUnionMember"), m_IsEuropeanUnionMember));
}
{
std::vector<web::json::value> jsonArray;
for( auto& item : m_Timezones )
{
jsonArray.push_back(ModelBase::toJson(item));
}
if(jsonArray.size() > 0)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("Timezones"), web::json::value::array(jsonArray), utility::conversions::to_string_t("application/json")));
}
}
if(m_ISOCurrencyCodeIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("ISOCurrencyCode"), m_ISOCurrencyCode));
}
if(m_CurrencySymbolIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("CurrencySymbol"), m_CurrencySymbol));
}
if(m_CurrencyEnglishNameIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("CurrencyEnglishName"), m_CurrencyEnglishName));
}
if(m_RegionIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("Region"), m_Region));
}
if(m_SubregionIsSet)
{
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("Subregion"), m_Subregion));
}
}
void ValidateCountryResponse::fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix)
{
utility::string_t namePrefix = prefix;
if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t("."))
{
namePrefix += utility::conversions::to_string_t(".");
}
if(multipart->hasContent(utility::conversions::to_string_t("Successful")))
{
setSuccessful(ModelBase::boolFromHttpContent(multipart->getContent(utility::conversions::to_string_t("Successful"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("CountryFullName")))
{
setCountryFullName(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("CountryFullName"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("ISOTwoLetterCode")))
{
setISOTwoLetterCode(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("ISOTwoLetterCode"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("FIPSTwoLetterCode")))
{
setFIPSTwoLetterCode(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("FIPSTwoLetterCode"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("ThreeLetterCode")))
{
setThreeLetterCode(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("ThreeLetterCode"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("IsEuropeanUnionMember")))
{
setIsEuropeanUnionMember(ModelBase::boolFromHttpContent(multipart->getContent(utility::conversions::to_string_t("IsEuropeanUnionMember"))));
}
{
m_Timezones.clear();
if(multipart->hasContent(utility::conversions::to_string_t("Timezones")))
{
web::json::value jsonArray = web::json::value::parse(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("Timezones"))));
for( auto& item : jsonArray.as_array() )
{
if(item.is_null())
{
m_Timezones.push_back( std::shared_ptr<Timezone>(nullptr) );
}
else
{
std::shared_ptr<Timezone> newItem(new Timezone());
newItem->fromJson(item);
m_Timezones.push_back( newItem );
}
}
}
}
if(multipart->hasContent(utility::conversions::to_string_t("ISOCurrencyCode")))
{
setISOCurrencyCode(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("ISOCurrencyCode"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("CurrencySymbol")))
{
setCurrencySymbol(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("CurrencySymbol"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("CurrencyEnglishName")))
{
setCurrencyEnglishName(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("CurrencyEnglishName"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("Region")))
{
setRegion(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("Region"))));
}
if(multipart->hasContent(utility::conversions::to_string_t("Subregion")))
{
setSubregion(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("Subregion"))));
}
}
bool ValidateCountryResponse::isSuccessful() const
{
return m_Successful;
}
void ValidateCountryResponse::setSuccessful(bool value)
{
m_Successful = value;
m_SuccessfulIsSet = true;
}
bool ValidateCountryResponse::successfulIsSet() const
{
return m_SuccessfulIsSet;
}
void ValidateCountryResponse::unsetSuccessful()
{
m_SuccessfulIsSet = false;
}
utility::string_t ValidateCountryResponse::getCountryFullName() const
{
return m_CountryFullName;
}
void ValidateCountryResponse::setCountryFullName(utility::string_t value)
{
m_CountryFullName = value;
m_CountryFullNameIsSet = true;
}
bool ValidateCountryResponse::countryFullNameIsSet() const
{
return m_CountryFullNameIsSet;
}
void ValidateCountryResponse::unsetCountryFullName()
{
m_CountryFullNameIsSet = false;
}
utility::string_t ValidateCountryResponse::getISOTwoLetterCode() const
{
return m_ISOTwoLetterCode;
}
void ValidateCountryResponse::setISOTwoLetterCode(utility::string_t value)
{
m_ISOTwoLetterCode = value;
m_ISOTwoLetterCodeIsSet = true;
}
bool ValidateCountryResponse::iSOTwoLetterCodeIsSet() const
{
return m_ISOTwoLetterCodeIsSet;
}
void ValidateCountryResponse::unsetISOTwoLetterCode()
{
m_ISOTwoLetterCodeIsSet = false;
}
utility::string_t ValidateCountryResponse::getFIPSTwoLetterCode() const
{
return m_FIPSTwoLetterCode;
}
void ValidateCountryResponse::setFIPSTwoLetterCode(utility::string_t value)
{
m_FIPSTwoLetterCode = value;
m_FIPSTwoLetterCodeIsSet = true;
}
bool ValidateCountryResponse::fIPSTwoLetterCodeIsSet() const
{
return m_FIPSTwoLetterCodeIsSet;
}
void ValidateCountryResponse::unsetFIPSTwoLetterCode()
{
m_FIPSTwoLetterCodeIsSet = false;
}
utility::string_t ValidateCountryResponse::getThreeLetterCode() const
{
return m_ThreeLetterCode;
}
void ValidateCountryResponse::setThreeLetterCode(utility::string_t value)
{
m_ThreeLetterCode = value;
m_ThreeLetterCodeIsSet = true;
}
bool ValidateCountryResponse::threeLetterCodeIsSet() const
{
return m_ThreeLetterCodeIsSet;
}
void ValidateCountryResponse::unsetThreeLetterCode()
{
m_ThreeLetterCodeIsSet = false;
}
bool ValidateCountryResponse::isIsEuropeanUnionMember() const
{
return m_IsEuropeanUnionMember;
}
void ValidateCountryResponse::setIsEuropeanUnionMember(bool value)
{
m_IsEuropeanUnionMember = value;
m_IsEuropeanUnionMemberIsSet = true;
}
bool ValidateCountryResponse::isEuropeanUnionMemberIsSet() const
{
return m_IsEuropeanUnionMemberIsSet;
}
void ValidateCountryResponse::unsetIsEuropeanUnionMember()
{
m_IsEuropeanUnionMemberIsSet = false;
}
std::vector<std::shared_ptr<Timezone>>& ValidateCountryResponse::getTimezones()
{
return m_Timezones;
}
void ValidateCountryResponse::setTimezones(std::vector<std::shared_ptr<Timezone>> value)
{
m_Timezones = value;
m_TimezonesIsSet = true;
}
bool ValidateCountryResponse::timezonesIsSet() const
{
return m_TimezonesIsSet;
}
void ValidateCountryResponse::unsetTimezones()
{
m_TimezonesIsSet = false;
}
utility::string_t ValidateCountryResponse::getISOCurrencyCode() const
{
return m_ISOCurrencyCode;
}
void ValidateCountryResponse::setISOCurrencyCode(utility::string_t value)
{
m_ISOCurrencyCode = value;
m_ISOCurrencyCodeIsSet = true;
}
bool ValidateCountryResponse::iSOCurrencyCodeIsSet() const
{
return m_ISOCurrencyCodeIsSet;
}
void ValidateCountryResponse::unsetISOCurrencyCode()
{
m_ISOCurrencyCodeIsSet = false;
}
utility::string_t ValidateCountryResponse::getCurrencySymbol() const
{
return m_CurrencySymbol;
}
void ValidateCountryResponse::setCurrencySymbol(utility::string_t value)
{
m_CurrencySymbol = value;
m_CurrencySymbolIsSet = true;
}
bool ValidateCountryResponse::currencySymbolIsSet() const
{
return m_CurrencySymbolIsSet;
}
void ValidateCountryResponse::unsetCurrencySymbol()
{
m_CurrencySymbolIsSet = false;
}
utility::string_t ValidateCountryResponse::getCurrencyEnglishName() const
{
return m_CurrencyEnglishName;
}
void ValidateCountryResponse::setCurrencyEnglishName(utility::string_t value)
{
m_CurrencyEnglishName = value;
m_CurrencyEnglishNameIsSet = true;
}
bool ValidateCountryResponse::currencyEnglishNameIsSet() const
{
return m_CurrencyEnglishNameIsSet;
}
void ValidateCountryResponse::unsetCurrencyEnglishName()
{
m_CurrencyEnglishNameIsSet = false;
}
utility::string_t ValidateCountryResponse::getRegion() const
{
return m_Region;
}
void ValidateCountryResponse::setRegion(utility::string_t value)
{
m_Region = value;
m_RegionIsSet = true;
}
bool ValidateCountryResponse::regionIsSet() const
{
return m_RegionIsSet;
}
void ValidateCountryResponse::unsetRegion()
{
m_RegionIsSet = false;
}
utility::string_t ValidateCountryResponse::getSubregion() const
{
return m_Subregion;
}
void ValidateCountryResponse::setSubregion(utility::string_t value)
{
m_Subregion = value;
m_SubregionIsSet = true;
}
bool ValidateCountryResponse::subregionIsSet() const
{
return m_SubregionIsSet;
}
void ValidateCountryResponse::unsetSubregion()
{
m_SubregionIsSet = false;
}
}
}
}
}
|
793430cda035331754b80414f792a25ca3a3fc70 | bedd263e72647461b092470e23613f3ada38a451 | /Inventor/S96CourseNotes/S96CourseNotes/COURSE38/SUPPLMNT/INVENTOR/SOURCE/MAZE/MAZEDOC.CPP | af854da093763d9f9d18d3f7f4d955aa310f1739 | [
"DOC",
"MIT"
] | permissive | pniaz20/inventor-utils | 27a7636dc827c613eeee2e963487cf8ec8b8afc5 | 2306b758b15bd1a0df3fb9bd250215b7bb7fac3f | refs/heads/main | 2023-04-09T00:28:17.731583 | 2021-04-15T16:18:02 | 2021-04-15T16:18:02 | 358,228,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,736 | cpp | MAZEDOC.CPP | /*
* Copyright 1996, Portable Graphics, Inc., Silicon Graphics, Inc.
* ALL RIGHTS RESERVED
*
* IRIS GL and OpenGL are registered trademarks, and Inventor and
* Open Inventor are trademarks of Silicon Graphics, Inc.
*
* UNPUBLISHED -- Rights reserved under the copyright laws of the United
* States. Use of a copyright notice is precautionary only and does not
* imply publication or disclosure.
*
* U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
* Use, duplication or disclosure by the Government is subject to restrictions
* as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
* in similar or successor clauses in the FAR, or the DOD or NASA FAR
* Supplement. Contractor/manufacturer is Portable Graphics, Inc.,
* 3006 Longhorn Blvd. Suite #105, Austin, TX 78758-7631.
*
* THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
* INFORMATION OF PORTABLE GRAPHICS, INC. AND SILICON GRAPHICS, INC. ANY
* DUPLICATION, MODIFICATION, DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN
* WHOLE, OR IN PART, IS STRICTLY PROHIBITED WITHOUT THE PRIOR EXPRESS
* WRITTEN PERMISSION OF PORTABLE GRAPHICS, INC.
*/
// mazedoc.cpp : implementation of the CMazeDoc class
//
// mazedoc.cpp : implementation of the CMazeDoc class
//
#include "stdafx.h"
#include "maze.h"
#include "mazedoc.h"
void maze_init(SoSeparator * main_root, int argc, char *argv[]);
void resetMazeType(int maze_type);
void resetGame();
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMazeDoc
IMPLEMENT_DYNCREATE(CMazeDoc, SoMfcDoc)
BEGIN_MESSAGE_MAP(CMazeDoc, SoMfcDoc)
//{{AFX_MSG_MAP(CMazeDoc)
ON_COMMAND(ID_GAME_MAZE1, OnGameMaze1)
ON_COMMAND(ID_GAME_MAZE2, OnGameMaze2)
ON_COMMAND(ID_GAME_MAZE3, OnGameMaze3)
ON_COMMAND(ID_GAME_RESTART, OnGameRestart)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMazeDoc construction/destruction
CMazeDoc::CMazeDoc()
{
// TODO: add one-time construction code here
}
CMazeDoc::~CMazeDoc()
{
}
BOOL CMazeDoc::OnNewDocument()
{
if (!SoMfcDoc::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
SetTitle("Maze");
SoSeparator *root = GetScene();
maze_init(root, 0, NULL);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMazeDoc serialization
void CMazeDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CMazeDoc diagnostics
#ifdef _DEBUG
void CMazeDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CMazeDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMazeDoc commands
void CMazeDoc::OnGameMaze1()
{
// TODO: Add your command handler code here
resetMazeType(1);
SoMfcDoc::SetTitle("#1");
}
void CMazeDoc::OnGameMaze2()
{
// TODO: Add your command handler code here
resetMazeType(2);
SoMfcDoc::SetTitle("#2");
}
void CMazeDoc::OnGameMaze3()
{
// TODO: Add your command handler code here
resetMazeType(3);
SoMfcDoc::SetTitle("#3");
}
void CMazeDoc::OnGameRestart()
{
// TODO: Add your command handler code here
resetGame();
}
void CMazeDoc::SetTitle(LPCTSTR lpszTitle)
{
// TODO: Add your specialized code here and/or call the base class
SoMfcDoc::SetTitle("#1");
}
|
f2ac5d5b33df6243c4239aa5b08a1edffd969bf3 | 4bfcdb211fa2d29dd006ddd27110653dc494292d | /src/include/libflame.h | 0146677510676c01360c3a771b4776282b0ab6be | [] | no_license | Gancc123/flame-sp | c3fe254c1b4303aeb19e24cff719bc971e975650 | c8108823dea205e25abac03942534996710109f3 | refs/heads/master | 2022-12-03T16:20:42.521689 | 2019-06-14T11:54:19 | 2019-06-14T11:54:19 | 285,829,655 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,035 | h | libflame.h | /**
* @file libflame.h
* @author zhzane (zhzane@outlook.com)
* @brief
* @version 0.1
* @date 2019-05-09
*
* @copyright Copyright (c) 2019
*
*/
#ifndef LIBFLAME_H
#define LIBFLAME_H
#include "include/retcode.h"
#include "include/buffer.h"
#include <cstdint>
#include <string>
#include <vector>
#if __GNUC__ >= 4
#define FLAME_API __attribute__((visibility ("default")))
#else
#define FLAME_API
#endif
namespace libflame {
typedef void (*callback_fn_t)(int rc, void* arg1, void* arg2);
struct FLAME_API Config {
std::string mgr_addr;
}; // class Config
struct FLAME_API AsyncCallback {
callback_fn_t fn { nullptr };
void* arg1 { nullptr };
void* arg2 { nullptr };
inline void call(int rc) {
if (fn != nullptr) fn(rc, arg1, arg2);
}
};
class FLAME_API Volume;
class FLAME_API VolumeAttr;
class FLAME_API VolumeMeta;
class FLAME_API FlameStub {
public:
static FlameStub* connect(const Config& cfg);
static FlameStub* connect(std::string& path);
int shutdown();
// Cluster API
// return info of cluster by a argurment
int cluster_info(const std::string& arg, std::string& rst);
// Group API
// create an group.
int vg_create(const std::string& name);
// list group. return an list of group name.
int vg_list(std::vector<std::string>>& rst);
// remove an group.
int vg_remove(const std::string& name);
// rename an group. not support now
// int vg_rename(const std::string& src, const std::string& dst);
// Volume API
// create an volume.
int vol_create(const std::string& group, const std::string& name, const VolumeAttr& attr);
// list volumes. return an list of volume name.
int vol_list(const std::string& group, std::vector<std::string>>& rst);
// remove an volume.
int vol_remove(const std::string& group, const std::string& name);
// rename an volume. not support now
// int vol_rename(const std::string& group, const std::string& src, const std::string& dst);
// move an volume to another group.
// int vol_move(const std::string& group, const std::string& name, const std::string& target);
// clone an volume
// int vol_clone(const std::string& src_group, const std::string& src_name, const std::string& dst_group, const std::string& dst_name);
// read info of volume.
int vol_meta(const std::string& group, const std::string& name, VolumeMeta& info);
// open an volume, and return the io context of volume.
int vol_open(const std::string& group, const std::string& name, Volume** rst);
// lock an volume. not support now
// int vol_open_locked(const std::string& group, const std::string& name, Volume** rst);
// unlock an volume. not support now
// int vol_unlock(const std::string& group, const std::string& name);
private:
FlameStub();
~FlameStub();
FlameStub(const Cluster& rhs) = delete;
FlameStub& operator=(const Cluster& rhs) = delete;
}; // class Cluster
class FLAME_API Volume {
public:
uint64_t get_id();
std::string get_name();
std::string get_group();
uint64_t size();
VolumeMeta get_meta();
// manage: not support, now
// int resize(uint64_t size);
// int lock();
// int unlock();
// async io call
int read(const BufferList& buffs, uint64_t offset, uint64_t len, const AsyncCallback& cb);
int write(const BufferList& buffs, uint64_t offset, uint64_t len, const AsyncCallback& cb);
int reset(uint64_t offset, uint64_t len, const AsyncCallback& cb);
int flush(const AsyncCallback& cb);
private:
Volume();
~Volume;
friend class Cluster;
}; // class Volume
class FLAME_API VolumeAttr {
public:
VolumeAttr(uint64_t size) : size_(size), prealloc_(false) {}
~VolumeAttr() {}
uint64_t get_size() const { return size_; }
void set_size(uint64_t s) { size_ = s; }
bool is_prealloc() const { return prealloc_; }
void set_prealloc(bool prealloc) { prealloc_ = prealloc; }
private:
uint64_t size_;
bool prealloc_;
}; // struct VolumeAttr
class FLAME_API VolumeMeta {
public:
VolumeMeta() {}
~VolumeMeta() {}
uint64_t get_id() const { return id_; }
std::string& get_name() const { return name_; }
std::string& get_group() const { return group_; }
uint64_t get_size() const { return size_; }
uint64_t get_ctime() const { return ctime_; }
bool is_prealloc() const { return prealloc_; }
private:
friend class Volume;
void set_id(uint64_t id) { id_ = id; }
void set_name(const std::string& name) { name_ = name; }
void set_group(const std::string& group) { group_ = group; }
void set_size(uint64_t size) { size_ = size; }
void set_ctime(uint64_t ctime) { ctime_ = ctime; }
void set_prealloc(bool v) { prealloc_ = v; }
uint64_t id_;
std::string name_;
std::string group_;
uint64_t size_;
uint64_t ctime_; // create time
bool prealloc_;
}; // class VolumeMeta
} // namespace libflame
#endif // LIBFLAME_H |
3e9e275ec09b36244e01b2d0b47f3d8aa4f90d20 | 9ac68c4e228dfba412a1aea6e07ddc9ab64a057c | /showcomment.h | 4f8a6a882b27128e2369e116f2d025238cf7a928 | [] | no_license | nanjingblue/Pancake-stall | 5fc1486c25ddefe9516c06df01f124bc7ef476d6 | f91c625181d8ee5e205c70d9a72756819de3419a | refs/heads/master | 2023-07-17T13:57:13.313845 | 2021-09-01T07:29:06 | 2021-09-01T07:29:06 | 391,815,611 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 428 | h | showcomment.h | #ifndef SHOWCOMMENT_H
#define SHOWCOMMENT_H
#include <QWidget>
#include <QSqlTableModel>
namespace Ui {
class ShowComment;
}
class ShowComment : public QWidget
{
Q_OBJECT
public:
explicit ShowComment(QWidget *parent = nullptr);
~ShowComment();
void initTableShowComment();
public slots:
void onBtnCloseClicked();
private:
Ui::ShowComment *ui;
QSqlQueryModel * model;
};
#endif // SHOWCOMMENT_H
|
0168d7b0a4929e2583134c73e8d5a7fb96d0dabc | ea401c3e792a50364fe11f7cea0f35f99e8f4bde | /hackathon/hanchuan/sscope/FlyCapture2/gtk64/include/gtkmm-2.4/gtkmm/comboboxentry.h | be9d2584f6da32f5162f2310036e6c5d2abbc7e6 | [
"MIT"
] | permissive | Vaa3D/vaa3d_tools | edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9 | e6974d5223ae70474efaa85e1253f5df1814fae8 | refs/heads/master | 2023-08-03T06:12:01.013752 | 2023-08-02T07:26:01 | 2023-08-02T07:26:01 | 50,527,925 | 107 | 86 | MIT | 2023-05-22T23:43:48 | 2016-01-27T18:19:17 | C++ | UTF-8 | C++ | false | false | 6,846 | h | comboboxentry.h | // -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GTKMM_COMBOBOXENTRY_H
#define _GTKMM_COMBOBOXENTRY_H
#include <glibmm.h>
/* $Id: comboboxentry.hg,v 1.10 2005/05/26 21:07:42 murrayc Exp $ */
/* combobox.h
*
* Copyright (C) 2003 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <gtkmm/combobox.h>
#include <gtkmm/entry.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkComboBoxEntry GtkComboBoxEntry;
typedef struct _GtkComboBoxEntryClass GtkComboBoxEntryClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gtk
{ class ComboBoxEntry_Class; } // namespace Gtk
namespace Gtk
{
/** A text entry field with a dropdown list.
* A ComboBoxEntry is a widget that allows the user to choose from a list of valid choices or enter a different
* value. It is very similar to a ComboBox, but it displays the selected value in an entry to allow modifying it.
*
* In contrast to a ComboBox, the underlying model of a ComboBoxEntry must always have a text column (see
* set_text_column()), and the entry will show the content of the text column in the selected row. To get the text from the entry, use get_active_text().
*
* The changed signal will be emitted while typing into a ComboBoxEntry, as well as when selecting an item from the
* ComboBoxEntry's list. Use get_active() to discover whether an item was actually selected from
* the list.
*
* See also ComboBoxEntryText, which is specialised for a single text column.
*
* To add and remove strings from the list, just modify the model using its data manipulation API. You can get the
* Entry by using get_child().
*
* If you have special needs that go beyond a simple entry (e.g. input validation), it is possible to replace the
* child entry by a different widget using Gtk::Container::remove() and Gtk::Container::add().
*
* The ComboBoxEntry widget looks like this:
* @image html comboboxentry1.png
*
* @ingroup Widgets
*/
class ComboBoxEntry : public ComboBox
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef ComboBoxEntry CppObjectType;
typedef ComboBoxEntry_Class CppClassType;
typedef GtkComboBoxEntry BaseObjectType;
typedef GtkComboBoxEntryClass BaseClassType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
virtual ~ComboBoxEntry();
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
friend class ComboBoxEntry_Class;
static CppClassType comboboxentry_class_;
// noncopyable
ComboBoxEntry(const ComboBoxEntry&);
ComboBoxEntry& operator=(const ComboBoxEntry&);
protected:
explicit ComboBoxEntry(const Glib::ConstructParams& construct_params);
explicit ComboBoxEntry(GtkComboBoxEntry* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_type() G_GNUC_CONST;
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GtkObject.
GtkComboBoxEntry* gobj() { return reinterpret_cast<GtkComboBoxEntry*>(gobject_); }
///Provides access to the underlying C GtkObject.
const GtkComboBoxEntry* gobj() const { return reinterpret_cast<GtkComboBoxEntry*>(gobject_); }
public:
//C++ methods used to invoke GTK+ virtual functions:
#ifdef GLIBMM_VFUNCS_ENABLED
#endif //GLIBMM_VFUNCS_ENABLED
protected:
//GTK+ Virtual Functions (override these to change behaviour):
#ifdef GLIBMM_VFUNCS_ENABLED
#endif //GLIBMM_VFUNCS_ENABLED
//Default Signal Handlers::
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
private:
public:
ComboBoxEntry();
//See ComboBoxEntryText for an equivalent of gtk_combo_box_entry_new_text().
/** Creates a new ComboBoxEntry which has an Entry as child and a list of strings as popup. You can get the
* Entry from a ComboBoxEntry using get_entry(). To add and remove strings from the list, just modify @a model
* using its data manipulation API.
*
* @param model A TreeModel.
* @param text_column A column in @a model to get the strings from.
*/
explicit ComboBoxEntry(const Glib::RefPtr<TreeModel>& model, const TreeModelColumnBase& text_column);
/** Creates a new ComboBoxEntry which has an Entry as child and a list of strings as popup. You can get the
* Entry from a ComboBoxEntry using get_entry(). To add and remove strings from the list, just modify @a model
* using its data manipulation API.
*
* @param model A TreeModel.
* @param text_column A column in @a model to get the strings from.
*/
explicit ComboBoxEntry(const Glib::RefPtr<TreeModel>& model, int text_column = 0);
/** Sets the model column which @a entry_box should use to get strings from
* to be @a text_column.
*
* @newin2p4
* @param text_column A column in @a model to get the strings from.
*/
void set_text_column(const TreeModelColumnBase& text_column) const;
/** Sets the model column which @a entry_box should use to get strings from
* to be @a text_column.
*
* @newin2p4
* @param text_column A column in @a model to get the strings from.
*/
void set_text_column(int text_column) const;
/** Return value: A column in the data source model of @a entry_box.
* @return A column in the data source model of @a entry_box.
*
* @newin2p4.
*/
int get_text_column() const;
/** Returns the currently active string.
* @result The currently active text.
*
* @newin2p14
*/
Glib::ustring get_active_text() const;
//The child is always an entry:
/** @see Bin::get_child().
*/
Entry* get_entry();
/** @see Bin::get_child().
*/
const Entry* get_entry() const;
};
} // namespace Gtk
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gtk::ComboBoxEntry
*/
Gtk::ComboBoxEntry* wrap(GtkComboBoxEntry* object, bool take_copy = false);
} //namespace Glib
#endif /* _GTKMM_COMBOBOXENTRY_H */
|
f4848da349adb31abd35648a25a79100dd180d22 | bc62fef73c32417ed4b71c193ab8b6ed712a73f1 | /libnd4j/include/ops/declarable/helpers/convolutions.h | 0c7064c0970a21901251ee941631b961fb9acae0 | [
"Apache-2.0",
"MIT",
"BSD-3-Clause"
] | permissive | deeplearning4j/deeplearning4j | 0a1af00abc2fe7a843b50650b72c8200364b53bf | 91131d0e1e2cf37002658764df29ae5c0e1f577b | refs/heads/master | 2023-08-17T08:20:54.290807 | 2023-07-30T10:04:23 | 2023-07-30T10:04:23 | 14,734,876 | 13,626 | 4,793 | Apache-2.0 | 2023-09-11T06:54:25 | 2013-11-27T02:03:28 | Java | UTF-8 | C++ | false | false | 17,352 | h | convolutions.h | /* ******************************************************************************
*
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
* 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.
*
* SPDX-License-Identifier: Apache-2.0
******************************************************************************/
//
// Based on PyTorch - https://github.com/pytorch/pytorch
//
#ifndef LIBND4J_CONVOLUTIONS_H
#define LIBND4J_CONVOLUTIONS_H
#include <array/NDArray.h>
#include <execution/LaunchContext.h>
#include <graph/Context.h>
namespace sd {
namespace ops {
enum PoolingType {
MAX_POOL = 0,
AVG_POOL = 1,
PNORM_POOL = 2,
};
class SD_LIB_HIDDEN ConvolutionUtils {
public:
static inline void calcOutSizePool2D(sd::LongType& oH, sd::LongType& oW, const sd::LongType kH, const sd::LongType kW, const sd::LongType sH, const sd::LongType sW,
const sd::LongType pH, const sd::LongType pW, const sd::LongType dH, const sd::LongType dW, const sd::LongType iH,
const sd::LongType iW, const sd::LongType paddingMode) {
if (paddingMode == 0) { // valid
// oH = (iH - (kH + (kH-1)*(dH-1)) + 2*pH)/sH + 1;
// oW = (iW - (kW + (kW-1)*(dW-1)) + 2*pW)/sW + 1;
oH = (iH - ((kH - 1) * dH + 1) + 2 * pH) / sH + 1;
oW = (iW - ((kW - 1) * dW + 1) + 2 * pW) / sW + 1;
} else if (paddingMode == 1) { // same
oH = static_cast<sd::LongType>(math::sd_ceil<double, double>(iH * 1. / sH));
oW = static_cast<sd::LongType>(math::sd_ceil<double, double>(iW * 1. / sW));
} else { // causal
oH = (iH - 1) / sH + 1; // 2*pH = (kH-1)*dH
oW = (iW - 1) / sW + 1;
}
}
static inline void calcOutSizePool3D(LongType& oD, LongType& oH, LongType& oW, const sd::LongType kD, const sd::LongType kH, const sd::LongType kW,
const sd::LongType sD, const sd::LongType sH, const sd::LongType sW, const sd::LongType pD, const sd::LongType pH,
const sd::LongType pW, const sd::LongType dD, const sd::LongType dH, const sd::LongType dW, const sd::LongType iD,
const sd::LongType iH, const sd::LongType iW, const int paddingMode) {
if (paddingMode == 0) { // valid
oD = (iD - ((kD - 1) * dD + 1) + 2 * pD) / sD + 1;
oH = (iH - ((kH - 1) * dH + 1) + 2 * pH) / sH + 1;
oW = (iW - ((kW - 1) * dW + 1) + 2 * pW) / sW + 1;
} else if (paddingMode == 1) { // same
oD = (int)sd::math::sd_ceil<double, double>(iD * 1. / sD);
oH = (int)sd::math::sd_ceil<double, double>(iH * 1. / sH);
oW = (int)sd::math::sd_ceil<double, double>(iW * 1. / sW);
} else { // causal
oD = (iD - 1) / sD + 1;
oH = (iH - 1) / sH + 1; // 2*pH = (kH-1)*dH
oW = (iW - 1) / sW + 1;
}
}
static inline void calcPadding2D(LongType& pH, LongType& pW, LongType oH, LongType oW, LongType iH, LongType iW, LongType kH, LongType kW, LongType sH, LongType sW,
LongType dH, LongType dW, const int paddingMode = 1 /* default is same mode*/) {
if (paddingMode == 0) // valid
return;
if (paddingMode == 1) { // same
const int eKH = (kH - 1) * dH + 1;
const int eKW = (kW - 1) * dW + 1;
pH = ((oH - 1) * sH + eKH - iH) /
2; // Note that padBottom is 1 bigger than this if bracketed term is not divisible by 2
pW = ((oW - 1) * sW + eKW - iW) / 2;
} else { // causal
pH = (kH - 1) * dH;
pW = (kW - 1) * dW;
}
}
static inline void calcPadding3D(LongType& pD, LongType& pH, LongType& pW, const sd::LongType oD, const sd::LongType oH, const sd::LongType oW, const sd::LongType iD,
const sd::LongType iH, const sd::LongType iW, const sd::LongType kD, const sd::LongType kH, const sd::LongType kW, const sd::LongType sD,
const sd::LongType sH, const sd::LongType sW, const sd::LongType dD, const sd::LongType dH, const sd::LongType dW,
const int paddingMode = 1 /* default is same mode*/) {
if (paddingMode == 0) // valid
return;
if (paddingMode == 1) { // same
const int eKD = (kD - 1) * dD + 1;
const int eKH = (kH - 1) * dH + 1;
const int eKW = (kW - 1) * dW + 1;
pD = ((oD - 1) * sD + eKD - iD) / 2;
pH = ((oH - 1) * sH + eKH - iH) /
2; // Note that padBottom is 1 bigger than this if bracketed term is not divisible by 2
pW = ((oW - 1) * sW + eKW - iW) / 2;
} else { // causal
pD = (kD - 1) * dD;
pH = (kH - 1) * dH;
pW = (kW - 1) * dW;
}
}
// calculation of output height and width in 2D deconvolution procedure
static inline void calcOutSizeDeconv2D(LongType& oH, LongType& oW, const sd::LongType kH, const sd::LongType kW, const sd::LongType sH, const sd::LongType sW,
const sd::LongType pH, const sd::LongType pW, const sd::LongType dH, const sd::LongType dW, const sd::LongType iH,
const sd::LongType iW, const int paddingMode) {
if (paddingMode) {
oH = sH * iH;
oW = sW * iW;
} else {
const int ekH = (kH - 1) * dH + 1;
const int ekW = (kW - 1) * dW + 1;
oH = sH * (iH - 1) + ekH - 2 * pH;
oW = sW * (iW - 1) + ekW - 2 * pW;
}
}
// calculation of output height and width in 3D deconvolution procedure
static inline void calcOutSizeDeconv3D(LongType& oD, LongType& oH, LongType& oW, const sd::LongType kD, const sd::LongType kH, const sd::LongType kW,
const sd::LongType sD, const sd::LongType sH, const sd::LongType sW, const sd::LongType pD, const sd::LongType pH,
const sd::LongType pW, const sd::LongType dD, const sd::LongType dH, const sd::LongType dW, const sd::LongType iD,
const sd::LongType iH, const sd::LongType iW, const int paddingMode) {
if (paddingMode) {
oD = sD * iD;
oH = sH * iH;
oW = sW * iW;
} else {
const int ekD = (kD - 1) * dD + 1;
const int ekH = (kH - 1) * dH + 1;
const int ekW = (kW - 1) * dW + 1;
oD = sD * (iD - 1) + ekD - 2 * pD;
oH = sH * (iH - 1) + ekH - 2 * pH;
oW = sW * (iW - 1) + ekW - 2 * pW;
}
}
// evaluates sizes values and indexes using input and output arrays depending on data format
static inline void getSizesAndIndexesConv2d(const bool isNCHW, const int wFormat, const NDArray& input,
const NDArray& output, LongType& bS, LongType& iC, LongType& iH, LongType& iW, LongType& oC,
LongType& oH, LongType& oW, LongType& indIOioC, LongType& indIiH, LongType& indWiC, LongType& indWoC,
LongType& indWkH, LongType& indOoH) {
getSizesAndIndexesConv2d(isNCHW, wFormat, input.shapeInfo(), output.shapeInfo(), bS, iC, iH, iW, oC, oH, oW,
indIOioC, indIiH, indWiC, indWoC, indWkH, indOoH);
}
static inline void getSizesAndIndexesConv2d(const bool isNCHW, const int wFormat, const sd::LongType* inShapeInfo,
const sd::LongType* outShapeInfo, LongType& bS, LongType& iC, LongType& iH, LongType& iW,
LongType& oC, LongType& oH, LongType& oW, LongType& indIOioC, LongType& indIiH, LongType& indWiC,
LongType& indWoC, LongType& indWkH, LongType& indOoH) {
// input [bS, iH, iW, iC] (NHWC) or [bS, iC, iH, iW] (NCHW)
// weights [kH, kW, iC, oC] (wFormat = 0), [oC, iC, kH, kW] (wFormat = 1), [oC, kH, kW, iC] (wFormat = 2)
// output [bS, oH, oW, oC] (NHWC) or [bS, oC, oH, oW] (NCHW)
if (0 == wFormat) {
indWkH = 0;
indWiC = 2;
indWoC = 3;
} else if (1 == wFormat) {
indWkH = 2;
indWiC = 1;
indWoC = 0;
} else {
indWkH = 1;
indWiC = 3;
indWoC = 0;
}
if (!isNCHW) {
indIOioC = 3;
indIiH = 1;
indOoH = 1;
} else {
indIOioC = 1;
indIiH = 2;
indOoH = 2;
}
bS = inShapeInfo[1]; // batch size
iC = inShapeInfo[indIOioC + 1]; // input channels
iH = inShapeInfo[indIiH + 1]; // input height
iW = inShapeInfo[indIiH + 2]; // input width
oC = outShapeInfo[indIOioC + 1]; // output channels
oH = outShapeInfo[indOoH + 1]; // output height
oW = outShapeInfo[indOoH + 2]; // output width
}
// evaluates sizes values and indexes using input and output arrays depending on data format
static inline void getSizesAndIndexesConv3d(const bool isNCDHW, const int wFormat, const NDArray& input,
const NDArray& output, LongType& bS, LongType& iC, LongType& iD, LongType& iH, LongType& iW,
LongType& oC, LongType& oD, LongType& oH, LongType& oW, LongType& indIOioC, LongType& indIOioD,
LongType& indWiC, LongType& indWoC, LongType& indWkD) {
// input [bS, iD, iH, iW, iC] (NDHWC) or [bS, iC, iD, iH, iW] (NCDHW)
// weights [kD, kH, kW, iC, oC] (wFormat = 0), [oC, iC, kD, kH, kW] (wFormat = 1), [oC, kD, kH, kW, iC] (wFormat =
// 2) output [bS, oD, oH, oW, oC] (NDHWC) or [bS, oC, oD, oH, oW] (NCDHW)
if (0 == wFormat) {
indWkD = 0;
indWiC = 3;
indWoC = 4;
} else if (1 == wFormat) {
indWkD = 2;
indWiC = 1;
indWoC = 0;
} else {
indWkD = 1;
indWiC = 4;
indWoC = 0;
}
if (!isNCDHW) {
indIOioC = 4;
indIOioD = 1;
} else {
indIOioC = 1;
indIOioD = 2;
}
bS = input.sizeAt(0); // batch size
iC = input.sizeAt(indIOioC); // input channels
iD = input.sizeAt(indIOioD); // input depth
iH = input.sizeAt(indIOioD + 1); // input height
iW = input.sizeAt(indIOioD + 2); // input width
oC = output.sizeAt(indIOioC); // output channels
oD = output.sizeAt(indIOioD); // output depth
oH = output.sizeAt(indIOioD + 1); // output height
oW = output.sizeAt(indIOioD + 2); // output width
}
static std::vector<sd::LongType> expectWeightsShape(const int wFormat, const sd::LongType kH, const sd::LongType kW, const sd::LongType iC,
const sd::LongType oC) {
if (0 == wFormat) return std::vector<sd::LongType>({kH, kW, iC, oC});
if (1 == wFormat) return std::vector<sd::LongType>({oC, iC, kH, kW});
return std::vector<sd::LongType>({oC, kH, kW, iC});
}
static std::vector<sd::LongType> expectWeightsShape(const int wFormat, const sd::LongType kD, const sd::LongType kH, const sd::LongType kW,
const sd::LongType iC, const sd::LongType oC) {
if (0 == wFormat) return std::vector<sd::LongType>({kD, kH, kW, iC, oC});
if (1 == wFormat) return std::vector<sd::LongType>({oC, iC, kD, kH, kW});
return std::vector<sd::LongType>({oC, kD, kH, kW, iC});
}
static void conv2d(sd::graph::Context& context, const NDArray* input, const NDArray* weights, const NDArray* bias,
NDArray* output, const sd::LongType kH, const sd::LongType kW, const sd::LongType sH, const sd::LongType sW, LongType pH, LongType pW,
const sd::LongType dH, const sd::LongType dW, const int paddingMode, const int isNCHW, const int wFormat);
static void conv2dBP(sd::graph::Context& block, const NDArray* input, const NDArray* weights, const NDArray* bias,
const NDArray* gradO, NDArray* gradI, NDArray* gradW, NDArray* gradB, const sd::LongType kH, const sd::LongType kW,
const sd::LongType sH, const sd::LongType sW, LongType pH, LongType pW, const sd::LongType dH, const sd::LongType dW, const int paddingMode,
const int isNCHW, const int wFormat);
static void depthwiseConv2d(sd::graph::Context& block, const NDArray* input, const NDArray* weights,
const NDArray* bias, NDArray* output, const sd::LongType kH, const sd::LongType kW, const sd::LongType sH,
const sd::LongType sW, LongType pH, LongType pW, const sd::LongType dH, const sd::LongType dW, const int paddingMode,
const int isNCHW, const int wFormat);
static void depthwiseConv2dBP(sd::graph::Context& block, const NDArray* input, const NDArray* weights,
const NDArray* bias, const NDArray* gradO, NDArray* gradI, NDArray* gradW,
NDArray* gradB, const sd::LongType kH, const sd::LongType kW, const sd::LongType sH, const sd::LongType sW, LongType pH, LongType pW,
const sd::LongType dH, const sd::LongType dW, const int paddingMode, const int isNCHW, const int wFormat);
static void sconv2d(sd::graph::Context& block, const NDArray* input, const NDArray* weightsDepth,
const NDArray* weightsPoint, const NDArray* bias, NDArray* output, const sd::LongType kH, const sd::LongType kW,
const sd::LongType sH, const sd::LongType sW, LongType pH, LongType pW, const sd::LongType dH, const sd::LongType dW, const int paddingMode,
const int isNCHW, const int wFormat);
static void vol2col(sd::graph::Context& block, const NDArray& vol, NDArray& col, const sd::LongType sD, const sd::LongType sH,
const sd::LongType sW, const sd::LongType pD, const sd::LongType pH, const sd::LongType pW, const sd::LongType dD, const sd::LongType dH, const sd::LongType dW);
static void col2vol(sd::graph::Context& block, const NDArray& col, NDArray& vol, const sd::LongType sD, const sd::LongType sH,
const sd::LongType sW, const sd::LongType pD, const sd::LongType pH, const sd::LongType pW, const sd::LongType dD, const sd::LongType dH, const sd::LongType dW);
static void upsampling2d(sd::graph::Context& block, const NDArray& input, NDArray& output, const sd::LongType factorH,
const sd::LongType factorW, const bool isNCHW);
static void upsampling3d(sd::graph::Context& block, const NDArray& input, NDArray& output, const sd::LongType factorD,
const sd::LongType factorH, const sd::LongType factorW, const bool isNCDHW);
static void upsampling2dBP(sd::graph::Context& block, const NDArray& gradO, NDArray& gradI, const bool isNCHW);
static void upsampling3dBP(sd::graph::Context& block, const NDArray& gradO, NDArray& gradI, const bool isNCDHW);
static void pooling2d(sd::graph::Context& block, const NDArray& input, NDArray& output, const sd::LongType kH, const sd::LongType kW,
const sd::LongType sH, const sd::LongType sW, const sd::LongType pH, const sd::LongType pW, const sd::LongType dH, const sd::LongType dW,
const PoolingType poolingMode, const int extraParam0);
static void pooling3d(sd::graph::Context& block, const NDArray& input, NDArray& output, const sd::LongType kD, const sd::LongType kH,
const sd::LongType kW, const sd::LongType sD, const sd::LongType sH, const sd::LongType sW, const sd::LongType pD, const sd::LongType pH,
const sd::LongType pW, const sd::LongType dD, const sd::LongType dH, const sd::LongType dW, const int poolingMode,
const int extraParam0);
static void pooling2dBP(sd::graph::Context& block, const NDArray& input, const NDArray& gradO, NDArray& gradI,
const sd::LongType kH, const sd::LongType kW, const sd::LongType sH, const sd::LongType sW, const sd::LongType pH, const sd::LongType pW,
const sd::LongType dH, const sd::LongType dW, const int poolingMode, const int extraParam0);
static void pooling3dBP(sd::graph::Context& block, const NDArray& input, const NDArray& gradO, NDArray& gradI,
const sd::LongType kD, const sd::LongType kH, const sd::LongType kW, const sd::LongType sD, const sd::LongType sH, const sd::LongType sW,
const sd::LongType pD, const sd::LongType pH, const sd::LongType pW, const sd::LongType dD, const sd::LongType dH, const sd::LongType dW,
const int poolingMode, const int extraParam0);
};
} // namespace ops
} // namespace sd
#endif // LIBND4J_CONVOLUTIONS_H
|
d1d59ce04d8a05b7276a5aec705dd6488abe2bf2 | dee7165c2d55076a61c1b7468d50edc8e009152c | /oled_display.h | ef6b351dfd5e161477ac593497c1eb17bdd8e2e8 | [] | no_license | kuma-panda/PEACH_MusicPlayer | 0681825eaa348600e35de8a90ebc1072d2c0c010 | ea3910a0d2048c94ac5b6193bc0c184a70b1a202 | refs/heads/master | 2023-05-13T22:24:40.097521 | 2021-06-06T06:35:57 | 2021-06-06T06:35:57 | 374,285,783 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,023 | h | oled_display.h | #ifndef OLED_DISPLAY_H
#define OLED_DISPLAY_H
#include <Arduino.h>
#include "SSD1322.h"
#include "player.h"
#include "playlist.h"
#include "ir_remote.h"
#include "spectrum_analyzer.h"
#define NUM_VIEWS 8 // 余裕を持った値だが、ビューを追加するときはこの値を超えていないかチェック
// -----------------------------------------------------------------------------
class View
{
friend class PopupView;
private:
bool m_visible;
static Vector<View *> m_views;
protected:
SSD1322 *m_oled;
Playlist *m_playlist;
uint8_t m_id;
virtual void show();
virtual void hide();
virtual void refresh();
public:
View(SSD1322 *oled, Playlist *playlist, uint8_t id);
virtual void init();
bool isVisible(){ return m_visible; }
virtual void update();
virtual void invalidate(bool partial);
virtual bool handleIRR(IRRCODE code){ return false; }
static View *getView(uint8_t id);
static View *getActiveView();
static void show(uint8_t id);
};
// -----------------------------------------------------------------------------
// class SleepView : public View
// {
// public:
// enum{ID = 99};
// SleepView(SSD1322 *oled, Playlist *playlist);
// };
// -----------------------------------------------------------------------------
class PlaybackView : public View
{
private:
enum{MSGEQ7_STROBE = 2};
enum{MSGEQ7_RESET = 3};
enum{STOP = 0, PLAY = 1, PAUSE = 2};
ImageList m_state_images;
ImageList m_digit_images;
ImageList m_label_images;
ImageList m_icon_images;
uint8_t m_state;
uint8_t m_track_number[2]; // トラックNo.(十の位、一の位)
uint8_t m_elapsed_time[5]; // 演奏時間(MM:SS)
ScrollText m_scroll_text;
SpectrumAnalyzer *m_analyzer;
uint8_t m_spectrum[SpectrumAnalyzer::NUM_CHANNELS]; // 各バンドのスペアナ表示値(0~16)
uint8_t m_spectrum_gain;
void setScrollText();
void drawState(bool force_redraw);
void drawTrackNumber(bool force_redraw);
void drawElapsedTime(bool force_redraw);
void drawSpectrum(bool force_redraw);
void drawAlbumInfo(bool force_redraw);
void drawTrackInfo(int row = -1); //bool force_redraw);
protected:
void refresh();
public:
enum{ID = 1};
PlaybackView(SSD1322 *oled, Playlist *playlist, SpectrumAnalyzer *analyzer);
void init();
void update();
void invalidate(bool partial);
bool handleIRR(IRRCODE code);
};
// -----------------------------------------------------------------------------
class ListView : public View
{
protected:
enum{ITEMS_PER_PAGE = 3};
uint16_t m_item_count;
uint16_t m_page_count;
uint16_t m_page_pos;
uint16_t m_cursor_pos;
void show();
void refresh();
uint16_t cursorPosToIndex(uint16_t pos){
return m_page_pos * ITEMS_PER_PAGE + pos;
}
void getItemRect(uint16_t index, Rectangle& rc){ //int16_t& x, int16_t& y, int16_t& w, int16_t& h){
rc.left = 0;
rc.top = 16 + (index % ITEMS_PER_PAGE)*16;
rc.width = 256;
rc.height = 16;
}
virtual uint16_t getItemCount(){ return 0; }
virtual uint16_t getInitialSelection(){ return 0; }
virtual void drawHeader(){}
virtual void drawIndex();
virtual void drawItem(uint16_t index, Rectangle& rc, bool selected);
private:
static ImageList m_cursor_images;
void drawListItems();
public:
ListView(SSD1322 *oled, Playlist *playlist, uint8_t id);
void init();
void moveCursor(int direction);
void movePage(int direction);
uint16_t getSelectedIndex(){ return cursorPosToIndex(m_cursor_pos); }
bool handleIRR(IRRCODE code);
};
// -----------------------------------------------------------------------------
class AlbumListView : public ListView
{
private:
Artist *m_artist;
protected:
uint16_t getItemCount();
uint16_t getInitialSelection();
void drawHeader();
void drawItem(uint16_t index, Rectangle& rc, bool selected);
public:
enum{ID = 2};
AlbumListView(SSD1322 *oled, Playlist *playlist);
void setArtist(Artist *artist){ m_artist = artist; }
Album *getSelection();
bool handleIRR(IRRCODE code);
};
// -----------------------------------------------------------------------------
class ArtistListView : public ListView
{
private:
Artist *m_artist;
protected:
uint16_t getItemCount();
uint16_t getInitialSelection();
void drawHeader();
void drawItem(uint16_t index, Rectangle& rc, bool selected);
public:
enum{ID = 3};
ArtistListView(SSD1322 *oled, Playlist *playlist);
void setArtist(Artist *artist){ m_artist = artist; }
Artist *getSelection();
bool handleIRR(IRRCODE code);
};
// -----------------------------------------------------------------------------
class SSLine
{
private:
int16_t m_x[2], m_y[2];
int16_t m_dx[2], m_dy[2];
public:
SSLine();
SSLine& operator = (SSLine& src);
void move();
void draw(SSD1322 *oled, uint16_t color);
void getBound(Rectangle& rc){
rc.left = min(m_x[0], m_x[1]);
rc.top = min(m_y[0], m_y[1]);
rc.width = abs(m_x[0] - m_x[1]) + 1;
rc.height = abs(m_y[0] - m_y[1]) + 1;
}
};
// -----------------------------------------------------------------------------
class ScreenSaverView : public View
{
private:
enum{MAX_LINE_NUM = 20};
enum{NUM_COLORS = 22};
// enum{IDLE_TIMEOUT = 300000};
enum{UPDATE_INTERVAL = 40};
SSLine m_lines[MAX_LINE_NUM];
uint32_t m_idle_timeout;
int m_line_count;
uint32_t m_next_tick;
int m_color_index;
static const uint16_t COLOR_TABLE[NUM_COLORS];
protected:
void refresh();
public:
enum{ID = 4};
ScreenSaverView(SSD1322 *oled, Playlist *playlist);
void init();
void update();
bool handleIRR(IRRCODE code);
uint32_t getTimeoutValue(){ return m_idle_timeout; }
void setTimeoutValue(uint32_t t);
};
// -----------------------------------------------------------------------------
class ConfigView : public View
{
private:
static const int16_t EDITCHAR_POS_X[2][12];
static const int16_t EDITCHAR_POS_Y[2];
static const int EDIT_LENGTH[2];
enum{EDITCHAR_WIDTH = 7};
enum{EDITCHAR_HEIGHT = 16};
char m_edit_value[2][20];
char m_clock[20];
int m_edit_col;
int m_edit_row;
ImageList m_cursor_images;
void drawClock(bool force_redraw);
void drawScreenSaverTime(bool force_redraw);
void startEditing();
void cancelEditing();
void input(int digit);
void acceptEditing();
protected:
void refresh();
public:
enum{ID = 5};
ConfigView(SSD1322 *oled, Playlist *playlist);
void init();
void update();
bool handleIRR(IRRCODE code);
};
// -----------------------------------------------------------------------------
class ClockView : public View
{
private:
ImageList m_sseg_images;
ImageList m_digit_images;
ImageList m_week_images;
uint16_t m_month;
uint16_t m_day;
uint16_t m_hour;
uint16_t m_minute;
uint32_t m_tick;
uint32_t m_timeout;
bool m_blink;
void drawClock(uint16_t hour, uint16_t minute, bool blink);
void drawCalendar(uint16_t month, uint16_t day, uint16_t week);
protected:
void show();
void refresh();
public:
enum{ID = 6};
ClockView(SSD1322 *oled, Playlist *playlist);
void init();
void update();
bool handleIRR(IRRCODE code);
};
// -----------------------------------------------------------------------------
class PopupView
{
private:
enum{
PROP_VOLUME,
PROP_BASS,
PROP_TREBLE
};
enum{IDLE_TIMEOUT = 5000};
SSD1322 *m_oled;
bool m_visible;
uint8_t m_prop_type;
uint32_t m_idle_timer;
Rectangle m_popup_rect;
ImageList m_label_images;
void refresh();
void drawBar(bool refresh);
public:
PopupView(SSD1322 *oled);
void init();
void show(uint8_t prop);
void hide();
void update();
bool handleIRR(IRRCODE code);
bool isVisible(){ return m_visible; }
};
#endif
|
a3329a053db9149235600e4ba891cd5e0e3c1998 | a10ce7d1c1b3944ab9489965a8a2409e4e28a78d | /Source/ProjetPerso/Public/ColorFloorComponent.h | 52f18d7b18718c1f2fb8d7c8533ceeb85af26051 | [] | no_license | transkuja/ColorFloorMinigameUE4 | 7bcc676d34f9a300b2ee087ce1c1690c6456d297 | 36392cabf6741add2bed1434465825c5ace59c81 | refs/heads/master | 2021-05-09T19:15:29.675155 | 2018-08-31T05:48:20 | 2018-08-31T05:48:20 | 118,635,279 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 988 | h | ColorFloorComponent.h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "ColorFloorComponent.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class PROJETPERSO_API UColorFloorComponent : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
UColorFloorComponent();
UFUNCTION()
void OnHit(UPrimitiveComponent* HitComponent, AActor* OtherActor, UPrimitiveComponent* OtherComponent, FVector NormalImpule, const FHitResult& Hit);
UPROPERTY(EditAnywhere)
UStaticMeshComponent* floorMesh = nullptr;
int lastOwnerIndex = -1;
protected:
// Called when the game starts
virtual void BeginPlay() override;
public:
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
};
|
1ba3956ce8a17c150eaf0a927596741afa1f66da | f58b6d3263581fa47938ee26bb86f3d947141f83 | /source/d3d11utility/components/PointLight.cpp | 97c7004bd6f23c1fe89cdd86da394b79ad30bd80 | [] | no_license | sdinx/D3D11_ECS | b399c4a37029ceffdfada2a72c64da48f5da5823 | 999c355f1015d86e9947976a9e8da089672e1e88 | refs/heads/master | 2020-03-11T12:01:46.858036 | 2019-01-31T16:05:46 | 2019-01-31T16:05:46 | 129,985,764 | 1 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,143 | cpp | PointLight.cpp | //----------------------------------------------------------------------------------
// Include
//----------------------------------------------------------------------------------
#include <d3d11utility/components/PointLight.h>
#include <d3d11utility/graphics/Material.h>
#include <d3d11utility/Systems/ComponentManager.h>
#include <d3d11utility/Systems/IDirect3DRenderer.h>
//----------------------------------------------------------------------------------
// using namespace
//----------------------------------------------------------------------------------
using namespace D3D11Utility;
using namespace DirectX;
//----------------------------------------------------------------------------------
// static variables
//----------------------------------------------------------------------------------
ComponentId PointLight::STATIC_COMPONENT_ID = STATIC_ID_INVALID;
const uint PointLight::s_nConstantBufferSlot;
const uint PointLight::s_nLightCounts;
Camera* PointLight::s_camera;
PointLight::CBufferPointLight PointLight::s_instanceLights[NUM_POINT_LIGHT_COUNTS];
Graphics::StructuredBuffer<PointLight::CBufferPointLight>* PointLight::s_pStructureBuffer;
static uint s_lightCounts = 0;
PointLight::PointLight( Vector3 position, float distance, Graphics::Material material ) :
m_nInstanceId( s_lightCounts )
{
s_lightCounts++;
m_pRenderer = _Singleton<Systems::IDirect3DRenderer>::GetInstance();
// Transform がない場合は追加.
s_instanceLights[m_nInstanceId].position.x = position.m_floats[0];
s_instanceLights[m_nInstanceId].position.y = position.m_floats[1];
s_instanceLights[m_nInstanceId].position.z = position.m_floats[2];
s_instanceLights[m_nInstanceId].distance = distance;
m_materialId = material.GetMaterialId();
}
PointLight::PointLight( Vector3 position, float distance, Graphics::MaterialId id ) :
m_nInstanceId( s_lightCounts )
{
s_lightCounts++;
m_pRenderer = _Singleton<Systems::IDirect3DRenderer>::GetInstance();
// Transform がない場合は追加.
s_instanceLights[m_nInstanceId].position.x = position.m_floats[0];
s_instanceLights[m_nInstanceId].position.y = position.m_floats[1];
s_instanceLights[m_nInstanceId].position.z = position.m_floats[2];
s_instanceLights[m_nInstanceId].distance = distance;
m_materialId = id;
}
PointLight::~PointLight()
{
}
void PointLight::SetConstantBuffer()
{
s_pStructureBuffer = new Graphics::StructuredBuffer<CBufferPointLight>( s_nLightCounts, D3D11_BIND_SHADER_RESOURCE, true );
}
void PointLight::Update()
{
Vector3 position = GetComponent<Transform>()->GetPosition();
s_instanceLights[m_nInstanceId].position.x = position.m_floats[0];
s_instanceLights[m_nInstanceId].position.y = position.m_floats[1];
s_instanceLights[m_nInstanceId].position.z = position.m_floats[2];
}
void PointLight::SetMaterial( Graphics::Material material )
{
m_materialId = material.GetMaterialId();
}
void PointLight::SetMaterial( Graphics::MaterialId id )
{
m_materialId = id;
}
Graphics::Material* PointLight::GetMaterial()
{
return m_pRenderer->GetMaterial( m_materialId );
} |
230469e33b7b6b06212ad30e31008f530d87cc9f | d200f66353b3b6f152f318dee0d3d05e9cf632e3 | /include/Obbligato/Transaction.hpp | 95b0d456bfc8362f6b40ac9d8ccaf963b37851be | [] | no_license | ThomasSchaeferMS/Obbligato | ed15546bda03e4920fb3ace7e75f885a9a4471fc | c2f87755ad070f7ce2dd536edac316b227019dd4 | refs/heads/master | 2020-12-25T10:37:41.390154 | 2013-06-04T23:11:43 | 2013-06-04T23:11:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,883 | hpp | Transaction.hpp | #pragma once
#ifndef Obbligato_Transaction_hpp
#define Obbligato_Transaction_hpp
/*
Copyright (c) 2013, J.D. Koftinoff Software, Ltd. <jeffk@jdkoftinoff.com>
http://www.jdkoftinoff.com/
All rights reserved.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "Obbligato/World.hpp"
#include "Obbligato/Action.hpp"
#include "Obbligato/SharedPtr.hpp"
namespace Obbligato {
/// A Transaction performs some action upon construction and un-does the action on destruction unless successful() is called before destruction.
class Transaction
{
/// The Action object which knows how to do something and undo something.
Action m_action;
/// The success flag
bool m_success;
public:
/// Constructor assigns members and calls do_action
Transaction( Action action ) :
m_action( action ),
m_success(false)
{
m_action.do_action();
}
/// mark the transaction as successful
void successful()
{
m_success = true;
}
/// If the transaction was not successful due to exception or dependent transaction failing, un-do the action.
~Transaction()
{
if( !m_success )
{
m_action.undo_action();
}
}
};
/// Create a Transaction object given an Action object
inline
Transaction
make_transaction(
Action action
)
{
return Transaction(
action
);
}
/// Create a Transaction object given 'do' and 'undo' functors.
template <typename DoFunctorT,typename UndoFunctorT>
inline
Transaction
make_transaction(
DoFunctorT do_functor,
UndoFunctorT undo_functor
)
{
return Transaction(
Action(do_functor,undo_functor)
);
}
/// Create a Transaction object given 'do' and 'undo' methods of an object.
template< typename ObjClassT >
inline
Transaction
make_transaction (
ObjClassT &obj,
void ( ObjClassT::*doit_method ) (),
void ( ObjClassT::*undoit_method ) ()
)
{
return Transaction(
make_action(
obj,
doit_method,
undoit_method
)
);
}
}
#endif
|
8b7f43982d9c3c260a3e01845f95865c89a46055 | 2f4e617c34f18aa1cc89d3a6bd077e81e6d799d0 | /DOOM/render_stuff.cpp | 3470cd25e73486ee60a83184d8eb68f830ea2f7a | [] | no_license | alex2835/DOOM | ee5bdb8b1e25f63893b2fcadf52939395626c4cc | 123c96ad85c85a3acbce8701a55e4cf9b53d2d0f | refs/heads/master | 2022-11-11T18:53:34.529873 | 2020-06-30T20:07:53 | 2020-06-30T20:07:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 417 | cpp | render_stuff.cpp |
struct Color
{
union
{
struct { uint8_t g, b, r, a; };
uint8_t raw[4];
uint32_t whole;
};
Color() = default;
Color(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255) : r(r), g(g), b(b), a(a) {}
bool operator == (const Color& other) const { return (r == other.r && g == other.g && b == other.b && a == other.a); }
};
struct Render_State {
int height, width;
Color* memory;
BITMAPINFO bitmap_info;
}; |
38dd3a3754d237f17ab5db0cfc794d9d497ab56d | e506dc53d5fd15abb748a15e74b88f15ebce94fc | /Viewer/src/MeshModel.cpp | 7e1db951a62bf2aa89b360f94683f199d89d365f | [] | no_license | computer-graphics-fall-2018-2019-haifa/project-eliasss | ea7d2d35c8c8d27b90feb86e68940954422cc3a2 | 7d2d80b147ff109867c92cd1143d945f6267e9de | refs/heads/master | 2023-01-04T00:47:58.716216 | 2020-10-29T11:31:50 | 2020-10-29T11:31:50 | 308,016,710 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 809 | cpp | MeshModel.cpp | #include "MeshModel.h"
#include "Utils.h"
#include <vector>
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
MeshModel::MeshModel(const std::vector<Face>& faces, const std::vector<glm::vec3>& vertices, const std::vector<glm::vec3>& normals, const std::string& modelName) :
modelName(modelName),
worldTransform(glm::mat4x4(1))
{
}
MeshModel::~MeshModel()
{
}
void MeshModel::SetWorldTransformation(const glm::mat4x4& worldTransform)
{
this->worldTransform = worldTransform;
}
const glm::mat4x4& MeshModel::GetWorldTransformation() const
{
return worldTransform;
}
void MeshModel::SetColor(const glm::vec4& color)
{
this->color = color;
}
const glm::vec4& MeshModel::GetColor() const
{
return color;
}
const std::string& MeshModel::GetModelName()
{
return modelName;
} |
4e2bd1dbd3f24f87073a3a383fe539b88da43337 | 35fd5372ddd8558abb7cc2aa1b3ecc1bc935fc5c | /added/blossom.cpp | 5c66316236693867a67d28425eafe240e7501c61 | [] | no_license | S920105123/Another_codebook | c85dd73907266367ce0e2fec062bcc46779cbfc8 | 61d20371e48a2a3d7a13c0aae5e7efbd1114ce45 | refs/heads/master | 2020-03-23T07:40:51.014193 | 2019-06-01T14:26:24 | 2019-06-01T14:26:24 | 141,285,326 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,790 | cpp | blossom.cpp | struct Blossom {
#define MAXN 505 // Max solvable problem, DON'T CHANGE
// 1-based, IMPORTANT
vector<int> g[MAXN];
int parent[MAXN], match[MAXN], belong[MAXN], state[MAXN];
int n;
int lca(int u, int v) {
static int cases = 0, used[MAXN] = {};
for (++cases; ; swap(u, v)) {
if (u == 0)
continue;
if (used[u] == cases)
return u;
used[u] = cases;
u = belong[parent[match[u]]];
}
}
void flower(int u, int v, int l, queue<int> &q) {
while (belong[u] != l) {
parent[u] = v, v = match[u];
if (state[v] == 1)
q.push(v), state[v] = 0;
belong[u] = belong[v] = l, u = parent[v];
}
}
bool bfs(int u) {
for (int i = 0; i <= n; i++)
belong[i] = i;
memset(state, -1, sizeof(state[0])*(n+1));
queue<int> q;
q.push(u), state[u] = 0;
while (!q.empty()) {
u = q.front(), q.pop();
for (int i = 0; i < g[u].size(); i++) {
int v = g[u][i];
if (state[v] == -1) {
parent[v] = u, state[v] = 1;
if (match[v] == 0) {
for (int prev; u; v = prev, u = parent[v]) {
prev = match[u];
match[u] = v;
match[v] = u;
}
return 1;
}
q.push(match[v]), state[match[v]] = 0;
} else if (state[v] == 0 && belong[v] != belong[u]) {
int l = lca(u, v);
flower(v, u, l, q);
flower(u, v, l, q);
}
}
}
return 0;
}
int blossom() {
memset(parent, 0, sizeof(parent[0])*(n+1));
memset(match, 0, sizeof(match[0])*(n+1));
int ret = 0;
for (int i = 1; i <= n; i++) {
if (match[i] == 0 && bfs(i))
ret++;
}
return ret;
}
void addEdge(int x, int y) {
g[x].push_back(y), g[y].push_back(x);
}
void init(int _n) {
n = _n;
for (int i = 0; i <= n; i++)
g[i].clear();
}
} algo;
|
63ef7c6ef2cb75c8f0f11931257acf3097b6a4e5 | c17149f6f3912a7e42eeb4428911878a4180ff79 | /src/Tests.h | 597761bf2227b90033a69e0ce7c5b269879ed128 | [
"Zlib",
"BSD-2-Clause"
] | permissive | vsrz/Tex42 | 8feca67dc081fcf49d89cdd56cf22c9b97481a9f | 271c7997642c7d977313e150004fb2c0b65f4583 | refs/heads/master | 2016-09-06T01:53:44.803238 | 2013-05-30T04:10:50 | 2013-05-30T04:10:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 392 | h | Tests.h |
#ifndef TESTS_H
#define TESTS_H
#pragma once
#include <iostream>
#include <cassert>
#include "Domino.h"
#include "DominoCollection.h"
class Tests
{
protected:
int number;
std::string name;
void beginTest( void );
void endTest( void );
public:
Tests( void ) : number( 0 ) {}
virtual ~Tests( void ) {}
virtual void RunAllTests( void ) = 0;
};
#endif
|
4e71d0539fe425c6991fbf7980655eb1f1c5d99d | 491e46936df6655e9478e0ea0c1ec975aeb83359 | /talk/owt/sdk/base/globalconfiguration.cc | 47abdbc440f851d44ad9d83cc68378ee2548fe0f | [
"Apache-2.0"
] | permissive | Dragon-S/owt-client-native | ee15deddb13dbac5ad298e2301c58407f9747837 | 8da2753f5e1268c4dab0613523bc0984ab091bde | refs/heads/master | 2023-08-16T01:54:16.278791 | 2021-09-22T11:56:53 | 2021-09-22T11:56:53 | 290,077,549 | 0 | 2 | Apache-2.0 | 2021-09-22T11:56:53 | 2020-08-25T01:09:16 | C++ | UTF-8 | C++ | false | false | 1,191 | cc | globalconfiguration.cc | // Copyright (C) <2018> Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
#include "owt/base/globalconfiguration.h"
namespace owt {
namespace base {
#if defined(WEBRTC_WIN) || defined(WEBRTC_LINUX)
// Enable hardware acceleration by default is on.
bool GlobalConfiguration::hardware_acceleration_enabled_ = true;
#endif
bool GlobalConfiguration::encoded_frame_ = false;
std::unique_ptr<AudioFrameGeneratorInterface>
GlobalConfiguration::audio_frame_generator_ = nullptr;
std::unique_ptr<VideoDecoderInterface>
GlobalConfiguration::video_decoder_ = nullptr;
int GlobalConfiguration::h264_temporal_layers_ = 1;
#if defined(WEBRTC_IOS)
AudioProcessingSettings GlobalConfiguration::audio_processing_settings_ = {
true, true, true, false};
#else
AudioProcessingSettings GlobalConfiguration::audio_processing_settings_ = {
true, true, true, true};
#endif
IcePortRanges GlobalConfiguration::ice_port_ranges_ = {
{0, 0},
{0, 0},
{0, 0},
{0, 0}};
bool GlobalConfiguration::pre_decode_dump_enabled_ = false;
bool GlobalConfiguration::post_encode_dump_enabled_ = false;
bool GlobalConfiguration::video_super_resolution_enabled_ = false;
} // namespace base
}
|
e22dae48f1ac6bbcb65c574863372dfe19016cc2 | 6f351a0860438737f50d319cf1901ad9dfed7bd6 | /utils/TestSolarSystem.cpp | dcfc64f260e49d5fb0909fb6c095b78f31d56409 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | codeworkspaceroom/ArOgre | c2111be0df8c188d5a4a257036d11b1c65e82653 | 7130fff3b099fa7128d968dedc69661e71913886 | refs/heads/master | 2020-03-26T11:33:28.342104 | 2015-03-18T15:54:23 | 2015-03-18T15:54:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,932 | cpp | TestSolarSystem.cpp | #include "PCH.h"
#include "TestSolarSystem.h"
//////////////////////////////////////////////////////////////////////////////////////////////
// CONSTRUCTOR
//////////////////////////////////////////////////////////////////////////////////////////////
TestSolarSystem::TestSolarSystem(void)
: mSun(0),
mCamNode(0),
mBttReset(0), mBttExit(0), mBttHide(0), mBttInfo(0),
mBttPause(0), mBttSpeedUp(0), mBttSpeedDown(0), mBttExitInfo(0),
mPauseRot(false)
{
mSpeedRot=1;
}
//////////////////////////////////////////////////////////////////////////////////////////////
TestSolarSystem::~TestSolarSystem(void)
{
mTrayMgr->destroyAllWidgets();
mBackground->disableShadows();
if(mCamNode) mCamNode->detachObject(mCamera->getName());
if(mSun) delete mSun;
}
//////////////////////////////////////////////////////////////////////////////////////////////
// CREATE SCENE
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createScene(void)
{
// create solar system
createSolarSystem();
// create particles effects
createParticles();
// setup lights scene
createLights();
// show background shadows
mBackground->enableShadows(mSun->getMarkerNode());
}
//////////////////////////////////////////////////////////////////////////////////////////////
// FRAME LISTENER
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createFrameListener()
{
ArBaseApplication::createFrameListener();
mTrayMgr->hideFrameStats();
mTrayMgr->showCursor();
// create the main menu
if(!mShowWarning)
createMainMenu();
}
//////////////////////////////////////////////////////////////////////////////////////////////
bool TestSolarSystem::frameRenderingQueued(const Ogre::FrameEvent& evt)
{
bool ret=ArBaseApplication::frameRenderingQueued(evt);
// update AR Sun
bool detected;
Ogre::Vector3 newPos;
Ogre::Quaternion newQua;
detected=mDetector->detectBoard(newPos, newQua);
mSun->update(detected, newPos, newQua);
// rotation planets around the sun
if(!mPauseRot)
{
// "effects" particles
mSun->getModelNode()->yaw(Ogre::Degree(0.05f)*mSpeedRot);
mMercury.rot->yaw(Ogre::Degree(1)*mMercury.speed*mSpeedRot);
mMercury.node->yaw(Ogre::Degree(40));
mVenus.rot->yaw(Ogre::Degree(1)*mVenus.speed*mSpeedRot);
mVenus.node->yaw(Ogre::Degree(40));
mEarth.rot->yaw(Ogre::Degree(1)*mEarth.speed*mSpeedRot);
mEarth.node->yaw(Ogre::Degree(20));
mMars.rot->yaw(Ogre::Degree(1)*mMars.speed*mSpeedRot);
mMars.node->yaw(Ogre::Degree(20));
mJupiter.rot->yaw(Ogre::Degree(1)*mJupiter.speed*mSpeedRot);
mJupiter.node->yaw(Ogre::Degree(18));
mSaturn.rot->yaw(Ogre::Degree(1)*mSaturn.speed*mSpeedRot);
mSaturn.node->yaw(Ogre::Degree(17));
mUranus.rot->yaw(Ogre::Degree(1)*mUranus.speed*mSpeedRot);
mUranus.node->yaw(Ogre::Degree(22));
mNeptune.rot->yaw(Ogre::Degree(1)*mNeptune.speed*mSpeedRot);
mNeptune.node->yaw(Ogre::Degree(20));
}
return ret;
}
//////////////////////////////////////////////////////////////////////////////////////////////
// KEY LISTENER
//////////////////////////////////////////////////////////////////////////////////////////////
bool TestSolarSystem::keyPressed ( const OIS::KeyEvent& arg )
{
if(arg.key==OIS::KC_F1)
{
mTrayMgr->destroyAllWidgets();
createMainMenu();
}
else if(arg.key==OIS::KC_UP)
{
mSun->getModelNode()->translate(0,0,0.1f);
}
else if(arg.key==OIS::KC_DOWN)
{
mSun->getModelNode()->translate(0,0,-0.1f);
}
else if(arg.key==OIS::KC_LEFT)
{
mSun->getModelNode()->translate(-0.1f,0,0);
}
else if(arg.key==OIS::KC_RIGHT)
{
mSun->getModelNode()->translate(0.1f,0,0);
}
return ArBaseApplication::keyPressed ( arg );
}
//////////////////////////////////////////////////////////////////////////////////////////////
bool TestSolarSystem::keyReleased ( const OIS::KeyEvent& arg )
{
return ArBaseApplication::keyReleased ( arg );
}
//////////////////////////////////////////////////////////////////////////////////////////////
// MOUSE LISTENER
//////////////////////////////////////////////////////////////////////////////////////////////
bool TestSolarSystem::mouseMoved(const OIS::MouseEvent &arg)
{
return ArBaseApplication::mouseMoved(arg);
}
//////////////////////////////////////////////////////////////////////////////////////////////
bool TestSolarSystem::mousePressed(const OIS::MouseEvent &arg,OIS::MouseButtonID id)
{
return ArBaseApplication::mousePressed(arg, id);
}
//////////////////////////////////////////////////////////////////////////////////////////////
bool TestSolarSystem::mouseReleased(const OIS::MouseEvent &arg,OIS::MouseButtonID id)
{
return ArBaseApplication::mouseReleased(arg, id);
}
//////////////////////////////////////////////////////////////////////////////////////////////
// SDKTRAY LISTENER
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::buttonHit ( OgreBites::Button* button )
{
if(button->getName()=="bttWarning")
{
mTrayMgr->destroyAllWidgets();
createInfoMenu();
}
else if(button->getName()=="bttExit")
{
mShutDown=true;
}
else if(button->getName()=="bttReset")
{
mSun->getModelNode()->setOrientation(Ogre::Quaternion::IDENTITY);
mMercury.rot->setOrientation(Ogre::Quaternion::IDENTITY);
mVenus.rot->setOrientation(Ogre::Quaternion::IDENTITY);
mEarth.rot->setOrientation(Ogre::Quaternion::IDENTITY);
mMars.rot->setOrientation(Ogre::Quaternion::IDENTITY);
mJupiter.rot->setOrientation(Ogre::Quaternion::IDENTITY);
mSaturn.rot->setOrientation(Ogre::Quaternion::IDENTITY);
mUranus.rot->setOrientation(Ogre::Quaternion::IDENTITY);
mNeptune.rot->setOrientation(Ogre::Quaternion::IDENTITY);
}
else if(button->getName()=="bttHide")
{
mTrayMgr->destroyAllWidgets();
mTrayMgr->hideCursor();
}
else if(button->getName()=="bttInfo")
{
createInfoMenu();
}
else if(button->getName()=="bttExitInfo")
{
mTrayMgr->destroyAllWidgets();
createMainMenu();
}
else if(button->getName()=="bttPause")
{
mPauseRot=!mPauseRot;
}
else if(button->getName()=="bttSpdUp")
{
mSpeedRot=(mSpeedRot<64) ? mSpeedRot*2 : mSpeedRot;
}
else if(button->getName()=="bttSpdDown")
{
mSpeedRot=(mSpeedRot>1) ? mSpeedRot/2 : mSpeedRot;
}
}
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createMainMenu()
{
mTrayMgr->showCursor();
mTrayMgr->createLabel(OgreBites::TL_CENTER, "lblss", "Solar System", 180.0f);
mBttReset=mTrayMgr->createButton(OgreBites::TL_CENTER, "bttReset", "Reset", 180.0f);
mBttHide=mTrayMgr->createButton(OgreBites::TL_CENTER, "bttHide", "Hide", 180.0f);
mBttInfo=mTrayMgr->createButton(OgreBites::TL_CENTER, "bttInfo", "Info", 180.0f);
mTrayMgr->createSeparator(OgreBites::TL_CENTER, "mmSpt", 180.0f);
mBttExit=mTrayMgr->createButton(OgreBites::TL_CENTER, "bttExit", "Exit", 180.0f);
mBttPause=mTrayMgr->createButton(OgreBites::TL_BOTTOM, "bttPause", "Pause", 150.0f);
mBttSpeedUp=mTrayMgr->createButton(OgreBites::TL_BOTTOMRIGHT, "bttSpdUp", "Speed Up x2", 180.0f);
mBttSpeedDown=mTrayMgr->createButton(OgreBites::TL_BOTTOMLEFT, "bttSpdDown", "Speed Down x2", 150.0f);
}
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createNotDetectedMenu()
{
}
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createInfoMenu()
{
mTrayMgr->destroyAllWidgets();
OgreBites::TextBox* tb=mTrayMgr->createTextBox(OgreBites::TL_CENTER, "tbInfo", "Solar System", 500, 300);
tb->setText("SOLAR SYSTEM\n\n\n"
"_-> Press F1 to display the main menu.\n"
"_-> Use the widgets to control the speed.\n"
"_-> Use the arrows to move the planets.\n"
);
mBttExitInfo=mTrayMgr->createButton(OgreBites::TL_CENTER, "bttExitInfo", "Back", 180.0f);
}
//////////////////////////////////////////////////////////////////////////////////////////////
// CREATE THE SCENE LIGHTS
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createLights()
{
// scene ambient light
mSceneMgr->setAmbientLight(Ogre::ColourValue(0.5f, 0.5f, 0.5f));
mSceneMgr->setShadowTechnique(Ogre::SHADOWTYPE_STENCIL_MODULATIVE);
//mSceneMgr->setShadowTechnique(Ogre::SHADOWTYPE_STENCIL_ADDITIVE);
//mSceneMgr->setShadowTechnique(Ogre::SHADOWTYPE_TEXTURE_ADDITIVE);
mSceneMgr->setShadowTextureSize(1024);
mSceneMgr->setShadowColour(Ogre::ColourValue(0.7,0.7,0.7));
// scene light
mLightGeneral=mSun->getModelNode()->createChildSceneNode();
Ogre::ColourValue colorLigh(1,1,1);
Ogre::Light* light(mSceneMgr->createLight("sunLight"));
light->setDiffuseColour(colorLigh);
light->setSpecularColour(colorLigh);
light->setCastShadows(true);
mLightGeneral->attachObject(light);
mLightGeneral->translate(0,100,0);
}
//////////////////////////////////////////////////////////////////////////////////////////////
// CREATE THE PARTICLES EFFECTS SCENE
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createParticles()
{
// cam setup to see particles
mCamNode=mSun->getMarkerNode()->createChildSceneNode();
mCamNode->attachObject(mCamera->getOgreCamera());
mCamNode->yaw(Ogre::Degree(90));
mCamNode->pitch(Ogre::Degree(90));
mCamNode->roll(Ogre::Degree(90));
Ogre::ParticleSystem::setDefaultNonVisibleUpdateTimeout(5); // set nonvisible timeout
Ogre::ParticleSystem* ps;
Ogre::SceneNode* nodePS;
Ogre::Vector3 sclPS(0.5f,0.5f,0.5f);
// first particle, stars
ps = mSceneMgr->createParticleSystem("Stars", "Space/Dust");
nodePS=mSun->getModelNode()->createChildSceneNode();
nodePS->attachObject(ps);
nodePS->scale(sclPS);
nodePS->translate(0, 1.2, 0);
// second particles, colorfull galaxys
ps = mSceneMgr->createParticleSystem("Galaxy", "Space/Galaxy");
nodePS=mSun->getModelNode()->createChildSceneNode();
nodePS->attachObject(ps);
nodePS->scale(sclPS);
nodePS->translate(0, 1.2, 0);
}
//////////////////////////////////////////////////////////////////////////////////////////////
// CREATE THE SOLAR SYSTEM SCENE
//////////////////////////////////////////////////////////////////////////////////////////////
void TestSolarSystem::createSolarSystem()
{
// sun, parent node for solar system
float markerSize=mDetector->getMarkerSize();
mSun=new ArOgre::ArModel(mSceneMgr, "ArSun", "ArNodeSun", "mesh_sphere.mesh", -1, markerSize);
mSun->getEntity()->setMaterialName("solarSystem_Sun");
mSun->getModelNode()->translate(0,0.05,0);
//mSun->getModelNode()->scale(2,2,2);
mSun->getEntity()->getSubEntity(0)->getMaterial()->setLightingEnabled(false);
mSun->getEntity()->getSubEntity(0)->getMaterial()->setReceiveShadows(false);
// planets - mercury
mMercury.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mMercury.rot=mSun->getModelNode()->createChildSceneNode();
mMercury.node=mMercury.rot->createChildSceneNode();
mMercury.node->attachObject(mMercury.entity);
mMercury.node->translate(6, 0, 0);
mMercury.node->scale(0.1,0.1,0.1);
mMercury.entity->setMaterialName("solarSystem_Mercury");
mMercury.speed=3;
mMercury.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
// planets - venus
mVenus.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mVenus.rot=mSun->getModelNode()->createChildSceneNode();
mVenus.node=mVenus.rot->createChildSceneNode();
mVenus.node->attachObject(mVenus.entity);
mVenus.node->translate(8, 0, 0);
mVenus.node->scale(0.17,0.17,0.17);
mVenus.entity->setMaterialName("solarSystem_Venus");
mVenus.speed=1.8;
mVenus.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
// planets - earth
mEarth.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mEarth.rot=mSun->getModelNode()->createChildSceneNode();
mEarth.node=mEarth.rot->createChildSceneNode();
mEarth.node->attachObject(mEarth.entity);
mEarth.node->translate(11, 0, 0);
mEarth.node->scale(0.175,0.175,0.175);
mEarth.entity->setMaterialName("solarSystem_Earth");
mEarth.speed=1;
mEarth.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
// planets - mars
mMars.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mMars.rot=mSun->getModelNode()->createChildSceneNode();
mMars.node=mMars.rot->createChildSceneNode();
mMars.node->attachObject(mMars.entity);
mMars.node->translate(14, 0, 0);
mMars.node->scale(0.11,0.11,0.11);
mMars.entity->setMaterialName("solarSystem_Mars");
mMars.speed=0.5;
mMars.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
// planets - jupiter
mJupiter.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mJupiter.rot=mSun->getModelNode()->createChildSceneNode();
mJupiter.node=mJupiter.rot->createChildSceneNode();
mJupiter.node->attachObject(mJupiter.entity);
mJupiter.node->translate(18, 0, 0);
mJupiter.node->scale(0.5,0.5,0.5);
mJupiter.entity->setMaterialName("solarSystem_Jupiter");
mJupiter.speed=0.320f;
mJupiter.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
// planets - saturn
mSaturn.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mSaturn.rot=mSun->getModelNode()->createChildSceneNode();
mSaturn.node=mSaturn.rot->createChildSceneNode();
mSaturn.node->attachObject(mSaturn.entity);
mSaturn.node->translate(26, 0, 0);
mSaturn.node->scale(0.4,0.4,0.4);
mSaturn.entity->setMaterialName("solarSystem_Saturn");
mSaturn.speed=0.290f;
mSaturn.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
// planets - saturns rings
Ogre::Entity* entRings=mSceneMgr->createEntity("mesh_rings.mesh");
entRings->setMaterialName("solarSystem_SaturnRings");
Ogre::SceneNode* nodeRings=mSaturn.node->createChildSceneNode();
nodeRings->attachObject(entRings);
mSaturn.node->pitch(Ogre::Degree(30));
// planets - uranus
mUranus.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mUranus.rot=mSun->getModelNode()->createChildSceneNode();
mUranus.node=mUranus.rot->createChildSceneNode();
mUranus.node->attachObject(mUranus.entity);
mUranus.node->translate(33, 0, 0);
mUranus.node->scale(0.24,0.24,0.24);
mUranus.entity->setMaterialName("solarSystem_Uranus");
mUranus.speed=0.184f;
mUranus.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
// planets - nepture
mNeptune.entity=mSceneMgr->createEntity("mesh_sphere.mesh");
mNeptune.rot=mSun->getModelNode()->createChildSceneNode();
mNeptune.node=mNeptune.rot->createChildSceneNode();
mNeptune.node->attachObject(mNeptune.entity);
mNeptune.node->translate(37, 0, 0);
mNeptune.node->scale(0.195,0.195,0.195);
mNeptune.entity->setMaterialName("solarSystem_Neptune");
mNeptune.speed=0.164f;
mNeptune.rot->yaw(Ogre::Degree(Ogre::Math::RangeRandom(0, 365)));
}
#ifdef __cplusplus
extern "C" {
#endif
#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32
INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT )
#else
int main(int argc, char *argv[])
#endif
{
// Create application object
TestSolarSystem app;
try
{
app.go();
}
catch( Ogre::Exception& e )
{
#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32
MessageBox( NULL, e.getFullDescription().c_str(), "An exception has occured!", MB_OK | MB_ICONERROR | MB_TASKMODAL);
#else
std::cerr << "An exception has occured: " <<
e.getFullDescription().c_str() << std::endl;
#endif
}
return 0;
}
#ifdef __cplusplus
}
#endif
|
c8596b49c76fedb08a88e02374ba696a7fd47031 | 0a8b224bd47a65dfd87bb02902e7c01e3e71d8f5 | /common/WhirlyGlobeLib/src/GeometryOBJReader.cpp | e764ece63001e2cf88b16c7b2329ec5e4eec671e | [
"Apache-2.0"
] | permissive | mousebird-consulting-inc/WhirlyGlobe | 72ea7ffc7b82006d44d2df8e471238f06e93daeb | 07a710bf6deffda8222a7a7864eb855e95aa73b3 | refs/heads/main | 2023-08-31T07:13:46.124930 | 2022-05-05T17:08:18 | 2022-05-05T17:08:18 | 3,139,032 | 106 | 36 | NOASSERTION | 2023-08-22T20:54:16 | 2012-01-09T18:51:52 | C++ | UTF-8 | C++ | false | false | 16,485 | cpp | GeometryOBJReader.cpp | /*
* GeometryOBJReader.h
* WhirlyGlobeLib
*
* Created by Steve Gifford on 11/25/14.
* Copyright 2012-2022 mousebird consulting
*
* 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.
*
*/
#import <stdio.h>
#import "GeometryOBJReader.h"
namespace WhirlyKit
{
void GeometryModelOBJ::setResourceDir(const std::string &inResourceDir)
{
resourceDir = inResourceDir;
}
bool GeometryModelOBJ::parseMaterials(FILE *fp)
{
bool success = true;
Material *activeMtl = NULL;
char line[2048];
int lineNo = 0;
while (fgets(line, 2047, fp))
{
lineNo++;
int lineLen = (int)strlen(line);
// Empty line
if (lineLen == 0 || line[0] == '\n')
continue;
// Comment
if (line[0] == '#')
continue;
// Chop off a \r
if (line[lineLen-1] == '\r')
{
line[lineLen-1] = 0;
lineLen--;
}
std::vector<char *> toks;
// Parse the various tokens into an array
char *tok = NULL;
char *ptr = line;
char *next = NULL;
while ( (tok = strtok_r(ptr, " \t\n\r", &next)) )
{
toks.push_back(tok);
ptr = next;
}
if (toks.empty())
continue;
char *key = toks[0];
if (!strcmp(key,"newmtl"))
{
if (toks.size() < 2)
{
success = false;
break;
}
char *name = toks[1];
materials.resize(materials.size()+1);
Material &mat = materials[materials.size()-1];
activeMtl = &materials.back();
mat.name = name;
} else if (!strcmp(key,"Ka"))
{
if (toks.size() < 4 || !activeMtl)
{
success = false;
break;
}
for (unsigned int ii=0;ii<3;ii++)
activeMtl->Ka[ii] = atof(toks[ii+1]);
} else if (!strcmp(key,"Kd"))
{
if (toks.size() < 4 || !activeMtl)
{
success = false;
break;
}
for (unsigned int ii=0;ii<3;ii++)
activeMtl->Kd[ii] = atof(toks[ii+1]);
} else if (!strcmp(key,"Ks"))
{
if (toks.size() < 4 || !activeMtl)
{
success = false;
break;
}
for (unsigned int ii=0;ii<3;ii++)
activeMtl->Ks[ii] = atof(toks[ii+1]);
} else if (!strcmp(key,"d"))
{
if (toks.size() < 2 || !activeMtl)
{
success = false;
break;
}
activeMtl->trans = atof(toks[1]);
} else if (!strcmp(key,"Tr"))
{
if (toks.size() < 2 || !activeMtl)
{
success = false;
break;
}
activeMtl->trans = 1.0-atof(toks[1]);
} else if (!strcmp(key,"illum"))
{
if (toks.size() < 2 || !activeMtl)
{
success = false;
break;
}
activeMtl->illum = atof(toks[1]);
} else if (!strcmp(key,"map_Ks"))
{
if (toks.size() < 2 || !activeMtl)
{
success = false;
break;
}
activeMtl->tex_ambient = toks[1];
} else if (!strcmp(key, "map_Kd"))
{
if (toks.size() < 2 || !activeMtl)
{
success = false;
break;
}
activeMtl->tex_diffuse = toks[1];
}
// Note: Ignoring map_d, map_bump, map_Ks, map_Ns or any of the options
}
return success;
}
bool GeometryModelOBJ::parse(FILE *fp)
{
bool success = true;
Group *activeGroup = NULL;
int activeMtl = -1;
char line[2048],origLine[2048],tmpTok[2048];
int lineNo = 0;
while (fgets(origLine, 2047, fp))
{
lineNo++;
strcpy(line,origLine);
int lineLen = (int)strlen(line);
// Empty line
if (lineLen == 0 || line[0] == '\n')
continue;
// Comment
if (line[0] == '#')
continue;
// Chop off a \r
if (line[lineLen-1] == '\r')
{
line[lineLen-1] = 0;
lineLen--;
}
std::vector<char *> toks;
// Parse the various tokens into an array
char *tok = NULL;
char *ptr = line;
char *next = NULL;
while ( (tok = strtok_r(ptr, " \t\n\r", &next)) )
{
toks.push_back(tok);
ptr = next;
}
if (toks.empty())
continue;
char *key = toks[0];
if (!strcmp(key,"mtllib"))
{
if (toks.size() < 2)
{
success = false;
break;
}
// The full name of the material file might contain spaces
strcpy(line,origLine);
strtok_r(line," \t\n\r", &next);
char *mtlFile = strtok_r(next,"\n\r", &next);
if (!mtlFile)
{
success = false;
break;
}
// Load the model
std::string fullPath = resourceDir.empty() ? mtlFile : resourceDir + "/" + mtlFile;
FILE *mtlFP = fopen(fullPath.c_str(),"r");
if (!mtlFP)
{
success = false;
break;
}
if (!parseMaterials(mtlFP))
{
success = false;
break;
}
fclose(mtlFP);
} else if (!strcmp(key,"usemtl"))
{
// Use a pre-defined material
if (toks.size() < 1 || !activeGroup)
{
success = false;
break;
}
// Look for the material
std::string mtlName = toks[1];
int whichMtl = -1;
for (unsigned int ii=0;ii<materials.size();ii++)
{
if (mtlName == materials[ii].name)
{
whichMtl = ii;
break;
}
}
// Note: Allowing materials we don't recognize
if (whichMtl < 0)
{
success = false;
break;
}
activeMtl = whichMtl;
} else if (!strcmp(key,"g"))
{
groups.resize(groups.size()+1);
activeGroup = &groups.back();
if (toks.size() > 1)
{
activeGroup->name = toks[1];
} else {
activeGroup->name = "";
}
} else if (!strcmp(key,"f"))
{
// Face
if (toks.size() < 2 || !activeGroup)
{
success = false;
break;
}
activeGroup->faces.resize(activeGroup->faces.size()+1);
Face &face = activeGroup->faces.back();
face.mtlID = activeMtl;
// We've either got numbers of collections of numbers separated by /
for (unsigned int ii=1;ii<toks.size();ii++)
{
strcpy(tmpTok, toks[ii]);
bool emptyTexCoord = false;
if (strstr(tmpTok,"//"))
emptyTexCoord = true;
std::vector<char *> vertToks;
char *vertTok = NULL;
char *vertPtr = tmpTok;
char *vertNext = NULL;
while ( (vertTok = strtok_r(vertPtr, "/", &vertNext)) )
{
vertToks.push_back(vertTok);
vertPtr = vertNext;
}
face.verts.resize(face.verts.size()+1);
Vertex &vert = face.verts.back();
if (vertToks.size() == 0)
{
success = false;
break;
}
if (vertToks.size() >= 1)
{
vert.vert = atoi(vertToks[0]);
}
if (emptyTexCoord)
{
if (vertToks.size() >= 2)
vert.norm = atoi(vertToks[1]);
} else {
if (vertToks.size() >= 2)
{
vert.texCoord = atoi(vertToks[1]);
}
if (vertToks.size() >= 3)
{
vert.norm = atoi(vertToks[2]);
}
}
}
} else if (!strcmp(key,"v"))
{
// Regular vertex
if (toks.size() < 4)
{
success = false;
break;
}
verts.resize(verts.size()+1);
Point3d &vert = verts.back();
vert.x() = atof(toks[1]);
vert.y() = atof(toks[2]);
vert.z() = atof(toks[3]);
} else if (!strcmp(key,"vn"))
{
// Normal
if (toks.size() < 4)
{
success = false;
break;
}
norms.resize(norms.size()+1);
Point3d &norm = norms.back();
norm.x() = atof(toks[1]);
norm.y() = atof(toks[2]);
norm.z() = atof(toks[3]);
} else if (!strcmp(key,"vt"))
{
// Texture coordinate
if (toks.size() < 3)
{
success = false;
break;
}
texCoords.resize(texCoords.size()+1);
Point2d &texCoord = texCoords.back();
texCoord.x() = atof(toks[1]);
texCoord.y() = atof(toks[2]);
}
}
// Link up the materials
for (unsigned int ii=0;ii<groups.size();ii++)
{
Group &group = groups[ii];
for (unsigned int jj=0;jj<group.faces.size();jj++)
{
Face &face = group.faces[jj];
if (face.mtlID >= 0 && face.mtlID < materials.size())
face.mat = &materials[face.mtlID];
}
}
return success;
}
// Used to sort faces by material
class FaceBin
{
public:
FaceBin(GeometryModelOBJ::Face *face) { faces.push_back(face); mtlID = face->mtlID; }
bool operator < (const FaceBin &that) const
{
return mtlID < that.mtlID;
}
int mtlID;
std::vector<GeometryModelOBJ::Face *> faces;
};
typedef std::set<FaceBin> FaceBinSet;
void GeometryModelOBJ::toRawGeometry(std::vector<std::string> &textures,std::vector<GeometryRaw> &rawGeom)
{
// Unique list of textures
std::map<std::string,int> textureMapping;
int texCount = 0;
for (unsigned int ii=0;ii<materials.size();ii++)
{
Material &mat = materials[ii];
mat.tex_ambientID = -1; mat.tex_diffuseID = -1;
if (!mat.tex_ambient.empty())
{
auto it = textureMapping.find(mat.tex_ambient);
if (it != textureMapping.end())
mat.tex_ambientID = it->second;
else {
mat.tex_ambientID = texCount;
textureMapping[mat.tex_ambient] = texCount++;
}
}
if (!mat.tex_diffuse.empty())
{
auto it = textureMapping.find(mat.tex_diffuse);
if (it != textureMapping.end())
mat.tex_diffuseID = it->second;
else {
mat.tex_diffuseID = texCount;
textureMapping[mat.tex_diffuse] = texCount++;
}
}
}
textures.resize(texCount);
for (auto it: textureMapping)
textures[it.second] = it.first;
// Sort the faces by material
FaceBinSet faceBins;
for (unsigned int ii=0;ii<groups.size();ii++)
{
Group *group = &groups[ii];
for (unsigned int jj=0;jj<group->faces.size();jj++)
{
Face *face = &group->faces[jj];
FaceBin faceBin(face);
const auto &it = faceBins.find(faceBin);
if (it == faceBins.end())
faceBins.insert(faceBin);
else {
faceBin.faces.insert(faceBin.faces.end(),it->faces.begin(), it->faces.end());
faceBins.erase(it);
faceBins.insert(faceBin);
}
}
}
// Convert the face bins to raw geometry
for (auto it: faceBins)
{
rawGeom.resize(rawGeom.size()+1);
GeometryRaw &geom = rawGeom.back();
geom.type = WhirlyKitGeometryTriangles;
// Figure out if there's a texture ID
if (it.mtlID > -1)
{
Material &mtl = materials[it.mtlID];
if (mtl.tex_diffuseID > -1)
geom.texIDs.push_back(mtl.tex_diffuseID);
}
// Work through the faces
for (unsigned int jj=0;jj<it.faces.size();jj++)
{
const Face *face = it.faces[jj];
int basePt = (int)geom.pts.size();
for (unsigned int kk=0;kk<face->verts.size();kk++)
{
const Vertex &vert = face->verts[kk];
// Note: Should be range checking these
int vertId = vert.vert-1;
if (vertId < 0 || vertId >= verts.size())
break;
Point3d pt = verts[vertId];
Point3d norm(0,0,1);
int normId = vert.norm-1;
if (normId >= 0 && normId < norms.size())
norm = norms[normId];
TexCoord texCoord(0,0);
int texId = vert.texCoord-1;
if (texId >= 0 && texId < texCoords.size())
{
const Point2d &pt2d = texCoords[texId];
texCoord = TexCoord(pt2d.x(),1.0-pt2d.y());
}
RGBAColor diffuse(255,255,255,255);
if (face->mat && face->mat->Kd[0] != -1)
{
diffuse.r = face->mat->Kd[0] * 255;
diffuse.g = face->mat->Kd[1] * 255;
diffuse.b = face->mat->Kd[2] * 255;
diffuse.a = face->mat->trans * 255;
}
geom.pts.push_back(pt);
geom.norms.push_back(norm);
if (face->mat && (face->mat->tex_ambientID >= 0 || face->mat->tex_diffuseID >= 0))
geom.texCoords.push_back(texCoord);
geom.colors.push_back(diffuse);
}
// Assume these are convex for now
for (unsigned int kk = 2;kk<face->verts.size();kk++)
{
geom.triangles.resize(geom.triangles.size()+1);
GeometryRaw::RawTriangle &tri = geom.triangles.back();
tri.verts[0] = basePt;
tri.verts[1] = basePt+kk-1;
tri.verts[2] = basePt+kk;
}
// Force double-sided ness
// Assume these are convex for now
// for (unsigned int kk = 2;kk<face->verts.size();kk++)
// {
// geom.triangles.resize(geom.triangles.size()+1);
// GeometryRaw::RawTriangle &tri = geom.triangles.back();
// tri.verts[1] = basePt;
// tri.verts[0] = basePt+kk-1;
// tri.verts[2] = basePt+kk;
// }
}
}
}
}
|
1a5bf007f82bf6762fb43064dde943f25a2a236a | 8a07e5ff7cc226192dd4dea0b94adc0012d6273c | /GrappleDemo/Source/GrappleDemo/Player/PlayerPawn.cpp | 975155dd4e640acf58b8fe36f983bde16f4ca02a | [] | no_license | Kobakat/GrappleGame | db0c5ea134817b475fac4a19c774cbd4c854f651 | 3b3abbf2c3676938392e4b1dd44216398cde582b | refs/heads/master | 2023-05-01T18:02:15.657302 | 2021-05-14T17:32:06 | 2021-05-14T17:32:06 | 336,407,425 | 2 | 0 | null | 2021-05-14T07:26:47 | 2021-02-05T22:50:17 | C++ | UTF-8 | C++ | false | false | 7,750 | cpp | PlayerPawn.cpp | #include "PlayerPawn.h"
#include "Components/ChildActorComponent.h"
#include "../GrappleInteractions/GrappleReactor.h"
#include "../LevelPreview/LevelPreviewPawn.h"
#include "Kismet/GameplayStatics.h"
#include "../GrappleGameInstance.h"
#include "GrappleGunComponent.h"
#pragma region Unreal Event Functions
APlayerPawn::APlayerPawn()
{
PrimaryActorTick.bCanEverTick = true;
AutoPossessPlayer = EAutoReceiveInput::Player0;
bUseControllerRotationYaw = false;
collider = CreateDefaultSubobject<UPlayerCapsule>(TEXT("Collider"));
collider->AttachToComponent(RootComponent, FAttachmentTransformRules(EAttachmentRule::KeepRelative, false));
camera = CreateDefaultSubobject<Ucringetest>(TEXT("Player Camera"));
camera->AttachToComponent(collider, FAttachmentTransformRules(EAttachmentRule::KeepRelative, false));
}
bool APlayerPawn::GetHasGrapple()
{
return hasGrapple;
}
void APlayerPawn::SetHasGrapple(bool HasGrapple)
{
hasGrapple = HasGrapple;
// Hide or reveal the gun mesh
gun->SetHiddenInGame(!hasGrapple, true);
// Update the rendered state of the grapple
// This will also prevent grapple states
// from being entered
grappleComponent->SetIsRendered(hasGrapple);
}
void APlayerPawn::BeginPlay()
{
Super::BeginPlay();
// Ensure the grapple polyline is instantiated.
UChildActorComponent* childActor = FindComponentByClass<UChildActorComponent>();
if (!childActor->HasBeenCreated())
childActor->CreateChildActor();
GrapplePolyline = Cast<APolylineCylinderRenderer>(childActor->GetChildActor());
// Grab the grapple gun
grappleComponent = FindComponentByClass<UGrappleGunComponent>();
grappleComponent->SetCastingFromComponent(camera);
grappleComponent->IgnoredActors.Add(this);
grappleComponent->Polyline = GrapplePolyline;
SetHasGrapple(hasGrapple);
this->stateMachine = NewObject<UStateMachine>();
this->stateMachine->Initialize(this);
this->BindPreferences();
}
void APlayerPawn::Tick(float deltaTime)
{
Super::Tick(deltaTime);
//HACKKKK
if (!Linked)
{
LinkPreviewCamera();
Linked = true;
}
if (this->stateMachine != nullptr)
{
stateMachine->Tick(deltaTime);
}
collider->HandleStandUp(deltaTime);
grappleCanAttach = grappleComponent->GetCanAttach();
collider->previousVelocity = collider->GetPhysicsLinearVelocity();
if (collider->previousVelocity.Z < lastFallingSpeed)
lastFallingSpeed = collider->previousVelocity.Z;
bPreviousGrounded = bGrounded;
if (hasGrapple)
{
// Handle input buffering
if (SwingBuffered || InstantBuffered)
{
if (GetWorld()->GetTimeSeconds() - BufferedTime
< grappleComponent->InputBufferSeconds)
{
if (grappleComponent->RunBufferCheck())
{
SwingBuffered = InstantBuffered = false;
if (SwingBuffered)
SetState(UGrappleAirborneState::GetInstance());
else
SetState(UGrappleInstantReelState::GetInstance());
grappleComponent->Attach();
}
}
else
SwingBuffered = InstantBuffered = false;
}
if (SwingBuffered || InstantBuffered || grappleComponent->GetIsSurfaceBuffered())
{
Cursor = ECursorType::Assist;
}
else if (Cursor == ECursorType::Assist)
{
Cursor = ECursorType::Normal;
}
}
else
{
Cursor = ECursorType::Ghost;
}
}
#pragma endregion
#pragma region Input Initialization
void APlayerPawn::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
Super::SetupPlayerInputComponent(PlayerInputComponent);
InputComponent->BindAxis("MoveX", this, &APlayerPawn::MoveInputX);
InputComponent->BindAxis("MoveY", this, &APlayerPawn::MoveInputY);
InputComponent->BindAxis("LookX", this, &APlayerPawn::LookInputX);
InputComponent->BindAxis("LookY", this, &APlayerPawn::LookInputY);
InputComponent->BindAxis("IncrementalReelUnreel", this, &APlayerPawn::ReelInputAxis);
InputComponent->BindAction("Jump", IE_Pressed, this, &APlayerPawn::JumpPress);
InputComponent->BindAction("Jump", IE_Released, this, &APlayerPawn::JumpRelease);
InputComponent->BindAction("Sprint", IE_Pressed, this, &APlayerPawn::RunPress);
InputComponent->BindAction("Sprint", IE_Released, this, &APlayerPawn::RunRelease);
InputComponent->BindAction("CrouchSlide", IE_Pressed, this, &APlayerPawn::CrouchSlidePress);
InputComponent->BindAction("CrouchSlide", IE_Released, this, &APlayerPawn::CrouchSlideRelease);
InputComponent->BindAction("ShootRelease", IE_Pressed, this, &APlayerPawn::ShootReleasePress);
InputComponent->BindAction("ShootRelease", IE_Released, this, &APlayerPawn::ShootReleaseRelease);
InputComponent->BindAction("InstantReel", IE_Pressed, this, &APlayerPawn::InstantReelPress);
}
void APlayerPawn::MoveInputX(float value) { moveVector.X = value; }
void APlayerPawn::MoveInputY(float value) { moveVector.Y = value; }
void APlayerPawn::LookInputX(float value) { lookVector.X = value; }
void APlayerPawn::LookInputY(float value) { lookVector.Y = value; }
void APlayerPawn::ReelInputAxis(float value) { reelingAxis = value; }
void APlayerPawn::JumpPress() { tryingToJump = true; }
void APlayerPawn::JumpRelease() { tryingToJump = false; }
void APlayerPawn::RunPress() { tryingToSprint = true; }
void APlayerPawn::RunRelease() { tryingToSprint = false; }
void APlayerPawn::CrouchSlidePress() { tryingToCrouch = true; }
void APlayerPawn::CrouchSlideRelease() { tryingToCrouch = false; }
void APlayerPawn::ShootReleasePress()
{
if (grappleComponent->RunBufferCheck())
{
SetState(UGrappleAirborneState::GetInstance());
grappleComponent->Attach();
}
else if (stateMachine->state == UGrappleAirborneState::GetInstance())
{
// This detaches the grapple if the player clicks
// again and there is nothing within grapple range
SetState(UWalkState::GetInstance());
}
else if (stateMachine->state == UGrappleInstantReelState::GetInstance())
{
// This detaches the grapple if the player clicks
// again and there is nothing within grapple range
SetState(UGrappleAirborneState::GetInstance());
}
else
{
// Otherwise buffer the input
BufferedTime = GetWorld()->GetTimeSeconds();
SwingBuffered = true;
InstantBuffered = false;
}
}
void APlayerPawn::ShootReleaseRelease() { tryingToGrapple = false; }
void APlayerPawn::InstantReelPress()
{
if (grappleComponent->RunBufferCheck())
{
SetState(UGrappleInstantReelState::GetInstance());
grappleComponent->Attach();
}
else if (stateMachine->state == UGrappleAirborneState::GetInstance()
|| stateMachine->state == UGrappleInstantReelState::GetInstance())
{
// This detaches the grapple if the player clicks
// again and there is nothing within grapple range
SetState(UWalkState::GetInstance());
}
else
{
// Otherwise buffer the input
BufferedTime = GetWorld()->GetTimeSeconds();
SwingBuffered = false;
InstantBuffered = true;
}
}
#pragma endregion
#pragma region Logic
void APlayerPawn::SetState(UState* newState)
{
stateMachine->SetState(newState);
}
void APlayerPawn::LinkPreviewCamera()
{
AActor* uncastedActor = UGameplayStatics::GetActorOfClass(GetWorld(), ALevelPreviewPawn::StaticClass());
if (uncastedActor != nullptr)
{
ALevelPreviewPawn* castedActor = Cast<ALevelPreviewPawn>(uncastedActor);
castedActor->playerPawn = this;
AController* controller = GetController();
controller->UnPossess();
controller->Possess(castedActor);
castedActor->StartPreview();
}
}
void APlayerPawn::BindPreferences()
{
UGameInstance* uncastedGame = this->GetGameInstance();
UGrappleGameInstance* castedGame = Cast<UGrappleGameInstance>(uncastedGame);
FCameraPreferenceData cameraData = castedGame->GetCameraPreferences();
camera->FOVPassive = cameraData.FieldOfView;
camera->FOVActive = camera->FOVPassive + 10.f;
camera->FieldOfView = camera->FOVPassive;
camera->lookSpeed = cameraData.Sensitivity * 24.f;
}
#pragma endregion
|
ec93a60c6fc52d7c0772952429b2834492646f9e | 8eecfe2dda94f53d295666a138d33a972c2ee9dd | /ConsoleApplication3.cpp | 683362d69390ef28aae59e87aacd86ff2212a05e | [] | no_license | Shubham-Nimase/Marvellous-Source | a7efab86365d4f8774cd76b217a71c5e6f461fec | d25cf3f534c6510fd0a127fddb8ac35a9dc01a3a | refs/heads/main | 2023-06-05T07:39:51.304131 | 2021-06-29T11:31:35 | 2021-06-29T11:31:35 | 380,729,944 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,880 | cpp | ConsoleApplication3.cpp | #include<stdio.h>
float set[10][10], lambda[10][10], lam;
int i, j, n;
void accept(float a[10][10])
{
printf("Enter the elements:\n");
for (i = 0; i < n; i++)
{
printf("%d th row:\n", i + 1);
for (j = 0; j < n; j++)
{
scanf_s("%f", &a[i][j]);
}
}
}
void display(float a[10][10])
{
printf("You have entered elements as below:\n");
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
printf("%.1f\t", a[i][j]);
}
printf("\n");
}
}
void lamb(float set[10][10])
{
printf("Enter the value of lambda:\n");
scanf_s("%f", &lam);
printf("The lambda cut set is:\n");
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
if (set[i][j] >= lam)
{
lambda[i][j] = 1;
}
else
{
lambda[i][j] = 0;
}
printf("%.0f\t", lambda[i][j]);
}
printf("\n");
}
}
void main()
{
printf("Enter how many elements:\n");
scanf_s("%d", &n);
accept(set);
display(set);
lamb(set);
}
//////////////////////////////////////////////////////////////////////
/*
output:
Enter how many elements:
5
Enter the elements:
1 th row:
1
2
3
4
5
2 th row:
6
7
8
9
0
3 th row :
5
4
3
2
1
4 th row :
0
9
8
7
6
5 th row :
1
3
6
4
8
you have entered elements as below:
1.0 2.0 3.0 4.0 5.0
6.0 7.0 8.0 9.0 0.0
5.0 4.0 3.0 2.0 1.0
0.0 9.0 8.0 7.0 6.0
1.0 3.0 6.0 4.0 8.0
Enter the value of lambda:
4
The lambda cut set is:
0 0 0 1 1
1 1 1 1 0
1 1 0 0 0
0 1 1 1 1
0 0 1 1 1
*/
//////////////////////////////////////////////////////////////////////
/*
output:
Enter how many elements:
3
Enter the elements:
1 th row:
3
2
3
2 th row:
4
3
2
3 th row :
2
3
4
4
3
you have entered elements as below:
3.0 2.0 3.0
4.0 3.0 2.0
2.0 3.0 4.0
Enter the value Of lambda:
5
The lambda cuts set is:
0 0 0
0 0 0
0 0 0
*/ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.