blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
201
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 7
100
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 260
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 11.4k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 80
values | src_encoding
stringclasses 28
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 8
9.86M
| extension
stringclasses 52
values | content
stringlengths 8
9.86M
| authors
listlengths 1
1
| author
stringlengths 0
119
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
75cec21bd7e003f5ce6154ceaad3ec9adcc080d4 | 5dbdcc8d8334dcfaf0dd37fe0acb5e2d0c50d478 | /Project1/TestExec/TestExec.cpp | 7e3ec77edb2230bff7207519940f98bd2b8d8373 | [] | no_license | gsatish90/Tokenizer | d45cdbc61e51918c16659ba6daf697460b8cf34e | 3d664831f14245a1ce74e077c69664beaeec4527 | refs/heads/master | 2021-01-20T00:37:47.096210 | 2017-04-23T19:15:04 | 2017-04-23T19:15:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,732 | cpp | #include "TestExec.h"
#include "../Tokenizer/Tokenizer.h"
#include "../SemiExp/SemiExp.h"
#include "fstream"
#include "iostream"
///////////////////////////////////////////////////////////////////////
// TestExec.cpp - demonstrates requirements for Tokenizer and //
// SemiExpression //
// ver 1.0 //
// Language: C++, Visual Studio 2015 //
// Application: Parser component, CSE687 - Object Oriented Design //
// Author: Satish Goswami, Syracuse University //
// [email protected] //
///////////////////////////////////////////////////////////////////////
/*
* Package Operations:
* -------------------
* This package provides the public TestExec class and its functions to test
* Tokenizer and SemiExp individually.
*
* Build Process:
* --------------
* Required Files:
* TestExec.h, TestExec.cpp, SemiExpression.h, SemiExpression.cpp,
* Tokenizer.h, Tokenizer.cpp
*
* Build Command: devenv Project1.sln /rebuild debug
*
* Maintenance History:
* --------------------
* ver 1.0 : 08 Feb 2016
* - Made class and added functions to test Tokenizer and SemiExp
*
*/
using namespace Scanner;
TestExec :: TestExec(){}
void TestExec :: testTokenizer(Toker &toker, std::istream &in)
{
toker.setCollectComments(true);
std::cout << "\n\n <-----------Tokenizer (Displaying Tokens)------------> \n";
toker.setSpecialSingleChars("@"); //Requirement 4 (appending to default special special character set)
toker.setSpecialCharPairs("/=");
std::cout << "\n\n ::Function SetSpecialChars(ssc) & setSpecialCharPairs(scp) Implemented in Tokenizer.cpp and called in TestExec.cpp\n";
do
{
std::string tok = toker.getTok();
if (tok == "\n")
tok = "newline";
std::cout << "\n\n -- " << tok;
} while (in.good());
std::cout << "\n\n";
}
void TestExec::testSemiExp(Toker& toker, std::istream& in)
{
toker.setCollectComments(false);
std::cout << "\n\n <-----------SemiExpressions------------> \n";
SemiExp semi(&toker);
while (semi.get())
{
std::cout << "\n -- SemiExpression --";
semi.show();
}
/*
May have collected tokens, but reached end of stream
before finding SemiExp terminator.
*/
if (semi.length() > 0)
{
std::cout << "\n -- SemiExpression --";
semi.show();
std::cout << "\n\n";
}
std::string fileSpecITok = "ITokTestFile.txt";
//--Tokenizer Test Setup
Toker t;
SemiExp sem(&t);
std::fstream inITok(fileSpecITok);
if (!inITok.good())
{
std::cout << "\n can't open file " << fileSpecITok << "\n\n";
return;
}
t.attach(&inITok);
demonstrateRequirement9(sem, inITok);
}
void TestExec :: demonstrateRequirement9(SemiExp &semi, std::istream& in)
{
std::cout << "\n\n\n <-----------ITokCollection Interface methods Implementation------------> \n";
semi.clear();
semi.get();
int index = 2; std::string str = "itok";
//std::cout << "\n Testing ITokCollection Interface functions : \n";
std::cout << "\n\n - Token Vector contains : ";
semi.show(true);
semi.trimFront();
std::cout << "\n - Token Vector after trim contains : ";
semi.show();
semi.toLower();
std::cout << "\n - Token Vector after toLower contains : ";
semi.show();
semi.remove(2);
std::cout << "\n - Token Vector after removing from position "<<index<<" contains : ";
semi.show();
semi.remove("itok"); //uses find function
std::cout << "\n - Token Vector after removing \"" << str << "\" contains : ";
semi.show();
std::cout << "\n - Token at position " << index << " in Token Vector is : " << semi[index];
semi.clear();
std::cout << "\n - Token Vector after clear() method contains : ";
semi.show();
std::cout << "\n\n";
}
TestExec :: ~TestExec() {}
int main()
{
TestExec testExec;
std::string fileSpecTokenizer = "../Tokenizer/TokenizerTestFile.txt";
std::string fileSpecSemiExp = "../SemiExp/SemiExpTestFile.txt";
//--Tokenizer Test Setup
std::fstream inTokenizer(fileSpecTokenizer);
if (!inTokenizer.good())
{
std::cout << "\n can't open file " << fileSpecTokenizer << "\n\n";
return 1;
}
Toker tokerForTokenizer;
tokerForTokenizer.attach(&inTokenizer);
testExec.testTokenizer(tokerForTokenizer, inTokenizer);
//--SemiExp Test Setup
std::fstream inSemiExp(fileSpecSemiExp);
if (!inSemiExp.good())
{
std::cout << "\n can't open file " << fileSpecSemiExp << "\n\n";
return 1;
}
Toker tokerForSemiExp;
tokerForSemiExp.attach(&inSemiExp);
testExec.testSemiExp(tokerForSemiExp, inSemiExp);
} | [
"[email protected]"
] | |
f66fe6cb1b7df39c9a41dfb1775863dfe5dd489a | a6dc009415eb5960462284adc5bac17dd7af95ca | /cpp/4_lambda.cpp | cedc31bb4402a82ec29b1ad27caeb0529437d5bd | [] | no_license | axayjha/multithreading | 6e7e5d14c997db5dfeb81daa16568fd1cb27318c | a837e8d32d7a709bbb636c672a3900c58dc81cea | refs/heads/master | 2022-09-01T07:59:45.881532 | 2020-05-28T05:00:15 | 2020-05-28T05:00:15 | 266,749,795 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 509 | cpp | // Thread creation using lambda function
#include <iostream>
#include <thread>
#include <chrono>
#include <algorithm>
using namespace std;
using namespace std::chrono;
int main() {
// auto fun = [] (int x) {
// while (x --> 0) {
// cout << x << endl;
// }
// };
// std::thread t1(fun, 11);
// t1.join();
/* OR */
std::thread t2([] (int x) {
while (x --> 0) {
cout << x << endl;
}
}, 15);
t2.join();
return 0;
} | [
"[email protected]"
] | |
185c3f562b9da2d997fea6fd63e465ef3249e1b4 | db51f15d0258bf9eb31be22107769ba8a07ea897 | /MFCApplication_29.06.2021/MFCApplication/MFCApplication/CParentDlg.h | 52a455ff0cc21e800861de85089a0cf0a4674dff | [] | no_license | teodora2537/DiarySchool | 066144148cc56c94ba4320797ee5769e0053519e | 3066a686186dbb36175a087f76220c32d8ca4ecb | refs/heads/main | 2023-06-20T11:39:38.016711 | 2021-07-23T12:09:51 | 2021-07-23T12:09:51 | 337,241,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 861 | h | #pragma once
#include <list>
#include "Student.h"
// CParentDlg dialog
class CParentDlg : public CDialogEx
{
DECLARE_DYNAMIC(CParentDlg)
public:
CParentDlg(CParentData& oParent, const DialogMode eMode); // standard constructor
virtual ~CParentDlg();
// Dialog Data
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_DIALOG_PARENT };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
BOOL OnInitDialog();
void EnableDisableBoxes();
void FillEditBoxes();
BOOL ValidateData();
DECLARE_MESSAGE_MAP()
public:
CString m_strFn;
CString m_strLn;
CString m_strEmail;
CString m_strPhoneNumber;
CString m_strCity;
CString m_strPostCode;
CString m_strNeighborhood;
CString m_strAddress;
DialogMode m_eMode;
CParentData& m_oParent;
afx_msg void OnBnClickedOk();
};
| [
"[email protected]"
] | |
614f270f92edb2927e735d1f75972961d0d4efaa | 3e1681991b304fc007b75bb7d870f96a65e1ac28 | /C++/test300.cpp | 07ccac06be015cb354b861195084cd6a8f4cfd08 | [] | no_license | naveenls/Competitive-Coding | 8306d7e04f27ad91cd6956cceea2bae83c8ad33a | f59189a5d9e7ffa505a4bb8d3560d66b35be5aca | refs/heads/main | 2023-03-21T14:56:06.206429 | 2021-03-17T18:34:16 | 2021-03-17T18:34:16 | 340,908,452 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 960 | cpp | #include<bits/stdc++.h>
using namespace std;
int n,m;
const int maxN=500;
string arr[maxN];
bool col[maxN][maxN];
vector<char> type;
vector<pair<int,int> > seq;
int r_i,r_j;
void dfs(int i,int j)
{
if(i<0 || i>=n || j<0 || j>=m)
return;
if(arr[i][j]=='#' || col[i][j])
return;
col[i][j]=1;
type.push_back('B');
seq.push_back({i+1,j+1});
dfs(i+1,j);
dfs(i-1,j);
dfs(i,j+1);
dfs(i,j-1);
if(j!=r_j || i!=r_i)
{
type.push_back('D');
seq.push_back({i+1,j+1});
type.push_back('R');
seq.push_back({i+1,j+1});
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin>>n>>m;
for(int i=0;i<n;i++)
cin>>arr[i];
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(!col[i][j] && arr[i][j]!='#')
{
r_i=i,r_j=j;
dfs(i,j);
}
}
}
cout<<seq.size()<<endl;
for(int i=0;i<seq.size();i++)
{
cout<<type[i]<<' '<<seq[i].first<<' '<<seq[i].second<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
0b57a5cf31f7797f2bf44e63519d172d01e6c06d | 046ccce3543f93896ce595c44a343c210353e397 | /CheckSumOfSquareNumbers/check_sum_of_square_numbers.cpp | 5cd47277a210fc08cd25a8d33e529acf9fa6fbbf | [] | no_license | suzyz/LintCode | 06e964c6abd0e615fcf40365767de8d4e4e35093 | d575bf0482e5f74adb7065cf6997acfa8f46f124 | refs/heads/master | 2021-09-26T22:08:49.362562 | 2018-11-03T10:17:10 | 2018-11-03T10:17:10 | 104,197,868 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 400 | cpp | class Solution {
public:
/*
* @param : the given number
* @return: whether whether there're two integers
*/
bool checkSumOfSquareNumbers(int num) {
int l = 0, r = sqrt(num);
while (l <= r)
{
int tmp = num - l*l;
if (tmp == r*r)
return true;
else
if (tmp < r*r)
--r;
else
++l;
}
return false;
}
};
| [
"[email protected]"
] | |
714d09ef953cfcf98e705cdcb9e8c37080d71f10 | e67e08afcc072261bde2d919e1f8eb854281f35e | /gdal/frmts/georaster/georaster_wrapper.cpp | 8b8fececcd674c5874739a4f185e66b8de9905d8 | [
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-info-zip-2005-02",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT",
"SunPro"
] | permissive | ShinNoNoir/gdal-1.11.5-vs2015 | 3b6e1eb2fa8a5163880e3c523dc547b2867274df | 5d544e176a4c11f9bcd12a0fe66f97fd157824e6 | refs/heads/master | 2021-08-28T15:51:25.491557 | 2021-08-13T12:57:57 | 2021-08-13T12:57:57 | 78,644,486 | 3 | 0 | null | 2017-01-12T09:39:54 | 2017-01-11T14:02:24 | C++ | UTF-8 | C++ | false | false | 128,135 | cpp | /******************************************************************************
* $Id: $
*
* Name: georaster_wrapper.cpp
* Project: Oracle Spatial GeoRaster Driver
* Purpose: Implement GeoRasterWrapper methods
* Author: Ivan Lucena [ivan.lucena at oracle.com]
*
******************************************************************************
* Copyright (c) 2008, Ivan Lucena
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files ( the "Software" ),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#include <string.h>
#include "georaster_priv.h"
#include "cpl_error.h"
#include "cpl_string.h"
#include "cpl_minixml.h"
// ---------------------------------------------------------------------------
// GeoRasterWrapper()
// ---------------------------------------------------------------------------
GeoRasterWrapper::GeoRasterWrapper()
{
nRasterId = -1;
phMetadata = NULL;
nRasterRows = 0;
nRasterColumns = 0;
nRasterBands = 0;
nRowBlockSize = 0;
nColumnBlockSize = 0;
nBandBlockSize = 0;
nTotalColumnBlocks = 0;
nTotalRowBlocks = 0;
nTotalBandBlocks = 0;
nCellSizeBits = 0;
nGDALCellBytes = 0;
dfXCoefficient[0] = 1.0;
dfXCoefficient[1] = 0.0;
dfXCoefficient[2] = 0.0;
dfYCoefficient[0] = 0.0;
dfYCoefficient[1] = 1.0;
dfYCoefficient[2] = 0.0;
sCompressionType = "NONE";
nCompressQuality = 75;
bGenPyramid = false;
nPyramidLevels = 0;
sPyramidResampling = "NN";
pahLocator = NULL;
pabyBlockBuf = NULL;
pabyCompressBuf = NULL;
bIsReferenced = false;
poBlockStmt = NULL;
nCacheBlockId = -1;
nCurrentLevel = -1;
pahLevels = NULL;
nLevelOffset = 0L;
sInterleaving = "BSQ";
bUpdate = false;
bInitializeIO = false;
bFlushMetadata = false;
nSRID = 0;
nExtentSRID = 0;
bGenSpatialIndex = false;
bCreateObjectTable = false;
nPyramidMaxLevel = 0;
nBlockCount = 0L;
nGDALBlockBytes = 0L;
sDInfo.global_state = 0;
sCInfo.global_state = 0;
bHasBitmapMask = false;
nBlockBytes = 0L;
bFlushBlock = false;
nFlushBlockSize = 0L;
bUniqueFound = false;
sValueAttributeTab = "";
psNoDataList = NULL;
bWriteOnly = false;
bBlocking = true;
bAutoBlocking = false;
eModelCoordLocation = MCL_DEFAULT;
phRPC = NULL;
}
// ---------------------------------------------------------------------------
// GeoRasterDataset()
// ---------------------------------------------------------------------------
GeoRasterWrapper::~GeoRasterWrapper()
{
FlushMetadata();
if( pahLocator && nBlockCount )
{
OWStatement::Free( pahLocator, nBlockCount );
}
CPLFree( pahLocator );
CPLFree( pabyBlockBuf );
CPLFree( pabyCompressBuf );
CPLFree( pahLevels );
if( CPLListCount( psNoDataList ) )
{
CPLList* psList = NULL;
for( psList = psNoDataList; psList ; psList = psList->psNext )
{
CPLFree( psList->pData );
}
CPLListDestroy( psNoDataList );
}
if( poBlockStmt )
{
delete poBlockStmt;
}
CPLDestroyXMLNode( phMetadata );
if( sDInfo.global_state )
{
jpeg_destroy_decompress( &sDInfo );
}
if( sCInfo.global_state )
{
jpeg_destroy_compress( &sCInfo );
}
if( poConnection )
{
delete poConnection;
}
if( phRPC )
{
CPLFree( phRPC );
}
}
// ---------------------------------------------------------------------------
// ParseIdentificator()
// ---------------------------------------------------------------------------
//
// StringID:
// {georaster,geor}:<name>{/,,}<password>{/,@}<db>,<tab>,<col>,<where>
// {georaster,geor}:<name>{/,,}<password>{/,@}<db>,<rdt>,<rid>
//
// ---------------------------------------------------------------------------
char** GeoRasterWrapper::ParseIdentificator( const char* pszStringID )
{
char* pszStartPos = (char*) strstr( pszStringID, ":" ) + 1;
char** papszParam = CSLTokenizeString2( pszStartPos, ",@",
CSLT_HONOURSTRINGS | CSLT_ALLOWEMPTYTOKENS |
CSLT_STRIPLEADSPACES | CSLT_STRIPENDSPACES );
// -------------------------------------------------------------------
// The "/" should not be catch on the previous parser
// -------------------------------------------------------------------
if( CSLCount( papszParam ) > 0 )
{
char** papszFirst2 = CSLTokenizeString2( papszParam[0], "/",
CSLT_HONOURSTRINGS | CSLT_ALLOWEMPTYTOKENS );
if( CSLCount( papszFirst2 ) == 2 )
{
papszParam = CSLInsertStrings( papszParam, 0, papszFirst2 );
papszParam = CSLRemoveStrings( papszParam, 2, 1, NULL );
}
CSLDestroy( papszFirst2 );
}
return papszParam;
}
// ---------------------------------------------------------------------------
// Open()
// ---------------------------------------------------------------------------
GeoRasterWrapper* GeoRasterWrapper::Open( const char* pszStringId, bool bUpdate )
{
char** papszParam = ParseIdentificator( pszStringId );
// ---------------------------------------------------------------
// Validate identificator
// ---------------------------------------------------------------
int nArgc = CSLCount( papszParam );
for( ; nArgc < 3; nArgc++ )
{
papszParam = CSLAddString( papszParam, "" );
}
// ---------------------------------------------------------------
// Create a GeoRasterWrapper object
// ---------------------------------------------------------------
GeoRasterWrapper* poGRW = new GeoRasterWrapper();
if( ! poGRW )
{
return NULL;
}
poGRW->bUpdate = bUpdate;
// ---------------------------------------------------------------
// Get a connection with Oracle server
// ---------------------------------------------------------------
poGRW->poConnection = new OWConnection( papszParam[0],
papszParam[1],
papszParam[2] );
if( ! poGRW->poConnection->Succeeded() )
{
CSLDestroy( papszParam );
delete poGRW;
return NULL;
}
// -------------------------------------------------------------------
// Extract schema name
// -------------------------------------------------------------------
if( nArgc > 3 )
{
char** papszSchema = CSLTokenizeString2( papszParam[3], ".",
CSLT_HONOURSTRINGS | CSLT_ALLOWEMPTYTOKENS );
if( CSLCount( papszSchema ) == 2 )
{
poGRW->sOwner = papszSchema[0];
poGRW->sSchema = CPLSPrintf( "%s.", poGRW->sOwner.c_str() );
papszParam = CSLRemoveStrings( papszParam, 3, 1, NULL );
if( ! EQUAL( papszSchema[1], "" ) )
{
papszParam = CSLInsertString( papszParam, 3, papszSchema[1] );
}
nArgc = CSLCount( papszParam );
}
else
{
poGRW->sSchema = "";
poGRW->sOwner = poGRW->poConnection->GetUser();
}
CSLDestroy( papszSchema );
}
else
{
poGRW->sSchema = "";
poGRW->sOwner = poGRW->poConnection->GetUser();
}
// -------------------------------------------------------------------
// Assign parameters from Identification string
// -------------------------------------------------------------------
switch( nArgc )
{
case 6 :
poGRW->sTable = papszParam[3];
poGRW->sColumn = papszParam[4];
poGRW->sWhere = papszParam[5];
break;
case 5 :
if( OWIsNumeric( papszParam[4] ) )
{
poGRW->sDataTable = papszParam[3];
poGRW->nRasterId = atoi( papszParam[4]);
break;
}
else
{
poGRW->sTable = papszParam[3];
poGRW->sColumn = papszParam[4];
return poGRW;
}
case 4 :
poGRW->sTable = papszParam[3];
return poGRW;
default :
return poGRW;
}
CSLDestroy( papszParam );
// -------------------------------------------------------------------
// Query all the basic information at once to reduce round trips
// -------------------------------------------------------------------
char szOwner[OWCODE];
char szTable[OWCODE];
char szColumn[OWTEXT];
char szDataTable[OWCODE];
char szWhere[OWTEXT];
int nRasterId = -1;
int nSizeX = 0;
int nSizeY = 0;
int nSRID = 0;
OCILobLocator* phLocator = NULL;
double dfULx = 0.0;
double dfURx = 0.0;
double dfLRx = 0.0;
double dfULy = 0.0;
double dfLLy = 0.0;
double dfLRy = 0.0;
char szWKText[3 * OWTEXT];
char szAuthority[OWTEXT];
char szMLC[OWTEXT];
szOwner[0] = '\0';
szTable[0] = '\0';
szColumn[0] = '\0';
szDataTable[0] = '\0';
szWhere[0] = '\0';
szWKText[0] = '\0';
szAuthority[0] = '\0';
szMLC[0] = '\0';
if( ! poGRW->sOwner.empty() )
{
strcpy( szOwner, poGRW->sOwner.c_str() );
}
if( ! poGRW->sTable.empty() )
{
strcpy( szTable, poGRW->sTable.c_str() );
}
if( ! poGRW->sColumn.empty() )
{
strcpy( szColumn, poGRW->sColumn.c_str() );
}
if( ! poGRW->sDataTable.empty() )
{
strcpy( szDataTable, poGRW->sDataTable.c_str() );
}
nRasterId = poGRW->nRasterId;
if( ! poGRW->sWhere.empty() )
{
strcpy( szWhere, poGRW->sWhere.c_str() );
}
OWStatement* poStmt = poGRW->poConnection->CreateStatement(
"DECLARE\n"
" SCM VARCHAR2(64) := 'xmlns=\"http://xmlns.oracle.com/spatial/georaster\"';\n"
" GUL SDO_GEOMETRY := null;\n"
" GUR SDO_GEOMETRY := null;\n"
" GLL SDO_GEOMETRY := null;\n"
" GLR SDO_GEOMETRY := null;\n"
"BEGIN\n"
"\n"
" IF :datatable IS NOT NULL AND :rasterid > 0 THEN\n"
"\n"
" EXECUTE IMMEDIATE\n"
" 'SELECT OWNER, TABLE_NAME, COLUMN_NAME\n"
" FROM ALL_SDO_GEOR_SYSDATA\n"
" WHERE RDT_TABLE_NAME = UPPER(:1)\n"
" AND RASTER_ID = :2'\n"
" INTO :owner, :table, :column\n"
" USING :datatable, :rasterid;\n"
"\n"
" EXECUTE IMMEDIATE\n"
" 'SELECT T.'||:column||'.METADATA.getClobVal()\n"
" FROM '||:owner||'.'||:table||' T\n"
" WHERE T.'||:column||'.RASTERDATATABLE = UPPER(:1)\n"
" AND T.'||:column||'.RASTERID = :2'\n"
" INTO :metadata\n"
" USING :datatable, :rasterid;\n"
" :counter := 1;\n"
"\n"
" ELSE\n"
"\n"
" EXECUTE IMMEDIATE\n"
" 'SELECT T.'||:column||'.RASTERDATATABLE,\n"
" T.'||:column||'.RASTERID,\n"
" T.'||:column||'.METADATA.getClobVal()\n"
" FROM '||:owner||'.'||:table||' T\n"
" WHERE '||:where\n"
" INTO :datatable, :rasterid, :metadata;\n"
" :counter := 1;\n"
"\n"
" END IF;\n"
"\n"
" SELECT\n"
" extractValue(XMLType(:metadata),"
"'/georasterMetadata/rasterInfo/dimensionSize[@type=\"ROW\"]/size', "
"SCM),\n"
" extractValue(XMLType(:metadata),"
"'/georasterMetadata/rasterInfo/dimensionSize[@type=\"COLUMN\"]/size', "
"SCM),\n"
" extractValue(XMLType(:metadata),"
"'/georasterMetadata/spatialReferenceInfo/SRID', "
"SCM),\n"
" extractValue(XMLType(:metadata),"
"'/georasterMetadata/spatialReferenceInfo/modelCoordinateLocation', "
"SCM)\n"
" INTO :sizey, :sizex, :srid, :mcl FROM DUAL;\n"
"\n"
" EXECUTE IMMEDIATE\n"
" 'SELECT\n"
" SDO_GEOR.getModelCoordinate('||:column||', 0, "
"SDO_NUMBER_ARRAY(0, 0)),\n"
" SDO_GEOR.getModelCoordinate('||:column||', 0, "
"SDO_NUMBER_ARRAY(0, '||:sizex||')),\n"
" SDO_GEOR.getModelCoordinate('||:column||', 0, "
"SDO_NUMBER_ARRAY('||:sizey||', 0)),\n"
" SDO_GEOR.getModelCoordinate('||:column||', 0, "
"SDO_NUMBER_ARRAY('||:sizey||', '||:sizex||'))\n"
" FROM '||:owner||'.'||:table||' T\n"
" WHERE T.'||:column||'.RASTERDATATABLE = UPPER(:1)\n"
" AND T.'||:column||'.RASTERID = :2'\n"
" INTO GUL, GLL, GUR, GLR\n"
" USING :datatable, :rasterid;\n"
"\n"
" :ULx := GUL.sdo_point.x;\n"
" :URx := GUR.sdo_point.x;\n"
" :LRx := GLR.sdo_point.x;\n"
" :ULy := GUL.sdo_point.y;\n"
" :LLy := GLL.sdo_point.y;\n"
" :LRy := GLR.sdo_point.y;\n"
"\n"
" BEGIN\n"
" EXECUTE IMMEDIATE\n"
" 'SELECT WKTEXT, AUTH_NAME\n"
" FROM MDSYS.CS_SRS\n"
" WHERE SRID = :1 AND WKTEXT IS NOT NULL'\n"
" INTO :wktext, :authority\n"
" USING :srid;\n"
" EXCEPTION\n"
" WHEN no_data_found THEN\n"
" :wktext := '';\n"
" :authority := '';\n"
" END;\n"
"\n"
" EXCEPTION\n"
" WHEN no_data_found THEN :counter := 0;\n"
" WHEN too_many_rows THEN :counter := 2;\n"
"END;" );
int nCounter = 0;
poStmt->BindName( ":datatable", szDataTable );
poStmt->BindName( ":rasterid", &nRasterId );
poStmt->BindName( ":owner", szOwner );
poStmt->BindName( ":table", szTable );
poStmt->BindName( ":column", szColumn );
poStmt->BindName( ":where", szWhere );
poStmt->BindName( ":counter", &nCounter );
poStmt->BindName( ":metadata", &phLocator );
poStmt->BindName( ":sizex", &nSizeX );
poStmt->BindName( ":sizey", &nSizeY );
poStmt->BindName( ":srid", &nSRID );
poStmt->BindName( ":mcl", szMLC );
poStmt->BindName( ":ULx", &dfULx );
poStmt->BindName( ":URx", &dfURx );
poStmt->BindName( ":LRx", &dfLRx );
poStmt->BindName( ":ULy", &dfULy );
poStmt->BindName( ":LLy", &dfLLy );
poStmt->BindName( ":LRy", &dfLRy );
poStmt->BindName( ":wktext", szWKText, sizeof(szWKText) );
poStmt->BindName( ":authority", szAuthority );
CPLErrorReset();
if( ! poStmt->Execute() )
{
delete poStmt;
delete poGRW;
return NULL;
}
if( nCounter < 1 )
{
delete poStmt;
delete poGRW;
return NULL;
}
poGRW->sSchema = CPLSPrintf( "%s.", szOwner );
poGRW->sOwner = szOwner;
poGRW->sTable = szTable;
poGRW->sColumn = szColumn;
if( nCounter == 1 )
{
poGRW->bUniqueFound = true;
}
else
{
poGRW->bUniqueFound = false;
delete poStmt;
return poGRW;
}
poGRW->sWKText = szWKText;
poGRW->sAuthority = szAuthority;
poGRW->sDataTable = szDataTable;
poGRW->nRasterId = nRasterId;
poGRW->sWhere = CPLSPrintf(
"T.%s.RASTERDATATABLE = UPPER('%s') AND T.%s.RASTERID = %d",
poGRW->sColumn.c_str(),
poGRW->sDataTable.c_str(),
poGRW->sColumn.c_str(),
poGRW->nRasterId );
// -------------------------------------------------------------------
// Read Metadata XML in text
// -------------------------------------------------------------------
char* pszXML = poStmt->ReadCLob( phLocator );
if( pszXML )
{
// -----------------------------------------------------------
// Get basic information from xml metadata
// -----------------------------------------------------------
poGRW->phMetadata = CPLParseXMLString( pszXML );
poGRW->GetRasterInfo();
}
else
{
poGRW->sDataTable = "";
poGRW->nRasterId = 0;
}
// --------------------------------------------------------------------
// Load Coefficients matrix
// --------------------------------------------------------------------
if ( EQUAL( szMLC, "UPPERLEFT" ) )
{
poGRW->eModelCoordLocation = MCL_UPPERLEFT;
}
else
{
poGRW->eModelCoordLocation = MCL_DEFAULT;
}
double dfRotation = 0.0;
if( ! CPLIsEqual( dfULy, dfLLy ) )
{
dfRotation = ( dfURx - dfULx ) / ( dfLLy - dfULy );
}
poGRW->dfXCoefficient[0] = ( dfLRx - dfULx ) / nSizeX;
poGRW->dfXCoefficient[1] = dfRotation;
poGRW->dfXCoefficient[2] = dfULx;
poGRW->dfYCoefficient[0] = -dfRotation;
poGRW->dfYCoefficient[1] = ( dfLRy - dfULy ) / nSizeY;
poGRW->dfYCoefficient[2] = dfULy;
if ( poGRW->eModelCoordLocation == MCL_CENTER )
{
poGRW->dfXCoefficient[2] -= poGRW->dfXCoefficient[0] / 2;
poGRW->dfYCoefficient[2] -= poGRW->dfYCoefficient[1] / 2;
CPLDebug("GEOR","eModelCoordLocation = MCL_CENTER");
}
else
{
CPLDebug("GEOR","eModelCoordLocation = MCL_UPPERLEFT");
}
// -------------------------------------------------------------------
// Apply ULTCoordinate
// -------------------------------------------------------------------
poGRW->dfXCoefficient[2] +=
( poGRW->anULTCoordinate[0] * poGRW->dfXCoefficient[0] );
poGRW->dfYCoefficient[2] +=
( poGRW->anULTCoordinate[1] * poGRW->dfYCoefficient[1] );
// -------------------------------------------------------------------
// Clean up
// -------------------------------------------------------------------
OCIDescriptorFree( phLocator, OCI_DTYPE_LOB );
CPLFree( pszXML );
delete poStmt;
// -------------------------------------------------------------------
// Return a GeoRasterWrapper object
// -------------------------------------------------------------------
return poGRW;
}
// ---------------------------------------------------------------------------
// Create()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::Create( char* pszDescription,
char* pszInsert,
bool bUpdate )
{
CPLString sValues;
CPLString sFormat;
if( sTable.empty() ||
sColumn.empty() )
{
return false;
}
// -------------------------------------------------------------------
// Parse RDT/RID from the current szValues
// -------------------------------------------------------------------
char szRDT[OWNAME];
char szRID[OWCODE];
if( ! sDataTable.empty() )
{
strcpy( szRDT, CPLSPrintf( "'%s'", sDataTable.c_str() ) );
}
else
{
strcpy( szRDT, OWParseSDO_GEOR_INIT( sValues.c_str(), 1 ) );
}
if ( nRasterId > 0 )
{
strcpy( szRID, CPLSPrintf( "%d", nRasterId ) );
}
else
{
strcpy( szRID, OWParseSDO_GEOR_INIT( sValues.c_str(), 2 ) );
if ( EQUAL( szRID, "" ) )
{
strcpy( szRID, "NULL" );
}
}
// -------------------------------------------------------------------
// Description parameters
// -------------------------------------------------------------------
char szDescription[OWTEXT];
if( bUpdate == false )
{
if ( pszDescription )
{
strcpy( szDescription, pszDescription );
}
else
{
strcpy( szDescription, CPLSPrintf(
"(%s MDSYS.SDO_GEORASTER)", sColumn.c_str() ) );
}
// ---------------------------------------------------------------
// Insert parameters
// ---------------------------------------------------------------
if( pszInsert )
{
sValues = pszInsert;
if( pszInsert[0] == '(' && sValues.ifind( "VALUES" ) == std::string::npos )
{
sValues = CPLSPrintf( "VALUES %s", pszInsert );
}
}
else
{
sValues = CPLSPrintf( "VALUES (SDO_GEOR.INIT(%s,%s))", szRDT, szRID );
}
}
// -----------------------------------------------------------
// Storage parameters
// -----------------------------------------------------------
nColumnBlockSize = nColumnBlockSize == 0 ? DEFAULT_BLOCK_COLUMNS : nColumnBlockSize;
nRowBlockSize = nRowBlockSize == 0 ? DEFAULT_BLOCK_ROWS : nRowBlockSize;
nBandBlockSize = nBandBlockSize == 0 ? 1 : nBandBlockSize;
// -----------------------------------------------------------
// Blocking storage paramters
// -----------------------------------------------------------
CPLString sBlocking;
if( bBlocking == true )
{
if( bAutoBlocking == true )
{
int nBlockXSize = nColumnBlockSize;
int nBlockYSize = nRowBlockSize;
int nBlockBSize = nBandBlockSize;
OWStatement* poStmt;
poStmt = poConnection->CreateStatement(
"DECLARE\n"
" dimensionSize sdo_number_array;\n"
" blockSize sdo_number_array;\n"
"BEGIN\n"
" dimensionSize := sdo_number_array(:1, :2, :3);\n"
" blockSize := sdo_number_array(:4, :5, :6);\n"
" sdo_geor_utl.calcOptimizedBlockSize(dimensionSize,blockSize);\n"
" :4 := blockSize(1);\n"
" :5 := blockSize(2);\n"
" :6 := blockSize(3);\n"
"END;" );
poStmt->Bind( &nRasterColumns );
poStmt->Bind( &nRasterRows );
poStmt->Bind( &nRasterBands );
poStmt->Bind( &nBlockXSize );
poStmt->Bind( &nBlockYSize );
poStmt->Bind( &nBlockBSize );
if( poStmt->Execute() )
{
nColumnBlockSize = nBlockXSize;
nRowBlockSize = nBlockYSize;
nBandBlockSize = nBlockBSize;
}
delete poStmt;
}
if( nRasterBands == 1 )
{
sBlocking = CPLSPrintf(
"blockSize=(%d, %d)",
nRowBlockSize,
nColumnBlockSize );
}
else
{
sBlocking = CPLSPrintf(
"blockSize=(%d, %d, %d)",
nRowBlockSize,
nColumnBlockSize,
nBandBlockSize );
}
}
else
{
sBlocking = "blocking=FALSE";
nColumnBlockSize = nRasterColumns;
nRowBlockSize = nRasterRows;
nBandBlockSize = nRasterBands;
}
// -----------------------------------------------------------
// Complete format paramters
// -----------------------------------------------------------
if( poConnection->GetVersion() > 10 )
{
if( nRasterBands == 1 )
{
sFormat = CPLSPrintf(
"20001, '"
"dimSize=(%d,%d) ",
nRasterRows, nRasterColumns );
}
else
{
sFormat = CPLSPrintf(
"21001, '"
"dimSize=(%d,%d,%d) ",
nRasterRows, nRasterColumns, nRasterBands );
}
if( EQUALN( sCompressionType.c_str(), "JPEG", 4 ) )
{
sFormat.append( CPLSPrintf(
"%s "
"cellDepth=%s "
"interleaving=%s "
"compression=%s "
"quality=%d'",
sBlocking.c_str(),
sCellDepth.c_str(),
sInterleaving.c_str(),
sCompressionType.c_str(),
nCompressQuality) );
}
else
{
sFormat.append( CPLSPrintf(
"%s "
"cellDepth=%s "
"interleaving=%s "
"compression=%s'",
sBlocking.c_str(),
sCellDepth.c_str(),
sInterleaving.c_str(),
sCompressionType.c_str() ) );
}
}
else
{
// -------------------------------------------------------
// For versions 10g or older
// -------------------------------------------------------
sFormat = CPLSPrintf(
"%s "
"cellDepth=%s "
"interleaving=%s "
"pyramid=FALSE "
"compression=NONE",
sBlocking.c_str(),
sCellDepth.c_str(),
sInterleaving.c_str() );
}
nTotalColumnBlocks = (int)
( ( nRasterColumns + nColumnBlockSize - 1 ) / nColumnBlockSize );
nTotalRowBlocks = (int)
( ( nRasterRows + nRowBlockSize - 1 ) / nRowBlockSize );
nTotalBandBlocks = (int)
( ( nRasterBands + nBandBlockSize - 1) / nBandBlockSize );
// -------------------------------------------------------------------
// Create Georaster Table if needed
// -------------------------------------------------------------------
OWStatement* poStmt;
if( ! bUpdate )
{
poStmt = poConnection->CreateStatement( CPLSPrintf(
"DECLARE\n"
" TAB VARCHAR2(68) := UPPER('%s');\n"
" COL VARCHAR2(68) := UPPER('%s');\n"
" OWN VARCHAR2(68) := UPPER('%s');\n"
" CNT NUMBER := 0;\n"
"BEGIN\n"
" EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM ALL_TABLES\n"
" WHERE TABLE_NAME = :1 AND OWNER = UPPER(:2)'\n"
" INTO CNT USING TAB, OWN;\n"
"\n"
" IF CNT = 0 THEN\n"
" EXECUTE IMMEDIATE 'CREATE TABLE %s%s %s';\n"
" SDO_GEOR_UTL.createDMLTrigger( TAB, COL );\n"
" END IF;\n"
"END;",
sTable.c_str(),
sColumn.c_str(),
sOwner.c_str(),
sSchema.c_str(),
sTable.c_str(),
szDescription ) );
if( ! poStmt->Execute() )
{
delete ( poStmt );
return false;
}
delete poStmt;
}
// -----------------------------------------------------------
// Prepare UPDATE or INSERT comand
// -----------------------------------------------------------
CPLString sCommand;
if( bUpdate )
{
sCommand = CPLSPrintf(
"SELECT %s INTO GR1 FROM %s%s T WHERE %s FOR UPDATE;",
sColumn.c_str(),
sSchema.c_str(),
sTable.c_str(),
sWhere.c_str() );
}
else
{
sCommand = CPLSPrintf(
"INSERT INTO %s%s %s RETURNING %s INTO GR1;",
sSchema.c_str(),
sTable.c_str(),
sValues.c_str(),
sColumn.c_str() );
}
// -----------------------------------------------------------
// Create RTD if needed and insert/update GeoRaster
// -----------------------------------------------------------
char szBindRDT[OWNAME];
int nBindRID = 0;
szBindRDT[0] = '\0';
CPLString sObjectTable;
CPLString sSecureFile;
// For version > 11 create RDT as relational table by default,
// if it is not specified by create-option OBJECTTABLE=TRUE
if( poConnection->GetVersion() <= 11 || bCreateObjectTable )
{
sObjectTable = "OF MDSYS.SDO_RASTER\n (";
}
else
{
sObjectTable = CPLSPrintf("(\n"
" RASTERID NUMBER,\n"
" PYRAMIDLEVEL NUMBER,\n"
" BANDBLOCKNUMBER NUMBER,\n"
" ROWBLOCKNUMBER NUMBER,\n"
" COLUMNBLOCKNUMBER NUMBER,\n"
" BLOCKMBR SDO_GEOMETRY,\n"
" RASTERBLOCK BLOB,\n"
" CONSTRAINT '||:rdt||'_RDT_PK ");
}
// For version >= 11 create RDT rasterBlock as securefile
if( poConnection->GetVersion() >= 11 )
{
sSecureFile = "SECUREFILE(CACHE)";
}
else
{
sSecureFile = "(NOCACHE NOLOGGING)";
}
if( poConnection->GetVersion() > 10 )
{
poStmt = poConnection->CreateStatement( CPLSPrintf(
"DECLARE\n"
" TAB VARCHAR2(68) := UPPER('%s');\n"
" COL VARCHAR2(68) := UPPER('%s');\n"
" OWN VARCHAR2(68) := UPPER('%s');\n"
" CNT NUMBER := 0;\n"
" GR1 SDO_GEORASTER := NULL;\n"
"BEGIN\n"
"\n"
" %s\n"
"\n"
" GR1.spatialExtent := NULL;\n"
"\n"
" SELECT GR1.RASTERDATATABLE INTO :rdt FROM DUAL;\n"
" SELECT GR1.RASTERID INTO :rid FROM DUAL;\n"
"\n"
" EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM ALL_OBJECT_TABLES\n"
" WHERE TABLE_NAME = :1 AND OWNER = UPPER(:2)'\n"
" INTO CNT USING :rdt, OWN;\n"
"\n"
" IF CNT = 0 THEN\n"
" EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM ALL_TABLES\n"
" WHERE TABLE_NAME = :1 AND OWNER = UPPER(:2)'\n"
" INTO CNT USING :rdt, OWN;\n"
" END IF;\n"
"\n"
" IF CNT = 0 THEN\n"
" EXECUTE IMMEDIATE 'CREATE TABLE %s'||:rdt||' %s"
"PRIMARY KEY (RASTERID, PYRAMIDLEVEL,\n"
" BANDBLOCKNUMBER, ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))\n"
" LOB(RASTERBLOCK) STORE AS %s';\n"
" END IF;\n"
"\n"
" SDO_GEOR.createTemplate(GR1, %s, null, 'TRUE');\n"
"\n"
" UPDATE %s%s T SET %s = GR1 WHERE\n"
" T.%s.RasterDataTable = :rdt AND\n"
" T.%s.RasterId = :rid;\n"
"\n"
" EXECUTE IMMEDIATE\n"
" 'SELECT T.%s.METADATA.getClobVal()\n"
" FROM %s%s T\n"
" WHERE T.%s.RASTERDATATABLE = UPPER(:1)\n"
" AND T.%s.RASTERID = :2'\n"
" INTO :metadata\n"
" USING :rdt, :rid;\n"
"\n"
" COMMIT;\n"
"\n"
"END;\n",
sTable.c_str(),
sColumn.c_str(),
sOwner.c_str(),
sCommand.c_str(),
sSchema.c_str(),
sObjectTable.c_str(),
sSecureFile.c_str(),
sFormat.c_str(),
sSchema.c_str(),
sTable.c_str(),
sColumn.c_str(),
sColumn.c_str(),
sColumn.c_str(),
sColumn.c_str(),
sSchema.c_str(),
sTable.c_str(),
sColumn.c_str(),
sColumn.c_str() ) );
OCILobLocator* phLocator = NULL;
poStmt->BindName( ":metadata", &phLocator );
poStmt->BindName( ":rdt", szBindRDT );
poStmt->BindName( ":rid", &nBindRID );
CPLErrorReset();
if( ! poStmt->Execute() )
{
delete poStmt;
return false;
}
sDataTable = szBindRDT;
nRasterId = nBindRID;
OCIDescriptorFree( phLocator, OCI_DTYPE_LOB );
delete poStmt;
return true;
}
// -----------------------------------------------------------
// Procedure for Server version older than 11
// -----------------------------------------------------------
char szCreateBlank[OWTEXT];
if( nRasterBands == 1 )
{
strcpy( szCreateBlank, CPLSPrintf( "SDO_GEOR.createBlank(20001, "
"SDO_NUMBER_ARRAY(0, 0), "
"SDO_NUMBER_ARRAY(%d, %d), 0, :rdt, :rid)",
nRasterRows, nRasterColumns ) );
}
else
{
strcpy( szCreateBlank, CPLSPrintf( "SDO_GEOR.createBlank(21001, "
"SDO_NUMBER_ARRAY(0, 0, 0), "
"SDO_NUMBER_ARRAY(%d, %d, %d), 0, :rdt, :rid)",
nRasterRows, nRasterColumns, nRasterBands ) );
}
poStmt = poConnection->CreateStatement( CPLSPrintf(
"DECLARE\n"
" W NUMBER := :1;\n"
" H NUMBER := :2;\n"
" BB NUMBER := :3;\n"
" RB NUMBER := :4;\n"
" CB NUMBER := :5;\n"
" OWN VARCHAR2(68) := UPPER('%s');\n"
" X NUMBER := 0;\n"
" Y NUMBER := 0;\n"
" CNT NUMBER := 0;\n"
" GR1 SDO_GEORASTER := NULL;\n"
" GR2 SDO_GEORASTER := NULL;\n"
" STM VARCHAR2(1024) := '';\n"
"BEGIN\n"
"\n"
" %s\n"
"\n"
" SELECT GR1.RASTERDATATABLE INTO :rdt FROM DUAL;\n"
" SELECT GR1.RASTERID INTO :rid FROM DUAL;\n"
"\n"
" SELECT %s INTO GR2 FROM %s%s T WHERE"
" T.%s.RasterDataTable = :rdt AND"
" T.%s.RasterId = :rid FOR UPDATE;\n"
"\n"
" GR1 := %s;\n"
"\n"
" SDO_GEOR.changeFormatCopy(GR1, '%s', GR2);\n"
"\n"
" UPDATE %s%s T SET %s = GR2 WHERE"
" T.%s.RasterDataTable = :rdt AND"
" T.%s.RasterId = :rid;\n"
"\n"
" EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM ALL_OBJECT_TABLES\n"
" WHERE TABLE_NAME = :1 AND OWNER = UPPER(:2)'\n"
" INTO CNT USING :rdt, OWN;\n"
"\n"
" IF CNT = 0 THEN\n"
" EXECUTE IMMEDIATE 'CREATE TABLE %s'||:rdt||' OF MDSYS.SDO_RASTER\n"
" (PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER,\n"
" ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))\n"
" LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING)';\n"
" ELSE\n"
" EXECUTE IMMEDIATE 'DELETE FROM %s'||:rdt||' WHERE RASTERID ='||:rid||' ';\n"
" END IF;\n"
"\n"
" STM := 'INSERT INTO %s'||:rdt||' VALUES (:1,0,:2-1,:3-1,:4-1,\n"
" SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 3),\n"
" SDO_ORDINATE_ARRAY(:5,:6,:7-1,:8-1)), EMPTY_BLOB() )';\n\n"
" FOR b IN 1..BB LOOP\n"
" Y := 0;\n"
" FOR r IN 1..RB LOOP\n"
" X := 0;\n"
" FOR c IN 1..CB LOOP\n"
" EXECUTE IMMEDIATE STM USING :rid, b, r, c, Y, X, (Y+H), (X+W);\n"
" X := X + W;\n"
" END LOOP;\n"
" Y := Y + H;\n"
" END LOOP;\n"
" END LOOP;\n"
"\n"
" SDO_GEOR.georeference(GR1, %d, %d,"
" SDO_NUMBER_ARRAY(1.0, 0.0, 0.0),"
" SDO_NUMBER_ARRAY(0.0, 1.0, 0.0));\n"
"\n"
" UPDATE %s%s T SET %s = GR1 WHERE"
" T.%s.RasterDataTable = :rdt AND"
" T.%s.RasterId = :rid;\n"
"\n"
" COMMIT;\n"
"\n"
"END;",
sOwner.c_str(),
sCommand.c_str(),
sColumn.c_str(), sSchema.c_str(), sTable.c_str(),
sColumn.c_str(), sColumn.c_str(),
szCreateBlank,
sFormat.c_str(),
sSchema.c_str(), sTable.c_str(),
sColumn.c_str(), sColumn.c_str(), sColumn.c_str(),
sSchema.c_str(), sSchema.c_str(), sSchema.c_str(),
DEFAULT_CRS, MCL_DEFAULT,
sSchema.c_str(), sTable.c_str(),
sColumn.c_str(), sColumn.c_str(), sColumn.c_str() ) );
poStmt->Bind( &nColumnBlockSize );
poStmt->Bind( &nRowBlockSize );
poStmt->Bind( &nTotalBandBlocks );
poStmt->Bind( &nTotalRowBlocks );
poStmt->Bind( &nTotalColumnBlocks );
poStmt->BindName( ":rdt", szBindRDT );
poStmt->BindName( ":rid", &nBindRID );
if( ! poStmt->Execute() )
{
delete poStmt;
return false;
}
sDataTable = szBindRDT;
nRasterId = nBindRID;
delete poStmt;
return true;
}
// ---------------------------------------------------------------------------
// PrepareToOverwrite()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::PrepareToOverwrite( void )
{
nTotalColumnBlocks = 0;
nTotalRowBlocks = 0;
nTotalBandBlocks = 0;
if( sscanf( sCellDepth.c_str(), "%dBIT", &nCellSizeBits ) )
{
nGDALCellBytes = GDALGetDataTypeSize(
OWGetDataType( sCellDepth.c_str() ) ) / 8;
}
else
{
nGDALCellBytes = 1;
}
dfXCoefficient[0] = 1.0;
dfXCoefficient[1] = 0.0;
dfXCoefficient[2] = 0.0;
dfYCoefficient[0] = 0.0;
dfYCoefficient[1] = 1.0;
dfYCoefficient[2] = 0.0;
sCompressionType = "NONE";
nCompressQuality = 75;
bGenPyramid = false;
nPyramidLevels = 0;
sPyramidResampling = "NN";
bIsReferenced = false;
nCacheBlockId = -1;
nCurrentLevel = -1;
pahLevels = NULL;
nLevelOffset = 0L;
sInterleaving = "BSQ";
bUpdate = false;
bInitializeIO = false;
bFlushMetadata = false;
nSRID = 0;
nExtentSRID = 0;
bGenSpatialIndex = false;
bCreateObjectTable = false;
nPyramidMaxLevel = 0;
nBlockCount = 0L;
sDInfo.global_state = 0;
sCInfo.global_state = 0;
bHasBitmapMask = false;
bWriteOnly = false;
bBlocking = true;
bAutoBlocking = false;
eModelCoordLocation = MCL_DEFAULT;
bFlushBlock = false;
nFlushBlockSize = 0L;
phRPC = NULL;
}
// ---------------------------------------------------------------------------
// Delete()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::Delete( void )
{
if( ! bUniqueFound )
{
return false;
}
OWStatement* poStmt = poConnection->CreateStatement( CPLSPrintf(
"UPDATE %s%s T SET %s = NULL WHERE %s\n",
sSchema.c_str(),
sTable.c_str(),
sColumn.c_str(),
sWhere.c_str() ) );
bool bReturn = poStmt->Execute();
delete poStmt;
return bReturn;
}
// ---------------------------------------------------------------------------
// SetGeoReference()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::SetGeoReference( int nSRIDIn )
{
nSRID = nSRIDIn;
bIsReferenced = true;
bFlushMetadata = true;
}
// ---------------------------------------------------------------------------
// GetRasterInfo()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::GetRasterInfo( void )
{
// -------------------------------------------------------------------
// Get dimensions
// -------------------------------------------------------------------
int nCount = 0;
CPLXMLNode* phDimSize = NULL;
const char* pszType = NULL;
nCount = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.totalDimensions", "0" ) );
phDimSize = CPLGetXMLNode( phMetadata, "rasterInfo.dimensionSize" );
int i = 0;
for( i = 0; i < nCount; i++ )
{
pszType = CPLGetXMLValue( phDimSize, "type", "0" );
if( EQUAL( pszType, "ROW" ) )
{
nRasterRows = atoi( CPLGetXMLValue( phDimSize, "size", "0" ) );
}
if( EQUAL( pszType, "COLUMN" ) )
{
nRasterColumns = atoi( CPLGetXMLValue( phDimSize, "size", "0" ) );
}
if( EQUAL( pszType, "BAND" ) )
{
nRasterBands = atoi( CPLGetXMLValue( phDimSize, "size", "0" ) );
}
phDimSize = phDimSize->psNext;
}
if( nRasterBands == 0 )
{
nRasterBands = 1;
}
// -------------------------------------------------------------------
// Load NoData Values
// -------------------------------------------------------------------
LoadNoDataValues();
// -------------------------------------------------------------------
// Get ULTCoordinate values
// -------------------------------------------------------------------
anULTCoordinate[0] = atoi(CPLGetXMLValue(
phMetadata, "rasterInfo.ULTCoordinate.column", "0"));
anULTCoordinate[1] = atoi(CPLGetXMLValue(
phMetadata, "rasterInfo.ULTCoordinate.row", "0"));
anULTCoordinate[2] = atoi(CPLGetXMLValue(
phMetadata, "rasterInfo.ULTCoordinate.band", "0"));
// -------------------------------------------------------------------
// Get Interleaving mode
// -------------------------------------------------------------------
sInterleaving = CPLGetXMLValue( phMetadata,
"rasterInfo.interleaving", "BSQ" );
// -------------------------------------------------------------------
// Get blocking
// -------------------------------------------------------------------
nRowBlockSize = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.blocking.rowBlockSize",
CPLSPrintf( "%d", nRasterRows ) ) );
nColumnBlockSize = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.blocking.columnBlockSize",
CPLSPrintf( "%d", nRasterColumns ) ) );
nBandBlockSize = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.blocking.bandBlockSize",
CPLSPrintf( "%d", nRasterBands ) ) );
nTotalColumnBlocks = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.blocking.totalColumnBlocks","1") );
nTotalRowBlocks = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.blocking.totalRowBlocks", "1" ) );
nTotalBandBlocks = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.blocking.totalBandBlocks", "1" ) );
if( nBandBlockSize == -1 )
{
nBandBlockSize = nRasterBands;
}
// -------------------------------------------------------------------
// Get data type
// -------------------------------------------------------------------
sCellDepth = CPLGetXMLValue( phMetadata, "rasterInfo.cellDepth", "8BIT_U" );
if( sscanf( sCellDepth.c_str(), "%dBIT", &nCellSizeBits ) )
{
nGDALCellBytes = GDALGetDataTypeSize(
OWGetDataType( sCellDepth.c_str() ) ) / 8;
}
else
{
nGDALCellBytes = 1;
}
sCompressionType = CPLGetXMLValue( phMetadata,
"rasterInfo.compression.type", "NONE" );
if( EQUALN( sCompressionType.c_str(), "JPEG", 4 ) )
{
nCompressQuality = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.compression.quality", "75" ) );
}
if( EQUALN( sCompressionType.c_str(), "JPEG", 4 ) )
{
sInterleaving = "BIP";
}
// -------------------------------------------------------------------
// Get default RGB Bands
// -------------------------------------------------------------------
iDefaultRedBand = atoi( CPLGetXMLValue( phMetadata,
"objectInfo.defaultRed", "-1" ) );
iDefaultGreenBand = atoi( CPLGetXMLValue( phMetadata,
"objectInfo.defaultGreen", "-1" ) );
iDefaultBlueBand = atoi( CPLGetXMLValue( phMetadata,
"objectInfo.defaultBlue", "-1" ) );
// -------------------------------------------------------------------
// Get Pyramid details
// -------------------------------------------------------------------
char szPyramidType[OWCODE];
strcpy( szPyramidType, CPLGetXMLValue( phMetadata,
"rasterInfo.pyramid.type", "None" ) );
if( EQUAL( szPyramidType, "DECREASE" ) )
{
nPyramidMaxLevel = atoi( CPLGetXMLValue( phMetadata,
"rasterInfo.pyramid.maxLevel", "0" ) );
}
// -------------------------------------------------------------------
// Check for RPCs
// -------------------------------------------------------------------
const char* pszModelType = CPLGetXMLValue( phMetadata,
"spatialReferenceInfo.modelType", "None" );
if( EQUAL( pszModelType, "FunctionalFitting" ) )
{
GetRPC();
}
// -------------------------------------------------------------------
// Prepare to get Extents
// -------------------------------------------------------------------
bIsReferenced = EQUAL( "TRUE", CPLGetXMLValue( phMetadata,
"spatialReferenceInfo.isReferenced", "FALSE" ) );
nSRID = atoi( CPLGetXMLValue( phMetadata,
"spatialReferenceInfo.SRID", "0" ) );
}
// ---------------------------------------------------------------------------
// GetStatistics()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::GetStatistics( int nBand,
char* pszMin,
char* pszMax,
char* pszMean,
char* pszMedian,
char* pszMode,
char* pszStdDev,
char* pszSampling )
{
int n = 1;
CPLXMLNode *phSubLayer = CPLGetXMLNode( phMetadata, "layerInfo.subLayer" );
for( n = 1 ; phSubLayer ; phSubLayer = phSubLayer->psNext, n++ )
{
if( n == nBand && CPLGetXMLNode( phSubLayer, "statisticDataset" ) )
{
strncpy( pszSampling, CPLGetXMLValue( phSubLayer,
"statisticDataset.samplingFactor", "0.0" ), MAX_DOUBLE_STR_REP );
strncpy( pszMin, CPLGetXMLValue( phSubLayer,
"statisticDataset.MIN", "0.0" ), MAX_DOUBLE_STR_REP );
strncpy( pszMax, CPLGetXMLValue( phSubLayer,
"statisticDataset.MAX", "0.0" ), MAX_DOUBLE_STR_REP );
strncpy( pszMean, CPLGetXMLValue( phSubLayer,
"statisticDataset.MEAN", "0.0" ), MAX_DOUBLE_STR_REP );
strncpy( pszMedian, CPLGetXMLValue( phSubLayer,
"statisticDataset.MEDIAN", "0.0" ), MAX_DOUBLE_STR_REP );
strncpy( pszMode, CPLGetXMLValue( phSubLayer,
"statisticDataset.MODEVALUE", "0.0" ), MAX_DOUBLE_STR_REP );
strncpy( pszStdDev, CPLGetXMLValue( phSubLayer,
"statisticDataset.STD", "0.0" ), MAX_DOUBLE_STR_REP );
return true;
}
}
return false;
}
// ---------------------------------------------------------------------------
// SetStatistics()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::SetStatistics( int nBand,
const char* pszMin,
const char* pszMax,
const char* pszMean,
const char* pszMedian,
const char* pszMode,
const char* pszStdDev,
const char* pszSampling )
{
InitializeLayersNode();
bFlushMetadata = true;
int n = 1;
CPLXMLNode* phSubLayer = CPLGetXMLNode( phMetadata, "layerInfo.subLayer" );
for( n = 1 ; phSubLayer ; phSubLayer = phSubLayer->psNext, n++ )
{
if( n != nBand )
{
continue;
}
CPLXMLNode* psSDaset = CPLGetXMLNode( phSubLayer, "statisticDataset" );
if( psSDaset != NULL )
{
CPLRemoveXMLChild( phSubLayer, psSDaset );
CPLDestroyXMLNode( psSDaset );
}
psSDaset = CPLCreateXMLNode(phSubLayer,CXT_Element,"statisticDataset");
CPLCreateXMLElementAndValue(psSDaset,"samplingFactor", pszSampling );
CPLCreateXMLElementAndValue(psSDaset,"MIN", pszMin );
CPLCreateXMLElementAndValue(psSDaset,"MAX", pszMax );
CPLCreateXMLElementAndValue(psSDaset,"MEAN", pszMean );
CPLCreateXMLElementAndValue(psSDaset,"MEDIAN", pszMedian );
CPLCreateXMLElementAndValue(psSDaset,"MODEVALUE", pszMode );
CPLCreateXMLElementAndValue(psSDaset,"STD", pszStdDev );
return true;
}
return false;
}
// ---------------------------------------------------------------------------
// HasColorTable()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::HasColorMap( int nBand )
{
CPLXMLNode *psLayers;
int n = 1;
psLayers = CPLGetXMLNode( phMetadata, "layerInfo.subLayer" );
for( ; psLayers; psLayers = psLayers->psNext, n++ )
{
if( n == nBand )
{
if( CPLGetXMLNode( psLayers, "colorMap.colors" ) )
{
return true;
}
}
}
return false;
}
// ---------------------------------------------------------------------------
// InitializeLayersNode()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::InitializeLayersNode()
{
CPLXMLNode *pslInfo = CPLGetXMLNode( phMetadata, "layerInfo" );
int n = 1;
for( n = 0 ; n < nRasterBands; n++ )
{
CPLXMLNode *psSLayer = CPLGetXMLNode( pslInfo, "subLayer" );
if( psSLayer == NULL )
{
psSLayer = CPLCreateXMLNode( pslInfo, CXT_Element, "subLayer" );
CPLCreateXMLElementAndValue( psSLayer, "layerNumber",
CPLSPrintf( "%d", n + 1 ) );
CPLCreateXMLElementAndValue( psSLayer, "layerDimensionOrdinate",
CPLSPrintf( "%d", n ) );
CPLCreateXMLElementAndValue( psSLayer, "layerID", "" );
}
}
}
// ---------------------------------------------------------------------------
// GetColorTable()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::GetColorMap( int nBand, GDALColorTable* poCT )
{
GDALColorEntry oEntry;
CPLXMLNode* psLayers;
int n = 1;
psLayers = CPLGetXMLNode( phMetadata, "layerInfo.subLayer" );
for( ; psLayers; psLayers = psLayers->psNext, n++ )
{
if( n != nBand )
{
continue;
}
CPLXMLNode* psColors = CPLGetXMLNode( psLayers, "colorMap.colors.cell" );
int iColor = 0;
for( ; psColors; psColors = psColors->psNext )
{
iColor = (short) atoi( CPLGetXMLValue( psColors, "value","0"));
oEntry.c1 = (short) atoi( CPLGetXMLValue( psColors, "red", "0"));
oEntry.c2 = (short) atoi( CPLGetXMLValue( psColors, "green","0"));
oEntry.c3 = (short) atoi( CPLGetXMLValue( psColors, "blue", "0"));
oEntry.c4 = (short) atoi( CPLGetXMLValue( psColors, "alpha","0"));
poCT->SetColorEntry( iColor, &oEntry );
}
break;
}
}
// ---------------------------------------------------------------------------
// SetColorTable()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::SetColorMap( int nBand, GDALColorTable* poCT )
{
InitializeLayersNode();
bFlushMetadata = true;
GDALColorEntry oEntry;
int n = 1;
CPLXMLNode* phSubLayer = CPLGetXMLNode( phMetadata, "layerInfo.subLayer" );
for( n = 1 ; phSubLayer ; phSubLayer = phSubLayer->psNext, n++ )
{
if( n != nBand )
{
continue;
}
CPLXMLNode* psCMap = CPLGetXMLNode( phSubLayer, "colorMap" );
if( psCMap != NULL )
{
CPLRemoveXMLChild( phSubLayer, psCMap );
CPLDestroyXMLNode( psCMap );
}
psCMap = CPLCreateXMLNode( phSubLayer, CXT_Element, "colorMap" );
CPLXMLNode* psColor = CPLCreateXMLNode( psCMap, CXT_Element, "colors" );
// ------------------------------------------------
// Clean existing colors entry (RGB color table)
// ------------------------------------------------
if( psColor != NULL )
{
CPLRemoveXMLChild( psCMap, psColor );
CPLDestroyXMLNode( psColor );
}
psColor = CPLCreateXMLNode( psCMap, CXT_Element, "colors" );
int iColor = 0;
int nCount = 0;
switch( nCellSizeBits )
{
case 1 :
nCount = 2;
break;
case 2 :
nCount = 4;
break;
case 4:
nCount = 16;
break;
default:
nCount = poCT->GetColorEntryCount();
}
for( iColor = 0; iColor < nCount; iColor++ )
{
poCT->GetColorEntryAsRGB( iColor, &oEntry );
CPLXMLNode* psCell = CPLCreateXMLNode( psColor, CXT_Element, "cell" );
CPLSetXMLValue( psCell, "#value", CPLSPrintf("%d", iColor) );
CPLSetXMLValue( psCell, "#blue", CPLSPrintf("%d", oEntry.c3) );
CPLSetXMLValue( psCell, "#red", CPLSPrintf("%d", oEntry.c1) );
CPLSetXMLValue( psCell, "#green", CPLSPrintf("%d", oEntry.c2) );
CPLSetXMLValue( psCell, "#alpha", CPLSPrintf("%d", oEntry.c4) );
}
}
}
// ---------------------------------------------------------------------------
// InitializeIO()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::InitializeIO( void )
{
bInitializeIO = true;
// --------------------------------------------------------------------
// Initialize Pyramid level details
// --------------------------------------------------------------------
pahLevels = (hLevelDetails*) CPLCalloc( sizeof(hLevelDetails),
nPyramidMaxLevel + 1 );
// --------------------------------------------------------------------
// Calculate number and size of the blocks in level zero
// --------------------------------------------------------------------
nBlockCount = (unsigned long) ( nTotalColumnBlocks * nTotalRowBlocks * nTotalBandBlocks );
nBlockBytes = (unsigned long) ( nColumnBlockSize * nRowBlockSize * nBandBlockSize *
nCellSizeBits / 8L );
nGDALBlockBytes = (unsigned long) ( nColumnBlockSize * nRowBlockSize * nGDALCellBytes );
pahLevels[0].nColumnBlockSize = nColumnBlockSize;
pahLevels[0].nRowBlockSize = nRowBlockSize;
pahLevels[0].nTotalColumnBlocks = nTotalColumnBlocks;
pahLevels[0].nTotalRowBlocks = nTotalRowBlocks;
pahLevels[0].nBlockCount = nBlockCount;
pahLevels[0].nBlockBytes = nBlockBytes;
pahLevels[0].nGDALBlockBytes = nGDALBlockBytes;
pahLevels[0].nOffset = 0L;
// --------------------------------------------------------------------
// Calculate number and size of the blocks in Pyramid levels
// --------------------------------------------------------------------
int iLevel = 1;
for( iLevel = 1; iLevel <= nPyramidMaxLevel; iLevel++ )
{
int nRBS = nRowBlockSize;
int nCBS = nColumnBlockSize;
int nTCB = nTotalColumnBlocks;
int nTRB = nTotalRowBlocks;
// --------------------------------------------------------------------
// Calculate the actual size of a lower resolution block
// --------------------------------------------------------------------
double dfScale = pow( (double) 2.0, (double) iLevel );
int nXSize = (int) floor( (double) nRasterColumns / dfScale );
int nYSize = (int) floor( (double) nRasterRows / dfScale );
int nXBlock = (int) floor( (double) nCBS / 2.0 );
int nYBlock = (int) floor( (double) nRBS / 2.0 );
if( nXSize <= nXBlock && nYSize <= nYBlock )
{
// ------------------------------------------------------------
// Calculate the size of the singe small blocks
// ------------------------------------------------------------
nCBS = nXSize;
nRBS = nYSize;
nTCB = 1;
nTRB = 1;
}
else
{
// ------------------------------------------------------------
// Recalculate blocks quantity
// ------------------------------------------------------------
nTCB = (int) ceil( (double) nXSize / nCBS );
nTRB = (int) ceil( (double) nYSize / nRBS );
}
// --------------------------------------------------------------------
// Save level datails
// --------------------------------------------------------------------
pahLevels[iLevel].nColumnBlockSize = nCBS;
pahLevels[iLevel].nRowBlockSize = nRBS;
pahLevels[iLevel].nTotalColumnBlocks = nTCB;
pahLevels[iLevel].nTotalRowBlocks = nTRB;
pahLevels[iLevel].nBlockCount = (unsigned long ) ( nTCB * nTRB * nTotalBandBlocks );
pahLevels[iLevel].nBlockBytes = (unsigned long ) ( nCBS * nRBS * nBandBlockSize *
nCellSizeBits / 8L );
pahLevels[iLevel].nGDALBlockBytes = (unsigned long ) ( nCBS * nRBS * nGDALCellBytes );
pahLevels[iLevel].nOffset = 0L;
}
// --------------------------------------------------------------------
// Calculate total row count and level's offsets
// --------------------------------------------------------------------
nBlockCount = 0L;
for( iLevel = 0; iLevel <= nPyramidMaxLevel; iLevel++ )
{
pahLevels[iLevel].nOffset = nBlockCount;
nBlockCount += pahLevels[iLevel].nBlockCount;
}
// --------------------------------------------------------------------
// Allocate buffer for one raster block
// --------------------------------------------------------------------
long nMaxBufferSize = MAX( nBlockBytes, nGDALBlockBytes );
pabyBlockBuf = (GByte*) VSIMalloc( sizeof(GByte) * nMaxBufferSize );
if ( pabyBlockBuf == NULL )
{
CPLError( CE_Failure, CPLE_OutOfMemory,
"InitializeIO - Block Buffer error\n"
"Cannot allocate memory buffer of (%ld) bytes "
"Consider the use of *smaller* block size",
nMaxBufferSize );
return false;
}
// --------------------------------------------------------------------
// Allocate buffer for one compressed raster block
// --------------------------------------------------------------------
if( bUpdate && ! EQUAL( sCompressionType.c_str(), "NONE") )
{
pabyCompressBuf = (GByte*) VSIMalloc( sizeof(GByte) * nMaxBufferSize );
if ( pabyCompressBuf == NULL )
{
CPLError( CE_Failure, CPLE_OutOfMemory,
"InitializeIO - Compression Buffer error\n"
"Cannot allocate memory buffer of (%ld) bytes "
"Consider the use of *smaller* block size",
nMaxBufferSize );
return false;
}
}
// --------------------------------------------------------------------
// Allocate array of LOB Locators
// --------------------------------------------------------------------
pahLocator = (OCILobLocator**) VSIMalloc( sizeof(void*) * nBlockCount );
if ( pahLocator == NULL )
{
CPLError( CE_Failure, CPLE_OutOfMemory,
"InitializeIO - LobLocator Array error\n"
"Cannot allocate memory buffer of (%ld) bytes "
"Consider the use of *bigger* block size",
(sizeof(void*) * nBlockCount) );
return false;
}
// --------------------------------------------------------------------
// Issue a statement to load the locators
// --------------------------------------------------------------------
const char* pszUpdate = "";
if( bUpdate )
{
pszUpdate = CPLStrdup( "\nFOR UPDATE" );
}
poBlockStmt = poConnection->CreateStatement( CPLSPrintf(
"SELECT RASTERBLOCK\n"
"FROM %s%s\n"
"WHERE RASTERID = :1\n"
"ORDER BY\n"
" PYRAMIDLEVEL ASC,\n"
" BANDBLOCKNUMBER ASC,\n"
" ROWBLOCKNUMBER ASC,\n"
" COLUMNBLOCKNUMBER ASC%s",
sSchema.c_str(),
sDataTable.c_str(),
pszUpdate ) );
poBlockStmt->Bind( &nRasterId );
poBlockStmt->Define( pahLocator, nBlockCount );
if( ! poBlockStmt->Execute( nBlockCount ) )
{
return false;
}
return true;
}
// ---------------------------------------------------------------------------
// InitializeLevel()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::InitializeLevel( int nLevel )
{
nCurrentLevel = nLevel;
nColumnBlockSize = pahLevels[nLevel].nColumnBlockSize;
nRowBlockSize = pahLevels[nLevel].nRowBlockSize;
nTotalColumnBlocks = pahLevels[nLevel].nTotalColumnBlocks;
nTotalRowBlocks = pahLevels[nLevel].nTotalRowBlocks;
nBlockBytes = pahLevels[nLevel].nBlockBytes;
nGDALBlockBytes = pahLevels[nLevel].nGDALBlockBytes;
nLevelOffset = pahLevels[nLevel].nOffset;
}
// ---------------------------------------------------------------------------
// GetDataBlock()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::GetDataBlock( int nBand,
int nLevel,
int nXOffset,
int nYOffset,
void* pData )
{
if( ! bInitializeIO )
{
if( InitializeIO() == false )
{
return false;
}
}
if( nCurrentLevel != nLevel )
{
InitializeLevel( nLevel );
}
long nBlock = GetBlockNumber( nBand, nXOffset, nYOffset );
CPLDebug( "Read ",
"Block = %4ld Size = %7ld Band = %d Level = %d X = %d Y = %d",
nBlock, nBlockBytes, nBand, nLevel, nXOffset, nYOffset );
if( nCacheBlockId != nBlock )
{
if ( bFlushBlock )
{
if( ! FlushBlock( nCacheBlockId ) )
{
return false;
}
}
nCacheBlockId = nBlock;
unsigned long nBytesRead = 0;
nBytesRead = poBlockStmt->ReadBlob( pahLocator[nBlock],
pabyBlockBuf,
nBlockBytes );
CPLDebug( "Load ", "Block = %4ld Size = %7ld", nBlock, nBlockBytes );
if( nBytesRead == 0 )
{
memset( pData, 0, nGDALBlockBytes );
return true;
}
if( nBytesRead < nBlockBytes &&
EQUAL( sCompressionType.c_str(), "NONE") )
{
CPLError( CE_Warning, CPLE_AppDefined,
"BLOB size (%ld) is smaller than expected (%ld) !",
nBytesRead, nBlockBytes );
memset( pData, 0, nGDALBlockBytes );
return true;
}
if( nBytesRead > nBlockBytes )
{
CPLError( CE_Warning, CPLE_AppDefined,
"BLOB size (%ld) is bigger than expected (%ld) !",
nBytesRead, nBlockBytes );
memset( pData, 0, nGDALBlockBytes );
return true;
}
#ifndef CPL_MSB
if( nCellSizeBits > 8 )
{
int nWordSize = nCellSizeBits / 8;
int nWordCount = nColumnBlockSize * nRowBlockSize * nBandBlockSize;
GDALSwapWords( pabyBlockBuf, nWordSize, nWordCount, nWordSize );
}
#endif
// ----------------------------------------------------------------
// Uncompress
// ----------------------------------------------------------------
if( EQUALN( sCompressionType.c_str(), "JPEG", 4 ) )
{
UncompressJpeg( nBytesRead );
}
else if ( EQUAL( sCompressionType.c_str(), "DEFLATE" ) )
{
UncompressDeflate( nBytesRead );
}
// ----------------------------------------------------------------
// Unpack NBits
// ----------------------------------------------------------------
if( nCellSizeBits < 8 || nLevel == DEFAULT_BMP_MASK )
{
UnpackNBits( pabyBlockBuf );
}
}
// --------------------------------------------------------------------
// Uninterleaving, extract band from block buffer
// --------------------------------------------------------------------
int nStart = ( nBand - 1 ) % nBandBlockSize;
if( EQUAL( sInterleaving.c_str(), "BSQ" ) || nBandBlockSize == 1 )
{
nStart *= nGDALBlockBytes;
memcpy( pData, &pabyBlockBuf[nStart], nGDALBlockBytes );
}
else
{
int nIncr = nBandBlockSize * nGDALCellBytes;
int nSize = nGDALCellBytes;
if( EQUAL( sInterleaving.c_str(), "BIL" ) )
{
nStart *= nColumnBlockSize;
nIncr *= nColumnBlockSize;
nSize *= nColumnBlockSize;
}
GByte* pabyData = (GByte*) pData;
unsigned long ii = 0;
unsigned long jj = nStart * nGDALCellBytes;
for( ii = 0; ii < nGDALBlockBytes; ii += nSize, jj += nIncr )
{
memcpy( &pabyData[ii], &pabyBlockBuf[jj], nSize );
}
}
return true;
}
// ---------------------------------------------------------------------------
// SetDataBlock()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::SetDataBlock( int nBand,
int nLevel,
int nXOffset,
int nYOffset,
void* pData )
{
#ifndef CPL_MSB
if( nCellSizeBits > 8 )
{
int nWordSize = nCellSizeBits / 8;
int nWordCount = nColumnBlockSize * nRowBlockSize;
GDALSwapWords( pData, nWordSize, nWordCount, nWordSize );
}
#endif
if( ! bInitializeIO )
{
if( InitializeIO() == false )
{
return false;
}
}
if( nCurrentLevel != nLevel )
{
InitializeLevel( nLevel );
}
long nBlock = GetBlockNumber( nBand, nXOffset, nYOffset );
CPLDebug( "Write ",
"Block = %4ld Size = %7ld Band = %d Level = %d X = %d Y = %d",
nBlock, nBlockBytes, nBand, nLevel, nXOffset, nYOffset );
// --------------------------------------------------------------------
// Flush previous block
// --------------------------------------------------------------------
if( nCacheBlockId != nBlock && bFlushBlock )
{
if( ! FlushBlock( nCacheBlockId ) )
{
return false;
}
}
// --------------------------------------------------------------------
// Re-load interleaved block
// --------------------------------------------------------------------
if( nBandBlockSize > 1 && bWriteOnly == false && nCacheBlockId != nBlock )
{
nCacheBlockId = nBlock;
unsigned long nBytesRead = 0;
nBytesRead = poBlockStmt->ReadBlob( pahLocator[nBlock],
pabyBlockBuf,
nBlockBytes );
CPLDebug( "Reload", "Block = %4ld Size = %7ld", nBlock, nBlockBytes );
if( nBytesRead == 0 )
{
memset( pabyBlockBuf, 0, nBlockBytes );
}
else
{
// ------------------------------------------------------------
// Uncompress
// ------------------------------------------------------------
if( EQUALN( sCompressionType.c_str(), "JPEG", 4 ) )
{
UncompressJpeg( nBytesRead );
}
else if ( EQUAL( sCompressionType.c_str(), "DEFLATE" ) )
{
UncompressDeflate( nBytesRead );
}
// ------------------------------------------------------------
// Unpack NBits
// ------------------------------------------------------------
if( nCellSizeBits < 8 || nLevel == DEFAULT_BMP_MASK )
{
UnpackNBits( pabyBlockBuf );
}
}
}
GByte *pabyInBuf = (GByte *) pData;
// --------------------------------------------------------------------
// Interleave
// --------------------------------------------------------------------
int nStart = ( nBand - 1 ) % nBandBlockSize;
if( EQUAL( sInterleaving.c_str(), "BSQ" ) || nBandBlockSize == 1 )
{
nStart *= nGDALBlockBytes;
memcpy( &pabyBlockBuf[nStart], pabyInBuf, nGDALBlockBytes );
}
else
{
int nIncr = nBandBlockSize * nGDALCellBytes;
int nSize = nGDALCellBytes;
if( EQUAL( sInterleaving.c_str(), "BIL" ) )
{
nStart *= nColumnBlockSize;
nIncr *= nColumnBlockSize;
nSize *= nColumnBlockSize;
}
unsigned long ii = 0;
unsigned long jj = nStart * nGDALCellBytes;
for( ii = 0; ii < nGDALBlockBytes; ii += nSize, jj += nIncr )
{
memcpy( &pabyBlockBuf[jj], &pabyInBuf[ii], nSize );
}
}
// --------------------------------------------------------------------
// Flag the flush block
// --------------------------------------------------------------------
nCacheBlockId = nBlock;
bFlushBlock = true;
nFlushBlockSize = nBlockBytes;
return true;
}
// ---------------------------------------------------------------------------
// FlushBlock()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::FlushBlock( long nCacheBlock )
{
GByte* pabyFlushBuffer = (GByte *) pabyBlockBuf;
// --------------------------------------------------------------------
// Pack bits ( inside pabyOutBuf )
// --------------------------------------------------------------------
if( nCellSizeBits < 8 || nCurrentLevel == DEFAULT_BMP_MASK )
{
PackNBits( pabyFlushBuffer );
}
// --------------------------------------------------------------------
// Compress ( from pabyBlockBuf to pabyBlockBuf2 )
// --------------------------------------------------------------------
if( ! EQUAL( sCompressionType.c_str(), "NONE" ) )
{
if( EQUALN( sCompressionType.c_str(), "JPEG", 4 ) )
{
nFlushBlockSize = CompressJpeg();
}
else if ( EQUAL( sCompressionType.c_str(), "DEFLATE" ) )
{
nFlushBlockSize = CompressDeflate();
}
pabyFlushBuffer = pabyCompressBuf;
}
// --------------------------------------------------------------------
// Write BLOB
// --------------------------------------------------------------------
CPLDebug( "Flush ", "Block = %4ld Size = %7ld", nCacheBlock,
nFlushBlockSize );
if( ! poBlockStmt->WriteBlob( pahLocator[nCacheBlock],
pabyFlushBuffer,
nFlushBlockSize ) )
{
return false;
}
bFlushBlock = false;
bFlushMetadata = true;
nFlushBlockSize = nBlockBytes;
return true;
}
// ---------------------------------------------------------------------------
// LoadNoDataValues()
// ---------------------------------------------------------------------------
CPLList* AddToNoDataList( CPLXMLNode* phNode, int nNumber, CPLList* poList )
{
CPLXMLNode* psChild = phNode->psChild;
const char* pszMin = NULL;
const char* pszMax = NULL;
for( ; psChild ; psChild = psChild->psNext )
{
if( EQUAL( psChild->pszValue, "value" ) )
{
pszMin = CPLGetXMLValue( psChild, NULL, "NONE" );
pszMax = pszMin;
}
else if ( EQUAL( psChild->pszValue, "range" ) )
{
pszMin = CPLGetXMLValue( psChild, "min", "NONE" );
pszMax = CPLGetXMLValue( psChild, "max", "NONE" );
}
else
{
continue;
}
hNoDataItem* poItem = (hNoDataItem*) CPLMalloc( sizeof( hNoDataItem ) );
poItem->nBand = nNumber;
poItem->dfLower = CPLAtof( pszMin );
poItem->dfUpper = CPLAtof( pszMax );
poList = CPLListAppend( poList, poItem );
}
return poList;
}
void GeoRasterWrapper::LoadNoDataValues( void )
{
CPLListDestroy( psNoDataList );
CPLXMLNode* phLayerInfo = CPLGetXMLNode( phMetadata, "layerInfo" );
if( phLayerInfo == NULL )
{
return;
}
// -------------------------------------------------------------------
// Load NoDatas from list of values and list of value ranges
// -------------------------------------------------------------------
CPLXMLNode* phObjNoData = CPLGetXMLNode( phLayerInfo, "objectLayer.NODATA" );
for( ; phObjNoData ; phObjNoData = phObjNoData->psNext )
{
psNoDataList = AddToNoDataList( phObjNoData, 0, psNoDataList );
}
CPLXMLNode* phSubLayer = CPLGetXMLNode( phLayerInfo, "subLayer" );
for( ; phSubLayer ; phSubLayer = phSubLayer->psNext )
{
int nNumber = atoi( CPLGetXMLValue( phSubLayer, "layerNumber", "-1") );
CPLXMLNode* phSubNoData = CPLGetXMLNode( phSubLayer, "NODATA" );
if( phSubNoData )
{
psNoDataList = AddToNoDataList( phSubNoData, nNumber, psNoDataList );
}
}
}
// ---------------------------------------------------------------------------
// GetRPC()
// ---------------------------------------------------------------------------
/* This is the order for storing 20 coeffients in GeoRaster Metadata */
static const int anOrder[] = {
1, 2, 8, 12, 3, 5, 15, 9, 13, 16, 4, 6, 18, 7, 11, 19, 10, 14, 17, 20
};
void GeoRasterWrapper::GetRPC()
{
int i;
CPLXMLNode* phSRSInfo = CPLGetXMLNode( phMetadata,
"spatialReferenceInfo" );
if( phSRSInfo == NULL )
{
return;
}
const char* pszModelType = CPLGetXMLValue( phMetadata,
"spatialReferenceInfo.modelType", "None" );
if( EQUAL( pszModelType, "FunctionalFitting" ) == false )
{
return;
}
CPLXMLNode* phPolyModel = CPLGetXMLNode( phSRSInfo, "polynomialModel" );
if ( phPolyModel == NULL )
{
return;
}
// pPolynomial refers to LINE_NUM
CPLXMLNode* phPolynomial = CPLGetXMLNode( phPolyModel, "pPolynomial" );
if ( phPolynomial == NULL )
{
return;
}
int nNumCoeff = atoi( CPLGetXMLValue( phPolynomial, "nCoefficients", "0" ) );
if ( nNumCoeff != 20 )
{
return;
}
const char* pszPolyCoeff = CPLGetXMLValue( phPolynomial, "polynomialCoefficients", "None" );
if ( EQUAL( pszPolyCoeff, "None" ) )
{
return;
}
char** papszCeoff = CSLTokenizeString2( pszPolyCoeff, " ", CSLT_STRIPLEADSPACES );
if( CSLCount( papszCeoff ) != 20 )
{
return;
}
phRPC = (GDALRPCInfo*) VSIMalloc( sizeof(GDALRPCInfo) );
phRPC->dfLINE_OFF = CPLAtof( CPLGetXMLValue( phPolyModel, "rowOff", "0" ) );
phRPC->dfSAMP_OFF = CPLAtof( CPLGetXMLValue( phPolyModel, "columnOff", "0" ) );
phRPC->dfLONG_OFF = CPLAtof( CPLGetXMLValue( phPolyModel, "xOff", "0" ) );
phRPC->dfLAT_OFF = CPLAtof( CPLGetXMLValue( phPolyModel, "yOff", "0" ) );
phRPC->dfHEIGHT_OFF = CPLAtof( CPLGetXMLValue( phPolyModel, "zOff", "0" ) );
phRPC->dfLINE_SCALE = CPLAtof( CPLGetXMLValue( phPolyModel, "rowScale", "0" ) );
phRPC->dfSAMP_SCALE = CPLAtof( CPLGetXMLValue( phPolyModel, "columnScale", "0" ) );
phRPC->dfLONG_SCALE = CPLAtof( CPLGetXMLValue( phPolyModel, "xScale", "0" ) );
phRPC->dfLAT_SCALE = CPLAtof( CPLGetXMLValue( phPolyModel, "yScale", "0" ) );
phRPC->dfHEIGHT_SCALE = CPLAtof( CPLGetXMLValue( phPolyModel, "zScale", "0" ) );
for( i = 0; i < 20; i++ )
{
phRPC->adfLINE_NUM_COEFF[anOrder[i] - 1] = CPLAtof( papszCeoff[i] );
}
// qPolynomial refers to LINE_DEN
phPolynomial = CPLGetXMLNode( phPolyModel, "qPolynomial" );
if ( phPolynomial == NULL )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
pszPolyCoeff = CPLGetXMLValue( phPolynomial, "polynomialCoefficients", "None" );
if ( EQUAL( pszPolyCoeff, "None" ) )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
papszCeoff = CSLTokenizeString2( pszPolyCoeff, " ", CSLT_STRIPLEADSPACES );
if( CSLCount( papszCeoff ) != 20 )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
for( i = 0; i < 20; i++ )
{
phRPC->adfLINE_DEN_COEFF[anOrder[i] - 1] = CPLAtof( papszCeoff[i] );
}
// rPolynomial refers to SAMP_NUM
phPolynomial = CPLGetXMLNode( phPolyModel, "rPolynomial" );
if ( phPolynomial == NULL )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
pszPolyCoeff = CPLGetXMLValue( phPolynomial, "polynomialCoefficients", "None" );
if ( EQUAL( pszPolyCoeff, "None" ) )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
papszCeoff = CSLTokenizeString2( pszPolyCoeff, " ", CSLT_STRIPLEADSPACES );
if( CSLCount( papszCeoff ) != 20 )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
for( i = 0; i < 20; i++ )
{
phRPC->adfSAMP_NUM_COEFF[anOrder[i] - 1] = CPLAtof( papszCeoff[i] );
}
// sPolynomial refers to SAMP_DEN
phPolynomial = CPLGetXMLNode( phPolyModel, "sPolynomial" );
if ( phPolynomial == NULL )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
pszPolyCoeff = CPLGetXMLValue( phPolynomial, "polynomialCoefficients", "None" );
if ( EQUAL( pszPolyCoeff, "None" ) )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
papszCeoff = CSLTokenizeString2( pszPolyCoeff, " ", CSLT_STRIPLEADSPACES );
if( CSLCount( papszCeoff ) != 20 )
{
CPLFree( phRPC );
phRPC = NULL;
return;
}
for( i = 0; i < 20; i++ )
{
phRPC->adfSAMP_DEN_COEFF[anOrder[i] - 1] = CPLAtof( papszCeoff[i] );
}
}
// ---------------------------------------------------------------------------
// SetRPC()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::SetRPC()
{
// -------------------------------------------------------------------
// Remove "layerInfo" tree
// -------------------------------------------------------------------
CPLXMLNode* phLayerInfo = CPLGetXMLNode( phMetadata, "layerInfo" );
CPLXMLNode* phClone = NULL;
if( phLayerInfo )
{
phClone = CPLCloneXMLTree( phLayerInfo );
CPLRemoveXMLChild( phMetadata, phLayerInfo );
}
// -------------------------------------------------------------------
// Start loading the RPC to "spatialReferenceInfo" tree
// -------------------------------------------------------------------
int i = 0;
CPLString osField, osMultiField;
CPLXMLNode* phPolynomial = NULL;
CPLXMLNode* phSRSInfo = CPLGetXMLNode( phMetadata,
"spatialReferenceInfo" );
if( ! phSRSInfo )
{
phSRSInfo = CPLCreateXMLNode( phMetadata, CXT_Element,
"spatialReferenceInfo" );
}
else
{
CPLXMLNode* phNode = NULL;
phNode = CPLGetXMLNode( phSRSInfo, "isReferenced" );
if( phNode )
{
CPLRemoveXMLChild( phSRSInfo, phNode );
}
phNode = CPLGetXMLNode( phSRSInfo, "SRID" );
if( phNode )
{
CPLRemoveXMLChild( phSRSInfo, phNode );
}
phNode = CPLGetXMLNode( phSRSInfo, "modelCoordinateLocation" );
if( phNode )
{
CPLRemoveXMLChild( phSRSInfo, phNode );
}
phNode = CPLGetXMLNode( phSRSInfo, "modelType" );
if( phNode )
{
CPLRemoveXMLChild( phSRSInfo, phNode );
}
phNode = CPLGetXMLNode( phSRSInfo, "polynomialModel" );
if( phNode )
{
CPLRemoveXMLChild( phSRSInfo, phNode );
}
}
CPLCreateXMLElementAndValue( phSRSInfo, "isReferenced", "true" );
CPLCreateXMLElementAndValue( phSRSInfo, "SRID", "4327" );
CPLCreateXMLElementAndValue( phSRSInfo, "modelCoordinateLocation",
"CENTER" );
CPLCreateXMLElementAndValue( phSRSInfo, "modelType", "FunctionalFitting" );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#rowOff",
CPLSPrintf( "%.15g", phRPC->dfLINE_OFF ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#columnOff",
CPLSPrintf( "%.15g", phRPC->dfSAMP_OFF ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#xOff",
CPLSPrintf( "%.15g", phRPC->dfLONG_OFF ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#yOff",
CPLSPrintf( "%.15g", phRPC->dfLAT_OFF ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#zOff",
CPLSPrintf( "%.15g", phRPC->dfHEIGHT_OFF ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#rowScale",
CPLSPrintf( "%.15g", phRPC->dfLINE_SCALE ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#columnScale",
CPLSPrintf( "%.15g", phRPC->dfSAMP_SCALE ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#xScale",
CPLSPrintf( "%.15g", phRPC->dfLONG_SCALE ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#yScale",
CPLSPrintf( "%.15g", phRPC->dfLAT_SCALE ) );
CPLSetXMLValue( phSRSInfo, "polynomialModel.#zScale",
CPLSPrintf( "%.15g", phRPC->dfHEIGHT_SCALE ) );
CPLXMLNode* phPloyModel = CPLGetXMLNode( phSRSInfo, "polynomialModel" );
// pPolynomial refers to LINE_NUM
CPLSetXMLValue( phPloyModel, "pPolynomial.#pType", "1" );
CPLSetXMLValue( phPloyModel, "pPolynomial.#nVars", "3" );
CPLSetXMLValue( phPloyModel, "pPolynomial.#order", "3" );
CPLSetXMLValue( phPloyModel, "pPolynomial.#nCoefficients", "20" );
for( i = 0; i < 20; i++ )
{
osField.Printf( "%.15g", phRPC->adfLINE_NUM_COEFF[anOrder[i] - 1] );
if( i > 0 )
osMultiField += " ";
else
osMultiField = "";
osMultiField += osField;
}
phPolynomial = CPLGetXMLNode( phPloyModel, "pPolynomial" );
CPLCreateXMLElementAndValue( phPolynomial, "polynomialCoefficients",
osMultiField );
// qPolynomial refers to LINE_DEN
CPLSetXMLValue( phPloyModel, "qPolynomial.#pType", "1" );
CPLSetXMLValue( phPloyModel, "qPolynomial.#nVars", "3" );
CPLSetXMLValue( phPloyModel, "qPolynomial.#order", "3" );
CPLSetXMLValue( phPloyModel, "qPolynomial.#nCoefficients", "20" );
for( i = 0; i < 20; i++ )
{
osField.Printf( "%.15g", phRPC->adfLINE_DEN_COEFF[anOrder[i] - 1] );
if( i > 0 )
osMultiField += " ";
else
osMultiField = "";
osMultiField += osField;
}
phPolynomial = CPLGetXMLNode( phPloyModel, "qPolynomial" );
CPLCreateXMLElementAndValue( phPolynomial, "polynomialCoefficients",
osMultiField );
// rPolynomial refers to SAMP_NUM
CPLSetXMLValue( phPloyModel, "rPolynomial.#pType", "1" );
CPLSetXMLValue( phPloyModel, "rPolynomial.#nVars", "3" );
CPLSetXMLValue( phPloyModel, "rPolynomial.#order", "3" );
CPLSetXMLValue( phPloyModel, "rPolynomial.#nCoefficients", "20" );
for( i = 0; i < 20; i++ )
{
osField.Printf( "%.15g", phRPC->adfSAMP_NUM_COEFF[anOrder[i] - 1] );
if( i > 0 )
osMultiField += " ";
else
osMultiField = "";
osMultiField += osField;
}
phPolynomial = CPLGetXMLNode( phPloyModel, "rPolynomial" );
CPLCreateXMLElementAndValue( phPolynomial, "polynomialCoefficients",
osMultiField );
// sPolynomial refers to SAMP_DEN
CPLSetXMLValue( phPloyModel, "sPolynomial.#pType", "1" );
CPLSetXMLValue( phPloyModel, "sPolynomial.#nVars", "3" );
CPLSetXMLValue( phPloyModel, "sPolynomial.#order", "3" );
CPLSetXMLValue( phPloyModel, "sPolynomial.#nCoefficients", "20" );
for( i = 0; i < 20; i++ )
{
osField.Printf( "%.15g", phRPC->adfSAMP_DEN_COEFF[anOrder[i] - 1] );
if( i > 0 )
osMultiField += " ";
else
osMultiField = "";
osMultiField += osField;
}
phPolynomial = CPLGetXMLNode( phPloyModel, "sPolynomial" );
CPLCreateXMLElementAndValue( phPolynomial, "polynomialCoefficients",
osMultiField );
// -------------------------------------------------------------------
// Add "layerInfo" tree back
// -------------------------------------------------------------------
CPLAddXMLChild( phMetadata, phClone );
}
// ---------------------------------------------------------------------------
// GetNoData()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::GetNoData( int nLayer, double* pdfNoDataValue )
{
if( psNoDataList == NULL || CPLListCount( psNoDataList ) == 0 )
{
return false;
}
// -------------------------------------------------------------------
// Get only single value NoData, no list of values or value ranges
// -------------------------------------------------------------------
int nCount = 0;
double dfValue = 0.0;
CPLList* psList = NULL;
// -------------------------------------------------------------------
// Process Object Layer values
// -------------------------------------------------------------------
for( psList = psNoDataList; psList ; psList = psList->psNext )
{
hNoDataItem* phItem = (hNoDataItem*) psList->pData;
if( phItem->nBand == 0 )
{
if( phItem->dfLower == phItem->dfUpper )
{
dfValue = phItem->dfLower;
nCount++;
}
else
{
return false; // value range
}
}
}
// -------------------------------------------------------------------
// Values from the Object Layer override values from the layers
// -------------------------------------------------------------------
if( nCount == 1 )
{
*pdfNoDataValue = dfValue;
return true;
}
// -------------------------------------------------------------------
// Process SubLayer values
// -------------------------------------------------------------------
for( psList = psNoDataList; psList ; psList = psList->psNext )
{
hNoDataItem* phItem = (hNoDataItem*) psList->pData;
if( phItem->nBand == nLayer )
{
if( phItem->dfLower == phItem->dfUpper )
{
dfValue = phItem->dfLower;
nCount++;
}
else
{
return false; // value range
}
}
}
if( nCount == 1 )
{
*pdfNoDataValue = dfValue;
return true;
}
return false;
}
// ---------------------------------------------------------------------------
// SetNoDataValue()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::SetNoData( int nLayer, const char* pszValue )
{
// ------------------------------------------------------------
// Set one NoData per dataset on "rasterInfo" section (10g)
// ------------------------------------------------------------
if( poConnection->GetVersion() < 11 )
{
CPLXMLNode* psRInfo = CPLGetXMLNode( phMetadata, "rasterInfo" );
CPLXMLNode* psNData = CPLSearchXMLNode( psRInfo, "NODATA" );
if( psNData == NULL )
{
psNData = CPLCreateXMLNode( NULL, CXT_Element, "NODATA" );
CPLXMLNode* psCDepth = CPLGetXMLNode( psRInfo, "cellDepth" );
CPLXMLNode* psPointer = psCDepth->psNext;
psCDepth->psNext = psNData;
psNData->psNext = psPointer;
}
CPLSetXMLValue( psRInfo, "NODATA", pszValue );
bFlushMetadata = true;
return true;
}
// ------------------------------------------------------------
// Add NoData for all bands (layer=0) or for a specific band
// ------------------------------------------------------------
char szRDT[OWCODE];
char szNoData[OWTEXT];
strcpy( szRDT, sDataTable.c_str() );
strcpy( szNoData, pszValue );
int nRID = nRasterId;
// ------------------------------------------------------------
// Write the in memory XML metada to avoid lossing other changes
// ------------------------------------------------------------
char* pszMetadata = CPLSerializeXMLTree( phMetadata );
if( pszMetadata == NULL )
{
return false;
}
OCILobLocator* phLocatorR = NULL;
OCILobLocator* phLocatorW = NULL;
OWStatement* poStmt = poConnection->CreateStatement( CPLSPrintf(
"DECLARE\n"
" GR1 sdo_georaster;\n"
"BEGIN\n"
" SELECT %s INTO GR1 FROM %s%s T WHERE %s FOR UPDATE;\n"
"\n"
" GR1.metadata := sys.xmltype.createxml(:1);\n"
"\n"
" SDO_GEOR.addNODATA( GR1, :2, :3 );\n"
"\n"
" UPDATE %s%s T SET %s = GR1 WHERE %s;\n"
"\n"
" EXECUTE IMMEDIATE\n"
" 'SELECT T.%s.METADATA.getClobVal() FROM %s%s T \n"
" WHERE T.%s.RASTERDATATABLE = UPPER(:1)\n"
" AND T.%s.RASTERID = :2'\n"
" INTO :metadata USING :rdt, :rid;\n"
"\n"
" COMMIT;\n"
"END;",
sColumn.c_str(), sSchema.c_str(), sTable.c_str(), sWhere.c_str(),
sSchema.c_str(), sTable.c_str(), sColumn.c_str(), sWhere.c_str(),
sColumn.c_str(), sSchema.c_str(), sTable.c_str(),
sColumn.c_str(),
sColumn.c_str() ) );
poStmt->WriteCLob( &phLocatorW, pszMetadata );
poStmt->Bind( &phLocatorW );
poStmt->Bind( &nLayer );
poStmt->Bind( szNoData );
poStmt->BindName( ":metadata", &phLocatorR );
poStmt->BindName( ":rdt", szRDT );
poStmt->BindName( ":rid", &nRID );
CPLFree( pszMetadata );
if( ! poStmt->Execute() )
{
OCIDescriptorFree( phLocatorR, OCI_DTYPE_LOB );
OCIDescriptorFree( phLocatorW, OCI_DTYPE_LOB );
delete poStmt;
return false;
}
OCIDescriptorFree( phLocatorW, OCI_DTYPE_LOB );
// ------------------------------------------------------------
// Read the XML metadata from db to memory with nodata updates
// ------------------------------------------------------------
char* pszXML = poStmt->ReadCLob( phLocatorR );
if( pszXML )
{
CPLDestroyXMLNode( phMetadata );
phMetadata = CPLParseXMLString( pszXML );
CPLFree( pszXML );
}
OCIDescriptorFree( phLocatorR, OCI_DTYPE_LOB );
bFlushMetadata = true;
delete poStmt;
return false;
}
// ---------------------------------------------------------------------------
// SetVAT()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::SetVAT( int nBand, const char* pszName )
{
InitializeLayersNode();
bFlushMetadata = true;
int n = 1;
CPLXMLNode* psLayers = CPLGetXMLNode( phMetadata, "layerInfo.subLayer" );
for( ; psLayers; psLayers = psLayers->psNext, n++ )
{
if( n != nBand )
{
continue;
}
CPLXMLNode* psVAT = CPLGetXMLNode( psLayers, "vatTableName" );
if( psVAT != NULL )
{
CPLRemoveXMLChild( psLayers, psVAT );
CPLDestroyXMLNode( psVAT );
}
CPLCreateXMLElementAndValue(psLayers, "vatTableName", pszName );
// ------------------------------------------------------------
// To be updated at Flush Metadata in SDO_GEOR.setVAT()
// ------------------------------------------------------------
sValueAttributeTab = pszName;
return true;
}
return false;
}
// ---------------------------------------------------------------------------
// GetVAT()
// ---------------------------------------------------------------------------
char* GeoRasterWrapper::GetVAT( int nBand )
{
CPLXMLNode* psLayers = CPLGetXMLNode( phMetadata, "layerInfo.subLayer" );
if( psLayers == NULL )
{
return NULL;
}
char* pszTablename = NULL;
int n = 1;
for( ; psLayers; psLayers = psLayers->psNext, n++ )
{
if( n != nBand )
{
continue;
}
CPLXMLNode* psVAT = CPLGetXMLNode( psLayers, "vatTableName" );
if( psVAT != NULL )
{
pszTablename = CPLStrdup(
CPLGetXMLValue( psLayers, "vatTableName", "" ) );
}
break;
}
return pszTablename;
}
// ---------------------------------------------------------------------------
// FlushMetadata()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::FlushMetadata()
{
if( bFlushBlock )
{
FlushBlock( nCacheBlockId );
}
if( ! bFlushMetadata )
{
return true;
}
bFlushMetadata = false;
// --------------------------------------------------------------------
// Change the isBlank setting left by SDO_GEOR.createBlank() to 'false'
// --------------------------------------------------------------------
CPLXMLNode* psOInfo = CPLGetXMLNode( phMetadata, "objectInfo" );
CPLXMLNode* psNode = NULL;
CPLSetXMLValue( psOInfo, "isBlank", "false" );
psNode = CPLGetXMLNode( psOInfo, "blankCellValue" );
if( psNode != NULL )
{
CPLRemoveXMLChild( psOInfo, psNode );
CPLDestroyXMLNode( psNode );
}
const char* pszRed = "1";
const char* pszGreen = "1";
const char* pszBlue = "1";
if( ( nRasterBands > 2 ) &&
( ! HasColorMap( 1 ) ) &&
( ! HasColorMap( 2 ) ) &&
( ! HasColorMap( 3 ) ) )
{
pszRed = "1";
pszGreen = "2";
pszBlue = "3";
}
psNode = CPLGetXMLNode( psOInfo, "defaultRed" );
if( psNode )
{
CPLRemoveXMLChild( psOInfo, psNode );
CPLDestroyXMLNode( psNode );
}
CPLCreateXMLElementAndValue( psOInfo, "defaultRed", pszRed );
psNode = CPLGetXMLNode( psOInfo, "defaultGreen" );
if( psNode )
{
CPLRemoveXMLChild( psOInfo, psNode );
CPLDestroyXMLNode( psNode );
}
CPLCreateXMLElementAndValue( psOInfo, "defaultGreen", pszGreen );
psNode = CPLGetXMLNode( psOInfo, "defaultBlue" );
if( psNode )
{
CPLRemoveXMLChild( psOInfo, psNode );
CPLDestroyXMLNode( psNode );
}
CPLCreateXMLElementAndValue( psOInfo, "defaultBlue", pszBlue );
// --------------------------------------------------------------------
// Set compression
// --------------------------------------------------------------------
psNode = CPLGetXMLNode( phMetadata, "rasterInfo.compression" );
if( psNode )
{
CPLSetXMLValue( psNode, "type", sCompressionType.c_str() );
if( EQUALN( sCompressionType.c_str(), "JPEG", 4 ) )
{
CPLSetXMLValue( psNode, "quality",
CPLSPrintf( "%d", nCompressQuality ) );
}
}
// --------------------------------------------------------------------
// Update BitmapMask info
// --------------------------------------------------------------------
if( bHasBitmapMask )
{
CPLXMLNode* psLayers = CPLGetXMLNode( phMetadata, "layerInfo" );
if( psLayers )
{
CPLCreateXMLElementAndValue( psLayers, "bitmapMask", "true" );
}
}
// --------------------------------------------------------------------
// Update the Metadata directly from the XML text
// --------------------------------------------------------------------
double dfXCoef[3];
double dfYCoef[3];
int nMLC;
dfXCoef[0] = dfXCoefficient[0];
dfXCoef[1] = dfXCoefficient[1];
dfXCoef[2] = dfXCoefficient[2];
dfYCoef[0] = dfYCoefficient[0];
dfYCoef[1] = dfYCoefficient[1];
dfYCoef[2] = dfYCoefficient[2];
if ( eModelCoordLocation == MCL_CENTER )
{
dfXCoef[2] += dfXCoefficient[0] / 2;
dfYCoef[2] += dfYCoefficient[1] / 2;
nMLC = MCL_CENTER;
}
else
{
nMLC = MCL_UPPERLEFT;
}
if( phRPC )
{
SetRPC();
nSRID = 0;
}
// --------------------------------------------------------------------
// Serialize XML metadata to plain text
// --------------------------------------------------------------------
char* pszMetadata = CPLSerializeXMLTree( phMetadata );
if( pszMetadata == NULL )
{
return false;
}
if( bGenSpatialIndex )
{
nExtentSRID = nExtentSRID == 0 ? nSRID : nExtentSRID;
}
else
{
nExtentSRID = 0; /* Set spatialExtent to null */
}
// --------------------------------------------------------------------
// Update GeoRaster Metadata
// --------------------------------------------------------------------
int nException = 0;
OCILobLocator* phLocator = NULL;
OWStatement* poStmt = poConnection->CreateStatement( CPLSPrintf(
"DECLARE\n"
" GR1 sdo_georaster;\n"
" GM1 sdo_geometry;\n"
" SRID number := :1;\n"
" EXT_SRID number := :2;\n"
" VAT varchar2(128);\n"
"BEGIN\n"
"\n"
" SELECT %s INTO GR1 FROM %s%s T WHERE %s FOR UPDATE;\n"
"\n"
" GR1.metadata := sys.xmltype.createxml(:3);\n"
"\n"
" IF SRID != 0 THEN\n"
" SDO_GEOR.georeference( GR1, SRID, :4,"
" SDO_NUMBER_ARRAY(:5, :6, :7), SDO_NUMBER_ARRAY(:8, :9, :10));\n"
" END IF;\n"
"\n"
" IF EXT_SRID = 0 THEN\n"
" GM1 := NULL;\n"
" ELSE\n"
" GM1 := SDO_GEOR.generateSpatialExtent( GR1 );\n"
" IF EXT_SRID != SRID THEN\n"
" GM1 := SDO_CS.transform( GM1, EXT_SRID );\n"
" END IF;\n"
" END IF;\n"
"\n"
" GR1.spatialExtent := GM1;\n"
"\n"
" VAT := '%s';\n"
" IF VAT != '' THEN\n"
" SDO_GEOR.setVAT(GR1, 1, VAT);\n"
" END IF;\n"
"\n"
" BEGIN\n"
" UPDATE %s%s T SET %s = GR1\n"
" WHERE %s;\n"
" EXCEPTION\n"
" WHEN OTHERS THEN\n"
" :except := SQLCODE;\n"
" IF (SQLCODE != -29877) THEN\n"
" RAISE;\n"
" END IF;\n"
" END\n"
"\n"
" COMMIT;\n"
"END;",
sColumn.c_str(),
sSchema.c_str(),
sTable.c_str(),
sWhere.c_str(),
sValueAttributeTab.c_str(),
sSchema.c_str(),
sTable.c_str(),
sColumn.c_str(),
sWhere.c_str() ) );
poStmt->WriteCLob( &phLocator, pszMetadata );
poStmt->Bind( &nSRID );
poStmt->Bind( &nExtentSRID );
poStmt->Bind( &phLocator );
poStmt->Bind( &nMLC );
poStmt->Bind( &dfXCoef[0] );
poStmt->Bind( &dfXCoef[1] );
poStmt->Bind( &dfXCoef[2] );
poStmt->Bind( &dfYCoef[0] );
poStmt->Bind( &dfYCoef[1] );
poStmt->Bind( &dfYCoef[2] );
poStmt->BindName( ":except", &nException );
CPLFree( pszMetadata );
if( ! poStmt->Execute() )
{
OCIDescriptorFree( phLocator, OCI_DTYPE_LOB );
delete poStmt;
return false;
}
OCIDescriptorFree( phLocator, OCI_DTYPE_LOB );
delete poStmt;
if( nException )
{
CPLError( CE_Warning, CPLE_AppDefined,
"Cannot generate spatialExtent! (ORA-%d) ", nException );
}
if (bGenPyramid)
{
if (GeneratePyramid( nPyramidLevels, sPyramidResampling.c_str(), true ))
{
CPLDebug("GEOR", "Generated pyramid successfully.");
}
else
{
CPLError( CE_Warning, CPLE_AppDefined, "Error generating pyramid!");
}
}
return true;
}
// ---------------------------------------------------------------------------
// GeneratePyramid()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::GeneratePyramid( int nLevels,
const char* pszResampling,
bool bInternal )
{
nPyramidMaxLevel = nLevels;
if( bInternal )
{
CPLString sLevels = "";
if (nLevels > 0)
{
sLevels = CPLSPrintf("rlevel=%d", nLevels);
}
OWStatement* poStmt = poConnection->CreateStatement( CPLSPrintf(
"DECLARE\n"
" gr sdo_georaster;\n"
"BEGIN\n"
" SELECT %s INTO gr FROM %s t WHERE %s FOR UPDATE;\n"
" sdo_geor.generatePyramid(gr, '%s resampling=%s');\n"
" UPDATE %s t SET %s = gr WHERE %s;\n"
" COMMIT;\n"
"END;\n",
sColumn.c_str(),
sTable.c_str(),
sWhere.c_str(),
sLevels.c_str(),
pszResampling,
sTable.c_str(),
sColumn.c_str(),
sWhere.c_str() ) );
if( poStmt->Execute() )
{
delete poStmt;
return true;
}
delete poStmt;
return false;
}
// -----------------------------------------------------------
// Create rows for pyramid levels
// -----------------------------------------------------------
OWStatement* poStmt = NULL;
poStmt = poConnection->CreateStatement(
"DECLARE\n"
" SCL NUMBER := 0;\n"
" RC NUMBER := 0;\n"
" RR NUMBER := 0;\n"
" CBS2 NUMBER := 0;\n"
" RBS2 NUMBER := 0;\n"
" TBB NUMBER := 0;\n"
" TRB NUMBER := 0;\n"
" TCB NUMBER := 0;\n"
" X NUMBER := 0;\n"
" Y NUMBER := 0;\n"
" W NUMBER := 0;\n"
" H NUMBER := 0;\n"
" STM VARCHAR2(1024) := '';\n"
"BEGIN\n"
" EXECUTE IMMEDIATE 'DELETE FROM '||:rdt||' \n"
" WHERE RASTERID = '||:rid||' AND PYRAMIDLEVEL > 0';\n"
" STM := 'INSERT INTO '||:rdt||' VALUES (:1, :2, :3-1, :4-1, :5-1 ,\n"
" SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 3),\n"
" SDO_ORDINATE_ARRAY(:6, :7, :8-1, :9-1)), EMPTY_BLOB() )';\n"
" TBB := :TotalBandBlocks;\n"
" RBS2 := floor(:RowBlockSize / 2);\n"
" CBS2 := floor(:ColumnBlockSize / 2);\n"
" FOR l IN 1..:level LOOP\n"
" SCL := 2 ** l;\n"
" RR := floor(:RasterRows / SCL);\n"
" RC := floor(:RasterColumns / SCL);\n"
" IF (RC <= CBS2) OR (RR <= RBS2) THEN\n"
" H := RR;\n"
" W := RC;\n"
" ELSE\n"
" H := :RowBlockSize;\n"
" W := :ColumnBlockSize;\n"
" END IF;\n"
" TRB := greatest(1, ceil( ceil(:RasterColumns / :ColumnBlockSize) / SCL));\n"
" TCB := greatest(1, ceil( ceil(:RasterRows / :RowBlockSize) / SCL));\n"
" FOR b IN 1..TBB LOOP\n"
" Y := 0;\n"
" FOR r IN 1..TCB LOOP\n"
" X := 0;\n"
" FOR c IN 1..TRB LOOP\n"
" EXECUTE IMMEDIATE STM USING :rid, l, b, r, c, Y, X, (Y+H), (X+W);\n"
" X := X + W;\n"
" END LOOP;\n"
" Y := Y + H;\n"
" END LOOP;\n"
" END LOOP;\n"
" END LOOP;\n"
" COMMIT;\n"
"END;" );
const char* pszDataTable = sDataTable.c_str();
poStmt->BindName( ":rdt", (char*) pszDataTable );
poStmt->BindName( ":rid", &nRasterId );
poStmt->BindName( ":level", &nLevels );
poStmt->BindName( ":TotalBandBlocks", &nTotalBandBlocks );
poStmt->BindName( ":RowBlockSize", &nRowBlockSize );
poStmt->BindName( ":ColumnBlockSize", &nColumnBlockSize );
poStmt->BindName( ":RasterRows", &nRasterRows );
poStmt->BindName( ":RasterColumns", &nRasterColumns );
if( ! poStmt->Execute() )
{
delete poStmt;
return false;
}
CPLXMLNode* psNode = CPLGetXMLNode( phMetadata, "rasterInfo.pyramid" );
if( psNode )
{
CPLSetXMLValue( psNode, "type", "DECREASE" );
CPLSetXMLValue( psNode, "resampling", pszResampling );
CPLSetXMLValue( psNode, "maxLevel", CPLSPrintf( "%d", nLevels ) );
}
bFlushMetadata = true;
return true;
}
// ---------------------------------------------------------------------------
// GeneratePyramid()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::DeletePyramid()
{
OWStatement* poStmt = poConnection->CreateStatement( CPLSPrintf(
"DECLARE\n"
" gr sdo_georaster;\n"
"BEGIN\n"
" SELECT %s INTO gr FROM %s t WHERE %s FOR UPDATE;\n"
" sdo_geor.deletePyramid(gr);\n"
" UPDATE %s t SET %s = gr WHERE %s;\n"
" COMMIT;\n"
"END;\n",
sColumn.c_str(),
sTable.c_str(),
sWhere.c_str(),
sTable.c_str(),
sColumn.c_str(),
sWhere.c_str() ) );
poStmt->Execute();
delete poStmt;
return false;
}
// ---------------------------------------------------------------------------
// CreateBitmapMask()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::InitializeMask( int nLevel,
int nBlockColumns,
int nBlockRows,
int nColumnBlocks,
int nRowBlocks,
int nBandBlocks )
{
// -----------------------------------------------------------
// Create rows for the bitmap mask
// -----------------------------------------------------------
OWStatement* poStmt = NULL;
poStmt = poConnection->CreateStatement(
"DECLARE\n"
" W NUMBER := :1;\n"
" H NUMBER := :2;\n"
" BB NUMBER := :3;\n"
" RB NUMBER := :4;\n"
" CB NUMBER := :5;\n"
" X NUMBER := 0;\n"
" Y NUMBER := 0;\n"
" STM VARCHAR2(1024) := '';\n"
"BEGIN\n"
"\n"
" EXECUTE IMMEDIATE 'DELETE FROM '||:rdt||' \n"
" WHERE RASTERID = '||:rid||' AND PYRAMIDLEVEL = '||:lev||' ';\n"
"\n"
" STM := 'INSERT INTO '||:rdt||' VALUES (:1, :lev, :2-1, :3-1, :4-1 ,\n"
" SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 3),\n"
" SDO_ORDINATE_ARRAY(:5, :6, :7-1, :8-1)), EMPTY_BLOB() )';\n"
"\n"
" FOR b IN 1..BB LOOP\n"
" Y := 0;\n"
" FOR r IN 1..RB LOOP\n"
" X := 0;\n"
" FOR c IN 1..CB LOOP\n"
" EXECUTE IMMEDIATE STM USING :rid, b, r, c, Y, X, (Y+H), (X+W);\n"
" X := X + W;\n"
" END LOOP;\n"
" Y := Y + H;\n"
" END LOOP;\n"
" END LOOP;\n"
"END;" );
char pszDataTable[OWNAME];
poStmt->Bind( &nBlockColumns );
poStmt->Bind( &nBlockRows );
poStmt->Bind( &nBandBlocks );
poStmt->Bind( &nRowBlocks );
poStmt->Bind( &nColumnBlocks );
poStmt->BindName( ":rdt", pszDataTable );
poStmt->BindName( ":rid", &nRasterId );
poStmt->BindName( ":lev", &nLevel );
if( ! poStmt->Execute() )
{
delete poStmt;
return false;
}
return true;
}
// ---------------------------------------------------------------------------
// UnpackNBits()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::UnpackNBits( GByte* pabyData )
{
int nPixCount = nColumnBlockSize * nRowBlockSize * nBandBlockSize;
if( EQUAL( sCellDepth.c_str(), "4BIT" ) )
{
for( int ii = nPixCount - 2; ii >= 0; ii -= 2 )
{
int k = ii >> 1;
pabyData[ii+1] = (pabyData[k] ) & 0xf;
pabyData[ii] = (pabyData[k] >> 4) & 0xf;
}
}
else if( EQUAL( sCellDepth.c_str(), "2BIT" ) )
{
for( int ii = nPixCount - 4; ii >= 0; ii -= 4 )
{
int k = ii >> 2;
pabyData[ii+3] = (pabyData[k] ) & 0x3;
pabyData[ii+2] = (pabyData[k] >> 2) & 0x3;
pabyData[ii+1] = (pabyData[k] >> 4) & 0x3;
pabyData[ii] = (pabyData[k] >> 6) & 0x3;
}
}
else
{
for( int ii = nPixCount - 1; ii >= 0; ii-- )
{
if( ( pabyData[ii>>3] & ( 128 >> (ii & 0x7) ) ) )
pabyData[ii] = 1;
else
pabyData[ii] = 0;
}
}
}
// ---------------------------------------------------------------------------
// PackNBits()
// ---------------------------------------------------------------------------
void GeoRasterWrapper::PackNBits( GByte* pabyData )
{
int nPixCount = nBandBlockSize * nRowBlockSize * nColumnBlockSize;
GByte* pabyBuffer = (GByte*) VSIMalloc( nPixCount * sizeof(GByte*) );
if( pabyBuffer == NULL )
{
CPLError( CE_Failure, CPLE_OutOfMemory, "PackNBits" );
return;
}
if( nCellSizeBits == 4 )
{
for( int ii = 0; ii < nPixCount - 1; ii += 2 )
{
int k = ii >> 1;
pabyBuffer[k] =
((((GByte *) pabyData)[ii+1] & 0xf) )
| ((((GByte *) pabyData)[ii] & 0xf) << 4);
}
}
else if( nCellSizeBits == 2 )
{
for( int ii = 0; ii < nPixCount - 3; ii += 4 )
{
int k = ii >> 2;
pabyBuffer[k] =
((((GByte *) pabyData)[ii+3] & 0x3) )
| ((((GByte *) pabyData)[ii+2] & 0x3) << 2)
| ((((GByte *) pabyData)[ii+1] & 0x3) << 4)
| ((((GByte *) pabyData)[ii] & 0x3) << 6);
}
}
else
{
for( int ii = 0; ii < nPixCount - 7; ii += 8 )
{
int k = ii >> 3;
pabyBuffer[k] =
((((GByte *) pabyData)[ii+7] & 0x1) )
| ((((GByte *) pabyData)[ii+6] & 0x1) << 1)
| ((((GByte *) pabyData)[ii+5] & 0x1) << 2)
| ((((GByte *) pabyData)[ii+4] & 0x1) << 3)
| ((((GByte *) pabyData)[ii+3] & 0x1) << 4)
| ((((GByte *) pabyData)[ii+2] & 0x1) << 5)
| ((((GByte *) pabyData)[ii+1] & 0x1) << 6)
| ((((GByte *) pabyData)[ii] & 0x1) << 7);
}
}
memcpy( pabyData, pabyBuffer, nPixCount );
CPLFree( pabyBuffer );
}
// ---------------------------------------------------------------------------
// UncompressJpeg()
// ---------------------------------------------------------------------------
const static int K2Chrominance[64] =
{
17, 18, 24, 47, 99, 99, 99, 99,
18, 21, 26, 66, 99, 99, 99, 99,
24, 26, 56, 99, 99, 99, 99, 99,
47, 66, 99, 99, 99, 99, 99, 99,
99, 99, 99, 99, 99, 99, 99, 99,
99, 99, 99, 99, 99, 99, 99, 99,
99, 99, 99, 99, 99, 99, 99, 99,
99, 99, 99, 99, 99, 99, 99, 99
};
static const int AC_BITS[16] =
{
0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 119
};
static const int AC_HUFFVAL[256] =
{
0, 1, 2, 3, 17, 4, 5, 33, 49, 6, 18,
65, 81, 7, 97, 113, 19, 34, 50, 129, 8, 20,
66, 145, 161, 177, 193, 9, 35, 51, 82, 240, 21,
98, 114, 209, 10, 22, 36, 52, 225, 37, 241, 23,
24, 25, 26, 38, 39, 40, 41, 42, 53, 54, 55,
56, 57, 58, 67, 68, 69, 70, 71, 72, 73, 74,
83, 84, 85, 86, 87, 88, 89, 90, 99, 100, 101,
102, 103, 104, 105, 106, 115, 116, 117, 118, 119, 120,
121, 122, 130, 131, 132, 133, 134, 135, 136, 137, 138,
146, 147, 148, 149, 150, 151, 152, 153, 154, 162, 163,
164, 165, 166, 167, 168, 169, 170, 178, 179, 180, 181,
182, 183, 184, 185, 186, 194, 195, 196, 197, 198, 199,
200, 201, 202, 210, 211, 212, 213, 214, 215, 216, 217,
218, 226, 227, 228, 229, 230, 231, 232, 233, 234, 242,
243, 244, 245, 246, 247, 248, 249, 250
};
static const int DC_BITS[16] =
{
0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0
};
static const int DC_HUFFVAL[256] =
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
};
/***
*
* Load the tables based on the Java's JAI default values.
*
* JPEGQTable.K2Chrominance.getScaledInstance()
* JPEGHuffmanTable.StdACChrominance
* JPEGHuffmanTable.StdDCChrominance
*
***/
void JPEG_LoadTables( JQUANT_TBL* hquant_tbl_ptr,
JHUFF_TBL* huff_ac_ptr,
JHUFF_TBL* huff_dc_ptr,
unsigned int nQuality )
{
int i = 0;
float fscale_factor;
// --------------------------------------------------------------------
// Scale Quantization table based on quality
// --------------------------------------------------------------------
fscale_factor = (float) jpeg_quality_scaling( nQuality ) / (float) 100.0;
for ( i = 0; i < 64; i++ )
{
UINT16 temp = (UINT16) floor( K2Chrominance[i] * fscale_factor + 0.5 );
if ( temp <= 0 )
temp = 1;
if ( temp > 255 )
temp = 255;
hquant_tbl_ptr->quantval[i] = (UINT16) temp;
}
// --------------------------------------------------------------------
// Load AC huffman table
// --------------------------------------------------------------------
for ( i = 1; i <= 16; i++ )
{
/* counts[i] is number of Huffman codes of length i bits, i=1..16 */
huff_ac_ptr->bits[i] = (UINT8) AC_BITS[i-1];
}
for ( i = 0; i < 256; i++ )
{
/* symbols[] is the list of Huffman symbols, in code-length order */
huff_ac_ptr->huffval[i] = (UINT8) AC_HUFFVAL[i];
}
// --------------------------------------------------------------------
// Load DC huffman table
// --------------------------------------------------------------------
for ( i = 1; i <= 16; i++ )
{
/* counts[i] is number of Huffman codes of length i bits, i=1..16 */
huff_dc_ptr->bits[i] = (UINT8) DC_BITS[i-1];
}
for ( i = 0; i < 256; i++ )
{
/* symbols[] is the list of Huffman symbols, in code-length order */
huff_dc_ptr->huffval[i] = (UINT8) DC_HUFFVAL[i];
}
}
void GeoRasterWrapper::UncompressJpeg( unsigned long nInSize )
{
// --------------------------------------------------------------------
// Load JPEG in a virtual file
// --------------------------------------------------------------------
const char* pszMemFile = CPLSPrintf( "/vsimem/geor_%p.jpg", pabyBlockBuf );
VSILFILE *fpImage = VSIFOpenL( pszMemFile, "wb" );
VSIFWriteL( pabyBlockBuf, nInSize, 1, fpImage );
VSIFCloseL( fpImage );
fpImage = VSIFOpenL( pszMemFile, "rb" );
// --------------------------------------------------------------------
// Initialize decompressor
// --------------------------------------------------------------------
if( ! sDInfo.global_state )
{
sDInfo.err = jpeg_std_error( &sJErr );
jpeg_create_decompress( &sDInfo );
// -----------------------------------------------------------------
// Load table for abbreviated JPEG-B
// -----------------------------------------------------------------
int nComponentsToLoad = -1; /* doesn't load any table */
if( EQUAL( sCompressionType.c_str(), "JPEG-B") )
{
nComponentsToLoad = nBandBlockSize;
}
for( int n = 0; n < nComponentsToLoad; n++ )
{
sDInfo.quant_tbl_ptrs[n] =
jpeg_alloc_quant_table( (j_common_ptr) &sDInfo );
sDInfo.ac_huff_tbl_ptrs[n] =
jpeg_alloc_huff_table( (j_common_ptr) &sDInfo );
sDInfo.dc_huff_tbl_ptrs[n] =
jpeg_alloc_huff_table( (j_common_ptr) &sDInfo );
JPEG_LoadTables( sDInfo.quant_tbl_ptrs[n],
sDInfo.ac_huff_tbl_ptrs[n],
sDInfo.dc_huff_tbl_ptrs[n],
nCompressQuality );
}
}
jpeg_vsiio_src( &sDInfo, fpImage );
jpeg_read_header( &sDInfo, TRUE );
sDInfo.out_color_space = ( nBandBlockSize == 1 ? JCS_GRAYSCALE : JCS_RGB );
jpeg_start_decompress( &sDInfo );
GByte* pabyScanline = pabyBlockBuf;
for( int iLine = 0; iLine < nRowBlockSize; iLine++ )
{
JSAMPLE* ppSamples = (JSAMPLE*) pabyScanline;
jpeg_read_scanlines( &sDInfo, &ppSamples, 1 );
pabyScanline += ( nColumnBlockSize * nBandBlockSize );
}
jpeg_finish_decompress( &sDInfo );
VSIFCloseL( fpImage );
VSIUnlink( pszMemFile );
}
// ---------------------------------------------------------------------------
// CompressJpeg()
// ---------------------------------------------------------------------------
unsigned long GeoRasterWrapper::CompressJpeg( void )
{
// --------------------------------------------------------------------
// Load JPEG in a virtual file
// --------------------------------------------------------------------
const char* pszMemFile = CPLSPrintf( "/vsimem/geor_%p.jpg", pabyBlockBuf );
VSILFILE *fpImage = VSIFOpenL( pszMemFile, "wb" );
bool write_all_tables = TRUE;
if( EQUAL( sCompressionType.c_str(), "JPEG-B") )
{
write_all_tables = FALSE;
}
// --------------------------------------------------------------------
// Initialize compressor
// --------------------------------------------------------------------
if( ! sCInfo.global_state )
{
sCInfo.err = jpeg_std_error( &sJErr );
jpeg_create_compress( &sCInfo );
jpeg_vsiio_dest( &sCInfo, fpImage );
sCInfo.image_width = nColumnBlockSize;
sCInfo.image_height = nRowBlockSize;
sCInfo.input_components = nBandBlockSize;
sCInfo.in_color_space = (nBandBlockSize == 1 ? JCS_GRAYSCALE : JCS_RGB);
jpeg_set_defaults( &sCInfo );
sCInfo.JFIF_major_version = 1;
sCInfo.JFIF_minor_version = 2;
jpeg_set_quality( &sCInfo, nCompressQuality, TRUE );
// -----------------------------------------------------------------
// Load table for abbreviated JPEG-B
// -----------------------------------------------------------------
int nComponentsToLoad = -1; /* doesn't load any table */
if( EQUAL( sCompressionType.c_str(), "JPEG-B") )
{
nComponentsToLoad = nBandBlockSize;
}
for( int n = 0; n < nComponentsToLoad; n++ )
{
sCInfo.quant_tbl_ptrs[n] =
jpeg_alloc_quant_table( (j_common_ptr) &sCInfo );
sCInfo.ac_huff_tbl_ptrs[n] =
jpeg_alloc_huff_table( (j_common_ptr) &sCInfo );
sCInfo.dc_huff_tbl_ptrs[n] =
jpeg_alloc_huff_table( (j_common_ptr) &sCInfo );
JPEG_LoadTables( sCInfo.quant_tbl_ptrs[n],
sCInfo.ac_huff_tbl_ptrs[n],
sCInfo.dc_huff_tbl_ptrs[n],
nCompressQuality );
}
}
else
{
jpeg_vsiio_dest( &sCInfo, fpImage );
}
jpeg_suppress_tables( &sCInfo, ! write_all_tables );
jpeg_start_compress( &sCInfo, write_all_tables );
GByte* pabyScanline = pabyBlockBuf;
for( int iLine = 0; iLine < nRowBlockSize; iLine++ )
{
JSAMPLE* ppSamples = (JSAMPLE*) pabyScanline;
jpeg_write_scanlines( &sCInfo, &ppSamples, 1 );
pabyScanline += ( nColumnBlockSize * nBandBlockSize );
}
jpeg_finish_compress( &sCInfo );
VSIFCloseL( fpImage );
fpImage = VSIFOpenL( pszMemFile, "rb" );
size_t nSize = VSIFReadL( pabyCompressBuf, 1, nBlockBytes, fpImage );
VSIFCloseL( fpImage );
VSIUnlink( pszMemFile );
return (unsigned long) nSize;
}
// ---------------------------------------------------------------------------
// UncompressDeflate()
// ---------------------------------------------------------------------------
bool GeoRasterWrapper::UncompressDeflate( unsigned long nBufferSize )
{
GByte* pabyBuf = (GByte*) VSIMalloc( nBufferSize );
if( pabyBuf == NULL )
{
CPLError( CE_Failure, CPLE_OutOfMemory, "UncompressDeflate" );
return false;
}
memcpy( pabyBuf, pabyBlockBuf, nBufferSize );
// Call ZLib uncompress
unsigned long nDestLen = nBlockBytes;
int nRet = uncompress( pabyBlockBuf, &nDestLen, pabyBuf, nBufferSize );
CPLFree( pabyBuf );
if( nRet != Z_OK )
{
CPLError( CE_Failure, CPLE_AppDefined, "ZLib return code (%d)", nRet );
return false;
}
if( nDestLen != nBlockBytes )
{
CPLError( CE_Failure, CPLE_AppDefined,
"ZLib decompressed buffer size (%ld) expected (%ld)", nDestLen, nBlockBytes );
return false;
}
return true;
}
// ---------------------------------------------------------------------------
// CompressDeflate()
// ---------------------------------------------------------------------------
unsigned long GeoRasterWrapper::CompressDeflate( void )
{
unsigned long nLen = ((unsigned long)(nBlockBytes * 1.1)) + 12;
GByte* pabyBuf = (GByte*) VSIMalloc( nBlockBytes );
if( pabyBuf == NULL )
{
CPLError( CE_Failure, CPLE_OutOfMemory, "CompressDeflate" );
return 0;
}
memcpy( pabyBuf, pabyBlockBuf, nBlockBytes );
// Call ZLib compress
int nRet = compress( pabyCompressBuf, &nLen, pabyBuf, nBlockBytes );
CPLFree( pabyBuf );
if( nRet != Z_OK )
{
CPLError( CE_Failure, CPLE_AppDefined, "ZLib return code (%d)", nRet );
return 0;
}
return nLen;
}
| [
"[email protected]"
] | |
6f8b42c348f5cb45c167c6b4a04d7b01911b8f7d | 43d947015f83ac37b83e88a4a269ea16f6ef2eb8 | /Source/uiandmain.cpp | 25d12fec279794e9d067cd8e5ce6263588b1d698 | [
"MIT"
] | permissive | sagniknitr/LearnCV | 82776c16c4c08dbe133f14f96fd56f7a1cac667f | 26121d662c7e5b3f21e97bdff180803d187a1f9f | refs/heads/master | 2022-11-25T23:54:44.898844 | 2020-07-26T17:29:55 | 2020-07-26T17:29:55 | 272,451,254 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,545 | cpp | #include "learncv.h"
#include "parameters.h"
#include "setparameters.h"
#include "ui_learncv.h"
#include "ui_setparameters.h"
#define junk -1001
#include <QFileDialog>
//#include <QMessageBox>
bool camstarted = false; // if start camera is pressed or video is loaded
bool imageloaded = false;
bool videoloaded = false;
bool replayset = false;
bool origEmptyFlag = true; // data exception handling
bool paused = false; // if paused is pressed
string loadedFile = "";
int cameraNumber = 0; // for switching cameras
int selectedOperationIndex = junk;
int OpBoxIndex = junk;
QImage::Format imgformat;
int pWinBindImageIndex;
int pWinBindOperationIndex;
bool paramWindowOpen;
vector<parameters> paramlist[4]; // This stores parameter value
// QMessageBox msgBox;
ImageProc::ImageProc(QWidget *parent)
: QMainWindow(parent), ui(new Ui::ImageProc) {
// setWindowIcon(QIcon(":/icons/images/icon.png"));
ui->setupUi(this);
paramWindow = new setparameters();
paramWindowOpen = false;
selectedListIndex = junk;
opListIndex = junk;
initializeGUI();
GUI_Clock = new QTimer(this);
connect(GUI_Clock, SIGNAL(timeout()), this, SLOT(main_()));
GUI_Clock->start(20);
}
ImageProc::~ImageProc() { delete ui; }
void ImageProc::readFrame() {
if (!camstarted && !imageloaded)
return;
if (camstarted) {
if (!(videoloaded && paused))
capVideo.read(read_Frame);
else
return;
if (videoloaded) {
capVideo.read(read_Frame);
if (capVideo.get(CAP_PROP_POS_FRAMES) ==
capVideo.get(CAP_PROP_POS_FRAMES) &&
!replayset) // Video stream ended
{
paused = true;
ui->btn_PausePlay->setText("Replay");
replayset = true;
}
}
}
if (read_Frame.empty()) {
origEmptyFlag = true;
return;
}
if (!paused)
originalImage =
read_Frame
.clone(); // frames will still be read but image processing not done
origEmptyFlag = false;
}
void ImageProc::main_() {
readFrame(); // Read frame from video or cam feed .. change later
enableControls(); // Enable controls only if frame is read
process(); // base image selection and processing calls
updateGUI_Images(); // Update the images on the GUI .. do something else for
// paused
}
void ImageProc::updateGUI_Images() {
// if(paused)
// return;
tempImage.release();
if (!processedImage[0].empty()) {
if (processedImage[0].channels() == 3) {
cvtColor(processedImage[0], tempImage, COLOR_BGR2RGB);
imgformat = QImage::Format_RGB888;
} else if (processedImage[0].channels() == 1) {
tempImage = processedImage[0].clone();
imgformat = QImage::Format_Indexed8;
}
displayedImages[0] = processedImage[0];
cv::resize(tempImage, tempImage,
Size(ui->Image1->width() - 2,
ui->Image1->height() -
2)); // size formatting .. -2 for the borders
QImage Q_temp((uchar *)tempImage.data, tempImage.cols, tempImage.rows,
tempImage.step, imgformat); // convert to Qimage
Q_displayedImages[0] = Q_temp;
ui->Image1->setPixmap(
QPixmap::fromImage(Q_displayedImages[0])); // Set qimage onto the label
}
if (!processedImage[1].empty()) {
if (processedImage[1].channels() == 3) {
cvtColor(processedImage[1], tempImage, COLOR_BGR2RGB);
imgformat = QImage::Format_RGB888;
} else if (processedImage[1].channels() == 1) {
tempImage = processedImage[1].clone();
imgformat = QImage::Format_Indexed8;
}
displayedImages[1] = processedImage[1].clone();
cv::resize(tempImage, tempImage,
Size(ui->Image2->width() - 2,
ui->Image2->height() -
2)); // size formatting .. -2 for the borders
QImage Q_temp((uchar *)tempImage.data, tempImage.cols, tempImage.rows,
tempImage.step, imgformat); // convert to Qimage
Q_displayedImages[1] = Q_temp;
ui->Image2->setPixmap(
QPixmap::fromImage(Q_displayedImages[1])); // Set qimage onto the label
}
if (!processedImage[2].empty()) {
if (processedImage[2].channels() == 3) {
cvtColor(processedImage[2], tempImage, COLOR_BGR2RGB);
imgformat = QImage::Format_RGB888;
} else if (processedImage[2].channels() == 1) {
tempImage = processedImage[2].clone();
imgformat = QImage::Format_Indexed8;
}
displayedImages[2] = processedImage[2];
cv::resize(tempImage, tempImage,
Size(ui->Image3->width() - 2,
ui->Image3->height() -
2)); // size formatting .. -2 for the borders
QImage Q_temp((uchar *)tempImage.data, tempImage.cols, tempImage.rows,
tempImage.step, imgformat); // convert to Qimage
Q_displayedImages[2] = Q_temp;
ui->Image3->setPixmap(
QPixmap::fromImage(Q_displayedImages[2])); // Set qimage onto the label
}
if (!processedImage[3].empty()) {
if (processedImage[3].channels() == 3) {
cvtColor(processedImage[3], tempImage, COLOR_BGR2RGB);
imgformat = QImage::Format_RGB888;
} else if (processedImage[3].channels() == 1) {
tempImage = processedImage[3].clone();
imgformat = QImage::Format_Indexed8;
}
displayedImages[3] = processedImage[3];
cv::resize(tempImage, tempImage,
Size(ui->Image4->width() - 2,
ui->Image4->height() -
2)); // size formatting .. -2 for the borders
QImage Q_temp((uchar *)tempImage.data, tempImage.cols, tempImage.rows,
tempImage.step, imgformat); // convert to Qimage
Q_displayedImages[3] = Q_temp;
ui->Image4->setPixmap(
QPixmap::fromImage(Q_displayedImages[3])); // Set qimage onto the label
}
bool showorig = false;
if (processingList[0].empty())
showorig = true;
/* else if(processingList[0].size() == 1)
{ if(processingList[0][0] == 0)
showorig=true; }*/
else
showorig = false;
if (showorig) {
if (originalImage.channels() == 3) {
cvtColor(originalImage, tempImage, COLOR_BGR2RGB);
imgformat = QImage::Format_RGB888;
} else if (originalImage.channels() == 1) {
tempImage = originalImage.clone();
imgformat = QImage::Format_Indexed8;
}
if (origEmptyFlag)
return;
displayedImages[0] = originalImage;
cvtColor(displayedImages[0], tempImage,
COLOR_BGR2RGB); // opencv stores in BGR and Qt in RGB
cv::resize(tempImage, tempImage,
Size(ui->Image1->width() - 2,
ui->Image1->height() -
2)); // size formatting .. -2 for the borders
QImage Q_originalImage((uchar *)tempImage.data, tempImage.cols,
tempImage.rows, tempImage.step,
imgformat); // convert to Qimage
Q_displayedImages[0] = Q_originalImage;
ui->Image1->setPixmap(
QPixmap::fromImage(Q_displayedImages[0])); // Set qimage onto the label
}
/* if(!processedImage[1].empty())
{
cv::resize(processedImage[1],tempImage,Size(ui->Image2->width()-2,ui->Image2->height()-2));
// size formatting .. -2 for the borders QImage
Q_temp((uchar*)tempImage.data,tempImage.cols,tempImage.rows,tempImage.step,QImage::Format_Indexed8);
// convert to Qimage Q_displayedImages[1] = Q_temp;
ui->Image2->setPixmap(QPixmap::fromImage(Q_displayedImages[1])); //
Set qimage onto the label
}*/
// imshow("Named",originalImage);
}
void ImageProc::on_btn_StartWebcam_clicked() {
imageloaded = false;
videoloaded = false;
if (camstarted) {
camstarted = false;
capVideo.release();
ui->btn_StartWebcam->setText("Start Webcam");
// msgBox.setText("Error,Camera already open");
// msgBox.exec();
// QMessageBox("Error","Camera already open");
return;
}
capVideo.open(cameraNumber);
if (capVideo.isOpened() == false) {
// msgBox.setText("Error,Camera cannot open");
// msgBox.exec();
return;
}
camstarted = true;
// msgBox.setText("Success,Camera opened");
// QMessageBox("Success","Camera opened");
// msgBox.exec();
ui->btn_StartWebcam->setText(
"Stop Webcam"); // once open,change the button to release capture
}
void ImageProc::on_btn_SwitchCam_clicked() {
ui->btn_SwitchCam->setEnabled(false);
if (camstarted) {
capVideo.release();
}
cameraNumber++;
// bool opensuccess = false;
capVideo.open(cameraNumber);
if (capVideo.isOpened() == false) {
cameraNumber = 0;
capVideo.open(cameraNumber);
if (capVideo.isOpened() == false) {
ui->btn_SwitchCam->setEnabled(true);
ui->btn_SwitchCam->setText("No camera");
camstarted = false;
return;
}
}
ui->btn_SwitchCam->setEnabled(true);
return;
}
void ImageProc::on_btn_LoadVid_clicked() {
QString fileName = QFileDialog::getOpenFileName(
this, tr("Open Video"), "C:/",
tr("Video files (*.mp4 *.3gp *.avi *mkv *.flv *.divx *.mov *.wmv)"));
if (camstarted) {
capVideo.release();
ui->btn_StartWebcam->setText("Start Webcam");
}
loadedFile = fileName.toStdString();
capVideo.open(loadedFile);
if (capVideo.isOpened() == false) {
// capVideo.open(cameraNumber);
// if(capVideo.isOpened() == false)
//{
camstarted = false;
return;
//}
}
cout << loadedFile << endl;
videoloaded = true;
camstarted = true;
imageloaded = false;
// cout << file << endl;
}
void ImageProc::on_btn_LoadImage_clicked() {
videoloaded = false;
QString fileName = QFileDialog::getOpenFileName(
this, tr("Open Image"), "C:/",
tr("Image files (*.jpg *.jpeg *.bmp *.png)"));
if (camstarted) {
capVideo.release();
ui->btn_StartWebcam->setText("Start Webcam");
camstarted = false;
}
loadedFile = fileName.toStdString();
read_Frame = imread(loadedFile);
if (!read_Frame.empty())
imageloaded = true;
}
void ImageProc::enableControls() {
bool origEmptyFlag = true;
bool oFlagToggled = origEmptyFlag ^ originalImage.empty();
origEmptyFlag = originalImage.empty();
bool dispEmptyFlag[4] = {true, true, true, true};
bool dFlagToggled[4];
for (int i = 0; i < 4; i++) {
dFlagToggled[i] = (dispEmptyFlag[i] ^ displayedImages[i].empty());
dispEmptyFlag[i] = displayedImages[i].empty();
}
ui->btn_PausePlay->setEnabled(camstarted);
if (oFlagToggled) {
ui->chk_WinEn1->setEnabled(!origEmptyFlag);
ui->chk_WinEn2->setEnabled(!origEmptyFlag);
ui->chk_WinEn3->setEnabled(!origEmptyFlag);
ui->chk_WinEn4->setEnabled(!origEmptyFlag);
ui->chk_WinEn1->setChecked(!origEmptyFlag);
ui->rbt_Base1_Orig->setEnabled(!origEmptyFlag);
ui->rbt_Base2_Orig->setEnabled(!origEmptyFlag);
ui->rbt_Base3_Orig->setEnabled(!origEmptyFlag);
ui->rbt_Base4_Orig->setEnabled(!origEmptyFlag);
}
// Buttons for selecting base image
if (dFlagToggled[0]) {
ui->rbt_Base2_1->setEnabled(!dispEmptyFlag[0]);
ui->rbt_Base3_1->setEnabled(!dispEmptyFlag[0]);
ui->rbt_Base4_1->setEnabled(!dispEmptyFlag[0]);
}
if (dFlagToggled[1]) {
ui->rbt_Base1_2->setEnabled(!dispEmptyFlag[1]);
ui->rbt_Base3_2->setEnabled(!dispEmptyFlag[1]);
ui->rbt_Base4_2->setEnabled(!dispEmptyFlag[1]);
}
if (dFlagToggled[2]) {
ui->rbt_Base1_3->setEnabled(!dispEmptyFlag[2]);
ui->rbt_Base2_3->setEnabled(!dispEmptyFlag[2]);
ui->rbt_Base4_3->setEnabled(!dispEmptyFlag[2]);
}
if (dFlagToggled[3]) {
ui->rbt_Base1_4->setEnabled(!dispEmptyFlag[3]);
ui->rbt_Base2_4->setEnabled(!dispEmptyFlag[3]);
ui->rbt_Base3_4->setEnabled(!dispEmptyFlag[3]);
}
ui->ddl_OpBox1->setEnabled(ui->chk_WinEn1->checkState());
ui->ddl_OpBox2->setEnabled(ui->chk_WinEn2->checkState());
ui->ddl_OpBox3->setEnabled(ui->chk_WinEn3->checkState());
ui->ddl_OpBox4->setEnabled(ui->chk_WinEn4->checkState());
// ui->btn_
}
void ImageProc::on_btn_PausePlay_clicked() {
if (replayset) {
cout << " Loaded " << loadedFile << endl;
ui->btn_PausePlay->setText("Pause");
replayset = false;
capVideo.release();
capVideo.open(loadedFile);
paused = false;
return;
}
paused = !paused;
if (paused)
ui->btn_PausePlay->setText("Resume");
else
ui->btn_PausePlay->setText("Pause");
}
void ImageProc::on_btn_Reset_clicked() {
if (camstarted) {
capVideo.release();
ui->btn_StartWebcam->setText("Start Webcam");
}
origEmptyFlag = true;
originalImage.release();
ui->Image1->clear(); // Clear the image boxes
ui->Image2->clear();
ui->Image3->clear();
ui->Image4->clear();
ui->list_OpList1->clear(); // Clear the operation lists
ui->list_OpList2->clear();
ui->list_OpList3->clear();
ui->list_OpList4->clear();
ui->chk_WinEn1->setChecked(false); // Clear the window enable checks
ui->chk_WinEn2->setChecked(false);
ui->chk_WinEn3->setChecked(false);
ui->chk_WinEn4->setChecked(false);
ui->rbt_Base1_2->setEnabled(false);
ui->rbt_Base1_3->setEnabled(false);
ui->rbt_Base1_4->setEnabled(false);
ui->rbt_Base2_1->setEnabled(false);
ui->rbt_Base2_3->setEnabled(false);
ui->rbt_Base2_4->setEnabled(false);
ui->rbt_Base3_1->setEnabled(false);
ui->rbt_Base3_2->setEnabled(false);
ui->rbt_Base3_4->setEnabled(false);
ui->rbt_Base4_1->setEnabled(false);
ui->rbt_Base4_2->setEnabled(false);
ui->rbt_Base4_3->setEnabled(false);
ui->rbt_Base1_Orig->setEnabled(false);
ui->rbt_Base2_Orig->setEnabled(false);
ui->rbt_Base3_Orig->setEnabled(false);
ui->rbt_Base4_Orig->setEnabled(false);
ui->rbt_Base1_Orig->setChecked(true);
ui->rbt_Base2_Orig->setChecked(true);
ui->rbt_Base3_Orig->setChecked(true);
ui->rbt_Base4_Orig->setChecked(true);
for (int i = 0; i < 4; i++) {
processingList[i].clear();
displayedImages[i].release();
baseImage[i].release();
processedImage[i].release();
}
camstarted = false;
imageloaded = false;
replayset = false;
videoloaded = false;
paused = false;
ui->btn_PausePlay->setText("Pause");
}
void ImageProc::on_ddl_OpBox1_activated(int index) {
selectedOperationIndex = index;
OpBoxIndex = 0;
}
void ImageProc::on_ddl_OpBox2_activated(int index) {
selectedOperationIndex = index;
OpBoxIndex = 1;
}
void ImageProc::on_ddl_OpBox3_activated(int index) {
selectedOperationIndex = index;
OpBoxIndex = 2;
}
void ImageProc::on_ddl_OpBox4_activated(int index) {
selectedOperationIndex = index;
OpBoxIndex = 3;
}
void ImageProc::on_btn_Add_clicked() {
if (OpBoxIndex == junk || selectedOperationIndex == junk)
return;
switch (OpBoxIndex) {
case 0:
ui->list_OpList1->addItem(functionList[selectedOperationIndex]);
processingList[OpBoxIndex].push_back(selectedOperationIndex);
addParam(OpBoxIndex, processingList[OpBoxIndex].size() - 1);
break;
case 1:
ui->list_OpList2->addItem(functionList[selectedOperationIndex]);
processingList[OpBoxIndex].push_back(selectedOperationIndex);
addParam(OpBoxIndex, processingList[OpBoxIndex].size() - 1);
break;
case 2:
ui->list_OpList3->addItem(functionList[selectedOperationIndex]);
processingList[OpBoxIndex].push_back(selectedOperationIndex);
addParam(OpBoxIndex, processingList[OpBoxIndex].size() - 1);
break;
case 3:
ui->list_OpList4->addItem(functionList[selectedOperationIndex]);
processingList[OpBoxIndex].push_back(selectedOperationIndex);
addParam(OpBoxIndex, processingList[OpBoxIndex].size() - 1);
break;
default:
return;
}
selectedListIndex = processingList[OpBoxIndex].size() - 1;
opListIndex = OpBoxIndex;
}
void ImageProc::on_btnRemove_clicked() {
if (opListIndex == junk || selectedListIndex == junk)
return;
switch (opListIndex) {
case 0:
ui->list_OpList1->takeItem(selectedListIndex);
processingList[0].erase(processingList[0].begin() + selectedListIndex);
paramlist[0].erase(paramlist[0].begin() + selectedListIndex);
if (paramlist[opListIndex].size() == 0) {
baseImage[opListIndex].release();
processedImage[opListIndex].release();
displayedImages[opListIndex].release();
ui->Image1->clear();
}
break;
case 1:
ui->list_OpList2->takeItem(selectedListIndex);
processingList[1].erase(processingList[1].begin() + selectedListIndex);
paramlist[1].erase(paramlist[1].begin() + selectedListIndex);
if (paramlist[opListIndex].size() == 0) {
baseImage[opListIndex].release();
processedImage[opListIndex].release();
displayedImages[opListIndex].release();
ui->Image2->clear();
}
break;
case 2:
ui->list_OpList3->takeItem(selectedListIndex);
processingList[2].erase(processingList[2].begin() + selectedListIndex);
paramlist[2].erase(paramlist[2].begin() + selectedListIndex);
if (paramlist[opListIndex].size() == 0) {
baseImage[opListIndex].release();
processedImage[opListIndex].release();
displayedImages[opListIndex].release();
ui->Image3->clear();
}
break;
case 3:
ui->list_OpList4->takeItem(selectedListIndex);
processingList[3].erase(processingList[3].begin() + selectedListIndex);
paramlist[3].erase(paramlist[3].begin() + selectedListIndex);
if (paramlist[opListIndex].size() == 0) {
baseImage[opListIndex].release();
processedImage[opListIndex].release();
displayedImages[opListIndex].release();
ui->Image4->clear();
}
break;
}
opListIndex = junk;
selectedListIndex = junk;
}
void ImageProc::on_list_OpList1_itemClicked(QListWidgetItem *item) {
selectedListIndex = ui->list_OpList1->row(item);
opListIndex = 0;
// ui->btnRemove->setText(QString::number(selectedListIndex));
}
void ImageProc::on_list_OpList2_itemClicked(QListWidgetItem *item) {
selectedListIndex = ui->list_OpList2->row(item);
opListIndex = 1;
}
void ImageProc::on_list_OpList3_itemClicked(QListWidgetItem *item) {
selectedListIndex = ui->list_OpList3->row(item);
opListIndex = 2;
}
void ImageProc::on_list_OpList4_itemClicked(QListWidgetItem *item) {
selectedListIndex = ui->list_OpList4->row(item);
opListIndex = 3;
}
void ImageProc::clearParametersWindow() {
paramWindow->paramui->slider1->setEnabled(false);
paramWindow->paramui->slider2->setEnabled(false);
paramWindow->paramui->slider3->setEnabled(false);
paramWindow->paramui->slider4->setEnabled(false);
paramWindow->paramui->slider5->setEnabled(false);
paramWindow->paramui->slider6->setEnabled(false);
paramWindow->paramui->lblparamname1->clear();
paramWindow->paramui->lblparamname2->clear();
paramWindow->paramui->lblparamname3->clear();
paramWindow->paramui->lblparamname4->clear();
paramWindow->paramui->lblparamname5->clear();
paramWindow->paramui->lblparamname6->clear();
paramWindow->paramui->valueset1->setEnabled(false);
paramWindow->paramui->valueset2->setEnabled(false);
paramWindow->paramui->valueset3->setEnabled(false);
paramWindow->paramui->valueset4->setEnabled(false);
paramWindow->paramui->valueset5->setEnabled(false);
paramWindow->paramui->valueset6->setEnabled(false);
paramWindow->paramui->valueset1->clear();
paramWindow->paramui->valueset2->clear();
paramWindow->paramui->valueset3->clear();
paramWindow->paramui->valueset4->clear();
paramWindow->paramui->valueset5->clear();
paramWindow->paramui->valueset6->clear();
}
void ImageProc::on_chk_WinEn2_clicked(bool checked) {
if (checked)
ui->ddl_OpBox2->setEnabled(true);
else {
ui->list_OpList2->clear();
paramlist[1].clear();
processingList[1].clear();
ui->ddl_OpBox2->setEnabled(false);
baseImage[1].release();
processedImage[1].release();
displayedImages[1].release();
ui->Image2->clear();
}
}
void ImageProc::on_chk_WinEn3_clicked(bool checked) {
if (checked)
ui->ddl_OpBox3->setEnabled(true);
else {
ui->list_OpList3->clear();
paramlist[2].clear();
processingList[2].clear();
ui->ddl_OpBox3->setEnabled(false);
baseImage[2].release();
processedImage[2].release();
displayedImages[2].release();
ui->Image3->clear();
}
}
void ImageProc::on_chk_WinEn4_clicked(bool checked) {
if (checked)
ui->ddl_OpBox4->setEnabled(true);
else {
ui->list_OpList4->clear();
paramlist[3].clear();
processingList[3].clear();
ui->ddl_OpBox4->setEnabled(false);
baseImage[3].release();
processedImage[3].release();
displayedImages[3].release();
ui->Image4->clear();
}
}
| [
"[email protected]"
] | |
f1881b2335d59ab8466ba9e7216ffc0233241d33 | e9c02bb0df7ad3a928cf7c97b8294451eaa8dbc8 | /graph-source-code/129-C/866959.cpp | e2356fbe9469ab9c8425d9c46bd107f4bfd8837a | [
"MIT"
] | permissive | AmrARaouf/algorithm-detection | b157a534545fa8920bbe94e7307d4b937a74aa60 | 59f3028d2298804870b32729415d71eec6116557 | refs/heads/master | 2021-01-13T14:37:04.074339 | 2015-12-06T21:14:31 | 2015-12-06T21:14:31 | 45,905,817 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,673 | cpp | //Language: GNU C++
//============================================================================
// Author : LAM PHAN VIET
// Online Judge :
// Problem Name :
// Time Limit : .000s
// Description :
//============================================================================
#include <algorithm>
#include <bitset>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
using namespace std;
#define inpFile(f) freopen(f, "r", stdin)
#define outFile(f) freopen(f, "w", stdout)
#define FOR(i, a, b) for (int i = a; i <= b; i++)
#define REP(i, n) for (int i = 0; i < n; i++)
#define foreach(it, ar) for ( typeof(ar.begin()) it = ar.begin(); it != ar.end(); it++ )
#define fill(ar, val) memset(ar, val, sizeof(ar))
#define PI 3.1415926535897932385
#define uint64 unsigned long long
#define int64 long long
#define all(ar) ar.begin(), ar.end()
#define pb push_back
#define ff first
#define ss second
#define bit(n) (1<<(n))
#define Last(i) ( i & -i )
#define INF 500000000
#define maxN 10
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef vector<int> vi;
typedef pair<ii, int> iii;
const int dx[] = { -1, -1, -1, 0, 0, 1, 1, 1, 0 };
const int dy[] = { 0, -1, 1, -1, 1, 0, -1, 1, 0 };
const int n = 8;
char s[maxN][maxN];
int d[maxN][maxN][200];
bool inside(int x, int y) {
return (0 <= x && x < n && 0 <= y && y < n);
}
bool bfs() {
REP(i, maxN) REP(j, maxN)
REP(k, 200) d[i][j][k] = false;
int x, y, dist, xx, yy;
queue<iii> Q;
Q.push(iii(ii(7, 0), 0));
d[7][0][0] = true;
while (!Q.empty()) {
x = Q.front().ff.ff;
y = Q.front().ff.ss;
dist = Q.front().ss;
// printf("%d %d %d\n", x, y, dist);
Q.pop();
if (x == 0 && y == 7) return true;
if (dist + 1 == 200) continue;
REP(k, 9) {
xx = x + dx[k];
yy = y + dy[k];
if (!inside(xx, yy)) continue;
if (d[xx][yy][dist + 1]) continue;
if (xx - dist - 1 >= 0 && s[xx - dist - 1][yy] == 'S') continue;
if (xx - dist >= 0 && s[xx - dist][yy] == 'S') continue;
d[xx][yy][dist + 1] = true;
Q.push(iii(ii(xx, yy), dist + 1));
}
}
return false;
}
int main() {
#ifndef ONLINE_JUDGE
inpFile("test.inp"); outFile("test.out");
#endif
REP(i, n) gets(s[i]);
if (bfs()) puts("WIN");
else puts("LOSE");
return 0;
}
// [email protected] - 2011
| [
"[email protected]"
] | |
9de22571dd9bcc260132d4e0fbb5cf7d0e9f8dfd | dd949f215d968f2ee69bf85571fd63e4f085a869 | /subarchitectures/place.sa/trunk/src/c++/tools/sequentialadaboost/features/feature34.cpp | fc85791ada93d5e3dddf633a1db8b19c7f484944 | [] | no_license | marc-hanheide/cogx | a3fd395805f1b0ad7d713a05b9256312757b37a9 | cb9a9c9cdfeba02afac6a83d03b7c6bb778edb95 | refs/heads/master | 2022-03-16T23:36:21.951317 | 2013-12-10T23:49:07 | 2013-12-10T23:49:07 | 219,460,352 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,638 | cpp | //-----------------------------------------------------------
// feature 34:
// gaps (f_30)/ (number_of_beams - 1)
// type 34
//
// oscar martinez
//-----------------------------------------------------------
#include "feature30.h"
#include "feature34.h"
#include <math.h>
#include <iostream>
using namespace oscar;
using namespace std;
//-----------------------------------------
// constructor
//-----------------------------------------
Feature34::Feature34() {
setName("f34: gaps (f_30) / (number_of_beams - 1)");
setType("f34");
}
//-----------------------------------------
// destructor
//-----------------------------------------
Feature34::~Feature34() {
}
//-----------------------------------------
//
//-----------------------------------------
void Feature34::setup(double t) {
threshold = t; // 0.5 meters
char name[500];
sprintf(name, "feature34:number of rel. gaps. Threshold %f / (number_of_beams - 1)", threshold);
setName(name);
}
//-----------------------------------------
// get feature
//-----------------------------------------
int Feature34::getFeature(oscar::Example *e, int index_feature) {
oscar::RangeExample *re = (oscar::RangeExample *)e;
//cerr << "Feature2::getFeature(oscar::RangeExample *re, int index_feature)" << endl;
FeatureValues *fv;
if (re->list_features == NULL ) {
cerr << "ERROR: Feature1::getFeature: list_features==NULL" << endl;
return -1;
}
// mean
Feature30 f30;
f30.setup(threshold);
f30.getFeature(re, index_feature);
fv = re->getFeature(index_feature);
double gaps = fv->value;
fv->value = gaps / (re->num_beams -1);
return 1;
}
| [
"pronobis@9dca7cc1-ec4f-0410-aedc-c33437d64837"
] | pronobis@9dca7cc1-ec4f-0410-aedc-c33437d64837 |
6aa1884dc70a905e0ad3bfa943081221efc4a474 | b7bdd8036e0577d3e5f3e489e70b9d4b7a85dd72 | /Word Ladder.cpp | 096c087ee1078240ddcba0cd880671afa8d072d4 | [] | no_license | AkmElias/LeetCodes | 0c6a11a561ad0569c7086bbd4d26691b442c381b | 844bd46272c266e33d8cb095bd4cf80d1936abdc | refs/heads/master | 2020-08-01T03:35:17.623524 | 2019-11-04T16:36:19 | 2019-11-04T16:36:19 | 210,847,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,038 | cpp | class Solution {
public:
int ladderLength(string beginWord, string endWord, vector<string>& wordList) {
unordered_set<string> dict(wordList.begin(), wordList.end());
queue<string> todo;
todo.push(beginWord);
int ladder = 1;
while (!todo.empty()) {
int n = todo.size();
for (int i = 0; i < n; i++) {
string word = todo.front();
todo.pop();
if (word == endWord) {
return ladder;
}
dict.erase(word);
for (int j = 0; j < word.size(); j++) {
char c = word[j];
for (int k = 0; k < 26; k++) {
word[j] = 'a' + k;
if (dict.find(word) != dict.end()) {
todo.push(word);
}
}
word[j] = c;
}
}
ladder++;
}
return 0;
}
};
| [
"[email protected]"
] | |
f2c859a0841f0aef5a93a6cca5abdf51e462600a | 8aecd7b63aab09d5eda3a035da9da606c68b4d69 | /0103.cpp | 6155f34fa2d3434082dbd93210df1ca9decf87c0 | [
"Apache-2.0"
] | permissive | lazyparser/leetcode | 8b6d417d2e5b31daef2ea0f3de44d0ac1005d780 | aa720505e7eade55bab83bce5f62bec4a20cc22c | refs/heads/master | 2021-01-18T23:25:58.060286 | 2017-12-04T13:37:12 | 2017-12-04T13:37:12 | 29,648,404 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,164 | cpp | /**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<vector<int> > zigzagLevelOrder(TreeNode *root) {
vector<vector<TreeNode*> > p;
vector<vector<int> > v;
if (root == nullptr) return v;
p.push_back(vector<TreeNode*>({root}));
for (int i = 0; i < p.size(); i++) {
vector<TreeNode*> one_layer;
for (auto j : p[i]) {
if (j->left) one_layer.push_back(j->left);
if (j->right) one_layer.push_back(j->right);
}
if (one_layer.size()) p.push_back(one_layer);
}
for (int i = 0; i < p.size(); ++i) {
vector<int> one_layer;
if (i % 2) {
for (int j = p[i].size() - 1; j >= 0; --j)
one_layer.push_back(p[i][j]->val);
} else {
for (auto j : p[i])
one_layer.push_back(j->val);
}
v.push_back(one_layer);
}
return v;
}
};
| [
"[email protected]"
] | |
333f263d7462f22dd718f12dff5157be1467669a | e2400461ad0ee9db8a85a30c811e47d30e16e1c8 | /seleniumtestcases-qa/seleniumtestcases-qa/src/main/resources/firefox/win64/firefox-sdk/include/nsIPaymentFlowInfo.h | 7a797a4800897bca06709eae24051898785817b2 | [] | no_license | pratikcactus/Insights | 720a00187858bbca5b2d8cc36aee23e50c74efbc | 0c3178a50d60ba4c14a07f6515a84f0ce22cdc8e | refs/heads/master | 2021-01-19T14:48:56.139872 | 2018-01-23T07:12:47 | 2018-01-23T07:12:47 | 100,924,200 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,456 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl\nsIPaymentFlowInfo.idl
*/
#ifndef __gen_nsIPaymentFlowInfo_h__
#define __gen_nsIPaymentFlowInfo_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIPaymentFlowInfo */
#define NS_IPAYMENTFLOWINFO_IID_STR "f3fe3b48-fe81-4ec9-90ab-648ac9403466"
#define NS_IPAYMENTFLOWINFO_IID \
{0xf3fe3b48, 0xfe81, 0x4ec9, \
{ 0x90, 0xab, 0x64, 0x8a, 0xc9, 0x40, 0x34, 0x66 }}
class NS_NO_VTABLE nsIPaymentFlowInfo : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPAYMENTFLOWINFO_IID)
/* attribute DOMString uri; */
NS_IMETHOD GetUri(nsAString & aUri) = 0;
NS_IMETHOD SetUri(const nsAString & aUri) = 0;
/* attribute DOMString jwt; */
NS_IMETHOD GetJwt(nsAString & aJwt) = 0;
NS_IMETHOD SetJwt(const nsAString & aJwt) = 0;
/* attribute DOMString requestMethod; */
NS_IMETHOD GetRequestMethod(nsAString & aRequestMethod) = 0;
NS_IMETHOD SetRequestMethod(const nsAString & aRequestMethod) = 0;
/* attribute DOMString name; */
NS_IMETHOD GetName(nsAString & aName) = 0;
NS_IMETHOD SetName(const nsAString & aName) = 0;
/* attribute DOMString description; */
NS_IMETHOD GetDescription(nsAString & aDescription) = 0;
NS_IMETHOD SetDescription(const nsAString & aDescription) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPaymentFlowInfo, NS_IPAYMENTFLOWINFO_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPAYMENTFLOWINFO \
NS_IMETHOD GetUri(nsAString & aUri) override; \
NS_IMETHOD SetUri(const nsAString & aUri) override; \
NS_IMETHOD GetJwt(nsAString & aJwt) override; \
NS_IMETHOD SetJwt(const nsAString & aJwt) override; \
NS_IMETHOD GetRequestMethod(nsAString & aRequestMethod) override; \
NS_IMETHOD SetRequestMethod(const nsAString & aRequestMethod) override; \
NS_IMETHOD GetName(nsAString & aName) override; \
NS_IMETHOD SetName(const nsAString & aName) override; \
NS_IMETHOD GetDescription(nsAString & aDescription) override; \
NS_IMETHOD SetDescription(const nsAString & aDescription) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIPAYMENTFLOWINFO \
NS_METHOD GetUri(nsAString & aUri); \
NS_METHOD SetUri(const nsAString & aUri); \
NS_METHOD GetJwt(nsAString & aJwt); \
NS_METHOD SetJwt(const nsAString & aJwt); \
NS_METHOD GetRequestMethod(nsAString & aRequestMethod); \
NS_METHOD SetRequestMethod(const nsAString & aRequestMethod); \
NS_METHOD GetName(nsAString & aName); \
NS_METHOD SetName(const nsAString & aName); \
NS_METHOD GetDescription(nsAString & aDescription); \
NS_METHOD SetDescription(const nsAString & aDescription);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPAYMENTFLOWINFO(_to) \
NS_IMETHOD GetUri(nsAString & aUri) override { return _to GetUri(aUri); } \
NS_IMETHOD SetUri(const nsAString & aUri) override { return _to SetUri(aUri); } \
NS_IMETHOD GetJwt(nsAString & aJwt) override { return _to GetJwt(aJwt); } \
NS_IMETHOD SetJwt(const nsAString & aJwt) override { return _to SetJwt(aJwt); } \
NS_IMETHOD GetRequestMethod(nsAString & aRequestMethod) override { return _to GetRequestMethod(aRequestMethod); } \
NS_IMETHOD SetRequestMethod(const nsAString & aRequestMethod) override { return _to SetRequestMethod(aRequestMethod); } \
NS_IMETHOD GetName(nsAString & aName) override { return _to GetName(aName); } \
NS_IMETHOD SetName(const nsAString & aName) override { return _to SetName(aName); } \
NS_IMETHOD GetDescription(nsAString & aDescription) override { return _to GetDescription(aDescription); } \
NS_IMETHOD SetDescription(const nsAString & aDescription) override { return _to SetDescription(aDescription); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPAYMENTFLOWINFO(_to) \
NS_IMETHOD GetUri(nsAString & aUri) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUri(aUri); } \
NS_IMETHOD SetUri(const nsAString & aUri) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetUri(aUri); } \
NS_IMETHOD GetJwt(nsAString & aJwt) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetJwt(aJwt); } \
NS_IMETHOD SetJwt(const nsAString & aJwt) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetJwt(aJwt); } \
NS_IMETHOD GetRequestMethod(nsAString & aRequestMethod) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRequestMethod(aRequestMethod); } \
NS_IMETHOD SetRequestMethod(const nsAString & aRequestMethod) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRequestMethod(aRequestMethod); } \
NS_IMETHOD GetName(nsAString & aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD SetName(const nsAString & aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetName(aName); } \
NS_IMETHOD GetDescription(nsAString & aDescription) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDescription(aDescription); } \
NS_IMETHOD SetDescription(const nsAString & aDescription) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDescription(aDescription); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPaymentFlowInfo : public nsIPaymentFlowInfo
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPAYMENTFLOWINFO
nsPaymentFlowInfo();
private:
~nsPaymentFlowInfo();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsPaymentFlowInfo, nsIPaymentFlowInfo)
nsPaymentFlowInfo::nsPaymentFlowInfo()
{
/* member initializers and constructor code */
}
nsPaymentFlowInfo::~nsPaymentFlowInfo()
{
/* destructor code */
}
/* attribute DOMString uri; */
NS_IMETHODIMP nsPaymentFlowInfo::GetUri(nsAString & aUri)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPaymentFlowInfo::SetUri(const nsAString & aUri)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString jwt; */
NS_IMETHODIMP nsPaymentFlowInfo::GetJwt(nsAString & aJwt)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPaymentFlowInfo::SetJwt(const nsAString & aJwt)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString requestMethod; */
NS_IMETHODIMP nsPaymentFlowInfo::GetRequestMethod(nsAString & aRequestMethod)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPaymentFlowInfo::SetRequestMethod(const nsAString & aRequestMethod)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString name; */
NS_IMETHODIMP nsPaymentFlowInfo::GetName(nsAString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPaymentFlowInfo::SetName(const nsAString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString description; */
NS_IMETHODIMP nsPaymentFlowInfo::GetDescription(nsAString & aDescription)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPaymentFlowInfo::SetDescription(const nsAString & aDescription)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIPaymentFlowInfo_h__ */
| [
"[email protected]"
] | |
420ca640c70b24212928003ee5d17558af04b8ef | ae09261b3a612167f8b2195648d8d090f3f62e8d | /install_isolated/include/hardware_interface/joint_command_interface.h | a0f77be66fb892862530ee51929babc469e745dd | [] | no_license | hyunbeen99/cartographer_ros | 4ffa691d562ae3b288ea0311b5f28dcaa930ce54 | 2eda398c8b53e5f5077c9a1eeb488291a91a2a5b | refs/heads/master | 2020-12-19T20:03:14.457527 | 2020-01-23T16:26:18 | 2020-01-23T16:26:18 | 235,616,297 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,731 | h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2012, hiDOF INC.
//
// 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 hiDOF, Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//////////////////////////////////////////////////////////////////////////////
/// \author Wim Meeussen
#pragma once
#include <cassert>
#include <string>
#include <hardware_interface/internal/hardware_resource_manager.h>
#include <hardware_interface/joint_state_interface.h>
namespace hardware_interface
{
/** \brief A handle used to read and command a single joint. */
class JointHandle : public JointStateHandle
{
public:
JointHandle() : JointStateHandle(), cmd_(nullptr) {}
/**
* \param js This joint's state handle
* \param cmd A pointer to the storage for this joint's output command
*/
JointHandle(const JointStateHandle& js, double* cmd)
: JointStateHandle(js), cmd_(cmd)
{
if (!cmd_)
{
throw HardwareInterfaceException("Cannot create handle '" + js.getName() + "'. Command data pointer is null.");
}
}
void setCommand(double command) {assert(cmd_); *cmd_ = command;}
double getCommand() const {assert(cmd_); return *cmd_;}
const double* getCommandPtr() const {assert(cmd_); return cmd_;}
private:
double* cmd_;
};
/** \brief Hardware interface to support commanding an array of joints.
*
* This \ref HardwareInterface supports commanding the output of an array of
* named joints. Note that these commands can have any semantic meaning as long
* as they each can be represented by a single double, they are not necessarily
* effort commands. To specify a meaning to this command, see the derived
* classes like \ref EffortJointInterface etc.
*
* \note Getting a joint handle through the getHandle() method \e will claim that resource.
*
*/
class JointCommandInterface : public HardwareResourceManager<JointHandle, ClaimResources> {};
/// \ref JointCommandInterface for commanding effort-based joints.
class EffortJointInterface : public JointCommandInterface {};
/// \ref JointCommandInterface for commanding velocity-based joints.
class VelocityJointInterface : public JointCommandInterface {};
/// \ref JointCommandInterface for commanding position-based joints.
class PositionJointInterface : public JointCommandInterface {};
}
| [
"[email protected]"
] | |
9a8d6b17786119c5f6ae1639df76ce06e5e7f318 | e7965b1de397a8665a106653a70de40a2d9a33da | /include/AssetManager.hh | 9989895396019bdd4a17753657a81f924c88da5a | [] | no_license | jfcarocota/sdl-gameengine-sample | 590445770451d395c961f9a8392d5033b4c40b29 | f843af9d781f5ab9aec32a539e11bf2212954419 | refs/heads/main | 2023-07-10T05:33:09.274786 | 2021-08-12T02:48:49 | 2021-08-12T02:48:49 | 391,493,609 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 428 | hh | #pragma once
#include<map>
#include<string>
#include "TextureManager.hh"
#include "EntityManager.hh"
class AssetManager
{
private:
EntityManager* manager;
std::map<std::string, SDL_Texture*> textures;
public:
AssetManager(EntityManager* manager);
~AssetManager();
void ClearData();
void AddTexture(std::string textureId, const char* filePath);
SDL_Texture* GetTexture(std::string textureId);
};
| [
"[email protected]"
] | |
0050140ac9b82109ca42164c51bb0d06de0ea7b3 | ddd404eb299425054c909f3b8cc482c095b0b445 | /test_codes/cursestest.cpp | 1fd084064f85aa1feee8c98294c8b27d368cc0f6 | [] | no_license | rohan-av/alex-search-and-rescue | 94bc73b8c4623c03812075c54147361d5f8c28d4 | 7ca663511dbae2b663a420dffb2812c0a044dd2a | refs/heads/master | 2020-04-28T14:19:19.721893 | 2019-04-16T15:38:59 | 2019-04-16T15:38:59 | 175,335,496 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 261 | cpp | #include <ncurses.h>
#include <iostream>
int main(){
initscr();
noecho();
int c = getch();
while (c!='q'){
c = getch();
std::cout << c << std::endl;
}
endwin();
clear();
}
| [
"[email protected]"
] | |
6ebd76b326b8f21d252080925fcb9abb1cfdfcd6 | 492976adfdf031252c85de91a185bfd625738a0c | /src/Game/AI/Action/actionHorseRideWait.cpp | 879f066eafa403fcab9e3ed2e4de14d7b6b2fd9f | [] | no_license | zeldaret/botw | 50ccb72c6d3969c0b067168f6f9124665a7f7590 | fd527f92164b8efdb746cffcf23c4f033fbffa76 | refs/heads/master | 2023-07-21T13:12:24.107437 | 2023-07-01T20:29:40 | 2023-07-01T20:29:40 | 288,736,599 | 1,350 | 117 | null | 2023-09-03T14:45:38 | 2020-08-19T13:16:30 | C++ | UTF-8 | C++ | false | false | 676 | cpp | #include "Game/AI/Action/actionHorseRideWait.h"
namespace uking::action {
HorseRideWait::HorseRideWait(const InitArg& arg) : HorseRide(arg) {}
HorseRideWait::~HorseRideWait() = default;
bool HorseRideWait::init_(sead::Heap* heap) {
return HorseRide::init_(heap);
}
void HorseRideWait::enter_(ksys::act::ai::InlineParamPack* params) {
HorseRide::enter_(params);
}
void HorseRideWait::leave_() {
HorseRide::leave_();
}
void HorseRideWait::loadParams_() {
HorseRide::loadParams_();
getStaticParam(&mTime_s, "Time");
getStaticParam(&mTimeRand_s, "TimeRand");
}
void HorseRideWait::calc_() {
HorseRide::calc_();
}
} // namespace uking::action
| [
"[email protected]"
] | |
ed1067ac154ec666c5bae5bbc5311b6897b7148d | 5085896a79e7eb968c32717526522264574e571b | /dialog_modifyquantity.cpp | bf5997bb493906ac10b21343ddae9e03aef72cb8 | [] | no_license | CactusTribe/MyCoins | c2047571cb364ef0495a94a44d0b003fa974afc2 | 83ab07e9488fb69b0bf568b9af42ddb9deb8a2f7 | refs/heads/master | 2016-09-09T23:57:43.200154 | 2015-09-17T21:32:35 | 2015-09-17T21:32:35 | 42,656,837 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 713 | cpp | #include "dialog_modifyquantity.h"
#include "ui_dialog_modifyquantity.h"
Dialog_ModifyQuantity::Dialog_ModifyQuantity(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog_ModifyQuantity)
{
ui->setupUi(this);
}
Dialog_ModifyQuantity::Dialog_ModifyQuantity(int maxRemove, QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog_ModifyQuantity), m_maxRemove(maxRemove)
{
ui->setupUi(this);
this->setWindowTitle("Remove quantity");
ui->spinBoxQuantity->setRange(0, maxRemove);
ui->labelMax->setText(QString::number(maxRemove));
ui->label_5->setPixmap(QPixmap(":/resources/img/resources/img/Minus.png"));
}
Dialog_ModifyQuantity::~Dialog_ModifyQuantity()
{
delete ui;
}
| [
"[email protected]"
] | |
c0b3f96323edbb07e031b0e8062e08ec9758a63e | 70c6b732c9db967f5c88a1137d11f262f381042a | /subreactor.h | 71d3f0dd7c1a9fb452b14ab8d880ac5637ee90f6 | [] | no_license | yaoyili123/http-server | 1e49ff057184bf2e393fe15fd9be2e4a3affd0da | de4b75f8dcfd7daabdc606bf989d8ea152e0eb39 | refs/heads/master | 2020-05-09T22:52:13.254857 | 2019-11-07T03:32:20 | 2019-11-07T03:32:20 | 181,485,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,771 | h | #ifndef SUB_REACTOR
#define SUB_REACTOR
#include "utils.h"
#include "epoll.h"
#include <string>
#include <map>
enum METHOD
{
GET = 0,
POST,
HEAD,
PUT,
DELETE,
TRACE,
OPTIONS,
CONNECT,
PATCH
};
//read a line state
enum LINE_STATUS
{
LINE_OK = 0,
LINE_ERROR,
LINE_AGAIN
};
//parsing step state
enum PARSE_STATE
{
REQUEST_LINE = 0,
HEADERS,
CONTENT,
};
enum HTTP_RESULT
{
PROCESS_NEXT = 0,
BAD_REQUEST,
OK_404,
NOT_IMPLEMENTED
};
enum HEADER_PARSE
{
H_START = 0,
H_KEY,
H_COLON,
H_SPACE_AFTER_COLON,
H_VALUE,
H_CRLF,
};
//TODO: 每次添加任务都要new/delete,性能很差
class SubReactor
{
public:
static const int BUF_SIZE = 1024;
static int epfd; //这里只是声明
SubReactor(int sock) : clnt_sock(sock) {}
int get_fd() { return clnt_sock; }
void process(); //reactor整个过程
void init(); //初始化状态
int read_data(); //处理reactor中的read部分
void error_io(); //处理严重的I/O错误
HTTP_RESULT parse_request(); //process过程,解析HTTP request
char *get_start() { return buf + start_idx; }
LINE_STATUS parse_line();
int parse_query_params();
HTTP_RESULT parse_request_line(char* text);
HTTP_RESULT parse_headers(char* text);
// private:
int clnt_sock;
char buf[BUF_SIZE];
int read_idx;
int scan_idx;
int start_idx;
PARSE_STATE parse_state;
METHOD method;
char* url;
std::string version;
std::string domain_name;
std::map<std::string, std::string> params;
std::map<std::string, std::string> headers;
std::string content;
};
// int SubReactor::epfd = 0; //需要定义
#endif | [
"[email protected]"
] | |
44eba1cb63add0e6b9aae1818471817b141edbae | 4f7c53c128328f294e9b67a4eb00b72c459692e6 | /app/Document/StoreResultService.h | 477a3e19f3784b834ef875fd6c0120588879c569 | [] | no_license | milczarekIT/agila | a94d59c1acfe171eb361be67acda1c5babc69df6 | ec0ddf53dfa54aaa21d48b5e7f334aabcba5227e | refs/heads/master | 2021-01-10T06:39:56.117202 | 2013-08-24T20:15:22 | 2013-08-24T20:15:22 | 46,000,158 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,315 | h | #ifndef STORERESULTSERVICE_H
#define STORERESULTSERVICE_H
#include "Database/Database.h"
#include "DocumentPosition.h"
#include "Goods/GoodsModel.h"
class StoreResultService
{
private:
/**
* Zmienna odpowiadająca za to czy jest wywoływany skutek magazynowy czy też nie
* tzn. czy stan magazynowy (ilość towaru) ma się zmieniać czy nie
* Domyślnie wywolywany jest skutek magazynowy
*/
bool storeResult;
/**
* zmienna odpowiadająca za to czy stan na magazynie ma się zwiększać czy zmniejszać
* false - dla zmniejszenia towaru np. faktury, paragon, wydania magazynowe
* true - dla zwiekszenia towaru np. przyjecia magazynowe
* Domyślnie konstruktor ustawia ta zmienną na false
* Zmienna nie jest brana pod uwage, gdy dla dokumentu nie jest wywoływany skutek magazynowy
*/
bool increasedQuantity;
public:
StoreResultService();
/**
* Wywołuje skutek magazynowy dla dokumentu
* @see changeStoreResult(QVector<DocumentPosition> positions, bool storeResult);
*/
void callStoreResult(QVector<DocumentPosition> positions);
void callStoreResult(DocumentPosition position);
void callDiffStoreResult(DocumentPosition oldPosition, DocumentPosition newPosition);
/**
* Cofa skutek magazynowy
* @see changeStoreResult(QVector<DocumentPosition> positions, bool storeResult);
*/
void cancelStoreResult(QVector<DocumentPosition> positions);
void cancelStoreResult(DocumentPosition position);
/**
* Zmiana skutku magazynowego (jeśli był, to odwolanie, jeśli nie było to wywołanie)
* Wyołuje lub anuluje skutek magazynowy
* @see callStoreResult(QVector<DocumentPosition> positions);
* @see cancelStoreResult(QVector<DocumentPosition> positions);
*/
void changeStoreResult(QVector<DocumentPosition> positions, bool storeResult);
void setStoreResult(bool storeResult);
/** Increased - dla dokumentów, po których ilość towaru się zwiększa w magazynie */
void setIncreasedQuantity();
/** Decreased - dla dokumentów, po których ilość towaru się zmniejsza w magazynie */
void setDecreasedQuantity();
bool isStoreResult();
bool isIncreasedQuantity();
};
#endif // STORERESULTSERVICE_H
| [
"[email protected]"
] | |
eda8cdbc94046fc27d88116815044c7c2b89fe98 | aff4c6d67714c1df504c7c2e9bf3143cb32826a9 | /Practice/2_2017.cpp | defff4ca69b554503f5fbccf14160171c973d222 | [] | no_license | VishnuPrabhuT/2D-Game-Engine | 8dc31a8f8c56f8a37f67580ac0713ce505354c66 | 2b20170c67851ce8148956a4997829c78e91129e | refs/heads/master | 2021-01-22T01:42:43.077187 | 2017-12-13T01:06:25 | 2017-12-13T01:06:25 | 102,225,197 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 242 | cpp | #include<iostream>
#include<cstdlib>
#include<vector>
const int MAX=1000;
int main(){
std::vector<int> vec;
for(int i=0;i<MAX;i++){
vec.push_back(rand()%100);
}
std::cout<<vec.size()<<std::endl;
std::cout<<vec.capacity()<<std::endl;
}
| [
"vishnuprabhut@gmailcom"
] | vishnuprabhut@gmailcom |
af32246208beed244d0c7163239d9b4f96ed0174 | 21234357e17c83af412b3b843bbf25cf0f703bc3 | /UpdateClient/main.cpp | c1f12d9ff3c7945ebb5fbe54290ada403a62dfc8 | [] | no_license | DadaYin/UpdateTools | dfa2867d6319b99f14c55531c5bb0366db4b9591 | 56bb9132e319f084cb9b10c524f1dbd84fa77e74 | refs/heads/master | 2021-04-01T07:46:06.345983 | 2020-03-24T14:32:51 | 2020-03-24T14:32:51 | 248,169,257 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 201 | cpp | #include "mainwindow.h"
#include <QApplication>
#include "downloadfile.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
| [
"[email protected]"
] | |
1fd4a7dae35bf35bfcc17336c27c8b31997e886c | 1bd75b9c45c3d5d5af3a9c9ba84ab0d4ec1bfd8f | /SpectrumGraph.h | 9ea9b874da9a4ad002c4b63ad55fb23d3dfbd8cb | [] | no_license | nadernt/whistle-recognizer | 168634eda147752fada31d1b4e073971a053b4bf | 7f260f7ee38d9445e2f0806566bbc0ceb45d3986 | refs/heads/master | 2020-04-06T04:26:13.138539 | 2010-01-12T17:11:08 | 2017-02-23T12:22:25 | 82,922,754 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,627 | h | #if !defined(AFX_SPECTRUMGRAPH_H__D00FAB3B_95DC_433A_B106_D507409E1A0F__INCLUDED_)
#define AFX_SPECTRUMGRAPH_H__D00FAB3B_95DC_433A_B106_D507409E1A0F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// SpectrumGraph.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CFrequencyGraph window
enum FrequencyGraphType{ FG_OSCILLOSCOPE };
class CFrequencyGraph : public CWnd
{
// Construction
public:
CFrequencyGraph();
void SetNumberOfSteps(WORD nSteps) { m_wSteps = nSteps; }
void SetLowColor(COLORREF clrLow) { m_clrLow = clrLow; }
void SetMediumColor(COLORREF clrMedium) { m_clrMedium = clrMedium; }
void SetHighColor(COLORREF clrHigh) { m_clrHigh = clrHigh; }
void SetMediumLevel(int nLevel) { m_nMediumLevel = nLevel; }
void SetHighLevel(int nLevel) { m_nHighLevel = nLevel; }
void SetGrid(BOOL bGridOn=TRUE) { m_bGrid = bGridOn; }
WORD GetNumberOfSteps() { return m_wSteps; }
COLORREF GetLowColor() { return m_clrLow; }
COLORREF GetMediumColor() { return m_clrMedium; }
COLORREF GetHighColor() { return m_clrHigh; }
int GetMediumLevel() { return m_nMediumLevel; }
int GetHighLevel() { return m_nHighLevel; }
BOOL GetGrid() { return m_bGrid; }
/*void SetYRange(int nMin, int nMax)
{
m_nMinValue=nMin;
m_nMaxValue=nMax;
}*/
FrequencyGraphType GetGraphType() { return m_graphType; }
void SetGraphType(FrequencyGraphType gType) { m_graphType = gType; }
void Update(int nNumber, double* dArray);//Takes Intensity after FFT is performed on Wave Data
protected:
int m_nLength;
int m_nMinValue;
int m_nMaxValue;
int m_nHighLevel;
int m_nMediumLevel;
WORD m_wSteps;
COLORREF m_clrLow;
COLORREF m_clrMedium;
COLORREF m_clrHigh;
BOOL m_bGrid;
FrequencyGraphType m_graphType;
void Point(HDC hDC, int x, int y, COLORREF color);
BOOL Line(HDC hDC, int x1, int y1, int x2, int y2);
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CFrequencyGraph)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CFrequencyGraph();
// Generated message map functions
protected:
//{{AFX_MSG(CFrequencyGraph)
afx_msg void OnPaint();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SPECTRUMGRAPH_H__D00FAB3B_95DC_433A_B106_D507409E1A0F__INCLUDED_)
| [
"[email protected]"
] | |
3c5ad9c7ea389c42c3dfc33fedd6b8668884ee82 | 2cf838b54b556987cfc49f42935f8aa7563ea1f4 | /aws-cpp-sdk-application-insights/include/aws/application-insights/model/ListApplicationsRequest.h | 43658862bc9b81921494e9865214894e34af0759 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | QPC-database/aws-sdk-cpp | d11e9f0ff6958c64e793c87a49f1e034813dac32 | 9f83105f7e07fe04380232981ab073c247d6fc85 | refs/heads/main | 2023-06-14T17:41:04.817304 | 2021-07-09T20:28:20 | 2021-07-09T20:28:20 | 384,714,703 | 1 | 0 | Apache-2.0 | 2021-07-10T14:16:41 | 2021-07-10T14:16:41 | null | UTF-8 | C++ | false | false | 3,959 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/application-insights/ApplicationInsights_EXPORTS.h>
#include <aws/application-insights/ApplicationInsightsRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace ApplicationInsights
{
namespace Model
{
/**
*/
class AWS_APPLICATIONINSIGHTS_API ListApplicationsRequest : public ApplicationInsightsRequest
{
public:
ListApplicationsRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "ListApplications"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The maximum number of results to return in a single call. To retrieve the
* remaining results, make another call with the returned <code>NextToken</code>
* value.</p>
*/
inline int GetMaxResults() const{ return m_maxResults; }
/**
* <p>The maximum number of results to return in a single call. To retrieve the
* remaining results, make another call with the returned <code>NextToken</code>
* value.</p>
*/
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
/**
* <p>The maximum number of results to return in a single call. To retrieve the
* remaining results, make another call with the returned <code>NextToken</code>
* value.</p>
*/
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
/**
* <p>The maximum number of results to return in a single call. To retrieve the
* remaining results, make another call with the returned <code>NextToken</code>
* value.</p>
*/
inline ListApplicationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
/**
* <p>The token to request the next page of results.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>The token to request the next page of results.</p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>The token to request the next page of results.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>The token to request the next page of results.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>The token to request the next page of results.</p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>The token to request the next page of results.</p>
*/
inline ListApplicationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>The token to request the next page of results.</p>
*/
inline ListApplicationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>The token to request the next page of results.</p>
*/
inline ListApplicationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
private:
int m_maxResults;
bool m_maxResultsHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
};
} // namespace Model
} // namespace ApplicationInsights
} // namespace Aws
| [
"[email protected]"
] | |
dd1236da1b4808356d7b372dce637b93f96c284c | 43ff05c947e16946e789b7c3d9585cb6e6a936b2 | /include/Armor.cpp | e2671814c55423350556da9b5da7e415e225b860 | [] | no_license | rlannon/DnD_3-5-_VCS | e86c1b4246485434daa890fc7eaa63c31aa13aca | 359c787086509ccca411a128d3968bae5e8d4434 | refs/heads/master | 2020-03-18T04:21:48.474800 | 2018-06-19T21:14:03 | 2018-06-19T21:14:03 | 134,283,440 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,520 | cpp | #include "Armor.h"
short Armor::getValue(std::string val) {
if (val == "ac_bonus") {
return ac_bonus;
}
else if (val == "max_dex") {
return max_dex;
}
else if (val == "speed_30") {
return speed_30;
}
else if (val == "speed_20") {
return speed_20;
}
else if (val == "armor_check_penalty" || val == "check_penalty") {
return armor_check_penalty;
}
}
float Armor::getSpellFailChance() {
return spell_fail_chance;
}
void Armor::newArmor(std::string name, int id, float weight, int cost[4], std::string notes, short ac_bonus, short max_dex, short check_penalty, float fail_chance, short speed_30, short speed_20 ){
Armor::name = name;
Armor::id = id;
Armor::weight = weight;
for (int i = 0; i < 4; i++) {
Armor::cost[i] = cost[i];
}
Armor::notes = notes;
Armor::ac_bonus = ac_bonus;
Armor::max_dex = max_dex;
Armor::armor_check_penalty = check_penalty;
Armor::spell_fail_chance = fail_chance;
Armor::speed_30 = speed_30;
Armor::speed_20 = speed_20;
}
Armor::Armor(std::string name, int id, float weight, int cost[4], std::string notes, short ac_bonus, short max_dex, short check_penalty, float fail_chance, short speed_30, short speed_20) : Item(name, id, weight, cost, notes) { // see weapon.h and weapon.cpp for initializer information
Armor::ac_bonus = ac_bonus;
Armor::max_dex = max_dex;
Armor::armor_check_penalty = check_penalty;
Armor::spell_fail_chance = fail_chance;
Armor::speed_30 = speed_30;
Armor::speed_20 = speed_20;
}
Armor::Armor()
{
}
Armor::~Armor()
{
}
| [
"[email protected]"
] | |
d9fcbf5fb3bdaae0d50b9a9f08d024d928498451 | b73eec3a26bdcffb6a19dec6b8b048079befe04c | /3rdparty/meshlab-master/src/fgt/filter_gears/filter_gears.h | 963f13e57ac1a56583335cd979bd5f91703ec730 | [
"GPL-1.0-or-later",
"GPL-3.0-only",
"MIT"
] | permissive | HoEmpire/slambook2 | c876494174e7f636bdf5b5743fab7d9918c52898 | 96d360f32aa5d8b5c5dcbbf9ee7ba865e84409f4 | refs/heads/master | 2020-07-24T02:35:39.488466 | 2019-11-25T03:08:17 | 2019-11-25T03:08:17 | 207,775,582 | 0 | 0 | MIT | 2019-09-11T09:35:56 | 2019-09-11T09:35:56 | null | UTF-8 | C++ | false | false | 2,443 | h | /****************************************************************************
* MeshLab o o *
* A versatile mesh processing toolbox o o *
* _ O _ *
* Copyright(C) 2005 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
#ifndef SAMPLEFILTERSPLUGIN_H
#define SAMPLEFILTERSPLUGIN_H
#include <QObject>
#include <common/interfaces.h>
class QScriptEngine;
class FilterGears : public QObject, public MeshFilterInterface {
Q_OBJECT
Q_INTERFACES(MeshFilterInterface)
public:
enum { FG_GEAR_SINGLE, FG_GEAR_COUPLE } ;
FilterGears();
virtual QString pluginName(void) const { return "FilterGears"; }
QString filterName(FilterIDType filter) const;
QString filterInfo(FilterIDType filter) const;
void initParameterSet(QAction *,MeshModel &/*m*/, RichParameterSet &parlst);
bool applyFilter(QAction *filter, MeshDocument &md, RichParameterSet &par, vcg::CallBackPos * cb) ;
FilterClass getClass(QAction *a);
};
#endif
| [
"[email protected]"
] | |
093b2873d6cc33f32de64204f737693788a3bc09 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_5/3.LB.c.cbmc.cpp | a27bfd96dc125d1fbbf9712ebbae8f584354af99 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 41,988 | cpp | // Global variabls:
// 0:vars:3
// 3:atom_0_X0_1:1
// 4:atom_1_X0_1:1
// 5:atom_2_X0_1:1
// Local global variabls:
// 0:thr0:1
// 1:thr1:1
// 2:thr2:1
#define ADDRSIZE 6
#define LOCALADDRSIZE 3
#define NTHREAD 4
#define NCONTEXT 5
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
char get_rng_th( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
int main(int argc, char **argv) {
// Declare arrays for intial value version in contexts
int local_mem[LOCALADDRSIZE];
// Dumping initializations
local_mem[0+0] = 0;
local_mem[1+0] = 0;
local_mem[2+0] = 0;
int cstart[NTHREAD];
int creturn[NTHREAD];
// declare arrays for contexts activity
int active[NCONTEXT];
int ctx_used[NCONTEXT];
// declare arrays for intial value version in contexts
int meminit_[ADDRSIZE*NCONTEXT];
#define meminit(x,k) meminit_[(x)*NCONTEXT+k]
int coinit_[ADDRSIZE*NCONTEXT];
#define coinit(x,k) coinit_[(x)*NCONTEXT+k]
int deltainit_[ADDRSIZE*NCONTEXT];
#define deltainit(x,k) deltainit_[(x)*NCONTEXT+k]
// declare arrays for running value version in contexts
int mem_[ADDRSIZE*NCONTEXT];
#define mem(x,k) mem_[(x)*NCONTEXT+k]
int co_[ADDRSIZE*NCONTEXT];
#define co(x,k) co_[(x)*NCONTEXT+k]
int delta_[ADDRSIZE*NCONTEXT];
#define delta(x,k) delta_[(x)*NCONTEXT+k]
// declare arrays for local buffer and observed writes
int buff_[NTHREAD*ADDRSIZE];
#define buff(x,k) buff_[(x)*ADDRSIZE+k]
int pw_[NTHREAD*ADDRSIZE];
#define pw(x,k) pw_[(x)*ADDRSIZE+k]
// declare arrays for context stamps
char cr_[NTHREAD*ADDRSIZE];
#define cr(x,k) cr_[(x)*ADDRSIZE+k]
char iw_[NTHREAD*ADDRSIZE];
#define iw(x,k) iw_[(x)*ADDRSIZE+k]
char cw_[NTHREAD*ADDRSIZE];
#define cw(x,k) cw_[(x)*ADDRSIZE+k]
char cx_[NTHREAD*ADDRSIZE];
#define cx(x,k) cx_[(x)*ADDRSIZE+k]
char is_[NTHREAD*ADDRSIZE];
#define is(x,k) is_[(x)*ADDRSIZE+k]
char cs_[NTHREAD*ADDRSIZE];
#define cs(x,k) cs_[(x)*ADDRSIZE+k]
char crmax_[NTHREAD*ADDRSIZE];
#define crmax(x,k) crmax_[(x)*ADDRSIZE+k]
char sforbid_[ADDRSIZE*NCONTEXT];
#define sforbid(x,k) sforbid_[(x)*NCONTEXT+k]
// declare arrays for synchronizations
int cl[NTHREAD];
int cdy[NTHREAD];
int cds[NTHREAD];
int cdl[NTHREAD];
int cisb[NTHREAD];
int caddr[NTHREAD];
int cctrl[NTHREAD];
__LOCALS__
buff(0,0) = 0;
pw(0,0) = 0;
cr(0,0) = 0;
iw(0,0) = 0;
cw(0,0) = 0;
cx(0,0) = 0;
is(0,0) = 0;
cs(0,0) = 0;
crmax(0,0) = 0;
buff(0,1) = 0;
pw(0,1) = 0;
cr(0,1) = 0;
iw(0,1) = 0;
cw(0,1) = 0;
cx(0,1) = 0;
is(0,1) = 0;
cs(0,1) = 0;
crmax(0,1) = 0;
buff(0,2) = 0;
pw(0,2) = 0;
cr(0,2) = 0;
iw(0,2) = 0;
cw(0,2) = 0;
cx(0,2) = 0;
is(0,2) = 0;
cs(0,2) = 0;
crmax(0,2) = 0;
buff(0,3) = 0;
pw(0,3) = 0;
cr(0,3) = 0;
iw(0,3) = 0;
cw(0,3) = 0;
cx(0,3) = 0;
is(0,3) = 0;
cs(0,3) = 0;
crmax(0,3) = 0;
buff(0,4) = 0;
pw(0,4) = 0;
cr(0,4) = 0;
iw(0,4) = 0;
cw(0,4) = 0;
cx(0,4) = 0;
is(0,4) = 0;
cs(0,4) = 0;
crmax(0,4) = 0;
buff(0,5) = 0;
pw(0,5) = 0;
cr(0,5) = 0;
iw(0,5) = 0;
cw(0,5) = 0;
cx(0,5) = 0;
is(0,5) = 0;
cs(0,5) = 0;
crmax(0,5) = 0;
cl[0] = 0;
cdy[0] = 0;
cds[0] = 0;
cdl[0] = 0;
cisb[0] = 0;
caddr[0] = 0;
cctrl[0] = 0;
cstart[0] = get_rng(0,NCONTEXT-1);
creturn[0] = get_rng(0,NCONTEXT-1);
buff(1,0) = 0;
pw(1,0) = 0;
cr(1,0) = 0;
iw(1,0) = 0;
cw(1,0) = 0;
cx(1,0) = 0;
is(1,0) = 0;
cs(1,0) = 0;
crmax(1,0) = 0;
buff(1,1) = 0;
pw(1,1) = 0;
cr(1,1) = 0;
iw(1,1) = 0;
cw(1,1) = 0;
cx(1,1) = 0;
is(1,1) = 0;
cs(1,1) = 0;
crmax(1,1) = 0;
buff(1,2) = 0;
pw(1,2) = 0;
cr(1,2) = 0;
iw(1,2) = 0;
cw(1,2) = 0;
cx(1,2) = 0;
is(1,2) = 0;
cs(1,2) = 0;
crmax(1,2) = 0;
buff(1,3) = 0;
pw(1,3) = 0;
cr(1,3) = 0;
iw(1,3) = 0;
cw(1,3) = 0;
cx(1,3) = 0;
is(1,3) = 0;
cs(1,3) = 0;
crmax(1,3) = 0;
buff(1,4) = 0;
pw(1,4) = 0;
cr(1,4) = 0;
iw(1,4) = 0;
cw(1,4) = 0;
cx(1,4) = 0;
is(1,4) = 0;
cs(1,4) = 0;
crmax(1,4) = 0;
buff(1,5) = 0;
pw(1,5) = 0;
cr(1,5) = 0;
iw(1,5) = 0;
cw(1,5) = 0;
cx(1,5) = 0;
is(1,5) = 0;
cs(1,5) = 0;
crmax(1,5) = 0;
cl[1] = 0;
cdy[1] = 0;
cds[1] = 0;
cdl[1] = 0;
cisb[1] = 0;
caddr[1] = 0;
cctrl[1] = 0;
cstart[1] = get_rng(0,NCONTEXT-1);
creturn[1] = get_rng(0,NCONTEXT-1);
buff(2,0) = 0;
pw(2,0) = 0;
cr(2,0) = 0;
iw(2,0) = 0;
cw(2,0) = 0;
cx(2,0) = 0;
is(2,0) = 0;
cs(2,0) = 0;
crmax(2,0) = 0;
buff(2,1) = 0;
pw(2,1) = 0;
cr(2,1) = 0;
iw(2,1) = 0;
cw(2,1) = 0;
cx(2,1) = 0;
is(2,1) = 0;
cs(2,1) = 0;
crmax(2,1) = 0;
buff(2,2) = 0;
pw(2,2) = 0;
cr(2,2) = 0;
iw(2,2) = 0;
cw(2,2) = 0;
cx(2,2) = 0;
is(2,2) = 0;
cs(2,2) = 0;
crmax(2,2) = 0;
buff(2,3) = 0;
pw(2,3) = 0;
cr(2,3) = 0;
iw(2,3) = 0;
cw(2,3) = 0;
cx(2,3) = 0;
is(2,3) = 0;
cs(2,3) = 0;
crmax(2,3) = 0;
buff(2,4) = 0;
pw(2,4) = 0;
cr(2,4) = 0;
iw(2,4) = 0;
cw(2,4) = 0;
cx(2,4) = 0;
is(2,4) = 0;
cs(2,4) = 0;
crmax(2,4) = 0;
buff(2,5) = 0;
pw(2,5) = 0;
cr(2,5) = 0;
iw(2,5) = 0;
cw(2,5) = 0;
cx(2,5) = 0;
is(2,5) = 0;
cs(2,5) = 0;
crmax(2,5) = 0;
cl[2] = 0;
cdy[2] = 0;
cds[2] = 0;
cdl[2] = 0;
cisb[2] = 0;
caddr[2] = 0;
cctrl[2] = 0;
cstart[2] = get_rng(0,NCONTEXT-1);
creturn[2] = get_rng(0,NCONTEXT-1);
buff(3,0) = 0;
pw(3,0) = 0;
cr(3,0) = 0;
iw(3,0) = 0;
cw(3,0) = 0;
cx(3,0) = 0;
is(3,0) = 0;
cs(3,0) = 0;
crmax(3,0) = 0;
buff(3,1) = 0;
pw(3,1) = 0;
cr(3,1) = 0;
iw(3,1) = 0;
cw(3,1) = 0;
cx(3,1) = 0;
is(3,1) = 0;
cs(3,1) = 0;
crmax(3,1) = 0;
buff(3,2) = 0;
pw(3,2) = 0;
cr(3,2) = 0;
iw(3,2) = 0;
cw(3,2) = 0;
cx(3,2) = 0;
is(3,2) = 0;
cs(3,2) = 0;
crmax(3,2) = 0;
buff(3,3) = 0;
pw(3,3) = 0;
cr(3,3) = 0;
iw(3,3) = 0;
cw(3,3) = 0;
cx(3,3) = 0;
is(3,3) = 0;
cs(3,3) = 0;
crmax(3,3) = 0;
buff(3,4) = 0;
pw(3,4) = 0;
cr(3,4) = 0;
iw(3,4) = 0;
cw(3,4) = 0;
cx(3,4) = 0;
is(3,4) = 0;
cs(3,4) = 0;
crmax(3,4) = 0;
buff(3,5) = 0;
pw(3,5) = 0;
cr(3,5) = 0;
iw(3,5) = 0;
cw(3,5) = 0;
cx(3,5) = 0;
is(3,5) = 0;
cs(3,5) = 0;
crmax(3,5) = 0;
cl[3] = 0;
cdy[3] = 0;
cds[3] = 0;
cdl[3] = 0;
cisb[3] = 0;
caddr[3] = 0;
cctrl[3] = 0;
cstart[3] = get_rng(0,NCONTEXT-1);
creturn[3] = get_rng(0,NCONTEXT-1);
// Dumping initializations
mem(0+0,0) = 0;
mem(0+1,0) = 0;
mem(0+2,0) = 0;
mem(3+0,0) = 0;
mem(4+0,0) = 0;
mem(5+0,0) = 0;
// Dumping context matching equalities
co(0,0) = 0;
delta(0,0) = -1;
mem(0,1) = meminit(0,1);
co(0,1) = coinit(0,1);
delta(0,1) = deltainit(0,1);
mem(0,2) = meminit(0,2);
co(0,2) = coinit(0,2);
delta(0,2) = deltainit(0,2);
mem(0,3) = meminit(0,3);
co(0,3) = coinit(0,3);
delta(0,3) = deltainit(0,3);
mem(0,4) = meminit(0,4);
co(0,4) = coinit(0,4);
delta(0,4) = deltainit(0,4);
co(1,0) = 0;
delta(1,0) = -1;
mem(1,1) = meminit(1,1);
co(1,1) = coinit(1,1);
delta(1,1) = deltainit(1,1);
mem(1,2) = meminit(1,2);
co(1,2) = coinit(1,2);
delta(1,2) = deltainit(1,2);
mem(1,3) = meminit(1,3);
co(1,3) = coinit(1,3);
delta(1,3) = deltainit(1,3);
mem(1,4) = meminit(1,4);
co(1,4) = coinit(1,4);
delta(1,4) = deltainit(1,4);
co(2,0) = 0;
delta(2,0) = -1;
mem(2,1) = meminit(2,1);
co(2,1) = coinit(2,1);
delta(2,1) = deltainit(2,1);
mem(2,2) = meminit(2,2);
co(2,2) = coinit(2,2);
delta(2,2) = deltainit(2,2);
mem(2,3) = meminit(2,3);
co(2,3) = coinit(2,3);
delta(2,3) = deltainit(2,3);
mem(2,4) = meminit(2,4);
co(2,4) = coinit(2,4);
delta(2,4) = deltainit(2,4);
co(3,0) = 0;
delta(3,0) = -1;
mem(3,1) = meminit(3,1);
co(3,1) = coinit(3,1);
delta(3,1) = deltainit(3,1);
mem(3,2) = meminit(3,2);
co(3,2) = coinit(3,2);
delta(3,2) = deltainit(3,2);
mem(3,3) = meminit(3,3);
co(3,3) = coinit(3,3);
delta(3,3) = deltainit(3,3);
mem(3,4) = meminit(3,4);
co(3,4) = coinit(3,4);
delta(3,4) = deltainit(3,4);
co(4,0) = 0;
delta(4,0) = -1;
mem(4,1) = meminit(4,1);
co(4,1) = coinit(4,1);
delta(4,1) = deltainit(4,1);
mem(4,2) = meminit(4,2);
co(4,2) = coinit(4,2);
delta(4,2) = deltainit(4,2);
mem(4,3) = meminit(4,3);
co(4,3) = coinit(4,3);
delta(4,3) = deltainit(4,3);
mem(4,4) = meminit(4,4);
co(4,4) = coinit(4,4);
delta(4,4) = deltainit(4,4);
co(5,0) = 0;
delta(5,0) = -1;
mem(5,1) = meminit(5,1);
co(5,1) = coinit(5,1);
delta(5,1) = deltainit(5,1);
mem(5,2) = meminit(5,2);
co(5,2) = coinit(5,2);
delta(5,2) = deltainit(5,2);
mem(5,3) = meminit(5,3);
co(5,3) = coinit(5,3);
delta(5,3) = deltainit(5,3);
mem(5,4) = meminit(5,4);
co(5,4) = coinit(5,4);
delta(5,4) = deltainit(5,4);
// Dumping thread 1
int ret_thread_1 = 0;
cdy[1] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[1] >= cstart[1]);
T1BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !38, metadata !DIExpression()), !dbg !49
// br label %label_1, !dbg !50
goto T1BLOCK1;
T1BLOCK1:
// call void @llvm.dbg.label(metadata !48), !dbg !51
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !40, metadata !DIExpression()), !dbg !52
// %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !53
// LD: Guess
old_cr = cr(1,0);
cr(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN LDCOM _l21_c15
// Check
ASSUME(active[cr(1,0)] == 1);
ASSUME(cr(1,0) >= iw(1,0));
ASSUME(cr(1,0) >= 0);
ASSUME(cr(1,0) >= cdy[1]);
ASSUME(cr(1,0) >= cisb[1]);
ASSUME(cr(1,0) >= cdl[1]);
ASSUME(cr(1,0) >= cl[1]);
// Update
creg_r0 = cr(1,0);
crmax(1,0) = max(crmax(1,0),cr(1,0));
caddr[1] = max(caddr[1],0);
if(cr(1,0) < cw(1,0)) {
r0 = buff(1,0);
ASSUME((!(( (cw(1,0) < 1) && (1 < crmax(1,0)) )))||(sforbid(0,1)> 0));
ASSUME((!(( (cw(1,0) < 2) && (2 < crmax(1,0)) )))||(sforbid(0,2)> 0));
ASSUME((!(( (cw(1,0) < 3) && (3 < crmax(1,0)) )))||(sforbid(0,3)> 0));
ASSUME((!(( (cw(1,0) < 4) && (4 < crmax(1,0)) )))||(sforbid(0,4)> 0));
} else {
if(pw(1,0) != co(0,cr(1,0))) {
ASSUME(cr(1,0) >= old_cr);
}
pw(1,0) = co(0,cr(1,0));
r0 = mem(0,cr(1,0));
}
ASSUME(creturn[1] >= cr(1,0));
// call void @llvm.dbg.value(metadata i64 %0, metadata !43, metadata !DIExpression()), !dbg !52
// %conv = trunc i64 %0 to i32, !dbg !54
// call void @llvm.dbg.value(metadata i32 %conv, metadata !39, metadata !DIExpression()), !dbg !49
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !44, metadata !DIExpression()), !dbg !55
// call void @llvm.dbg.value(metadata i64 1, metadata !46, metadata !DIExpression()), !dbg !55
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !56
// ST: Guess
iw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l22_c3
old_cw = cw(1,0+1*1);
cw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l22_c3
// Check
ASSUME(active[iw(1,0+1*1)] == 1);
ASSUME(active[cw(1,0+1*1)] == 1);
ASSUME(sforbid(0+1*1,cw(1,0+1*1))== 0);
ASSUME(iw(1,0+1*1) >= 0);
ASSUME(iw(1,0+1*1) >= 0);
ASSUME(cw(1,0+1*1) >= iw(1,0+1*1));
ASSUME(cw(1,0+1*1) >= old_cw);
ASSUME(cw(1,0+1*1) >= cr(1,0+1*1));
ASSUME(cw(1,0+1*1) >= cl[1]);
ASSUME(cw(1,0+1*1) >= cisb[1]);
ASSUME(cw(1,0+1*1) >= cdy[1]);
ASSUME(cw(1,0+1*1) >= cdl[1]);
ASSUME(cw(1,0+1*1) >= cds[1]);
ASSUME(cw(1,0+1*1) >= cctrl[1]);
ASSUME(cw(1,0+1*1) >= caddr[1]);
// Update
caddr[1] = max(caddr[1],0);
buff(1,0+1*1) = 1;
mem(0+1*1,cw(1,0+1*1)) = 1;
co(0+1*1,cw(1,0+1*1))+=1;
delta(0+1*1,cw(1,0+1*1)) = -1;
ASSUME(creturn[1] >= cw(1,0+1*1));
// %cmp = icmp eq i32 %conv, 1, !dbg !57
creg__r0__1_ = max(0,creg_r0);
// %conv1 = zext i1 %cmp to i32, !dbg !57
// call void @llvm.dbg.value(metadata i32 %conv1, metadata !47, metadata !DIExpression()), !dbg !49
// store i32 %conv1, i32* @atom_0_X0_1, align 4, !dbg !58, !tbaa !59
// ST: Guess
iw(1,3) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l24_c15
old_cw = cw(1,3);
cw(1,3) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l24_c15
// Check
ASSUME(active[iw(1,3)] == 1);
ASSUME(active[cw(1,3)] == 1);
ASSUME(sforbid(3,cw(1,3))== 0);
ASSUME(iw(1,3) >= creg__r0__1_);
ASSUME(iw(1,3) >= 0);
ASSUME(cw(1,3) >= iw(1,3));
ASSUME(cw(1,3) >= old_cw);
ASSUME(cw(1,3) >= cr(1,3));
ASSUME(cw(1,3) >= cl[1]);
ASSUME(cw(1,3) >= cisb[1]);
ASSUME(cw(1,3) >= cdy[1]);
ASSUME(cw(1,3) >= cdl[1]);
ASSUME(cw(1,3) >= cds[1]);
ASSUME(cw(1,3) >= cctrl[1]);
ASSUME(cw(1,3) >= caddr[1]);
// Update
caddr[1] = max(caddr[1],0);
buff(1,3) = (r0==1);
mem(3,cw(1,3)) = (r0==1);
co(3,cw(1,3))+=1;
delta(3,cw(1,3)) = -1;
ASSUME(creturn[1] >= cw(1,3));
// ret i8* null, !dbg !63
ret_thread_1 = (- 1);
goto T1BLOCK_END;
T1BLOCK_END:
// Dumping thread 2
int ret_thread_2 = 0;
cdy[2] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[2] >= cstart[2]);
T2BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !66, metadata !DIExpression()), !dbg !76
// br label %label_2, !dbg !50
goto T2BLOCK1;
T2BLOCK1:
// call void @llvm.dbg.label(metadata !75), !dbg !78
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !68, metadata !DIExpression()), !dbg !79
// %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !53
// LD: Guess
old_cr = cr(2,0+1*1);
cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l30_c15
// Check
ASSUME(active[cr(2,0+1*1)] == 2);
ASSUME(cr(2,0+1*1) >= iw(2,0+1*1));
ASSUME(cr(2,0+1*1) >= 0);
ASSUME(cr(2,0+1*1) >= cdy[2]);
ASSUME(cr(2,0+1*1) >= cisb[2]);
ASSUME(cr(2,0+1*1) >= cdl[2]);
ASSUME(cr(2,0+1*1) >= cl[2]);
// Update
creg_r1 = cr(2,0+1*1);
crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1));
caddr[2] = max(caddr[2],0);
if(cr(2,0+1*1) < cw(2,0+1*1)) {
r1 = buff(2,0+1*1);
ASSUME((!(( (cw(2,0+1*1) < 1) && (1 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,1)> 0));
ASSUME((!(( (cw(2,0+1*1) < 2) && (2 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,2)> 0));
ASSUME((!(( (cw(2,0+1*1) < 3) && (3 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,3)> 0));
ASSUME((!(( (cw(2,0+1*1) < 4) && (4 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,4)> 0));
} else {
if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) {
ASSUME(cr(2,0+1*1) >= old_cr);
}
pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1));
r1 = mem(0+1*1,cr(2,0+1*1));
}
ASSUME(creturn[2] >= cr(2,0+1*1));
// call void @llvm.dbg.value(metadata i64 %0, metadata !70, metadata !DIExpression()), !dbg !79
// %conv = trunc i64 %0 to i32, !dbg !54
// call void @llvm.dbg.value(metadata i32 %conv, metadata !67, metadata !DIExpression()), !dbg !76
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !71, metadata !DIExpression()), !dbg !82
// call void @llvm.dbg.value(metadata i64 1, metadata !73, metadata !DIExpression()), !dbg !82
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !56
// ST: Guess
iw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l31_c3
old_cw = cw(2,0+2*1);
cw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l31_c3
// Check
ASSUME(active[iw(2,0+2*1)] == 2);
ASSUME(active[cw(2,0+2*1)] == 2);
ASSUME(sforbid(0+2*1,cw(2,0+2*1))== 0);
ASSUME(iw(2,0+2*1) >= 0);
ASSUME(iw(2,0+2*1) >= 0);
ASSUME(cw(2,0+2*1) >= iw(2,0+2*1));
ASSUME(cw(2,0+2*1) >= old_cw);
ASSUME(cw(2,0+2*1) >= cr(2,0+2*1));
ASSUME(cw(2,0+2*1) >= cl[2]);
ASSUME(cw(2,0+2*1) >= cisb[2]);
ASSUME(cw(2,0+2*1) >= cdy[2]);
ASSUME(cw(2,0+2*1) >= cdl[2]);
ASSUME(cw(2,0+2*1) >= cds[2]);
ASSUME(cw(2,0+2*1) >= cctrl[2]);
ASSUME(cw(2,0+2*1) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,0+2*1) = 1;
mem(0+2*1,cw(2,0+2*1)) = 1;
co(0+2*1,cw(2,0+2*1))+=1;
delta(0+2*1,cw(2,0+2*1)) = -1;
ASSUME(creturn[2] >= cw(2,0+2*1));
// %cmp = icmp eq i32 %conv, 1, !dbg !57
creg__r1__1_ = max(0,creg_r1);
// %conv1 = zext i1 %cmp to i32, !dbg !57
// call void @llvm.dbg.value(metadata i32 %conv1, metadata !74, metadata !DIExpression()), !dbg !76
// store i32 %conv1, i32* @atom_1_X0_1, align 4, !dbg !58, !tbaa !59
// ST: Guess
iw(2,4) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l33_c15
old_cw = cw(2,4);
cw(2,4) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l33_c15
// Check
ASSUME(active[iw(2,4)] == 2);
ASSUME(active[cw(2,4)] == 2);
ASSUME(sforbid(4,cw(2,4))== 0);
ASSUME(iw(2,4) >= creg__r1__1_);
ASSUME(iw(2,4) >= 0);
ASSUME(cw(2,4) >= iw(2,4));
ASSUME(cw(2,4) >= old_cw);
ASSUME(cw(2,4) >= cr(2,4));
ASSUME(cw(2,4) >= cl[2]);
ASSUME(cw(2,4) >= cisb[2]);
ASSUME(cw(2,4) >= cdy[2]);
ASSUME(cw(2,4) >= cdl[2]);
ASSUME(cw(2,4) >= cds[2]);
ASSUME(cw(2,4) >= cctrl[2]);
ASSUME(cw(2,4) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,4) = (r1==1);
mem(4,cw(2,4)) = (r1==1);
co(4,cw(2,4))+=1;
delta(4,cw(2,4)) = -1;
ASSUME(creturn[2] >= cw(2,4));
// ret i8* null, !dbg !63
ret_thread_2 = (- 1);
goto T2BLOCK_END;
T2BLOCK_END:
// Dumping thread 3
int ret_thread_3 = 0;
cdy[3] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[3] >= cstart[3]);
T3BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !89, metadata !DIExpression()), !dbg !99
// br label %label_3, !dbg !50
goto T3BLOCK1;
T3BLOCK1:
// call void @llvm.dbg.label(metadata !98), !dbg !101
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !91, metadata !DIExpression()), !dbg !102
// %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !53
// LD: Guess
old_cr = cr(3,0+2*1);
cr(3,0+2*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN LDCOM _l39_c15
// Check
ASSUME(active[cr(3,0+2*1)] == 3);
ASSUME(cr(3,0+2*1) >= iw(3,0+2*1));
ASSUME(cr(3,0+2*1) >= 0);
ASSUME(cr(3,0+2*1) >= cdy[3]);
ASSUME(cr(3,0+2*1) >= cisb[3]);
ASSUME(cr(3,0+2*1) >= cdl[3]);
ASSUME(cr(3,0+2*1) >= cl[3]);
// Update
creg_r2 = cr(3,0+2*1);
crmax(3,0+2*1) = max(crmax(3,0+2*1),cr(3,0+2*1));
caddr[3] = max(caddr[3],0);
if(cr(3,0+2*1) < cw(3,0+2*1)) {
r2 = buff(3,0+2*1);
ASSUME((!(( (cw(3,0+2*1) < 1) && (1 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,1)> 0));
ASSUME((!(( (cw(3,0+2*1) < 2) && (2 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,2)> 0));
ASSUME((!(( (cw(3,0+2*1) < 3) && (3 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,3)> 0));
ASSUME((!(( (cw(3,0+2*1) < 4) && (4 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,4)> 0));
} else {
if(pw(3,0+2*1) != co(0+2*1,cr(3,0+2*1))) {
ASSUME(cr(3,0+2*1) >= old_cr);
}
pw(3,0+2*1) = co(0+2*1,cr(3,0+2*1));
r2 = mem(0+2*1,cr(3,0+2*1));
}
ASSUME(creturn[3] >= cr(3,0+2*1));
// call void @llvm.dbg.value(metadata i64 %0, metadata !93, metadata !DIExpression()), !dbg !102
// %conv = trunc i64 %0 to i32, !dbg !54
// call void @llvm.dbg.value(metadata i32 %conv, metadata !90, metadata !DIExpression()), !dbg !99
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !94, metadata !DIExpression()), !dbg !105
// call void @llvm.dbg.value(metadata i64 1, metadata !96, metadata !DIExpression()), !dbg !105
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !56
// ST: Guess
iw(3,0) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l40_c3
old_cw = cw(3,0);
cw(3,0) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l40_c3
// Check
ASSUME(active[iw(3,0)] == 3);
ASSUME(active[cw(3,0)] == 3);
ASSUME(sforbid(0,cw(3,0))== 0);
ASSUME(iw(3,0) >= 0);
ASSUME(iw(3,0) >= 0);
ASSUME(cw(3,0) >= iw(3,0));
ASSUME(cw(3,0) >= old_cw);
ASSUME(cw(3,0) >= cr(3,0));
ASSUME(cw(3,0) >= cl[3]);
ASSUME(cw(3,0) >= cisb[3]);
ASSUME(cw(3,0) >= cdy[3]);
ASSUME(cw(3,0) >= cdl[3]);
ASSUME(cw(3,0) >= cds[3]);
ASSUME(cw(3,0) >= cctrl[3]);
ASSUME(cw(3,0) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],0);
buff(3,0) = 1;
mem(0,cw(3,0)) = 1;
co(0,cw(3,0))+=1;
delta(0,cw(3,0)) = -1;
ASSUME(creturn[3] >= cw(3,0));
// %cmp = icmp eq i32 %conv, 1, !dbg !57
creg__r2__1_ = max(0,creg_r2);
// %conv1 = zext i1 %cmp to i32, !dbg !57
// call void @llvm.dbg.value(metadata i32 %conv1, metadata !97, metadata !DIExpression()), !dbg !99
// store i32 %conv1, i32* @atom_2_X0_1, align 4, !dbg !58, !tbaa !59
// ST: Guess
iw(3,5) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l42_c15
old_cw = cw(3,5);
cw(3,5) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l42_c15
// Check
ASSUME(active[iw(3,5)] == 3);
ASSUME(active[cw(3,5)] == 3);
ASSUME(sforbid(5,cw(3,5))== 0);
ASSUME(iw(3,5) >= creg__r2__1_);
ASSUME(iw(3,5) >= 0);
ASSUME(cw(3,5) >= iw(3,5));
ASSUME(cw(3,5) >= old_cw);
ASSUME(cw(3,5) >= cr(3,5));
ASSUME(cw(3,5) >= cl[3]);
ASSUME(cw(3,5) >= cisb[3]);
ASSUME(cw(3,5) >= cdy[3]);
ASSUME(cw(3,5) >= cdl[3]);
ASSUME(cw(3,5) >= cds[3]);
ASSUME(cw(3,5) >= cctrl[3]);
ASSUME(cw(3,5) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],0);
buff(3,5) = (r2==1);
mem(5,cw(3,5)) = (r2==1);
co(5,cw(3,5))+=1;
delta(5,cw(3,5)) = -1;
ASSUME(creturn[3] >= cw(3,5));
// ret i8* null, !dbg !63
ret_thread_3 = (- 1);
goto T3BLOCK_END;
T3BLOCK_END:
// Dumping thread 0
int ret_thread_0 = 0;
cdy[0] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[0] >= cstart[0]);
T0BLOCK0:
// %thr0 = alloca i64, align 8
// %thr1 = alloca i64, align 8
// %thr2 = alloca i64, align 8
// call void @llvm.dbg.value(metadata i32 %argc, metadata !117, metadata !DIExpression()), !dbg !139
// call void @llvm.dbg.value(metadata i8** %argv, metadata !118, metadata !DIExpression()), !dbg !139
// %0 = bitcast i64* %thr0 to i8*, !dbg !65
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #7, !dbg !65
// call void @llvm.dbg.declare(metadata i64* %thr0, metadata !119, metadata !DIExpression()), !dbg !141
// %1 = bitcast i64* %thr1 to i8*, !dbg !67
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #7, !dbg !67
// call void @llvm.dbg.declare(metadata i64* %thr1, metadata !123, metadata !DIExpression()), !dbg !143
// %2 = bitcast i64* %thr2 to i8*, !dbg !69
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %2) #7, !dbg !69
// call void @llvm.dbg.declare(metadata i64* %thr2, metadata !124, metadata !DIExpression()), !dbg !145
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !125, metadata !DIExpression()), !dbg !146
// call void @llvm.dbg.value(metadata i64 0, metadata !127, metadata !DIExpression()), !dbg !146
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !72
// ST: Guess
iw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l51_c3
old_cw = cw(0,0+2*1);
cw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l51_c3
// Check
ASSUME(active[iw(0,0+2*1)] == 0);
ASSUME(active[cw(0,0+2*1)] == 0);
ASSUME(sforbid(0+2*1,cw(0,0+2*1))== 0);
ASSUME(iw(0,0+2*1) >= 0);
ASSUME(iw(0,0+2*1) >= 0);
ASSUME(cw(0,0+2*1) >= iw(0,0+2*1));
ASSUME(cw(0,0+2*1) >= old_cw);
ASSUME(cw(0,0+2*1) >= cr(0,0+2*1));
ASSUME(cw(0,0+2*1) >= cl[0]);
ASSUME(cw(0,0+2*1) >= cisb[0]);
ASSUME(cw(0,0+2*1) >= cdy[0]);
ASSUME(cw(0,0+2*1) >= cdl[0]);
ASSUME(cw(0,0+2*1) >= cds[0]);
ASSUME(cw(0,0+2*1) >= cctrl[0]);
ASSUME(cw(0,0+2*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+2*1) = 0;
mem(0+2*1,cw(0,0+2*1)) = 0;
co(0+2*1,cw(0,0+2*1))+=1;
delta(0+2*1,cw(0,0+2*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+2*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !128, metadata !DIExpression()), !dbg !148
// call void @llvm.dbg.value(metadata i64 0, metadata !130, metadata !DIExpression()), !dbg !148
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !74
// ST: Guess
iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l52_c3
old_cw = cw(0,0+1*1);
cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l52_c3
// Check
ASSUME(active[iw(0,0+1*1)] == 0);
ASSUME(active[cw(0,0+1*1)] == 0);
ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(cw(0,0+1*1) >= iw(0,0+1*1));
ASSUME(cw(0,0+1*1) >= old_cw);
ASSUME(cw(0,0+1*1) >= cr(0,0+1*1));
ASSUME(cw(0,0+1*1) >= cl[0]);
ASSUME(cw(0,0+1*1) >= cisb[0]);
ASSUME(cw(0,0+1*1) >= cdy[0]);
ASSUME(cw(0,0+1*1) >= cdl[0]);
ASSUME(cw(0,0+1*1) >= cds[0]);
ASSUME(cw(0,0+1*1) >= cctrl[0]);
ASSUME(cw(0,0+1*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+1*1) = 0;
mem(0+1*1,cw(0,0+1*1)) = 0;
co(0+1*1,cw(0,0+1*1))+=1;
delta(0+1*1,cw(0,0+1*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+1*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !131, metadata !DIExpression()), !dbg !150
// call void @llvm.dbg.value(metadata i64 0, metadata !133, metadata !DIExpression()), !dbg !150
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !76
// ST: Guess
iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l53_c3
old_cw = cw(0,0);
cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l53_c3
// Check
ASSUME(active[iw(0,0)] == 0);
ASSUME(active[cw(0,0)] == 0);
ASSUME(sforbid(0,cw(0,0))== 0);
ASSUME(iw(0,0) >= 0);
ASSUME(iw(0,0) >= 0);
ASSUME(cw(0,0) >= iw(0,0));
ASSUME(cw(0,0) >= old_cw);
ASSUME(cw(0,0) >= cr(0,0));
ASSUME(cw(0,0) >= cl[0]);
ASSUME(cw(0,0) >= cisb[0]);
ASSUME(cw(0,0) >= cdy[0]);
ASSUME(cw(0,0) >= cdl[0]);
ASSUME(cw(0,0) >= cds[0]);
ASSUME(cw(0,0) >= cctrl[0]);
ASSUME(cw(0,0) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0) = 0;
mem(0,cw(0,0)) = 0;
co(0,cw(0,0))+=1;
delta(0,cw(0,0)) = -1;
ASSUME(creturn[0] >= cw(0,0));
// store i32 0, i32* @atom_0_X0_1, align 4, !dbg !77, !tbaa !78
// ST: Guess
iw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l54_c15
old_cw = cw(0,3);
cw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l54_c15
// Check
ASSUME(active[iw(0,3)] == 0);
ASSUME(active[cw(0,3)] == 0);
ASSUME(sforbid(3,cw(0,3))== 0);
ASSUME(iw(0,3) >= 0);
ASSUME(iw(0,3) >= 0);
ASSUME(cw(0,3) >= iw(0,3));
ASSUME(cw(0,3) >= old_cw);
ASSUME(cw(0,3) >= cr(0,3));
ASSUME(cw(0,3) >= cl[0]);
ASSUME(cw(0,3) >= cisb[0]);
ASSUME(cw(0,3) >= cdy[0]);
ASSUME(cw(0,3) >= cdl[0]);
ASSUME(cw(0,3) >= cds[0]);
ASSUME(cw(0,3) >= cctrl[0]);
ASSUME(cw(0,3) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,3) = 0;
mem(3,cw(0,3)) = 0;
co(3,cw(0,3))+=1;
delta(3,cw(0,3)) = -1;
ASSUME(creturn[0] >= cw(0,3));
// store i32 0, i32* @atom_1_X0_1, align 4, !dbg !82, !tbaa !78
// ST: Guess
iw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l55_c15
old_cw = cw(0,4);
cw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l55_c15
// Check
ASSUME(active[iw(0,4)] == 0);
ASSUME(active[cw(0,4)] == 0);
ASSUME(sforbid(4,cw(0,4))== 0);
ASSUME(iw(0,4) >= 0);
ASSUME(iw(0,4) >= 0);
ASSUME(cw(0,4) >= iw(0,4));
ASSUME(cw(0,4) >= old_cw);
ASSUME(cw(0,4) >= cr(0,4));
ASSUME(cw(0,4) >= cl[0]);
ASSUME(cw(0,4) >= cisb[0]);
ASSUME(cw(0,4) >= cdy[0]);
ASSUME(cw(0,4) >= cdl[0]);
ASSUME(cw(0,4) >= cds[0]);
ASSUME(cw(0,4) >= cctrl[0]);
ASSUME(cw(0,4) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,4) = 0;
mem(4,cw(0,4)) = 0;
co(4,cw(0,4))+=1;
delta(4,cw(0,4)) = -1;
ASSUME(creturn[0] >= cw(0,4));
// store i32 0, i32* @atom_2_X0_1, align 4, !dbg !83, !tbaa !78
// ST: Guess
iw(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l56_c15
old_cw = cw(0,5);
cw(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l56_c15
// Check
ASSUME(active[iw(0,5)] == 0);
ASSUME(active[cw(0,5)] == 0);
ASSUME(sforbid(5,cw(0,5))== 0);
ASSUME(iw(0,5) >= 0);
ASSUME(iw(0,5) >= 0);
ASSUME(cw(0,5) >= iw(0,5));
ASSUME(cw(0,5) >= old_cw);
ASSUME(cw(0,5) >= cr(0,5));
ASSUME(cw(0,5) >= cl[0]);
ASSUME(cw(0,5) >= cisb[0]);
ASSUME(cw(0,5) >= cdy[0]);
ASSUME(cw(0,5) >= cdl[0]);
ASSUME(cw(0,5) >= cds[0]);
ASSUME(cw(0,5) >= cctrl[0]);
ASSUME(cw(0,5) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,5) = 0;
mem(5,cw(0,5)) = 0;
co(5,cw(0,5))+=1;
delta(5,cw(0,5)) = -1;
ASSUME(creturn[0] >= cw(0,5));
// %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #7, !dbg !84
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[1] >= cdy[0]);
// %call5 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #7, !dbg !85
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[2] >= cdy[0]);
// %call6 = call i32 @pthread_create(i64* noundef %thr2, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t2, i8* noundef null) #7, !dbg !86
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[3] >= cdy[0]);
// %3 = load i64, i64* %thr0, align 8, !dbg !87, !tbaa !88
r4 = local_mem[0];
// %call7 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !90
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[1]);
// %4 = load i64, i64* %thr1, align 8, !dbg !91, !tbaa !88
r5 = local_mem[1];
// %call8 = call i32 @pthread_join(i64 noundef %4, i8** noundef null), !dbg !92
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[2]);
// %5 = load i64, i64* %thr2, align 8, !dbg !93, !tbaa !88
r6 = local_mem[2];
// %call9 = call i32 @pthread_join(i64 noundef %5, i8** noundef null), !dbg !94
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[3]);
// %6 = load i32, i32* @atom_0_X0_1, align 4, !dbg !95, !tbaa !78
// LD: Guess
old_cr = cr(0,3);
cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l66_c13
// Check
ASSUME(active[cr(0,3)] == 0);
ASSUME(cr(0,3) >= iw(0,3));
ASSUME(cr(0,3) >= 0);
ASSUME(cr(0,3) >= cdy[0]);
ASSUME(cr(0,3) >= cisb[0]);
ASSUME(cr(0,3) >= cdl[0]);
ASSUME(cr(0,3) >= cl[0]);
// Update
creg_r7 = cr(0,3);
crmax(0,3) = max(crmax(0,3),cr(0,3));
caddr[0] = max(caddr[0],0);
if(cr(0,3) < cw(0,3)) {
r7 = buff(0,3);
ASSUME((!(( (cw(0,3) < 1) && (1 < crmax(0,3)) )))||(sforbid(3,1)> 0));
ASSUME((!(( (cw(0,3) < 2) && (2 < crmax(0,3)) )))||(sforbid(3,2)> 0));
ASSUME((!(( (cw(0,3) < 3) && (3 < crmax(0,3)) )))||(sforbid(3,3)> 0));
ASSUME((!(( (cw(0,3) < 4) && (4 < crmax(0,3)) )))||(sforbid(3,4)> 0));
} else {
if(pw(0,3) != co(3,cr(0,3))) {
ASSUME(cr(0,3) >= old_cr);
}
pw(0,3) = co(3,cr(0,3));
r7 = mem(3,cr(0,3));
}
ASSUME(creturn[0] >= cr(0,3));
// call void @llvm.dbg.value(metadata i32 %6, metadata !134, metadata !DIExpression()), !dbg !139
// %7 = load i32, i32* @atom_1_X0_1, align 4, !dbg !96, !tbaa !78
// LD: Guess
old_cr = cr(0,4);
cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l67_c13
// Check
ASSUME(active[cr(0,4)] == 0);
ASSUME(cr(0,4) >= iw(0,4));
ASSUME(cr(0,4) >= 0);
ASSUME(cr(0,4) >= cdy[0]);
ASSUME(cr(0,4) >= cisb[0]);
ASSUME(cr(0,4) >= cdl[0]);
ASSUME(cr(0,4) >= cl[0]);
// Update
creg_r8 = cr(0,4);
crmax(0,4) = max(crmax(0,4),cr(0,4));
caddr[0] = max(caddr[0],0);
if(cr(0,4) < cw(0,4)) {
r8 = buff(0,4);
ASSUME((!(( (cw(0,4) < 1) && (1 < crmax(0,4)) )))||(sforbid(4,1)> 0));
ASSUME((!(( (cw(0,4) < 2) && (2 < crmax(0,4)) )))||(sforbid(4,2)> 0));
ASSUME((!(( (cw(0,4) < 3) && (3 < crmax(0,4)) )))||(sforbid(4,3)> 0));
ASSUME((!(( (cw(0,4) < 4) && (4 < crmax(0,4)) )))||(sforbid(4,4)> 0));
} else {
if(pw(0,4) != co(4,cr(0,4))) {
ASSUME(cr(0,4) >= old_cr);
}
pw(0,4) = co(4,cr(0,4));
r8 = mem(4,cr(0,4));
}
ASSUME(creturn[0] >= cr(0,4));
// call void @llvm.dbg.value(metadata i32 %7, metadata !135, metadata !DIExpression()), !dbg !139
// %8 = load i32, i32* @atom_2_X0_1, align 4, !dbg !97, !tbaa !78
// LD: Guess
old_cr = cr(0,5);
cr(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l68_c13
// Check
ASSUME(active[cr(0,5)] == 0);
ASSUME(cr(0,5) >= iw(0,5));
ASSUME(cr(0,5) >= 0);
ASSUME(cr(0,5) >= cdy[0]);
ASSUME(cr(0,5) >= cisb[0]);
ASSUME(cr(0,5) >= cdl[0]);
ASSUME(cr(0,5) >= cl[0]);
// Update
creg_r9 = cr(0,5);
crmax(0,5) = max(crmax(0,5),cr(0,5));
caddr[0] = max(caddr[0],0);
if(cr(0,5) < cw(0,5)) {
r9 = buff(0,5);
ASSUME((!(( (cw(0,5) < 1) && (1 < crmax(0,5)) )))||(sforbid(5,1)> 0));
ASSUME((!(( (cw(0,5) < 2) && (2 < crmax(0,5)) )))||(sforbid(5,2)> 0));
ASSUME((!(( (cw(0,5) < 3) && (3 < crmax(0,5)) )))||(sforbid(5,3)> 0));
ASSUME((!(( (cw(0,5) < 4) && (4 < crmax(0,5)) )))||(sforbid(5,4)> 0));
} else {
if(pw(0,5) != co(5,cr(0,5))) {
ASSUME(cr(0,5) >= old_cr);
}
pw(0,5) = co(5,cr(0,5));
r9 = mem(5,cr(0,5));
}
ASSUME(creturn[0] >= cr(0,5));
// call void @llvm.dbg.value(metadata i32 %8, metadata !136, metadata !DIExpression()), !dbg !139
// %and = and i32 %7, %8, !dbg !98
creg_r10 = max(creg_r8,creg_r9);
r10 = r8 & r9;
// call void @llvm.dbg.value(metadata i32 %and, metadata !137, metadata !DIExpression()), !dbg !139
// %and10 = and i32 %6, %and, !dbg !99
creg_r11 = max(creg_r10,creg_r7);
r11 = r7 & r10;
// call void @llvm.dbg.value(metadata i32 %and10, metadata !138, metadata !DIExpression()), !dbg !139
// %cmp = icmp eq i32 %and10, 1, !dbg !100
creg__r11__1_ = max(0,creg_r11);
// br i1 %cmp, label %if.then, label %if.end, !dbg !102
old_cctrl = cctrl[0];
cctrl[0] = get_rng(0,NCONTEXT-1);
ASSUME(cctrl[0] >= old_cctrl);
ASSUME(cctrl[0] >= creg__r11__1_);
if((r11==1)) {
goto T0BLOCK1;
} else {
goto T0BLOCK2;
}
T0BLOCK1:
// call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([89 x i8], [89 x i8]* @.str.1, i64 0, i64 0), i32 noundef 71, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #8, !dbg !103
// unreachable, !dbg !103
r12 = 1;
goto T0BLOCK_END;
T0BLOCK2:
// %9 = bitcast i64* %thr2 to i8*, !dbg !106
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %9) #7, !dbg !106
// %10 = bitcast i64* %thr1 to i8*, !dbg !106
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %10) #7, !dbg !106
// %11 = bitcast i64* %thr0 to i8*, !dbg !106
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %11) #7, !dbg !106
// ret i32 0, !dbg !107
ret_thread_0 = 0;
goto T0BLOCK_END;
T0BLOCK_END:
ASSUME(meminit(0,1) == mem(0,0));
ASSUME(coinit(0,1) == co(0,0));
ASSUME(deltainit(0,1) == delta(0,0));
ASSUME(meminit(0,2) == mem(0,1));
ASSUME(coinit(0,2) == co(0,1));
ASSUME(deltainit(0,2) == delta(0,1));
ASSUME(meminit(0,3) == mem(0,2));
ASSUME(coinit(0,3) == co(0,2));
ASSUME(deltainit(0,3) == delta(0,2));
ASSUME(meminit(0,4) == mem(0,3));
ASSUME(coinit(0,4) == co(0,3));
ASSUME(deltainit(0,4) == delta(0,3));
ASSUME(meminit(1,1) == mem(1,0));
ASSUME(coinit(1,1) == co(1,0));
ASSUME(deltainit(1,1) == delta(1,0));
ASSUME(meminit(1,2) == mem(1,1));
ASSUME(coinit(1,2) == co(1,1));
ASSUME(deltainit(1,2) == delta(1,1));
ASSUME(meminit(1,3) == mem(1,2));
ASSUME(coinit(1,3) == co(1,2));
ASSUME(deltainit(1,3) == delta(1,2));
ASSUME(meminit(1,4) == mem(1,3));
ASSUME(coinit(1,4) == co(1,3));
ASSUME(deltainit(1,4) == delta(1,3));
ASSUME(meminit(2,1) == mem(2,0));
ASSUME(coinit(2,1) == co(2,0));
ASSUME(deltainit(2,1) == delta(2,0));
ASSUME(meminit(2,2) == mem(2,1));
ASSUME(coinit(2,2) == co(2,1));
ASSUME(deltainit(2,2) == delta(2,1));
ASSUME(meminit(2,3) == mem(2,2));
ASSUME(coinit(2,3) == co(2,2));
ASSUME(deltainit(2,3) == delta(2,2));
ASSUME(meminit(2,4) == mem(2,3));
ASSUME(coinit(2,4) == co(2,3));
ASSUME(deltainit(2,4) == delta(2,3));
ASSUME(meminit(3,1) == mem(3,0));
ASSUME(coinit(3,1) == co(3,0));
ASSUME(deltainit(3,1) == delta(3,0));
ASSUME(meminit(3,2) == mem(3,1));
ASSUME(coinit(3,2) == co(3,1));
ASSUME(deltainit(3,2) == delta(3,1));
ASSUME(meminit(3,3) == mem(3,2));
ASSUME(coinit(3,3) == co(3,2));
ASSUME(deltainit(3,3) == delta(3,2));
ASSUME(meminit(3,4) == mem(3,3));
ASSUME(coinit(3,4) == co(3,3));
ASSUME(deltainit(3,4) == delta(3,3));
ASSUME(meminit(4,1) == mem(4,0));
ASSUME(coinit(4,1) == co(4,0));
ASSUME(deltainit(4,1) == delta(4,0));
ASSUME(meminit(4,2) == mem(4,1));
ASSUME(coinit(4,2) == co(4,1));
ASSUME(deltainit(4,2) == delta(4,1));
ASSUME(meminit(4,3) == mem(4,2));
ASSUME(coinit(4,3) == co(4,2));
ASSUME(deltainit(4,3) == delta(4,2));
ASSUME(meminit(4,4) == mem(4,3));
ASSUME(coinit(4,4) == co(4,3));
ASSUME(deltainit(4,4) == delta(4,3));
ASSUME(meminit(5,1) == mem(5,0));
ASSUME(coinit(5,1) == co(5,0));
ASSUME(deltainit(5,1) == delta(5,0));
ASSUME(meminit(5,2) == mem(5,1));
ASSUME(coinit(5,2) == co(5,1));
ASSUME(deltainit(5,2) == delta(5,1));
ASSUME(meminit(5,3) == mem(5,2));
ASSUME(coinit(5,3) == co(5,2));
ASSUME(deltainit(5,3) == delta(5,2));
ASSUME(meminit(5,4) == mem(5,3));
ASSUME(coinit(5,4) == co(5,3));
ASSUME(deltainit(5,4) == delta(5,3));
ASSERT(r12== 0);
}
| [
"[email protected]"
] | |
63016413cc0286128ccf6a79819c25f47f022620 | 19907e496cfaf4d59030ff06a90dc7b14db939fc | /POC/oracle_dapp/node_modules/wrtc/third_party/webrtc/include/chromium/src/third_party/WebKit/Source/platform/PopupMenu.h | d9f58b1e02fd46aa454b23d64af4bebf2924d789 | [
"BSD-2-Clause"
] | permissive | ATMatrix/demo | c10734441f21e24b89054842871a31fec19158e4 | e71a3421c75ccdeac14eafba38f31cf92d0b2354 | refs/heads/master | 2020-12-02T20:53:29.214857 | 2017-08-28T05:49:35 | 2017-08-28T05:49:35 | 96,223,899 | 8 | 4 | null | 2017-08-28T05:49:36 | 2017-07-04T13:59:26 | JavaScript | UTF-8 | C++ | false | false | 1,359 | h | /*
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef PopupMenu_h
#define PopupMenu_h
#include "platform/PlatformExport.h"
#include "platform/heap/Handle.h"
#include "wtf/RefCounted.h"
namespace blink {
class PopupMenu : public RefCountedWillBeGarbageCollectedFinalized<PopupMenu> {
public:
virtual ~PopupMenu() { }
DEFINE_INLINE_VIRTUAL_TRACE() { }
virtual void show() = 0;
virtual void hide() = 0;
virtual void updateFromElement() = 0;
virtual void disconnectClient() = 0;
};
} // namespace blink
#endif // PopupMenu_h
| [
"[email protected]"
] | |
487b937bfebfa2067927ce419fbb166f198876c2 | ba4e49a36ffc517f6e4ef1c9b4438955ebb38ef4 | /Tree_binaryTree/ctdlgt-caynhiphan-ontap.cpp | 218977f75b4def08b0d491ac3577d1b2776c1215 | [] | no_license | DevMinhThu/TH02016_DataStructures_Algorithms | 462c78c339bdb311f4fda24e8dc82dc7c597598f | 73d017c32deae36969772ce2c1a5505e2c487700 | refs/heads/master | 2022-12-28T00:10:45.638272 | 2020-10-10T01:47:01 | 2020-10-10T01:47:01 | 302,791,229 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,488 | cpp | //Ho ten: Vu Minh Thu
//Lop: K63TH
//MaSV: 637865
//De: cay nhi phan
#include<iostream>
#include<stdio.h>
using namespace std;
//khai bao cua truc nut cua cay
struct node
{
char infor;
node *left,*right;
};
//Khai bao ham cac phep toan duyet cay
void preOrder(node *T);//Duyet truoc
void inOrder(node *T);//duyet giua
void postOrder(node *T);//duyet sau
//===chuong trinh chinh===
int main()
{
node *T,*N;
//tao nut 1
T = new node;
T->infor = 'A';
T->right = T->left = NULL;
//tao nut 2
N = new node;
N->infor = 'B';
N->right = N->left = NULL;
T->left = N;
//tao nut 3
N = new node;
N->infor = 'C';
N->right = N->left = NULL;
T->right = N;
//tao nut 4
N = new node;
N->infor = 'D';
N->right = N->left = NULL;
T->left->right = N;
cout<<"\nDuyet truoc: ";
preOrder(T);
cout<<"Duyet sau: ";
postOrder(T);
cout<<"\nDuyet giua: ";
inOrder(T);
cout<<endl;
return 0;
}
//===dinh nghia ham===
void preOrder(node *T)
{
if(T=NULL) return;
else
{
cout<<T->infor<<" ";
preOrder(T->left);
preOrder(T->right);
}
}
void inOrder(node *T)
{
if(T==NULL) return;
else
{
inOrder(T->left);
cout<<T->infor<<" ";
inOrder(T->right);
}
}
void postOrder(node *T)
{
if(T==NULL) return;
else
{
postOrder(T->left);
postOrder(T->right);
cout<<T->infor<<" ";
}
}
| [
"="
] | = |
40462b5e41c1fd906b3f12a9ea0774401fff74c2 | 3ff1fe3888e34cd3576d91319bf0f08ca955940f | /cdb/src/v20170320/model/ModifyCdbProxyParamRequest.cpp | 0fa81b4a493d89a06cb293301bfd7c5bd6186ede | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp | 9f5df8220eaaf72f7eaee07b2ede94f89313651f | 42a76b812b81d1b52ec6a217fafc8faa135e06ca | refs/heads/master | 2023-08-30T03:22:45.269556 | 2023-08-30T00:45:39 | 2023-08-30T00:45:39 | 188,991,963 | 55 | 37 | Apache-2.0 | 2023-08-17T03:13:20 | 2019-05-28T08:56:08 | C++ | UTF-8 | C++ | false | false | 3,415 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <tencentcloud/cdb/v20170320/model/ModifyCdbProxyParamRequest.h>
#include <tencentcloud/core/utils/rapidjson/document.h>
#include <tencentcloud/core/utils/rapidjson/writer.h>
#include <tencentcloud/core/utils/rapidjson/stringbuffer.h>
using namespace TencentCloud::Cdb::V20170320::Model;
using namespace std;
ModifyCdbProxyParamRequest::ModifyCdbProxyParamRequest() :
m_instanceIdHasBeenSet(false),
m_proxyGroupIdHasBeenSet(false),
m_connectionPoolLimitHasBeenSet(false)
{
}
string ModifyCdbProxyParamRequest::ToJsonString() const
{
rapidjson::Document d;
d.SetObject();
rapidjson::Document::AllocatorType& allocator = d.GetAllocator();
if (m_instanceIdHasBeenSet)
{
rapidjson::Value iKey(rapidjson::kStringType);
string key = "InstanceId";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, rapidjson::Value(m_instanceId.c_str(), allocator).Move(), allocator);
}
if (m_proxyGroupIdHasBeenSet)
{
rapidjson::Value iKey(rapidjson::kStringType);
string key = "ProxyGroupId";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, rapidjson::Value(m_proxyGroupId.c_str(), allocator).Move(), allocator);
}
if (m_connectionPoolLimitHasBeenSet)
{
rapidjson::Value iKey(rapidjson::kStringType);
string key = "ConnectionPoolLimit";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, m_connectionPoolLimit, allocator);
}
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
d.Accept(writer);
return buffer.GetString();
}
string ModifyCdbProxyParamRequest::GetInstanceId() const
{
return m_instanceId;
}
void ModifyCdbProxyParamRequest::SetInstanceId(const string& _instanceId)
{
m_instanceId = _instanceId;
m_instanceIdHasBeenSet = true;
}
bool ModifyCdbProxyParamRequest::InstanceIdHasBeenSet() const
{
return m_instanceIdHasBeenSet;
}
string ModifyCdbProxyParamRequest::GetProxyGroupId() const
{
return m_proxyGroupId;
}
void ModifyCdbProxyParamRequest::SetProxyGroupId(const string& _proxyGroupId)
{
m_proxyGroupId = _proxyGroupId;
m_proxyGroupIdHasBeenSet = true;
}
bool ModifyCdbProxyParamRequest::ProxyGroupIdHasBeenSet() const
{
return m_proxyGroupIdHasBeenSet;
}
uint64_t ModifyCdbProxyParamRequest::GetConnectionPoolLimit() const
{
return m_connectionPoolLimit;
}
void ModifyCdbProxyParamRequest::SetConnectionPoolLimit(const uint64_t& _connectionPoolLimit)
{
m_connectionPoolLimit = _connectionPoolLimit;
m_connectionPoolLimitHasBeenSet = true;
}
bool ModifyCdbProxyParamRequest::ConnectionPoolLimitHasBeenSet() const
{
return m_connectionPoolLimitHasBeenSet;
}
| [
"[email protected]"
] | |
2f123ff6e63b96e0fbd8c608609d5179296c09f2 | a15950e54e6775e6f7f7004bb90a5585405eade7 | /chrome/browser/notifications/notification_platform_bridge_win_metrics.cc | 57acdd0085227e0f1fb7ec1dca864ec93857a2fd | [
"BSD-3-Clause"
] | permissive | whycoding126/chromium | 19f6b44d0ec3e4f1b5ef61cc083cae587de3df73 | 9191e417b00328d59a7060fa6bbef061a3fe4ce4 | refs/heads/master | 2023-02-26T22:57:28.582142 | 2018-04-09T11:12:57 | 2018-04-09T11:12:57 | 128,760,157 | 1 | 0 | null | 2018-04-09T11:17:03 | 2018-04-09T11:17:03 | null | UTF-8 | C++ | false | false | 2,490 | cc | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/notifications/notification_platform_bridge_win_metrics.h"
#include "base/metrics/histogram_macros.h"
namespace notifications_uma {
void LogDisplayHistogram(DisplayStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.DisplayStatus", status,
DisplayStatus::COUNT);
}
void LogCloseHistogram(CloseStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.CloseStatus", status,
CloseStatus::COUNT);
}
void LogHistoryHistogram(HistoryStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.HistoryStatus", status,
HistoryStatus::COUNT);
}
void LogGetDisplayedStatus(GetDisplayedStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.GetDisplayedStatus", status,
GetDisplayedStatus::COUNT);
}
void LogGetDisplayedLaunchIdStatus(GetDisplayedLaunchIdStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.GetDisplayedLaunchIdStatus",
status, GetDisplayedLaunchIdStatus::COUNT);
}
void LogGetNotificationLaunchIdStatus(GetNotificationLaunchIdStatus status) {
UMA_HISTOGRAM_ENUMERATION(
"Notifications.Windows.GetNotificationLaunchIdStatus", status,
GetNotificationLaunchIdStatus::COUNT);
}
void LogHandleEventStatus(HandleEventStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.HandleEventStatus", status,
HandleEventStatus::COUNT);
}
void LogActivationStatus(ActivationStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.ActivationStatus", status,
ActivationStatus::COUNT);
}
void LogSetReadyCallbackStatus(SetReadyCallbackStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.SetReadyCallbackStatus",
status, SetReadyCallbackStatus::COUNT);
}
void LogOnDismissedStatus(OnDismissedStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.OnDismissedStatus", status,
OnDismissedStatus::COUNT);
}
void LogOnFailedStatus(OnFailedStatus status) {
UMA_HISTOGRAM_ENUMERATION("Notifications.Windows.OnFailedStatus", status,
OnFailedStatus::COUNT);
}
} // namespace notifications_uma
| [
"[email protected]"
] | |
5a5f659c1cdc57c91918c4410a87a6081b7d7798 | 807705dbaf382172b56b1fa49ec72a8b00ba7aff | /njli/graphics/SliderHUD.h | ac698133f7c4aa5c51db2adb4a5936e50fc1c6b0 | [] | no_license | njligames/njligames-njlic_engine | 6328a2a0e0c19d9739eca85b5a458854aac5c37b | 10b677477e79dbe4cbb6ffd744bf18b7bac0e290 | refs/heads/master | 2021-08-30T00:23:47.196828 | 2018-12-05T17:32:01 | 2018-12-05T17:32:01 | 128,859,807 | 1 | 0 | null | 2019-11-14T14:29:19 | 2018-04-10T02:11:52 | C++ | UTF-8 | C++ | false | false | 4,511 | h | //
// SliderHUD.h
// JLIGameEngineTest
//
// Created by James Folk on 2/13/15.
// Copyright (c) 2015 James Folk. All rights reserved.
//
#ifndef __JLIGameEngineTest__SliderHUD__
#define __JLIGameEngineTest__SliderHUD__
#include "AbstractBuilder.h"
#include "AbstractFactoryObject.h"
#include "AbstractFrameBufferObject.h"
#include "lua.hpp"
class btVector2;
class btVector4;
namespace njli
{
class SliderHUDBuilder;
/**
* <#Description#>
*/
ATTRIBUTE_ALIGNED16(class)
SliderHUD : public AbstractFactoryObject, public AbstractFrameBufferObject
{
friend class WorldFactory;
protected:
SliderHUD();
SliderHUD(const AbstractBuilder &);
SliderHUD(const SliderHUD &);
BT_DECLARE_ALIGNED_ALLOCATOR();
virtual ~SliderHUD();
SliderHUD &operator=(const SliderHUD &);
virtual void renderFunction(Camera * camera);
public:
using AbstractDecorator::setName;
using AbstractDecorator::getName;
using AbstractFactoryObject::create;
// using AbstractFactoryObject::clone;
using AbstractFactoryObject::getPointer;
using AbstractFactoryObject::getPointerValue;
using AbstractFactoryObject::serializeObject;
using AbstractFrameBufferObject::isHidden;
using AbstractFrameBufferObject::hide;
using AbstractFrameBufferObject::show;
/**
* <#Description#>
*
* @return <#return value description#>
*/
virtual s32 calculateSerializeBufferSize() const;
/**
* <#Description#>
*
* @param btSerializer <#btSerializer description#>
*/
virtual void serialize(void *, btSerializer *) const;
/**
* <#Description#>
*
* @return <#return value description#>
*/
virtual const char *getClassName() const;
/**
* <#Description#>
*
* @return <#return value description#>
*/
virtual s32 getType() const;
/**
* <#Description#>
*
* @return <#return value description#>
*/
operator std::string() const;
/**
* <#Description#>
*
* @param size <#size description#>
*
* @return <#return value description#>
*/
static SliderHUD **createArray(const u32 size);
/**
* <#Description#>
*
* @param array <#array description#>
*/
static void destroyArray(SliderHUD * *array, const u32 size = 0);
/**
* <#Description#>
*
* @return <#return value description#>
*/
static SliderHUD *create();
/**
* <#Description#>
*
* @param builder <#builder description#>
*
* @return <#return value description#>
*/
static SliderHUD *create(const SliderHUDBuilder &builder);
/**
* <#Description#>
*
* @param object <#object description#>
*
* @return <#return value description#>
*/
static SliderHUD *clone(const SliderHUD &object);
/**
* <#Description#>
*
* @param object <#object description#>
*
* @return <#return value description#>
*/
static SliderHUD *copy(const SliderHUD &object);
/**
* <#Description#>
*
* @param object <#object description#>
*/
static void destroy(SliderHUD * object);
/**
* <#Description#>
*
* @param object <#object description#>
* @param L <#L description#>
* @param stack_index <#stack_index description#>
*/
static void load(SliderHUD & object, lua_State * L, int stack_index);
/**
* <#Description#>
*
* @return <#return value description#>
*/
static u32 type();
public:
// TODO: fill in specific methods for SliderHUD
void setValue(f32 v);
f32 getValue() const;
protected:
private:
btVector2 *m_dimensions;
btVector2 *m_position;
f32 m_knobPos;
f32 m_slotHeight;
f32 m_slotRadius;
f32 m_slotFeather;
btVector4 *m_gradientStartColor;
btVector4 *m_gradientEndColor;
btVector4 *m_knobShadowGradientStartColor;
btVector4 *m_knobShadowGradientEndColor;
btVector4 *m_knobGradientStartColor;
btVector4 *m_knobGradientEndColor;
btVector4 *m_knobColor;
};
}
#endif /* defined(__JLIGameEngineTest__SliderHUD__) */
| [
"[email protected]"
] | |
3942fc4c59772a465798683714a1c67f9e12689d | 2d361696ad060b82065ee116685aa4bb93d0b701 | /src/objtools/import/id_resolver_canonical.cpp | 0fdf4dc30ae4c570a2c75ead75cf3d55f1bee03f | [
"LicenseRef-scancode-public-domain"
] | permissive | AaronNGray/GenomeWorkbench | 5151714257ce73bdfb57aec47ea3c02f941602e0 | 7156b83ec589e0de8f7b0a85699d2a657f3e1c47 | refs/heads/master | 2022-11-16T12:45:40.377330 | 2020-07-10T00:54:19 | 2020-07-10T00:54:19 | 278,501,064 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,256 | cpp | /* $Id: id_resolver_canonical.cpp 571255 2018-09-24 14:00:41Z ludwigf $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government have not placed any restriction on its use or reproduction.
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
* Author: Frank Ludwig
*
* File Description: Iterate through file names matching a given glob pattern
*
*/
#include <ncbi_pch.hpp>
#include <corelib/ncbifile.hpp>
#include <objects/seqloc/Seq_loc.hpp>
#include "id_resolver_canonical.hpp"
USING_NCBI_SCOPE;
USING_SCOPE(objects);
// ============================================================================
CIdResolverCanonical::CIdResolverCanonical(
bool allIdsAsLocal,
bool numericIdsAsLocal):
// ============================================================================
mAllIdsAsLocal(allIdsAsLocal),
mNumericIdsAsLocal(numericIdsAsLocal)
{
}
// ============================================================================
CIdResolverCanonical::~CIdResolverCanonical()
// ============================================================================
{
}
// ============================================================================
CRef<CSeq_id>
CIdResolverCanonical::operator() (
const string& rawId) const
// ============================================================================
{
CRef<CSeq_id> pResolvedId;
auto decoded = NStr::URLDecode(rawId, NStr::eUrlDec_Percent);
bool makeLocalId = mAllIdsAsLocal;
if (!makeLocalId) {
bool isNumeric = (rawId.find_first_not_of("1234567890") == string::npos);
if(isNumeric && mNumericIdsAsLocal) {
makeLocalId = true;
}
if (!makeLocalId && isNumeric &&
NStr::StringToInt(rawId) < NUMERIC_TO_LOCAL_LIMIT) {
makeLocalId = true;
}
}
if (makeLocalId) {
pResolvedId.Reset(new CSeq_id(CSeq_id::e_Local, rawId));
return pResolvedId;
}
try {
pResolvedId.Reset(new CSeq_id(rawId));
}
catch (CException&) {
}
if (!pResolvedId) {
pResolvedId.Reset(new CSeq_id(CSeq_id::e_Local, rawId));
}
return pResolvedId;
}
| [
"[email protected]"
] | |
42784652d1c9d3ed8a87cc873920123cf3eb499f | ae211372456396321d6e025caf356f00136aef44 | /src/main/common/common/util/hash_util.cpp | cd52008181632226b9d6535de0e22585f92a74c9 | [
"Apache-2.0"
] | permissive | charleswu52/orchid-fst | 129027a0914a63518d1ead2a66b67331b9489bda | ff5096d4c5c4db81c53dbf583258d03342a4b579 | refs/heads/master | 2023-05-01T11:46:13.677445 | 2021-05-19T17:35:36 | 2021-05-19T17:35:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,601 | cpp | /*********************************************************************************
*Copyright(C),[email protected]
*All rights reserved.
*
*FileName: hash_util.cpp
*Author: [email protected]
*Version: 1.0
*Date: 4/27/21
*Description: file implements hash function and other method on hash
**********************************************************************************/
#include "common/util/hash_util.h"
#include "common/util/string_util.h"
STD_USE_NAMESPACE;
COMMON_BEGIN_NAMESPACE
uint32_t DBHashImpl::HashStringWithLen(const char* str, uint32_t dwHashType, uint32_t len)
{
uint32_t vChar;
uint8_t* ch = (uint8_t*)str;
uint32_t seed1 = 0x7FED7FED, seed2 = 0xEEEEEEEE;
for(uint32_t i=0; i<len; i++)
{
vChar = *ch++;
seed1 = DB_CRYPT_TABLE[(dwHashType << 8) + vChar] ^ (seed1 + seed2);
seed2 = vChar + seed1 + seed2 + (seed2 << 5) + 3;
}
return seed1;
}
uint32_t DBHashImpl::HashString(const char* str, uint32_t dwHashType)
{
uint32_t vChar;
uint8_t* ch = (uint8_t*)str;
uint32_t seed1 = 0x7FED7FED, seed2 = 0xEEEEEEEE;
while (*ch != 0) {
vChar = *ch++;
seed1 = DB_CRYPT_TABLE[(dwHashType << 8) + vChar] ^ (seed1 + seed2);
seed2 = vChar + seed1 + seed2 + (seed2 << 5) + 3;
}
return seed1;
}
uint32_t DBHashImpl::HashString(const char* str, size_t len, uint32_t dwHashType)
{
uint32_t vChar;
uint8_t* ch = (uint8_t*)str;
uint32_t seed1 = 0x7FED7FED, seed2 = 0xEEEEEEEE;
for (size_t i = 0; i < len; ++i) {
vChar = *ch++;
seed1 = DB_CRYPT_TABLE[(dwHashType << 8) + vChar] ^ (seed1 + seed2);
seed2 = vChar + seed1 + seed2 + (seed2 << 5) + 3;
}
return seed1;
}
uint64_t DBHashImpl::HashString64WithLen(const char* str, uint32_t len)
{
uint64_t h = HashStringWithLen(str, 0, len);
h <<= 32;
h |= HashStringWithLen(str, 1, len);
return h;
}
uint64_t DBHashImpl::HashString64(const char* str)
{
uint64_t h = HashString(str, 0);
h <<= 32;
h |= HashString(str, 1);
return h;
}
uint64_t DBHashImpl::HashString64(const char* str, size_t len)
{
uint64_t h = HashString(str, len, 0);
h <<= 32;
h |= HashString(str, len, 1);
return h;
}
uint64_t DBHashImpl::HashNumber64(int32_t number) {
uint64_t nHash;
if (number < 0) {
nHash = (uint64_t)(-number);
nHash = ~nHash & 0x7FFFFFFFFFFFFFFFLL;
} else {
nHash = (uint64_t)number;
nHash |= 0x8000000000000000LL;
}
return nHash;
}
COMMON_END_NAMESPACE
| [
"[email protected]"
] | |
41d597d46c43409b13865a46156253ced58d1370 | b41922a16c796c512ba3907db3d13901c548d300 | /Eliminate-Virus/gameview.cpp | e70d24f2248d167600569871d1a18fc7d0ddd070 | [] | no_license | Ling-yunchi/Eliminate-Virus | 1fec03926d678ba53a9925406ed5f84403b7c99e | 32c92a1d83e420b01d9793d38704772488075289 | refs/heads/master | 2023-08-18T02:49:25.962774 | 2021-02-24T00:43:14 | 2021-02-24T00:43:14 | 413,229,639 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,337 | cpp | #include "gameview.h"
#include <QDebug>
#include "gameover.h"
using namespace std;
//地图存储
//#为不可破坏墙,&为可破坏墙,@为人物初始位置,*为怪物初始位置qwqq
char map1_1[17][17] =
{
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'},
{'#', '@', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', '&', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '&', '*', '#'},
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'}
};
char map1_2[17][17] =
{
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'},
{'#', '@', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', '&', '#', ' ', '#', '#', '#', ' ', '#', '#', '#', '#', '#', '#', '#', ' ', '#'},
{'#', '&', '#', ' ', '&', ' ', '#', ' ', ' ', '*', ' ', ' ', '#', ' ', ' ', ' ', '#'},
{'#', '#', '#', ' ', '#', ' ', '#', ' ', '#', '#', '#', '#', '#', '#', '#', ' ', '#'},
{'#', ' ', '&', '*', '&', ' ', '#', ' ', ' ', ' ', ' ', '#', ' ', ' ', ' ', '*', '#'},
{'#', ' ', '#', '#', '#', '#', '#', ' ', '#', '#', '#', '&', '#', '#', '#', ' ', '#'},
{'#', ' ', ' ', ' ', ' ', ' ', '#', ' ', '#', ' ', ' ', '*', ' ', ' ', '&', ' ', '#'},
{'#', '#', '#', '#', '#', ' ', '#', ' ', '#', ' ', '#', '#', '#', ' ', '#', ' ', '#'},
{'#', ' ', ' ', '*', ' ', ' ', '#', ' ', ' ', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', '#', ' ', '#', '#', '#', '#', '#', ' ', '#', ' ', '#', ' ', '#', '#', '#'},
{'#', ' ', '#', ' ', '&', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', ' ', ' ', '#'},
{'#', '#', '#', ' ', '#', ' ', '#', ' ', '#', '*', '#', ' ', '#', '#', '#', '#', '#'},
{'#', ' ', ' ', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', '#', ' ', '#', '#', '#', '&', '#', ' ', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', ' ', '#', ' ', ' ', ' ', '*', ' ', '&', ' ', ' ', ' ', '#', ' ', ' ', ' ', '#'},
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'}
};
char map1_3[17][17] =
{
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'},
{'#', '@', ' ', '&', '#', '#', '&', '*', '&', '&', ' ', ' ', '#', '#', '#', '#', '#'},
{'#', ' ', '&', '&', '#', ' ', ' ', '#', '#', '#', ' ', ' ', ' ', ' ', ' ', '#', '#'},
{'#', '#', '&', '#', ' ', ' ', '#', ' ', '#', ' ', '#', ' ', '#', '#', ' ', '#', '#'},
{'#', '#', '&', '&', '&', '&', '#', ' ', ' ', ' ', ' ', ' ', ' ', '#', ' ', '#', '#'},
{'#', '#', '#', '#', '#', ' ', '#', ' ', '#', '#', ' ', '#', ' ', '#', ' ', '#', '#'},
{'#', '#', ' ', ' ', ' ', '#', '*', '#', ' ', ' ', '#', '&', '&', '#', '#', '#', '#'},
{'#', ' ', '#', ' ', ' ', ' ', ' ', '#', '#', '#', '&', '#', ' ', ' ', '#', '&', '#'},
{'#', '&', '&', '&', ' ', '#', ' ', '#', '#', '#', ' ', ' ', ' ', '#', '#', ' ', '#'},
{'#', '&', '#', '#', '&', '#', '&', '#', '#', '#', '#', '&', '&', '&', '&', '&', '#'},
{'#', ' ', ' ', ' ', '*', ' ', ' ', ' ', '*', ' ', '#', '#', ' ', '#', ' ', ' ', '#'},
{'#', '&', '#', '&', '&', '#', '&', '#', '#', '&', '#', '#', '&', '#', '#', '&', '#'},
{'#', '&', '#', '#', ' ', '#', '&', '#', ' ', ' ', ' ', '#', '*', ' ', '#', ' ', '#'},
{'#', '&', '&', '#', ' ', '#', '*', ' ', ' ', '#', '&', ' ', ' ', ' ', '#', ' ', '#'},
{'#', '#', ' ', '*', ' ', ' ', ' ', '#', ' ', '#', '#', '#', ' ', ' ', '#', ' ', '#'},
{'#', '#', '#', '#', '&', '#', '#', '#', '&', '*', '&', '&', '#', '#', '#', '&', '#'},
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'}
};
char map1_4[17][17] =
{
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'},
{'#', '@', ' ', '&', '&', '&', '#', '#', ' ', ' ', ' ', ' ', ' ', '&', '&', '&', '#'},
{'#', ' ', ' ', ' ', '#', '#', '#', '#', '&', '&', '#', ' ', ' ', ' ', ' ', '&', '#'},
{'#', '&', '&', '#', '#', '&', '&', '&', ' ', ' ', ' ', '#', '#', ' ', ' ', '&', '#'},
{'#', '&', ' ', ' ', '*', ' ', '#', '#', '#', '#', '&', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', '#', '#', ' ', ' ', ' ', ' ', ' ', '&', '&', '&', '&', '#', '&', '&', '&', '#'},
{'#', '#', '#', '#', '#', '#', '#', '&', '#', '#', '#', ' ', ' ', ' ', ' ', '&', '#'},
{'#', '#', '#', '#', '#', ' ', ' ', ' ', ' ', '&', '&', '&', '#', '#', '&', '&', '#'},
{'#', '#', '#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '&', ' ', ' ', '&', '#', '#'},
{'#', '#', ' ', '*', ' ', ' ', '*', ' ', ' ', '&', '&', ' ', ' ', ' ', '&', '#', '#'},
{'#', '&', '&', '&', '#', '#', '&', '&', '&', ' ', ' ', ' ', ' ', '#', '#', '#', '#'},
{'#', ' ', ' ', '#', '#', '#', '&', '&', '#', '#', '#', ' ', ' ', ' ', '#', '#', '#'},
{'#', ' ', '*', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '&', '&', '#', '#'},
{'#', ' ', ' ', '#', '&', '#', '#', '&', ' ', ' ', ' ', '&', '#', ' ', ' ', ' ', '#'},
{'#', '&', '&', '&', '#', '#', '#', ' ', ' ', '#', '&', '#', ' ', ' ', ' ', '&', '#'},
{'#', '#', '#', '#', '*', ' ', ' ', ' ', ' ', '#', '#', '#', ' ', '*', ' ', '#', '#'},
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'}
};
char map1_5[17][17] =
{
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'},
{'#', '&', '#', '&', '#', '&', '#', '&', '#', ' ', '#', '&', '&', '#', '&', '&', '#'},
{'#', '*', '&', '&', '&', ' ', '*', '&', '&', '&', '&', '&', '&', '#', '#', '&', '#'},
{'#', '#', ' ', '#', ' ', '#', ' ', '#', '#', '#', '&', '#', '*', '#', '*', '&', '#'},
{'#', '#', ' ', '&', ' ', ' ', '&', ' ', '#', '&', '&', '&', ' ', ' ', ' ', '&', '#'},
{'#', '&', '&', '#', '&', '#', ' ', '&', ' ', ' ', '#', ' ', '#', '*', '#', '&', '#'},
{'#', '#', ' ', '&', ' ', ' ', ' ', '#', '#', '#', '*', '&', ' ', ' ', '#', '#', '#'},
{'#', ' ', '#', '#', '*', '#', '&', '#', '#', '&', ' ', '&', '#', '&', '&', '&', '#'},
{'#', '&', ' ', ' ', '&', '#', '&', '@', '&', '&', '#', '&', '&', '*', '#', '&', '#'},
{'#', '&', '&', '#', '&', '#', '*', '#', '&', '#', ' ', ' ', '#', '&', '#', '#', '#'},
{'#', '#', '&', ' ', '&', '&', '&', '#', '&', ' ', '&', '&', '#', '&', '&', '&', '#'},
{'#', '&', ' ', '#', ' ', ' ', '&', '*', '&', ' ', '#', ' ', '#', '*', ' ', '&', '#'},
{'#', '#', '&', ' ', '*', '#', ' ', '#', '#', '&', '#', '&', ' ', ' ', '#', '&', '#'},
{'#', '#', '&', '&', ' ', '#', '&', '&', '&', ' ', '*', ' ', '#', '&', '#', '#', '#'},
{'#', '&', '&', '&', '&', ' ', ' ', '#', '&', '#', ' ', '&', ' ', ' ', '#', ' ', '#'},
{'#', ' ', '*', ' ', '#', '#', '&', '&', '&', '#', '&', '&', '#', '&', '&', '&', '#'},
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'}
};
char map1_6[17][17] =
{
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'},
{'#', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '#'},
{'#', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '#'},
{'#', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '#'},
{'#', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '#'},
{'#', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '#'},
{'#', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '#'},
{'#', '*', '*', '*', '*', '*', '*', '&', '&', '&', '*', '*', '*', '*', '*', '*', '#'},
{'#', '*', '&', '*', '&', '*', '&', '&', '@', '&', '&', '*', '&', '*', '&', '*', '#'},
{'#', '*', '*', '*', '*', '*', '*', '&', '&', '&', '*', '*', '*', '*', '*', '*', '#'},
{'#', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '#'},
{'#', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '#'},
{'#', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '#'},
{'#', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '#'},
{'#', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '&', '*', '#'},
{'#', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '#'},
{'#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#'}
};
extern const int TIMELIMIT = 10000;
int cntTime = 0;//单位毫秒
GameView::GameView(QString level)
{
setFixedSize(1050, 850);
//qDebug() << this->size();
setWindowTitle("Eliminate-Virus");
setWindowIcon(QIcon("../src/icon.ico"));
setAutoFillBackground(true);
QPalette palette;
palette.setBrush(QPalette::Window, QBrush(QBrush(QPixmap("../src/bg.jpg").scaled(width(), height()))));
this->setPalette(palette);
setFocusPolicy(Qt::StrongFocus);
setFocus();
pausebtn = new QPushButton("暂停", this);
pausebtn->move(900, 800);
connect(pausebtn, &QPushButton::clicked, this, &GameView::pauseclick);
//painter = nullptr;
qDebug() << level;
Level = level;
setMapAndMusic(Level);
mciSendString(TEXT("open ../src/boooom.wav alias boom"), NULL, 0, NULL);
mciSendString(TEXT("play bgm from 0"), NULL, 0, NULL);
int cnt = 0;
for (int i = 0; i < 17; i++)
{
for (int j = 0; j < 17; j++)
{
if (map[i][j] == '@')
{
player.X = i * 50;
player.Y = j * 50;
}
if (map[i][j] == '*')
{
monsters.push_back(Monster(cnt, 1, i * 50, j * 50, randEx() % 5, randEx() % 15 + 6));
cnt++;
}
if(map[i][j] == '&')
{
dWalls.push_back(DestructibleWall(i * 50, j * 50));
}
}
}
timer = new QTimer;
connect(timer, &QTimer::timeout, this, &GameView::advance);
timer->start(20);
}
void GameView::setMapAndMusic(QString Level)
{
if(Level == QString("1-1"))
{
mciSendString(TEXT("open ../src/1-1.wav alias bgm"), NULL, 0, NULL);
for(int i = 0; i < 17; i++)
for(int j = 0; j < 17; j++)
map[i][j] = map1_1[i][j];
}
if(Level == QString("1-2"))
{
mciSendString(TEXT("open ../src/1-2.wav alias bgm"), NULL, 0, NULL);
for(int i = 0; i < 17; i++)
for(int j = 0; j < 17; j++)
map[i][j] = map1_2[i][j];
}
if(Level == QString("1-3"))
{
mciSendString(TEXT("open ../src/1-3.wav alias bgm"), NULL, 0, NULL);
for(int i = 0; i < 17; i++)
for(int j = 0; j < 17; j++)
map[i][j] = map1_3[i][j];
}
if(Level == QString("1-4"))
{
mciSendString(TEXT("open ../src/1-4.wav alias bgm"), NULL, 0, NULL);
for(int i = 0; i < 17; i++)
for(int j = 0; j < 17; j++)
map[i][j] = map1_4[i][j];
}
if(Level == QString("1-5"))
{
mciSendString(TEXT("open ../src/1-5.wav alias bgm"), NULL, 0, NULL);
for(int i = 0; i < 17; i++)
for(int j = 0; j < 17; j++)
map[i][j] = map1_5[i][j];
}
if(Level == QString("1-6"))
{
mciSendString(TEXT("open ../src/1-6.wav alias bgm"), NULL, 0, NULL);
for(int i = 0; i < 17; i++)
for(int j = 0; j < 17; j++)
map[i][j] = map1_6[i][j];
}
}
void GameView::advance()
{
cntTime += 10;
cntTime %= TIMELIMIT;//time上限为10秒
updataWithoutInput();
update();
if (monsters.empty())
win();
if (player.HP <= 0)
failure();
}
void GameView::paintEvent(QPaintEvent *event)
{
QPainter painter(this);
QFont font("Microsoft YaHei", 15, 75);
painter.setFont(font);
for (int i = 0; i < 17; i++)
{
for (int j = 0; j < 17; j++)
{
if (map[i][j] == '#')
painter.drawPixmap(i * 50, j * 50, 50, 50, QPixmap("../src/Indestructible-wall.png"));
}
}
for(auto it = dWalls.begin(); it != dWalls.end(); it++)
{
painter.drawPixmap(it->X, it->Y, 50, 50, QPixmap("../src/Destructible-wall.png"));
}
for (int i = 0; i < (int)booms.size(); i++)
{
if (booms[i].BoomTime == cntTime || (booms[i].DieTime && booms[i].DieTime <= 500))
{
int X = booms[i].X, Y = booms[i].Y;
painter.drawPixmap(X, Y, 50, 50, QPixmap("../src/Boooom.png"));
for (int j = 1; j <= booms[i].BoomPower; j++)
{
if (map[X / 50 + j][Y / 50] == '#')
break;
painter.drawPixmap(X + j * 50, Y, 50, 50, QPixmap("../src/Boooom.png"));
// gotoxy(X + j, Y);
// printf("^");
}
for (int j = 1; j <= booms[i].BoomPower; j++)
{
if (map[X / 50 - j][Y / 50] == '#')
break;
painter.drawPixmap(X - j * 50, Y, 50, 50, QPixmap("../src/Boooom.png"));
// gotoxy(X - j, Y);
// printf("^");
}
for (int j = 1; j <= booms[i].BoomPower; j++)
{
if (map[X / 50][Y / 50 + j] == '#')
break;
painter.drawPixmap(X, Y + j * 50, 50, 50, QPixmap("../src/Boooom.png"));
// gotoxy(X, Y + j);
// printf("^");
}
for (int j = 1; j <= booms[i].BoomPower; j++)
{
if (map[X / 50][Y / 50 - j] == '#')
break;
painter.drawPixmap(X, Y - j * 50, 50, 50, QPixmap("../src/Boooom.png"));
// gotoxy(X, Y - j);
// printf("^");
}
}
else
{
painter.drawPixmap(booms[i].X, booms[i].Y, 50, 50, QPixmap("../src/Boom.png"));
// gotoxy(booms[i].X, booms[i].Y);
// printf("&");
}
}
for(auto it = properties.begin(); it != properties.end(); it++)
{
if(it->effect == 1)
painter.drawPixmap(it->X, it->Y, 50, 50, QPixmap("../src/weili.png"));
if(it->effect == 2)
painter.drawPixmap(it->X, it->Y, 50, 50, QPixmap("../src/shu.png"));
}
painter.drawPixmap(player.X, player.Y, 50, 50, QPixmap("../src/me_1.png"));
for (auto it = monsters.begin(); it != monsters.end(); it++)
painter.drawPixmap(it->X, it->Y, 50, 50, QPixmap("../src/monster_1.png"));
char Text[30];
sprintf(Text, "HP: %d", player.HP);
painter.drawText(870, 50, Text);
int boomCnt = player.BoomNumMax - booms.size();
sprintf(Text, "可放置的炸弹数: %d", boomCnt);
painter.drawText(870, 100, Text);
sprintf(Text, "炸弹威力: %d", player.BoomPower);
painter.drawText(870, 150, Text);
painter.drawText(870, 200, "关卡:" + Level);
if(Level == "1-1")
{
painter.drawText(870, 250, "虽然我在开始界面");
painter.drawText(870, 300, "放了个帮助,但是");
painter.drawText(870, 350, "你根本没看对吧");
painter.drawText(870, 400, " ̄へ ̄");
painter.drawText(870, 450, "我大发慈悲再说一遍");
painter.drawText(870, 500, "上下左右控制方向");
painter.drawText(870, 550, "空格放炸弹,esc暂停");
painter.drawText(870, 600, "就酱( ̄﹃ ̄)");
}
else if(Level == "1-2")
{
painter.drawText(870, 250, "相信你已经学会了");
painter.drawText(870, 300, "正确的玩法");
painter.drawText(870, 350, "那么加油取得胜利吧!");
painter.drawText(870, 400, "(<ゝω·)诶嘿~☆");
}
else if(Level == "1-6")
{
painter.drawText(870, 250, "开 幕 雷 击");
painter.drawText(870, 300, "都说了前面是地狱了");
painter.drawText(870, 350, "那么加油取得胜利吧!");
painter.drawText(870, 400, "(<ゝω·)诶嘿~☆");
}
else
{
painter.drawText(860, 750, "(<ゝω·)诶嘿嘿~☆");
}
//painter.setp
// if (player.unbeatable)
// printf("unbeatable!");
// else
// printf(" ");
}
void GameView::keyPressEvent(QKeyEvent *event)
{
qDebug() << event->key();
qDebug() << player.forward;
if(player.forward == 0) //没方向才接受键盘操作
{
switch (event->key())
{
case Qt::Key_Up:
qDebug() << "up";
if (Clash(player.X / 50, player.Y / 50 - 1))
player.forward = 1;
break;
case Qt::Key_Down:
qDebug() << "down";
if (Clash(player.X / 50, player.Y / 50 + 1))
player.forward = 2;
break;
case Qt::Key_Left:
qDebug() << "left";
if (Clash(player.X / 50 - 1, player.Y / 50))
player.forward = 3;
break;
case Qt::Key_Right:
qDebug() << "right";
if (Clash(player.X / 50 + 1, player.Y / 50))
player.forward = 4;
break;
case Qt::Key_Space:
qDebug() << "boom";
if ((int)booms.size() < player.BoomNumMax)
player.SetBoom(booms, cntTime);
break;
case Qt::Key_Question:
for (auto it = monsters.begin(); it != monsters.end(); it++)
it->HP = 0;
break;
case Qt::Key_Escape:
pause();
break;
}
}
}
//void GameView::updataWithInpute(Player& player)
//{
// if (_kbhit())
// {
// int input = _getch();
// //printf("%d", input);
// switch (input)
// {
// case 47:
// win();
// exit(0);
// case 224:
// input = _getch();
// switch (input)
// {
// case 72:
// player.move(1);
// break;
// case 80:
// player.move(2);
// break;
// case 75:
// player.move(3);
// break;
// case 77:
// player.move(4);
// break;
// }
// break;
// case 32:
// if ((int)booms.size() < player.BoomNumMax)
// player.SetBoom(booms, cntTime);
// break;
// case 27:
// //gotoxy(0, 17);
// system("pause");
// break;
// }
// }
//}
void GameView::updataWithoutInput()
{
//炸弹的处理
for (int i = 0; i < (int)booms.size(); i++)
{
if (booms[i].BoomTime == cntTime || (booms[i].DieTime && booms[i].DieTime <= 500))
{
if(booms[i].DieTime == 0)
if(mciSendString(TEXT("play boom from 0"), NULL, 0, NULL))
qDebug() << "error";
for (int j = booms[i].X / 50; j <= booms[i].X / 50 + booms[i].BoomPower; j++)
{
if (map[j][booms[i].Y / 50] == '#')
break;
//if (player.X == j && player.Y == booms[i].Y)
if (knocked(player.X, player.Y, j * 50, booms[i].Y))
player.Hurt();
for (auto it = monsters.begin(); it != monsters.end(); it++)
//if (it->X == j && it->Y == booms[i].Y)
if(knocked(it->X, it->Y, j * 50, booms[i].Y))
it->HP--;
auto it = dWalls.begin();
while (it != dWalls.end())
{
if(knocked(it->X, it->Y, j * 50, booms[i].Y))
{
propertydrop(it->X, it->Y);
it = dWalls.erase(it);
}
else
it++;
}
}
for (int j = booms[i].X / 50; j >= booms[i].X / 50 - booms[i].BoomPower; j--)
{
if (map[j][booms[i].Y / 50] == '#')
break;
//if (player.X == j && player.Y == booms[i].Y)
if(knocked(player.X, player.Y, j * 50, booms[i].Y))
player.Hurt();
for (auto it = monsters.begin(); it != monsters.end(); it++)
//if (it->X == j && it->Y == booms[i].Y)
if(knocked(it->X, it->Y, j * 50, booms[i].Y))
it->HP--;
auto it = dWalls.begin();
while (it != dWalls.end())
{
if(knocked(it->X, it->Y, j * 50, booms[i].Y))
{
propertydrop(it->X, it->Y);
it = dWalls.erase(it);
}
else
it++;
}
}
for (int j = booms[i].Y / 50; j <= booms[i].Y / 50 + booms[i].BoomPower; j++)
{
if (map[booms[i].X / 50][j] == '#')
break;
//if (player.Y == j && player.X == booms[i].X)
if(knocked(player.X, player.Y, booms[i].X, j * 50))
player.Hurt();
for (auto it = monsters.begin(); it != monsters.end(); it++)
//if (it->Y == j && it->X == booms[i].X)
if(knocked(it->X, it->Y, booms[i].X, j * 50))
it->HP--;
auto it = dWalls.begin();
while (it != dWalls.end())
{
if(knocked(it->X, it->Y, booms[i].X, j * 50))
{
propertydrop(it->X, it->Y);
it = dWalls.erase(it);
}
else
it++;
}
}
for (int j = booms[i].Y / 50; j >= booms[i].Y / 50 - booms[i].BoomPower; j--)
{
if (map[booms[i].X / 50][j] == '#')
break;
//if (player.Y == j && player.X == booms[i].X)
if(knocked(player.X, player.Y, booms[i].X, j * 50))
player.Hurt();
for (auto it = monsters.begin(); it != monsters.end(); it++)
//if (it->Y == j && it->X == booms[i].X)
if(knocked(it->X, it->Y, booms[i].X, j * 50))
it->HP--;
auto it = dWalls.begin();
while (it != dWalls.end())
{
if(knocked(it->X, it->Y, booms[i].X, j * 50))
{
propertydrop(it->X, it->Y);
it = dWalls.erase(it);
}
else
it++;
}
}
booms[i].DieTime += 10;
}
if (booms[i].DieTime > 500)
{
booms.erase(booms.begin() + i);
}
}
//怪物的处理
auto it = monsters.begin();
while (it != monsters.end())
{
if (it->HP <= 0)
it = monsters.erase(it);
else
it++;
}
for (auto it = monsters.begin(); it != monsters.end(); it++)
{
if(it->movetimer == 0)
{
int forward = randEx() % 5;
switch (forward)
{
case 1:
if(MonsterClash(it->X / 50, it->Y / 50 - 1, it->num))
it->forward = forward;
break;
case 2:
if(MonsterClash(it->X / 50, it->Y / 50 + 1, it->num))
it->forward = forward;
break;
case 3:
if(MonsterClash(it->X / 50 - 1, it->Y / 50, it->num))
it->forward = forward;
break;
case 4:
if(MonsterClash(it->X / 50 + 1, it->Y / 50, it->num))
it->forward = forward;
break;
}
qDebug() << forward << " " << it->forward;
it->movetimer++;
}
else
{
if(it->movetimer <= 5)
{
switch (it->forward)
{
case 1:
it->move(1);
break;
case 2:
it->move(2);
break;
case 3:
it->move(3);
break;
case 4:
it->move(4);
break;
}
it->movetimer++;
}
else if(it->movetimer == 20)
{
it->movetimer = 0;
it->forward = 0;
}
else
it->movetimer++;
}
}
//道具的处理
for(auto it = properties.begin(); it != properties.end();)
{
bool e = false;
if(knocked(player.X, player.Y, it->X, it->Y))
{
switch (it->effect)
{
case 1:
player.BoomPower++;
it = properties.erase(it);
e = true;
break;
case 2:
player.BoomNumMax++;
it = properties.erase(it);
e = true;
break;
}
continue;
}
for (auto _it = monsters.begin(); _it != monsters.end(); _it++)
{
if(knocked(_it->X, _it->Y, it->X, it->Y))
{
it = properties.erase(it);
e = true;
break;
}
}
if(!e)
it++;
}
//玩家的处理
//移动
if(player.forward != 0) //如果有方向
{
if(player.movetimer < 5)
{
player.move(player.forward);
player.movetimer++;
}
else
{
player.forward = 0;
player.movetimer = 0;
}
}
//无敌时间
player.UnbeatableTimeFresh();
for (auto it = monsters.begin(); it != monsters.end(); it++)
{
if (knocked(player.X, player.Y, it->X, it->Y))
player.Hurt();
}
}
bool GameView::knocked(int x1, int y1, int x2, int y2)
{
int X = x1 - x2, Y = y1 - y2;
if(X * X + Y * Y < 2500)
return true;
else
return false;
}
void GameView::win()
{
// system("cls");
// printf(" __ ______ _ _ __ _______ _ _ _ \n");
// printf(" \\ \\ / / __ \\| | | | \\ \\ / /_ _| \\ | | | |\n");
// printf(" \\ \\_/ / | | | | | | \\ \\ /\\ / / | | | \\| | | |\n");
// printf(" \\ /| | | | | | | \\ \\/ \\/ / | | | . ` | | |\n");
// printf(" | | | |__| | |__| | \\ /\\ / _| |_| |\\ | |_|\n");
// printf(" |_| \\____/ \\____/ \\/ \\/ |_____|_| \\_| (_)\n");
// system("pause");
// //getchar();
timer->stop();
mciSendString(TEXT("stop bgm"), NULL, 0, NULL);
mciSendString(TEXT("close bgm"), NULL, 0, NULL);
disconnect(timer, &QTimer::timeout, this, &GameView::advance);
o = new gameover(true, Level);
o->show();
this->setAttribute(Qt::WA_DeleteOnClose, 1);
this->close();
}
void GameView::failure()
{
// system("cls");
// printf(" __ ______ _ _ ______ _____ _ ______ _____ _ \n");
// printf(" \\ \\ / / __ \\| | | | | ____/\\ |_ _| | | ____| __ \\ | |\n");
// printf(" \\ \\_/ / | | | | | | | |__ / \\ | | | | | |__ | | | | | |\n");
// printf(" \\ /| | | | | | | | __/ /\\ \\ | | | | | __| | | | | | |\n");
// printf(" | | | |__| | |__| | | | / ____ \\ _| |_| |____| |____| |__| | |_|\n");
// printf(" |_| \\____/ \\____/ |_|/_/ \\_\\_____|______|______|_____/ (_)\n");
// system("pause");
// exit(0);
timer->stop();
mciSendString(TEXT("stop bgm"), NULL, 0, NULL);
mciSendString(TEXT("close bgm"), NULL, 0, NULL);
disconnect(timer, &QTimer::timeout, this, &GameView::advance);
o = new gameover(false, Level);
o->show();
this->hide();
}
bool GameView::Clash(int X, int Y)
{
if (map[X][Y] == '#')
return false;
for (int i = 0; i < (int)booms.size(); i++)
if (X == booms[i].X && Y == booms[i].Y)
return false;
for(auto it = dWalls.begin(); it != dWalls.end(); it++)
if(it->X / 50 == X && it->Y / 50 == Y)
return false;
for(auto it = booms.begin(); it != booms.end(); it++)
if(it->X / 50 == X && it->Y / 50 == Y)
return false;
return true;
}
bool GameView::MonsterClash(int X, int Y, int num)
{
if (GameView::Clash(X, Y))
{
for (auto it = monsters.begin(); it != monsters.end(); it++)
{
if (it->num == num)
continue;
if (it->X == X && it->Y == Y)
return false;
}
return true;
}
else
return false;
}
void GameView::pause()
{
timer->stop();
mciSendString(TEXT("pause bgm"), NULL, 0, NULL);
QMessageBox:: StandardButton result = QMessageBox::question(this, "暂停", "是否继续游戏?", QMessageBox::Yes | QMessageBox::No);
switch (result)
{
case QMessageBox::Yes:
timer->start(20);
mciSendString(TEXT("resume bgm"), NULL, 0, NULL);
return;
case QMessageBox::No:
mciSendString(TEXT("stop bgm"), NULL, 0, NULL);
mciSendString(TEXT("close bgm"), NULL, 0, NULL);
Widget* a = new Widget();
a->show();
this->setAttribute(Qt::WA_DeleteOnClose, 1);
this->close();
break;
}
}
int GameView::randEx()
{
LARGE_INTEGER seed;
QueryPerformanceFrequency(&seed);
QueryPerformanceCounter(&seed);
srand(seed.QuadPart);
return rand();
}
//void GameView::startUp()
//{
// printf(" ______ _ _ _ _ __ ___ \n");
// printf(" | ____| (_) (_) | | \\ \\ / (_) \n");
// printf(" | |__ | |_ _ __ ___ _ _ __ __ _| |_ ___ \\ \\ / / _ _ __ _ _ ___ \n");
// printf(" | __| | | | '_ ` _ \\| | '_ \\ / _` | __/ _ \\ \\ \\/ / | | '__| | | / __|\n");
// printf(" | |____| | | | | | | | | | | | (_| | || __/ \\ / | | | | |_| \\__ \\\n");
// printf(" |______|_|_|_| |_| |_|_|_| |_|\\__,_|\\__\\___| \\/ |_|_| \\__,_|___/\n");
// printf(" Version 1.0\n");
// printf("上下左右控制,空格键放炸弹,esc暂停.\n杀死所有敌人后胜利,血量降为零失败qwqq\n");
// system("pause");
// system("cls");
//}
void GameView::pauseclick()
{
pause();
}
void GameView::propertydrop(int X, int Y)
{
int n = randEx() % 100;
if(n < 80)
return;
else if(n < 90)
properties.push_back(Property(X, Y, 1));
else
properties.push_back(Property(X, Y, 2));
}
| [
"[email protected]"
] | |
743be85d64ad51e43e3376288078d4fb8943482a | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/printscan/print/spooler/monitors/tcpmon/tcpmonui/cfgall.h | f98cca77d32646bec44ef683816e67bfb2e60711 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,007 | h | /*****************************************************************************
*
* $Workfile: CfgAll.h $
*
* Copyright (C) 1997 Hewlett-Packard Company.
* Copyright (c) 1997 Microsoft Corporation.
* All rights reserved.
*
* 11311 Chinden Blvd.
* Boise, Idaho 83714
*
*****************************************************************************
*
* $Log: /StdTcpMon2/TcpMonUI/CfgAll.h $
*
* 7 3/05/98 11:23a Dsnelson
* Removed redundant code.
*
* 5 10/03/97 10:56a Becky
* Removed OnHelp()
*
* 4 10/02/97 3:45p Becky
* Changed FT_MIN (Failure Timeout Minimum) from 5 minutes to 1 minute.
*
* 3 9/16/97 2:44p Becky
* Added OnOk() to actually set the data in the port monitor when the ok
* button is clicked.
*
* 2 9/09/97 4:35p Becky
* Updated to use the new Monitor UI data structure.
*
* 1 8/19/97 3:46p Becky
* Redesign of the Port Monitor UI.
*
*****************************************************************************/
#ifndef INC_ALLPORTS_PAGE_H
#define INC_ALLPORTS_PAGE_H
// Values for Failure Timeout
#define FT_MIN 1
#define FT_MAX 60
#define FT_PAGESIZE 10
// Includes:
//#include "UIMgr.h"
class CAllPortsPage
{
public:
CAllPortsPage();
BOOL OnInitDialog(HWND hDlg, WPARAM, LPARAM);
BOOL OnCommand(HWND hDlg, WPARAM wParam, LPARAM lParam);
void OnHscroll(HWND hDlg, WPARAM wParam, LPARAM lParam);
BOOL OnWMNotify(HWND hDlg, WPARAM wParam, LPARAM lParam);
protected:
void OnBnClicked(HWND hDlg, WPARAM wParam, LPARAM lParam);
void SetupTrackBar(HWND hDlg,
int iChildWindowID,
int iPositionCtrl,
int iRangeMin,
int iRangeMax,
long lPosition,
long lPageSize,
int iAssociatedDigitalReadout);
private:
CFG_PARAM_PACKAGE *m_pParams;
}; // class CAllPortsPage
#ifdef __cplusplus
extern "C"
{
#endif
// Property sheet page function
BOOL APIENTRY AllPortsPage(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
#ifdef __cplusplus
}
#endif
#endif // INC_ALLPORTS_PAGE_H
| [
"[email protected]"
] | |
6cd96205c59a54dc03fdd6487c61fdeb404b24fa | ab3445c9bf7d80805c13ce43a4890890bcc8a636 | /modules/module_recv/components/MyComponent_test.cpp | ba8c817cbfe70ab935985b2821da558082e73083 | [] | no_license | fox-wangguodong/eventbus_demo | 73ccfb9deb7e83e177fd5605844534d5398caae5 | 1a472de305ff5f0d36699aeee5feeac6d8acff7d | refs/heads/master | 2023-08-24T07:26:35.210758 | 2021-10-27T04:21:00 | 2021-10-27T04:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 931 | cpp | //
// Created by fox on 2021/10/21.
//
#include <gtest/gtest.h>
#include <memory>
#include "MyComponent.h"
class MyComponentTest : public ::testing::Test {
public:
static void SetUpTestCase() {
eventLoop = std::make_shared<muduo::net::EventLoop>();
myComponent = std::make_shared<MyComponent>(eventLoop);
}
static void TearDownTestCase() {
}
static std::shared_ptr<muduo::net::EventLoop> eventLoop;
static std::shared_ptr<MyComponent> myComponent;
protected:
void SetUp() override {
}
void TearDown() override {
}
};
std::shared_ptr<muduo::net::EventLoop> MyComponentTest::eventLoop;
std::shared_ptr<MyComponent> MyComponentTest::myComponent;
TEST_F(MyComponentTest, test1){
EXPECT_EQ(myComponent->add(1, 2),3);
ASSERT_EQ(myComponent->sum,3);
}
TEST_F(MyComponentTest, test2){
EXPECT_EQ(myComponent->add(1, 3),4);
ASSERT_EQ(myComponent->sum,7);
}
| [
"[email protected]"
] | |
715cd02b317993407526145785938c8d9364f597 | a06a9ae73af6690fabb1f7ec99298018dd549bb7 | /_Library/_Include/boost/preprocessor/comparison/equal.hpp | a0181ed7e561802e257c1d301f1767204d0985aa | [] | no_license | longstl/mus12 | f76de65cca55e675392eac162dcc961531980f9f | 9e1be111f505ac23695f7675fb9cefbd6fa876e9 | refs/heads/master | 2021-05-18T08:20:40.821655 | 2020-03-29T17:38:13 | 2020-03-29T17:38:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,190 | hpp | # /* Copyright (C) 2001
# * Housemarque Oy
# * http://www.housemarque.com
# *
# * Distributed under the Boost Software License, Version 1.0. (See
# * accompanying file LICENSE_1_0.txt or copy at
# * http://www.boost.org/LICENSE_1_0.txt)
# */
#
# /* Revised by Paul Mensonides (2002) */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_COMPARISON_EQUAL_HPP
# define BOOST_PREPROCESSOR_COMPARISON_EQUAL_HPP
#
# include <boost/preprocessor/comparison/not_equal.hpp>
# include <boost/preprocessor/config/config.hpp>
# include <boost/preprocessor/logical/compl.hpp>
#
# /* BOOST_PP_EQUAL */
#
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
# define BOOST_PP_EQUAL(x, y) BOOST_PP_COMPL(BOOST_PP_NOT_EQUAL(x, y))
# else
# define BOOST_PP_EQUAL(x, y) BOOST_PP_EQUAL_I(x, y)
# define BOOST_PP_EQUAL_I(x, y) BOOST_PP_COMPL(BOOST_PP_NOT_EQUAL(x, y))
# endif
#
# /* BOOST_PP_EQUAL_D */
#
# define BOOST_PP_EQUAL_D(d, x, y) BOOST_PP_EQUAL(x, y)
#
# endif
/////////////////////////////////////////////////
// vnDev.Games - Trong.LIVE - DAO VAN TRONG //
////////////////////////////////////////////////////////////////////////////////
| [
"[email protected]"
] | |
15ac7bcabb2383b1eddd303e3229ae3b1b5b0ec2 | 2d2c10ffa7aa5ee35393371e7f8c13b4fab94446 | /projects/feed/rank/src/ops/time.cc | e1ca50886895492169678bb40ef7e968065bb163 | [] | no_license | faker2081/pikachu2 | bec83750a5ff3c7b5a26662000517df0f608c1c1 | 4f06d47c7bf79eb4e5a22648e088b3296dad3b2d | refs/heads/main | 2023-09-02T00:28:41.723277 | 2021-11-17T11:15:44 | 2021-11-17T11:15:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,814 | cc | #include "tensorflow/core/framework/op.h"
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/shape_inference.h"
#include <ctime>
#include <iostream>
#include <boost/date_time/gregorian/gregorian.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/local_time_adjustor.hpp>
#include <boost/date_time/c_local_time_adjustor.hpp>
using namespace tensorflow;
using std::vector;
REGISTER_OP("Time")
.Attr("time_bins_per_hour: int = 6")
.Input("stamp: int64")
.Output("z: int64")
.SetIsCommutative()
.SetShapeFn([](::tensorflow::shape_inference::InferenceContext* c) {
c->set_output(0, c->input(0));
return Status::OK();
})
.Doc(R"doc(
Given timestamps output it's buckets value
)doc");
typedef long long int64;
class TimeOp : public OpKernel {
public:
explicit TimeOp(OpKernelConstruction* context) : OpKernel(context) {
OP_REQUIRES_OK(context,
context->GetAttr("time_bins_per_hour", &time_bins_per_hour_));
}
void Compute(OpKernelContext* context) override {
const Tensor& input_tensor = context->input(0);
auto timestamps = input_tensor.flat<int64>();
Tensor* output = NULL;
OP_REQUIRES_OK(context,
context->allocate_output(0, input_tensor.shape(), &output));
auto output_flat = output->template flat<int64>();
for (size_t i = 0; i < timestamps.size(); i++)
{
int64 timestamp = timestamps(i);
int64 val = 0;
if (timestamp > 0)
{
boost::posix_time::ptime pt = boost::posix_time::from_time_t(timestamp);
typedef boost::date_time::c_local_adjustor<boost::posix_time::ptime> local_adj;
pt = local_adj::utc_to_local(pt);
tm t = to_tm(pt);
int span = int(60 / time_bins_per_hour_);
val = int64(t.tm_hour * time_bins_per_hour_ + int(t.tm_min / span) + 1);
}
output_flat(i) = int64(val + 1);
}
}
private:
int time_bins_per_hour_ = 6;
};
REGISTER_OP("Weekday")
.Input("stamp: int64")
.Output("z: int64")
.SetIsCommutative()
.SetShapeFn([](::tensorflow::shape_inference::InferenceContext* c) {
c->set_output(0, c->input(0));
return Status::OK();
})
.Doc(R"doc(
Given timestamps output weekday (+2)
)doc");
class WeekdayOp : public OpKernel {
public:
explicit WeekdayOp(OpKernelConstruction* context) : OpKernel(context) {}
void Compute(OpKernelContext* context) override {
const Tensor& input_tensor = context->input(0);
auto timestamps = input_tensor.flat<int64>();
Tensor* output = NULL;
OP_REQUIRES_OK(context,
context->allocate_output(0, input_tensor.shape(), &output));
auto output_flat = output->template flat<int64>();
for (size_t i = 0; i < timestamps.size(); i++)
{
int64 timestamp = timestamps(i);
int64 val = 0;
if (timestamp > 0)
{
boost::posix_time::ptime pt = boost::posix_time::from_time_t(timestamp);
typedef boost::date_time::c_local_adjustor<boost::posix_time::ptime> local_adj;
pt = local_adj::utc_to_local(pt);
val = int64(pt.date().day_of_week() + 1);
}
output_flat(i) = int64(val + 1);
}
}
};
REGISTER_OP("Timespan")
.Input("impress: int64")
.Input("pagetime: int64")
.Output("z: int64")
.SetIsCommutative()
.SetShapeFn([](::tensorflow::shape_inference::InferenceContext* c) {
c->set_output(0, c->input(0));
return Status::OK();
})
.Doc(R"doc(
Given timestamps output weekday (+2)
)doc");
class TimespanOp : public OpKernel {
public:
explicit TimespanOp(OpKernelConstruction* context) : OpKernel(context) {}
void Compute(OpKernelContext* context) override {
const Tensor& input_tensor = context->input(0);
const Tensor& input_tensor2 = context->input(1);
auto impress = input_tensor.flat<int64>();
auto pt = input_tensor2.flat<int64>();
Tensor* output = NULL;
OP_REQUIRES_OK(context,
context->allocate_output(0, input_tensor.shape(), &output));
auto output_flat = output->template flat<int64>();
for (size_t i = 0; i < impress.size(); i++)
{
int64 a = impress(i);
int64 b = pt(i);
int64 val = 0;
if (a > 0 && b > 0 && a > b)
{
val = int(std::log2(a - b) * 5) + 1;
if (val > 200)
{
val = 200;
}
}
output_flat(i) = int64(val + 1);
}
}
};
REGISTER_KERNEL_BUILDER(Name("Time").Device(DEVICE_CPU), TimeOp);
REGISTER_KERNEL_BUILDER(Name("Weekday").Device(DEVICE_CPU), WeekdayOp);
REGISTER_KERNEL_BUILDER(Name("Timespan").Device(DEVICE_CPU), TimespanOp);
| [
"[email protected]"
] | |
115fdc348441bfad9657935b268a961b97faa004 | 13b66ce5ef1e972369c3c57871bf8290788f2977 | /detail/TunnelCallbackDescription.h | 57e65744e023b1d7ae633ea83a323ad3b10267c9 | [
"MIT"
] | permissive | tpietzsch/cohear | 550764b1a4ad73ddb20164e469b69636f5cfb111 | f81138d859e658cf291f51936aef5ab0325bcfbb | refs/heads/master | 2021-01-14T08:47:09.063492 | 2015-09-25T18:59:03 | 2015-09-25T18:59:03 | 43,169,903 | 0 | 0 | null | 2015-09-25T19:00:02 | 2015-09-25T19:00:02 | null | UTF-8 | C++ | false | false | 956 | h | #ifndef COHEAR_TUNNEL_CALLBACK_DESCRIPTION_H__
#define COHEAR_TUNNEL_CALLBACK_DESCRIPTION_H__
#include <cohear/CallbackDescription.h>
#include "TunnelSlot.h"
namespace chr {
namespace detail {
template <typename SignalType>
class TunnelCallbackDescription : public CallbackDescription {
public:
TunnelCallbackDescription(TunnelSlot* slot) :
CallbackDescription(
typeid(SignalType),
typeid(*this),
slot),
_slot(slot) {
// the more specific a signal, the higher the precedence of the callback
setPrecedence(SignalTraits<SignalType>::specificity);
}
void* notifySlotConnect(detail::SlotBase* const slot) override final {
_slot->addSlot(slot);
return 0;
}
void notifySlotDisconnect(detail::SlotBase* const slot) override final {
_slot->removeSlot(slot);
}
private:
// the slot to forward signals to
TunnelSlot* _slot;
};
} // namespace detail
} // namespace chr
#endif // COHEAR_TUNNEL_CALLBACK_DESCRIPTION_H__
| [
"[email protected]"
] | |
27d70a53e24150b7e8d57ec5c4eee27a09992984 | 88ae8695987ada722184307301e221e1ba3cc2fa | /chrome/browser/ash/arc/accessibility/arc_accessibility_helper_bridge.h | 04738a97741bf0a1fed763a3970f6a2485d798d0 | [
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 6,222 | h | // Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ASH_ARC_ACCESSIBILITY_ARC_ACCESSIBILITY_HELPER_BRIDGE_H_
#define CHROME_BROWSER_ASH_ARC_ACCESSIBILITY_ARC_ACCESSIBILITY_HELPER_BRIDGE_H_
#include <map>
#include <memory>
#include <set>
#include <string>
#include <tuple>
#include "ash/components/arc/mojom/accessibility_helper.mojom-forward.h"
#include "ash/components/arc/session/connection_observer.h"
#include "ash/public/cpp/external_arc/message_center/arc_notification_surface_manager.h"
#include "base/callback_list.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ash/accessibility/accessibility_manager.h"
#include "chrome/browser/ash/arc/accessibility/accessibility_helper_instance_remote_proxy.h"
#include "chrome/browser/ash/arc/accessibility/arc_accessibility_tree_tracker.h"
#include "chrome/browser/ash/arc/accessibility/ax_tree_source_arc.h"
#include "components/keyed_service/core/keyed_service.h"
class PrefService;
class Profile;
namespace content {
class BrowserContext;
} // namespace content
namespace extensions {
class EventRouter;
}
namespace gfx {
class Rect;
} // namespace gfx
namespace arc {
class AXTreeSourceArc;
class ArcBridgeService;
arc::mojom::CaptionStylePtr GetCaptionStyleFromPrefs(PrefService* prefs);
// ArcAccessibilityHelperBridge is an instance to receive converted Android
// accessibility events and info via mojo interface and dispatch them to Chrome
// OS components.
class ArcAccessibilityHelperBridge
: public KeyedService,
public mojom::AccessibilityHelperHost,
public ConnectionObserver<mojom::AccessibilityHelperInstance>,
public AXTreeSourceArc::Delegate,
public ash::ArcNotificationSurfaceManager::Observer,
public extensions::AutomationEventRouterObserver {
public:
// Builds the ArcAccessibilityHelperBridgeFactory.
static void CreateFactory();
// Returns singleton instance for the given BrowserContext,
// or nullptr if the browser |context| is not allowed to use ARC.
static ArcAccessibilityHelperBridge* GetForBrowserContext(
content::BrowserContext* context);
ArcAccessibilityHelperBridge(content::BrowserContext* browser_context,
ArcBridgeService* arc_bridge_service);
ArcAccessibilityHelperBridge(const ArcAccessibilityHelperBridge&) = delete;
ArcAccessibilityHelperBridge& operator=(const ArcAccessibilityHelperBridge&) =
delete;
~ArcAccessibilityHelperBridge() override;
// Sets ChromeVox or TalkBack active for the current task.
void SetNativeChromeVoxArcSupport(bool enabled,
SetNativeChromeVoxCallback callback);
// Request Android to send the entire tree with the tree id. Returns true if
// the specified tree is an ARC tree and a request was sent.
bool EnableTree(const ui::AXTreeID& tree_id);
// KeyedService overrides.
void Shutdown() override;
// ConnectionObserver<mojom::AccessibilityHelperInstance> overrides.
void OnConnectionReady() override;
// mojom::AccessibilityHelperHost overrides.
void OnAccessibilityEvent(
mojom::AccessibilityEventDataPtr event_data) override;
void OnNotificationStateChanged(
const std::string& notification_key,
mojom::AccessibilityNotificationStateType state) override;
void OnToggleNativeChromeVoxArcSupport(bool enabled) override;
// AXTreeSourceArc::Delegate overrides.
void OnAction(const ui::AXActionData& data) const override;
bool UseFullFocusMode() const override;
// ArcNotificationSurfaceManager::Observer overrides.
// TODO(hirokisato): Remove this method once refactoring finishes.
// This exists only to do refactoring without large test change.
void OnNotificationSurfaceAdded(
ash::ArcNotificationSurface* surface) override;
void OnNotificationSurfaceRemoved(
ash::ArcNotificationSurface* surface) override {}
// AutomationEventRouterObserver overrides.
void AllAutomationExtensionsGone() override;
void ExtensionListenerAdded() override;
const ArcAccessibilityTreeTracker::TreeMap& trees_for_test() const {
return tree_tracker_.trees_for_test();
}
static void EnsureFactoryBuilt();
private:
// virtual for testing.
virtual extensions::EventRouter* GetEventRouter() const;
virtual arc::mojom::AccessibilityFilterType GetFilterType();
std::unique_ptr<PrefChangeRegistrar> pref_change_registrar_;
void UpdateCaptionSettings() const;
void OnActionResult(const ui::AXActionData& data, bool result) const;
void OnGetTextLocationDataResult(
const ui::AXActionData& data,
const absl::optional<gfx::Rect>& result_rect) const;
void PopulateActionParameters(
const ui::AXActionData& chrome_data,
arc::mojom::AccessibilityActionData& action_data) const;
absl::optional<gfx::Rect> OnGetTextLocationDataResultInternal(
const ui::AXTreeID& ax_tree_id,
const absl::optional<gfx::Rect>& result_rect) const;
void OnAccessibilityStatusChanged(
const ash::AccessibilityStatusEventDetails& event_details);
void UpdateEnabledFeature();
void HandleFilterTypeFocusEvent(mojom::AccessibilityEventDataPtr event_data);
void HandleFilterTypeAllEvent(mojom::AccessibilityEventDataPtr event_data);
void DispatchEventTextAnnouncement(
mojom::AccessibilityEventData* event_data) const;
bool is_focus_event_enabled_ = false;
bool use_full_focus_mode_ = false;
const raw_ptr<Profile, ExperimentalAsh> profile_;
const raw_ptr<ArcBridgeService, ExperimentalAsh> arc_bridge_service_;
const AccessibilityHelperInstanceRemoteProxy accessibility_helper_instance_;
ArcAccessibilityTreeTracker tree_tracker_;
base::CallbackListSubscription accessibility_status_subscription_;
arc::mojom::AccessibilityFilterType filter_type_ =
arc::mojom::AccessibilityFilterType::OFF;
base::ScopedObservation<extensions::AutomationEventRouter,
extensions::AutomationEventRouterObserver>
automation_event_router_observer_{this};
};
} // namespace arc
#endif // CHROME_BROWSER_ASH_ARC_ACCESSIBILITY_ARC_ACCESSIBILITY_HELPER_BRIDGE_H_
| [
"[email protected]"
] | |
99afb65f01f19478dc6441c6640d4e829f16251d | 0943c592f9b2cb639c9c82333e595fac1a3222fc | /mePed_IR_Starter_Program.ino | 2fd22c3a57f7df73120dd646c660c11bb21ce1b4 | [] | no_license | spiercetech/mePed_IR_Starter_Program | e5d4c995aee4f0027221aaa39ca7b1a447a4b3e7 | d88531fc13121ab00f884d6ffb68a1046c1dc091 | refs/heads/master | 2020-12-02T19:39:26.181001 | 2017-07-06T00:32:25 | 2017-07-06T00:32:25 | 96,372,078 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 16,522 | ino | //==========================================================================================
//
// Program for controlling a mePed Robot using an IR Remote
//
// The mePed is an open source quadruped robot designed by Scott Pierce of
// Spierce Technologies (www.meped.io & www.spiercetech.com)
//
// This program is based on code written by Alexey Butov (www.alexeybutov.wix.com/roboset)
//
//==========================================================================================
#include <IRremote.h> // include IR Remote library
#include <Servo.h> // include servo library
//===== Globals ============================================================================
// Define USRF pins and variables
#define trigPin A3
#define echoPin A2
#define INCH 0
#define CM 1
// Define IR Remote Button Codes
#define irUp 16736925
#define irDown 16754775
#define irRight 16761405
#define irLeft 16720605
#define irOK 16712445
#define ir1 16738455
#define ir2 16750695
#define ir3 16756815
#define ir4 16724175
#define ir5 16718055
#define ir6 16743045
#define ir7 16716015
#define ir8 16726215
#define ir9 16734885
#define ir0 16730805
#define irStar 16728765
#define irPound 16732845
#define irRepeat 4294967295
// calibration
int da = -12, // Left Front Pivot
db = 10, // Left Back Pivot
dc = -18, // Right Back Pivot
dd = 12; // Right Front Pivot
// servo initial positions + calibration
int a90 = (90 + da),
a120 = (120 + da),
a150 = (150 + da),
a180 = (180 + da);
int b0 = (0 + db),
b30 = (30 + db),
b60 = (60 + db),
b90 = (90 + db);
int c90 = (90 + dc),
c120 = (120 + dc),
c150 = (150 + dc),
c180 = (180 + dc);
int d0 = (0 + dd),
d30 = (30 + dd),
d60 = (60 + dd),
d90 = (90 + dd);
// start points for servo
int s11 = 90; // Front Left Pivot Servo
int s12 = 90; // Front Left Lift Servo
int s21 = 90; // Back Left Pivot Servo
int s22 = 90; // Back Left Lift Servo
int s31 = 90; // Back Right Pivot Servo
int s32 = 90; // Back Right Lift Servo
int s41 = 90; // Front Right Pivot Servo
int s42 = 90; // Front Right Lift Servo
int f = 0;
int b = 0;
int l = 0;
int r = 0;
int spd = 3; // Speed of walking motion, larger the number, the slower the speed
int high = 0; // How high the robot is standing
// Define 8 Servos
Servo myServo1; // Front Left Pivot Servo
Servo myServo2; // Front Left Lift Servo
Servo myServo3; // Back Left Pivot Servo
Servo myServo4; // Back Left Lift Servo
Servo myServo5; // Back Right Pivot Servo
Servo myServo6; // Back Right Lift Servo
Servo myServo7; // Front Right Pivot Servo
Servo myServo8; // Front Right Lift Servo
// Set up IR Sensor
int irReceiver = 12; // Use pin D12 for IR Sensor
IRrecv irrecv(irReceiver); // create a new instance of the IR Receiver
decode_results results;
//==========================================================================================
//===== Setup ==============================================================================
void setup()
{
// Attach servos to Arduino Pins
myServo1.attach(2);
myServo2.attach(3);
myServo3.attach(4);
myServo4.attach(5);
myServo5.attach(6);
myServo6.attach(7);
myServo7.attach(8);
myServo8.attach(9);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
irrecv.enableIRIn(); //start the receiver
Serial.begin (9600);
}//setup
//==========================================================================================
//== Loop ==================================================================================
void loop()
{
unsigned long value;
unsigned long lastValue;
center_servos(); // Center all servos
high = 15; // Set hight to 15
spd = 3; // Set speed to 3
while (1 == 1) // Loop forever
{
if (irrecv.decode(&results)) // If we have received an IR signal
{
value = results.value;
if (value == irRepeat)
value = lastValue;
switch (value)
{
case irUp:
lastValue = irUp;
forward();
break;
case irDown:
lastValue = irDown;
back();
break;
case irRight:
lastValue = irRight;
turn_right();
break;
case irLeft:
lastValue = irLeft;
turn_left();
break;
case irOK:
lastValue = irOK;
break;
case ir1:
lastValue = ir1;
bow();
break;
case ir2:
lastValue = ir2;
wave();
break;
case ir3:
lastValue = ir3;
increase_speed();
break;
case ir4:
lastValue = ir4;
break;
case ir5:
lastValue = ir5;
break;
case ir6:
lastValue = ir6;
decrease_speed();
break;
case ir7:
lastValue = ir7;
break;
case ir8:
lastValue = ir8;
dance();
break;
case ir9:
lastValue = ir9;
break;
case ir0:
lastValue = ir0;
center_servos();
break;
case irStar:
lastValue = irStar;
trim_left();
break;
case irPound:
lastValue = irPound;
trim_right();
break;
default:
break;
}
irrecv.resume(); //next value
delay(50); // Pause for 50ms before executing next movement
}// if irrecv.decode
}//while
}//loop
void dance()
{
center_servos();
delay(100);
lean_left();
delay(300);
lean_right();
delay(300);
lean_left();
delay(300);
lean_right();
delay(300);
lean_left();
delay(300);
lean_right();
delay(300);
lean_left();
delay(300);
lean_right();
delay(800);
center_servos();
delay(300);
bow();
center_servos();
}
//== Wave ==================================================================================
void wave()
{
/*
myServo1 - Front Left Pivot Servo
myServo2 - Front Left Lift Servo
myServo3 - Back Left Pivot Servo
myServo4 - Back Left Lift Servo
myServo5 - Back Right Pivot Servo
myServo6 - Back Right Lift Servo
myServo7 - Front Right Pivot Servo
myServo8 - Front Right Lift Servo
*/
center_servos();
myServo4.write(45);
myServo6.write(45);
delay(200);
myServo8.write(0);
delay(200);
myServo7.write(180);
delay(200);
myServo7.write(30);
delay(300);
myServo7.write(180);
delay(300);
myServo7.write(30);
delay(300);
myServo7.write(s41);
delay(300);
myServo8.write(s42);
center_servos();
}
//== Bow ===================================================================================
void bow()
{
center_servos();
delay(200);
myServo2.write(15);
myServo8.write(15);
delay(700);
myServo2.write(90);
myServo8.write(90);
delay(700);
}
//== Lean_Left =============================================================================
void lean_left()
{
myServo2.write(15);
myServo4.write(15);
myServo6.write(150);
myServo8.write(150);
}
//== Lean_Right ============================================================================
void lean_right()
{
myServo2.write(150);
myServo4.write(150);
myServo6.write(15);
myServo8.write(15);
}
//== Lean_Left =============================================================================
void trim_left()
{
da--; // Left Front Pivot
db--; // Left Back Pivot
dc--; // Right Back Pivot
dd--; // Right Front Pivot
}
//== Lean_Right ============================================================================
void trim_right()
{
da++; // Left Front Pivot
db++; // Left Back Pivot
dc++; // Right Back Pivot
dd++; // Right Front Pivot
}
//== Forward ===============================================================================
void forward()
{
// calculation of points
// Left Front Pivot
a90 = (90 + da),
a120 = (120 + da),
a150 = (150 + da),
a180 = (180 + da);
// Left Back Pivot
b0 = (0 + db),
b30 = (30 + db),
b60 = (60 + db),
b90 = (90 + db);
// Right Back Pivot
c90 = (90 + dc),
c120 = (120 + dc),
c150 = (150 + dc),
c180 = (180 + dc);
// Right Front Pivot
d0 = (0 + dd),
d30 = (30 + dd),
d60 = (60 + dd),
d90 = (90 + dd);
// set servo positions and speeds needed to walk forward one step
// (LFP, LBP, RBP, RFP, LFL, LBL, RBL, RFL, S1, S2, S3, S4)
srv(a180, b0 , c120, d60, 42, 33, 33, 42, 1, 3, 1, 1);
srv( a90, b30, c90, d30, 6, 33, 33, 42, 3, 1, 1, 1);
srv( a90, b30, c90, d30, 42, 33, 33, 42, 3, 1, 1, 1);
srv(a120, b60, c180, d0, 42, 33, 6, 42, 1, 1, 3, 1);
srv(a120, b60, c180, d0, 42, 33, 33, 42, 1, 1, 3, 1);
srv(a150, b90, c150, d90, 42, 33, 33, 6, 1, 1, 1, 3);
srv(a150, b90, c150, d90, 42, 33, 33, 42, 1, 1, 1, 3);
srv(a180, b0, c120, d60, 42, 6, 33, 42, 1, 3, 1, 1);
//srv(a180, b0, c120, d60, 42, 15, 33, 42, 1, 3, 1, 1);
}
//== Back ==================================================================================
void back ()
{
// set servo positions and speeds needed to walk backward one step
// (LFP, LBP, RBP, RFP, LFL, LBL, RBL, RFL, S1, S2, S3, S4)
srv(180, 0, 120, 60, 42, 33, 33, 42, 3, 1, 1, 1);
srv(150, 90, 150, 90, 42, 18, 33, 42, 1, 3, 1, 1);
srv(150, 90, 150, 90, 42, 33, 33, 42, 1, 3, 1, 1);
srv(120, 60, 180, 0, 42, 33, 33, 6, 1, 1, 1, 3);
srv(120, 60, 180, 0, 42, 33, 33, 42, 1, 1, 1, 3);
srv(90, 30, 90, 30, 42, 33, 18, 42, 1, 1, 3, 1);
srv(90, 30, 90, 30, 42, 33, 33, 42, 1, 1, 3, 1);
srv(180, 0, 120, 60, 6, 33, 33, 42, 3, 1, 1, 1);
}
//== Left =================================================================================
void turn_left ()
{
// set servo positions and speeds needed to turn left one step
// (LFP, LBP, RBP, RFP, LFL, LBL, RBL, RFL, S1, S2, S3, S4)
srv(150, 90, 90, 30, 42, 6, 33, 42, 1, 3, 1, 1);
srv(150, 90, 90, 30, 42, 33, 33, 42, 1, 3, 1, 1);
srv(120, 60, 180, 0, 42, 33, 6, 42, 1, 1, 3, 1);
srv(120, 60, 180, 0, 42, 33, 33, 24, 1, 1, 3, 1);
srv(90, 30, 150, 90, 42, 33, 33, 6, 1, 1, 1, 3);
srv(90, 30, 150, 90, 42, 33, 33, 42, 1, 1, 1, 3);
srv(180, 0, 120, 60, 6, 33, 33, 42, 3, 1, 1, 1);
srv(180, 0, 120, 60, 42, 33, 33, 33, 3, 1, 1, 1);
}
//== Right ================================================================================
void turn_right ()
{
// set servo positions and speeds needed to turn right one step
// (LFP, LBP, RBP, RFP, LFL, LBL, RBL, RFL, S1, S2, S3, S4)
srv( 90, 30, 150, 90, 6, 33, 33, 42, 3, 1, 1, 1);
srv( 90, 30, 150, 90, 42, 33, 33, 42, 3, 1, 1, 1);
srv(120, 60, 180, 0, 42, 33, 33, 6, 1, 1, 1, 3);
srv(120, 60, 180, 0, 42, 33, 33, 42, 1, 1, 1, 3);
srv(150, 90, 90, 30, 42, 33, 6, 42, 1, 1, 3, 1);
srv(150, 90, 90, 30, 42, 33, 33, 42, 1, 1, 3, 1);
srv(180, 0, 120, 60, 42, 6, 33, 42, 1, 3, 1, 1);
srv(180, 0, 120, 60, 42, 33, 33, 42, 1, 3, 1, 1);
}
//== Center Servos ========================================================================
void center_servos()
{
myServo1.write(90);
myServo2.write(90);
myServo3.write(90);
myServo4.write(90);
myServo5.write(90);
myServo6.write(90);
myServo7.write(90);
myServo8.write(90);
int s11 = 90; // Front Left Pivot Servo
int s12 = 90; // Front Left Lift Servo
int s21 = 90; // Back Left Pivot Servo
int s22 = 90; // Back Left Lift Servo
int s31 = 90; // Back Right Pivot Servo
int s32 = 90; // Back Right Lift Servo
int s41 = 90; // Front Right Pivot Servo
int s42 = 90; // Front Right Lift Servo
}
//== Increase Speed ========================================================================
void increase_speed()
{
if (spd > 3)
spd--;
}
//== Decrease Speed ========================================================================
void decrease_speed()
{
if (spd < 50)
spd++;
}
//== Srv ===================================================================================
void srv( int p11, int p21, int p31, int p41, int p12, int p22, int p32, int p42, int sp1, int sp2, int sp3, int sp4)
{
// p11: Front Left Pivot Servo
// p21: Back Left Pivot Servo
// p31: Back Right Pivot Servo
// p41: Front Right Pivot Servo
// p12: Front Left Lift Servo
// p22: Back Left Lift Servo
// p32: Back Right Lift Servo
// p42: Front Right Lift Servo
// sp1: Speed 1
// sp2: Speed 2
// sp3: Speed 3
// sp4: Speed 4
// Multiply lift servo positions by manual height adjustment
p12 = p12 + high * 3;
p22 = p22 + high * 3;
p32 = p32 + high * 3;
p42 = p42 + high * 3;
while ((s11 != p11) || (s21 != p21) || (s31 != p31) || (s41 != p41) || (s12 != p12) || (s22 != p22) || (s32 != p32) || (s42 != p42))
{
// Front Left Pivot Servo
if (s11 < p11) // if servo position is less than programmed position
{
if ((s11 + sp1) <= p11)
s11 = s11 + sp1; // set servo position equal to servo position plus speed constant
else
s11 = p11;
}
if (s11 > p11) // if servo position is greater than programmed position
{
if ((s11 - sp1) >= p11)
s11 = s11 - sp1; // set servo position equal to servo position minus speed constant
else
s11 = p11;
}
// Back Left Pivot Servo
if (s21 < p21)
{
if ((s21 + sp2) <= p21)
s21 = s21 + sp2;
else
s21 = p21;
}
if (s21 > p21)
{
if ((s21 - sp2) >= p21)
s21 = s21 - sp2;
else
s21 = p21;
}
// Back Right Pivot Servo
if (s31 < p31)
{
if ((s31 + sp3) <= p31)
s31 = s31 + sp3;
else
s31 = p31;
}
if (s31 > p31)
{
if ((s31 - sp3) >= p31)
s31 = s31 - sp3;
else
s31 = p31;
}
// Front Right Pivot Servo
if (s41 < p41)
{
if ((s41 + sp4) <= p41)
s41 = s41 + sp4;
else
s41 = p41;
}
if (s41 > p41)
{
if ((s41 - sp4) >= p41)
s41 = s41 - sp4;
else
s41 = p41;
}
// Front Left Lift Servo
if (s12 < p12)
{
if ((s12 + sp1) <= p12)
s12 = s12 + sp1;
else
s12 = p12;
}
if (s12 > p12)
{
if ((s12 - sp1) >= p12)
s12 = s12 - sp1;
else
s12 = p12;
}
// Back Left Lift Servo
if (s22 < p22)
{
if ((s22 + sp2) <= p22)
s22 = s22 + sp2;
else
s22 = p22;
}
if (s22 > p22)
{
if ((s22 - sp2) >= p22)
s22 = s22 - sp2;
else
s22 = p22;
}
// Back Right Lift Servo
if (s32 < p32)
{
if ((s32 + sp3) <= p32)
s32 = s32 + sp3;
else
s32 = p32;
}
if (s32 > p32)
{
if ((s32 - sp3) >= p32)
s32 = s32 - sp3;
else
s32 = p32;
}
// Front Right Lift Servo
if (s42 < p42)
{
if ((s42 + sp4) <= p42)
s42 = s42 + sp4;
else
s42 = p42;
}
if (s42 > p42)
{
if ((s42 - sp4) >= p42)
s42 = s42 - sp4;
else
s42 = p42;
}
// Write Pivot Servo Values
myServo1.write(s11 + da);
myServo3.write(s21 + db);
myServo5.write(s31 + dc);
myServo7.write(s41 + dd);
// Write Lift Servos Values
myServo2.write(s12);
myServo4.write(s22);
myServo6.write(s32);
myServo8.write(s42);
delay(spd); // Delay before next movement
}//while
} //srv
//== USRF Function ========================================================================
long get_distance(bool unit)
{
// if unit == 0 return inches, else return cm
long duration = 0,
cm = 0,
inches = 0;
// The sensor is triggered by a HIGH pulse of 10 or more microseconds.
// Give a short LOW pulse beforehand to ensure a clean HIGH pulse:
digitalWrite(trigPin, LOW);
delayMicroseconds(5);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Read the signal from the sensor: a HIGH pulse whose
// duration is the time (in microseconds) from the sending
// of the ping to the reception of its echo off of an object.
pinMode(echoPin, INPUT);
duration = pulseIn(echoPin, HIGH);
// convert the time into a distance
cm = (duration / 2) / 29.1;
inches = (duration / 2) / 74;
if (unit == INCH)
return inches;
else
return cm;
}
| [
"[email protected]"
] | |
1d97578a12e26afc59554d9a32ca701118aae39d | 76fab0cf72e7a3771c9f1bb7481297c1210de5b6 | /src/unittest.cpp | b7b47be1819e304841bfd3e225e3276bf1246fde | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | cscYellow/ucxxrt | 9a2d9200e5655b74ef526e3ca8be92f1a5b6e446 | d72a1c02606475ac6c1528d7413efe9203009152 | refs/heads/master | 2023-08-28T02:05:11.530671 | 2021-11-09T07:31:53 | 2021-11-09T07:31:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,131 | cpp | #ifdef __KERNEL_MODE
#include <ntddk.h>
#include <wdm.h>
#else
#include <windows.h>
#include <assert.h>
#endif
#include <ucxxrt.h>
#include <string>
#include <random>
#include <vector>
#include <functional>
#include <unordered_map>
#include <stdexcept>
#ifdef _KERNEL_MODE
#define LOG(_0, _1, ...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, __VA_ARGS__)
#else
#define LOG(_0, _1, ...) printf(__VA_ARGS__)
#endif
static std::vector<std::function<void()>> TestVec;
#define TEST(f) TestVec.emplace_back(f)
#ifndef ASSERT
# define ASSERT assert
#endif
class Test$StaticObject
{
ULONG* _Data;
public:
Test$StaticObject()
: _Data(new ULONG[1]{ 1 })
{
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Static Object: " __FUNCTION__ "\n");
}
~Test$StaticObject()
{
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Static Object: " __FUNCTION__ "\n");
ASSERT(_Data[0] == 1);
delete[] _Data;
}
};
static Test$StaticObject _test;
void Test$Float2Int()
{
// On x86, call _ftoui/_ftoui2/_ftoui3
float f = 1.6f;
auto i = (uint32_t)f;
ASSERT(i == 1);
UNREFERENCED_PARAMETER(i);
}
void Test$ThrowInt()
{
try
{
try
{
try
{
throw 1;
}
catch (int& e)
{
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: %d\n", e);
}
}
catch (std::string& e)
{
ASSERT(false);
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: %s\n", e.c_str());
}
}
catch (...)
{
ASSERT(false);
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: ...\n");
}
}
void Test$ThrowObject()
{
try
{
try
{
try
{
throw std::string("123");
}
catch (int& e)
{
ASSERT(false);
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: %d\n", e);
}
}
catch (std::string& e)
{
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: %s\n", e.c_str());
}
}
catch (...)
{
ASSERT(false);
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: ...\n");
}
}
void Test$ThrowUnknow()
{
try
{
try
{
try
{
throw std::wstring();
}
catch (int& e)
{
ASSERT(false);
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: %d\n", e);
}
}
catch (std::string& e)
{
ASSERT(false);
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: %s\n", e.c_str());
}
}
catch (...)
{
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Catch Exception: ...\n");
}
}
void Test$HashMap()
{
auto Rand = std::mt19937_64(::rand());
auto Map = std::unordered_map<uint32_t, std::string>();
for (auto i = 0u; i < 10; ++i)
{
Map[i] = std::to_string(Rand());
}
for (const auto& Item : Map)
{
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL,
"map[%ld] = %s\n", Item.first, Item.second.c_str());
}
}
template<typename T>
class Test$InitializerListObject
{
using iterator = typename std::vector<T>::iterator;
using const_iterator = typename std::vector<T>::const_iterator;
using reverse_iterator = typename std::vector<T>::reverse_iterator;
using const_reverse_iterator = typename std::vector<T>::const_reverse_iterator;
std::vector<T> _vec;
public:
Test$InitializerListObject(std::initializer_list<T> x)
: _vec(x)
{}
[[nodiscard]] const_iterator begin() const noexcept {
return _vec.begin();
}
[[nodiscard]] iterator end() noexcept {
return _vec.end();
}
[[nodiscard]] const_iterator cbegin() const noexcept {
return _vec.cbegin();
}
[[nodiscard]] const_iterator cend() const noexcept {
return _vec.cend();
}
};
void Test$InitializerList()
{
auto v = Test$InitializerListObject{ 0, 1, 2, 3, 4 };
int x = 0;
for (const auto i : v)
{
ASSERT(i == x); ++x;
}
}
std::unordered_map<std::string, ULONG_PTR> Test$StaticObjectInitializer =
{
{ "1", 1 },
{ "2", 2 },
{ "3", 3 },
{ "4", 4 },
{ "5", 5 },
};
#ifdef _KERNEL_MODE
EXTERN_C NTSTATUS DriverMain(PDRIVER_OBJECT aDriverObject, PUNICODE_STRING /*aRegistry*/)
#else
EXTERN_C int main()
#endif
{
TEST(Test$Float2Int);
TEST(Test$ThrowInt);
TEST(Test$ThrowObject);
TEST(Test$ThrowUnknow);
TEST(Test$HashMap);
TEST(Test$InitializerList);
for (const auto& Test : TestVec)
{
Test();
}
#ifdef _KERNEL_MODE
aDriverObject->DriverUnload = [](PDRIVER_OBJECT)
{
LOG(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "Exit ucxxrt-test.\n");
};
#endif
return 0l;
}
| [
"[email protected]"
] | |
cf3a0f2911e0b286d1503a2ea8e01b8e375f306d | c4d10c36a92294ed86af54596fb6e329b85cff04 | /Cplusplus/AcWingQuestions/_0125/_0125_main.cpp | a2a1ffee11d9cf6eece033c05b074fabfd59aa5c | [] | no_license | ToLoveToFeel/AcWing | 4b7fd1202dda30d912a2243eafb622c064dfe051 | 48840a649e5ac50edb113533c931b9253d8ff6b2 | refs/heads/main | 2023-05-24T07:07:29.863481 | 2021-06-19T07:42:57 | 2021-06-19T07:42:57 | 323,311,511 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 577 | cpp | // Created by WXX on 2021/2/5 14:10
#include <iostream>
#include <algorithm>
#define x first
#define y second
using namespace std;
typedef pair<int, int> PII;
const int N = 50010;
int n;
PII a[N];
int main() {
scanf("%d", &n);
for (int i = 0; i < n; i++) {
int w, s;
scanf("%d%d", &w, &s);
a[i] = {w + s, w};
}
sort(a, a + n);
int res = -1e9;
for (int i = 0, sum = 0; i < n; i++) {
int w = a[i].y, s = a[i].x - w;
res = max(res, sum - s);
sum += w;
}
printf("%d\n", res);
return 0;
}
| [
"[email protected]"
] | |
0d3d03571beabbe954d706e62cac3ffe3c72f100 | f79dec3c4033ca3cbb55d8a51a748cc7b8b6fbab | /www/firefox31/patches/patch-js_src_frontend_BytecodeCompiler.cpp | 287dc5a9b68bc374574cb8f6ba4ca92b2e63f0e5 | [] | no_license | jsonn/pkgsrc | fb34c4a6a2d350e8e415f3c4955d4989fcd86881 | c1514b5f4a3726d90e30aa16b0c209adbc276d17 | refs/heads/trunk | 2021-01-24T09:10:01.038867 | 2017-07-07T15:49:43 | 2017-07-07T15:49:43 | 2,095,004 | 106 | 47 | null | 2016-09-19T09:26:01 | 2011-07-23T23:49:04 | Makefile | UTF-8 | C++ | false | false | 516 | cpp | $NetBSD: patch-js_src_frontend_BytecodeCompiler.cpp,v 1.3 2015/06/02 20:04:43 joerg Exp $
--- js/src/frontend/BytecodeCompiler.cpp.orig 2015-05-30 18:55:53.000000000 +0000
+++ js/src/frontend/BytecodeCompiler.cpp
@@ -544,7 +544,7 @@ CompileFunctionBody(JSContext* cx, Mutab
RootedScriptSource sourceObject(cx, CreateScriptSourceObject(cx, options));
if (!sourceObject)
- return nullptr;
+ return false;
ScriptSource* ss = sourceObject->source();
SourceCompressionTask sct(cx);
| [
"joerg"
] | joerg |
4d07cc81e90de0850467e58e2eac540d910a11c9 | 3b4d4e5174888428bc7eb4f802a3a84400aa3571 | /P5744.cpp | eb5239dc6aafbc6efc296b219d105ac47ee56e30 | [] | no_license | WilliamLi0623/LuoguSolutions | edfebcfb3d0c4367f5a9fdf4d886505efe002883 | 607b0fefc2fbaa5edc0acd5d164dea95a4302c3b | refs/heads/main | 2023-09-06T03:16:40.111364 | 2021-09-19T03:00:08 | 2021-09-19T03:00:08 | 408,017,074 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 689 | cpp | #include<cstdio>
#include<cstring>
#include<string>
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
struct
{
char name[100];
int age;
int score;
}info[1000];
int a,tmp;
int main()
{
scanf("%d",&a);
for(int i=0;i<a;i++)
{
scanf("%s %d %d",info[i].name,&info[i].age,&info[i].score);
}
for(int i=0;i<a;i++)
{
tmp=info[i].score;
if(tmp*120/100>=600)
{
info[i].score=600;
}
else
{
info[i].score=info[i].score*120/100;
}
printf("%s %d %d\n",info[i].name,info[i].age+1,info[i].score);
}
}
| [
"[email protected]"
] | |
aa1a383b16d3ef1fb3595dc1c9be3701c5c802bd | 4cd30f379494b1f1cc2727beb42fccd13b1afa13 | /Assignment 1/scene.cpp | 07bf0950e042e57dac282d29e24bf417a4fde1d6 | [] | no_license | benjamin-montagnes/CSE306_Computer_Graphics | 8214c9e8b21b93e80ad8997bffb05c62fe098d1d | d73f0b02b353949e5d7ce902b43f3f6158e489c4 | refs/heads/main | 2023-06-05T00:54:41.679816 | 2021-06-21T16:45:17 | 2021-06-21T16:45:17 | 365,894,976 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,565 | cpp | #include <iostream>
#include <vector>
#include <cmath>
#include <random>
#include "vector.cpp"
#include "ray.cpp"
static std::default_random_engine engine(10) ; // random seed = 10
static std::uniform_real_distribution<double> uniform(0, 1);
void boxMuller(double stdev , double &x, double &y) {
double r1 = uniform(engine);
double r2 = uniform(engine);
x = sqrt(-2. * log(r1))*cos(2.*M_PI*r2)*stdev;
y = sqrt(-2. * log(r1))*sin(2.*M_PI*r2)*stdev;
}
Vector random_cos(const Vector& N){
double r1 = uniform(engine);
double r2 = uniform(engine);
double x = cos(2*M_PI*r1) * sqrt(1-r2);
double y = sin(2*M_PI*r1) * sqrt(1-r2);
double z = sqrt(r2);
Vector T1;
double min_component = N[0];
double min_index = 0;
for (int i=1;i<3;i++){
if (N[i] < min_component){
min_component = N[i];
min_index = i;
}
}
if (min_index == 0){ T1 = Vector(0.,N[2],-N[1]); }
else if (min_index == 1){ T1 = Vector(N[2],0.,-N[0]); }
else { T1 = Vector(N[1],-N[0],0.); }
T1 = normalize(T1);
Vector T2 = cross(N,T1);
return (x*T1 + y*T2 + z*N).normalise();
}
//An array/std::vector of Spheres
class Scene {
public:
Vector cam;
Vector light_source;
std::vector<Geometry*> arrayG;
double n;
double light_intensity;
Scene(std::vector<Geometry*> arrayG, Vector cam, Vector light_source, double n, double light_intensity){
this->arrayG = arrayG;
this->cam = cam;
this->light_source = light_source;
this->n = n;
this->light_intensity = light_intensity;
}
// Computes the point of intersection between a Ray and the sphere, if any
Intersection intersection_spheres(Ray& ray){
double dist = std::numeric_limits<double>::max();
Intersection best;
best.intersect = false;
Geometry* geo_index;
for(std::vector<Geometry*>::iterator i = arrayG.begin(); i != arrayG.end(); ++i) {
geo_index = *i;
Intersection inter = geo_index->intersect(ray);
if (inter.intersect && inter.t < dist){
dist = inter.t;
best = inter;
}
}
return best;
}
double visibility(Ray& ray, double& d){
for (int i = 0; i < arrayG.size(); i++){
bool vi = arrayG[i]->checkvis(ray, d);
if(!vi){ return 0.; }
}
return 1.0;
}
Vector getColor(Ray& ray, const int& ray_depth){
if (ray_depth < 0.){ return Vector(0.,0.,0.); } // terminates recursion at some point
Intersection inter = this -> intersection_spheres(ray);
if (inter.intersect){
double e = 0.0001;
if (arrayG[inter.index]->transparent){
//handle refractive surfaces
double n1 = ray.n;
double n2;
Vector N;
if ( dot(ray.u,inter.N) > 0. ){
N = -inter.N;
n2 = this->n;
} else {
N = inter.N;
n2 = arrayG[inter.index]->n;
}
double k0 = (n1-n2)*(n1-n2) / ((n1+n2)*(n1+n2));
double u = (double) rand()/RAND_MAX ;
if (u < k0 + (1 - k0) * pow(1 - std::abs(dot(N,ray.u)), 5.)){ // reflect
Ray reflected_ray = Ray(inter.P+e*inter.N, ray.u - ( 2 * dot(ray.u,inter.N) * inter.N ), ray.n);
return getColor(reflected_ray, ray_depth-1);
}
double ratio = n1 / n2;
double dot_uN = dot(ray.u,N);
double x = 1 - ratio*ratio * (1 - dot_uN*dot_uN);
if ( x < 0. ){
Ray int_reflec_ray = Ray(inter.P+e*inter.N, ray.u - ( 2 * dot(ray.u,inter.N) * inter.N ), n2);
return getColor(int_reflec_ray, ray_depth-1);
} else {
Vector wT = ratio * (ray.u - dot(ray.u, N) * N);
Vector wN = - N * sqrt(x);
Vector w = wT + wN;
Ray refracted_ray = Ray(inter.P - e*N, w, n2);
return getColor(refracted_ray, ray_depth-1);
}
} else if (arrayG[inter.index]->mirror){
//handle mirror surfaces
Ray reflected_ray = Ray(inter.P+e*inter.N, ray.u - ( 2 * dot(ray.u,inter.N) * inter.N ), ray.n);
return getColor(reflected_ray, ray_depth-1);
} else {
// handle diffuse surfaces
double distance_light = (light_source - inter.P).norm();
Vector light_direction = (light_source - inter.P)/distance_light;
Ray direct_ray = Ray(inter.P + e*inter.N, light_direction, ray.n);
// add direct lighting
double visibility = this->visibility(direct_ray, distance_light); // computes the visibility term by launching a ray towards the light source
Vector Lo = light_intensity/(4.*M_PI*pow( distance_light , 2)) * inter.albedo/M_PI * visibility * std::max(dot(inter.N,light_direction),0.);
// add indirect lighting
Ray randomRay = Ray(inter.P + e*inter.N, random_cos(inter.N), ray.n); // randomly sample ray using random_cos
Lo += inter.albedo * getColor(randomRay, ray_depth-1);
return Lo;
}
} else { return Vector(0.,0.,0.); }
}
};
| [
"[email protected]"
] | |
58c1f0eeb97790f7b6abc74029d5a8c550af1cfa | bfafc1c4774df5e05b0b1b0ba1780aa6e4457945 | /arm-frc2019-linux-gnueabi/include/collada-dom2.5/1.4/dom/domLines.h | 483893181b90818686b285a4e55c65e3cae0ffdf | [
"BSD-2-Clause"
] | permissive | juchong/racecar_ws | 11b8c8c55509e004404881ff0c83acc9d2e0e613 | bf5b7a37e6d3d73fc1085b3d17779afe5ea3eba9 | refs/heads/master | 2020-06-20T17:47:50.302646 | 2019-10-01T20:53:07 | 2019-10-01T20:53:07 | 197,196,040 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,890 | h | /*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the MIT Open Source License, for details please see license.txt or the website
* http://www.opensource.org/licenses/mit-license.php
*
*/
#ifndef __dom141Lines_h__
#define __dom141Lines_h__
#include <dae/daeDocument.h>
#include <1.4/dom/domTypes.h>
#include <1.4/dom/domElements.h>
#include <1.4/dom/domP.h>
#include <1.4/dom/domExtra.h>
#include <1.4/dom/domInputLocalOffset.h>
class DAE;
namespace ColladaDOM141 {
/**
* The lines element provides the information needed to bind vertex attributes
* together and then organize those vertices into individual lines. Each
* line described by the mesh has two vertices. The first line is formed
* from first and second vertices. The second line is formed from the third
* and fourth vertices and so on.
*/
class domLines : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LINES; }
static daeInt ID() { return 618; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
/**
* The name attribute is the text string name of this element. Optional attribute.
*/
xsNCName attrName;
/**
* The count attribute indicates the number of line primitives. Required
* attribute.
*/
domUint attrCount;
/**
* The material attribute declares a symbol for a material. This symbol is
* bound to a material at the time of instantiation. If the material attribute
* is not specified then the lighting and shading results are application
* defined. Optional attribute.
*/
xsNCName attrMaterial;
protected: // Elements
/**
* The input element may occur any number of times. This input is a local
* input with the offset and set attributes. @see domInput
*/
domInputLocalOffset_Array elemInput_array;
/**
* The p element may occur once. @see domP
*/
domPRef elemP;
/**
* The extra element may appear any number of times. @see domExtra
*/
domExtra_Array elemExtra_array;
public: //Accessors and Mutators
/**
* Gets the name attribute.
* @return Returns a xsNCName of the name attribute.
*/
xsNCName getName() const { return attrName; }
/**
* Sets the name attribute.
* @param atName The new value for the name attribute.
*/
void setName( xsNCName atName ) { *(daeStringRef*)&attrName = atName; _validAttributeArray[0] = true; }
/**
* Gets the count attribute.
* @return Returns a domUint of the count attribute.
*/
domUint getCount() const { return attrCount; }
/**
* Sets the count attribute.
* @param atCount The new value for the count attribute.
*/
void setCount( domUint atCount ) { attrCount = atCount; _validAttributeArray[1] = true; }
/**
* Gets the material attribute.
* @return Returns a xsNCName of the material attribute.
*/
xsNCName getMaterial() const { return attrMaterial; }
/**
* Sets the material attribute.
* @param atMaterial The new value for the material attribute.
*/
void setMaterial( xsNCName atMaterial ) { *(daeStringRef*)&attrMaterial = atMaterial; _validAttributeArray[2] = true; }
/**
* Gets the input element array.
* @return Returns a reference to the array of input elements.
*/
domInputLocalOffset_Array &getInput_array() { return elemInput_array; }
/**
* Gets the input element array.
* @return Returns a constant reference to the array of input elements.
*/
const domInputLocalOffset_Array &getInput_array() const { return elemInput_array; }
/**
* Gets the p element.
* @return a daeSmartRef to the p element.
*/
const domPRef getP() const { return elemP; }
/**
* Gets the extra element array.
* @return Returns a reference to the array of extra elements.
*/
domExtra_Array &getExtra_array() { return elemExtra_array; }
/**
* Gets the extra element array.
* @return Returns a constant reference to the array of extra elements.
*/
const domExtra_Array &getExtra_array() const { return elemExtra_array; }
protected:
/**
* Constructor
*/
domLines(DAE& dae) : daeElement(dae), attrName(), attrCount(), attrMaterial(), elemInput_array(), elemP(), elemExtra_array() {}
/**
* Destructor
*/
virtual ~domLines() {}
/**
* Overloaded assignment operator
*/
virtual domLines &operator=( const domLines &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
} // ColladaDOM141
#endif
| [
"[email protected]"
] | |
0329eea0427b9f84578c38f119f6e541d3b97374 | 011ea6881985e84f0ad2c95c6b89f171936bd72f | /seminars/01/examples/peterson.cpp | 79d3e215291871c0cd3e701096c39f04b533a17c | [] | no_license | dbeliakov/mipt-algo-2016 | 73916296c01d2632cd0fd76dc6ba71d5662ed7ea | c24eab4c41596a284f8aa6dcf3270b2b54bc1db9 | refs/heads/master | 2021-03-24T12:11:23.216948 | 2019-01-09T11:13:05 | 2019-01-09T11:13:05 | 66,865,468 | 23 | 14 | null | 2016-12-16T18:44:17 | 2016-08-29T17:36:22 | JavaScript | UTF-8 | C++ | false | false | 935 | cpp | #include <iostream>
#include <thread>
#include <atomic>
#include <array>
class PetersonMutex
{
public:
PetersonMutex()
{
want_[0].store(false);
want_[1].store(false);
victim_.store(0);
}
void lock(int t)
{
want_[t].store(true);
victim_.store(t);
while (want_[1 - t].load() && victim_.load() == t) {
// wait
}
}
void unlock(int t) {
want_[t].store(false);
}
private:
std::array<std::atomic<bool>, 2> want_;
std::atomic<int> victim_;
};
void increment(int* x, PetersonMutex* m, int thread)
{
for (size_t i = 0; i < 10000; ++i) {
m->lock(thread);
++*x;
m->unlock(thread);
}
}
int main()
{
PetersonMutex m;
int x = 0;
std::thread t1(increment, &x, &m, 0);
std::thread t2(increment, &x, &m, 1);
t1.join();
t2.join();
std::cout << x << std::endl;
return 0;
}
| [
"[email protected]"
] | |
ca73252d29b2b17cff6d7096825bf4c1e6399e11 | 6c8c4728e608a4badd88de181910a294be56953a | /UiModule/Ether/View/Classical/TraditionalLoginWidget.h | f4cc621c460460ad6ab2c1a01ee82ca35d9c2374 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | caocao/naali | 29c544e121703221fe9c90b5c20b3480442875ef | 67c5aa85fa357f7aae9869215f840af4b0e58897 | refs/heads/master | 2021-01-21T00:25:27.447991 | 2010-03-22T15:04:19 | 2010-03-22T15:04:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,267 | h | // For conditions of distribution and use, see copyright notice in license.txt
#ifndef incl_UiModule_TraditionalLoginWidget_h
#define incl_UiModule_TraditionalLoginWidget_h
#include "ui_TraditionalLoginWidget.h"
#include <QTimer>
namespace CoreUi
{
namespace Classical
{
class TraditionalLoginWidget : public QWidget, private Ui::TraditionalLoginWidget
{
Q_OBJECT
public:
TraditionalLoginWidget(QWidget *parent, QMap<QString,QString> stored_login_data);
public slots:
void RemoveEtherButton();
QMap<QString, QString> GetLoginInfo();
void StatusUpdate(bool connecting, QString message);
private slots:
void InitWidget(QMap<QString,QString> stored_login_data);
void ParseInputAndConnect();
void UpdateProgressBar();
private:
QTimer *progress_timer_;
int progress_direction_;
signals:
void ConnectOpenSim(QMap<QString, QString>);
void ConnectRealXtend(QMap<QString, QString>);
void ConnectingUiUpdate(QString message);
};
}
}
#endif // incl_UiModule_TraditionalLoginWidget_h
| [
"[email protected]@5b2332b8-efa3-11de-8684-7d64432d61a3"
] | [email protected]@5b2332b8-efa3-11de-8684-7d64432d61a3 |
4f76743975d3f39c1895c2ce1f4d8e930f1c95b6 | 5ce02d5440c35192aa81498b5bcbce1cd97549b2 | /build-LIBRARY-Desktop_Qt_5_8_0_MinGW_32bit-Debug/debug/moc_bookinfo.cpp | c7a88d107896977aa9f8dbe680211301856d793f | [] | no_license | tyj1997/Library201706 | 96b79c4fdb0bf1065eb6282dfffde7252be3c654 | 12d8888ff742b7d6fd60373d0e53bab120aab6dd | refs/heads/master | 2021-07-02T02:36:57.771052 | 2017-09-22T03:00:31 | 2017-09-22T03:00:31 | 104,423,860 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,588 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'bookinfo.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.8.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../LIBRARY777/bookinfo.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'bookinfo.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.8.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
struct qt_meta_stringdata_BookInfo_t {
QByteArrayData data[1];
char stringdata0[9];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_BookInfo_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_BookInfo_t qt_meta_stringdata_BookInfo = {
{
QT_MOC_LITERAL(0, 0, 8) // "BookInfo"
},
"BookInfo"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_BookInfo[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
void BookInfo::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
const QMetaObject BookInfo::staticMetaObject = {
{ &QDialog::staticMetaObject, qt_meta_stringdata_BookInfo.data,
qt_meta_data_BookInfo, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *BookInfo::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *BookInfo::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_BookInfo.stringdata0))
return static_cast<void*>(const_cast< BookInfo*>(this));
return QDialog::qt_metacast(_clname);
}
int BookInfo::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QDialog::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
return _id;
}
QT_END_MOC_NAMESPACE
| [
"[email protected]"
] | |
9b05ff7c2510d4a3a83ed59bd61b364b3ac6a05a | 88de295bd35bc504104815e1afd897266802875b | /legacy/tau/cport/a10/tau+/tau_core/rho_c_port/rho_wrapper.cpp | 9d7d59355f1099dadbbb565f623e7dbbbdb27801 | [] | no_license | mfonken/combine | 4a26545c8e742dfcbc21d16236f6c5a346bfcb16 | aac79987ebfd4af0c8e1d441826bc1bfd78e39da | refs/heads/master | 2022-11-30T21:40:19.574096 | 2022-11-18T04:08:04 | 2022-11-18T04:08:04 | 94,054,420 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,748 | cpp | //
// rho_wrapper.cpp
// tau+
//
// Created by Matthew Fonken on 3/26/18.
// Copyright © 2018 Marbl. All rights reserved.
//
#include "rho_wrapper.hpp"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
using namespace cv;
Rho::Rho( int width, int height ) : width(width), height(height)
{
LOG_RHO("Initializing Rho Utility: %dx%d & [KTarg-%.3f, VarNorm-%.3f, VarSca-%.3f]\n", width, height, RHO_K_TARGET, RHO_VARIANCE_NORMAL, RHO_VARIANCE_SCALE);
size_t
a = sizeof(redistribution_variables),
b = sizeof(rho_selection_variables),
c = sizeof(prediction_update_variables),
d = sizeof(rho_c_utility)-sizeof(density_t)*C_FRAME_SIZE+(2*(FNL_RESIZE_W+FNL_RESIZE_H))*sizeof(density_t),
e = a + b + c + d;
LOG_RHO("\tSizes: RedVar-%luB SelVars-%luB PredVars-%luB Rho-%lukB > Tot-%.3fkB\n", a, b, c, d>>10, ((double)e)/1024);
pthread_mutex_init(&density_map_pair_mutex, NULL);
pthread_mutex_init(&c_mutex, NULL);
RhoFunctions.Init(&utility, width, height);
BayesianFunctions.sys.init( &utility.sys );
backgrounding_event = false;
RhoInterrupts.FRAME_INIT();
}
void Rho::perform( cimage_t & img, GlobalPacket * p )
{
pthread_mutex_lock(&c_mutex);
pthread_mutex_lock(&density_map_pair_mutex);
/* Core Rho Functions */
Generate_Density_Map_Using_Interrupt_Model( img, backgrounding_event );
RhoFunctions.Perform( &utility, backgrounding_event );
/* * * * * * * * * * */
pthread_mutex_unlock(&density_map_pair_mutex);
memcpy((byte_t *)p, (byte_t*)&utility.packet, sizeof(packet_t));
backgrounding_event = false; // Generate background always and only once
pthread_mutex_unlock(&c_mutex);
}
/* Interrupt (Simulated Hardware-Driven) Density map generator */
void Rho::Generate_Density_Map_Using_Interrupt_Model( cimage_t image, bool backgrounding )
{
if( backgrounding )
{
RhoVariables.ram.Dx = utility.density_map_pair.x.background;
RhoVariables.ram.Dy = utility.density_map_pair.y.background;
RhoVariables.ram.CX_ADDR = &utility.By;
RhoVariables.ram.CY_ADDR = &utility.Bx;
RhoVariables.ram.Q = utility.Qb;
}
// PERFORM_RHO_C( image );
PERFORM_RHO_FUNCTION( image );
if( backgrounding )
{
RhoVariables.ram.Dx = utility.density_map_pair.x.map;
RhoVariables.ram.Dy = utility.density_map_pair.y.map;
RhoVariables.ram.CX_ADDR = &utility.Cx;
RhoVariables.ram.CY_ADDR = &utility.Cy;
RhoVariables.ram.Q = utility.Q;
utility.density_map_pair.x.has_background = true;
utility.density_map_pair.y.has_background = true;
}
}
| [
"[email protected]"
] | |
9232d5052a8fccb2664b0533dd934f4bc702062a | 74240774d2805b2c5e91c7172bebc251cc54e2c6 | /ASD1/zad2/zad.cpp | 4604c2e0e7f191ece9f7a5e21130d240897e12dd | [] | no_license | tomaszjader/Algorytmy_i_struktury_danych | ee335e52a30002840de5329cbd87257d26d12724 | b02118480fa5d34523a950505734c430c4b92fad | refs/heads/main | 2023-08-18T07:44:19.870679 | 2021-10-05T22:21:13 | 2021-10-05T22:21:13 | 413,407,674 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,496 | cpp | #include <iostream>
using namespace std;
struct Czlowiek{
string imie;
unsigned long long int waga;
};
void swap(Czlowiek *xp, Czlowiek *yp)
{
Czlowiek temp = *xp;
*xp = *yp;
*yp = temp;
}
void selectionSort(Czlowiek arr[], int n)
{
int i, j;
int min_idx;
for (i = 0; i < n-1; i++)
{
min_idx = i;
for (j = i+1; j < n; j++){
if (arr[j].waga > arr[min_idx].waga){
min_idx = j;
}else if (arr[j].waga == arr[min_idx].waga){
if( arr[j].imie < arr[min_idx].imie ){
min_idx = j;
}
}
}
if (arr[j].waga > arr[min_idx].waga){
swap(&arr[min_idx], &arr[i]);
}
}
}
int main()
{
ios_base::sync_with_stdio(false);
unsigned long long int ile_testow, n, p;
unsigned long long int licznik;
cin>>ile_testow;
for(int i=0; i < ile_testow; i++){
cin>>n>>p;
Czlowiek czlowiek[n];
licznik=0;
for(int j=0; j < n; j++){
cin>>czlowiek[j].imie;
cin>>czlowiek[j].waga;
}
selectionSort(czlowiek, n);
for(int k=0; k < n; k++){
if(k<p){
cout<<czlowiek[k].imie<<' ';
}
if(k!=0){
licznik+=czlowiek[k].waga*k+1;
}else{
licznik++;
}
}
cout<<endl;;
cout<<licznik%1000003 <<' ';
}
return 0; | [
"[email protected]"
] | |
91149ce8ea2472d86ce7b2303c7b6c306e2b6f12 | e5d528ef6f4db8d866f55fe23b986ce6701efc8b | /Temp/il2cppOutput/il2cppOutput/Il2CppCompilerCalculateTypeValues_11Table.cpp | 06ad28b800f895bf80944a139617b9e42cf55ccd | [] | no_license | trinhngockhang/Street-Figher-v2 | a15ea05f47be0de9037633ae56b4a4334f9c1b3c | b14fed6551c892b5dc582855f1b32fc0c3768555 | refs/heads/master | 2020-11-24T12:49:33.639584 | 2019-12-16T15:12:19 | 2019-12-16T15:12:19 | 228,149,161 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 290,459 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// Mono.Math.BigInteger
struct BigInteger_tC6980D601BAEF7199637D9135ACA5ADFD7D5AF8E;
// Mono.Security.Protocol.Tls.CipherSuite
struct CipherSuite_tC56AE7195CA8EBEA13D5CC853EBC0E5D5584C722;
// Mono.Security.Protocol.Tls.Context
struct Context_tFB7966C5881B9A31E697B2C7CB4E8A5AA13BB1B9;
// Mono.Security.Protocol.Tls.Handshake.ClientCertificateType[]
struct ClientCertificateTypeU5BU5D_tDDB75305D8B2DEB805F8F855A4FF116797A8FADD;
// Mono.Security.Protocol.Tls.SslStreamBase
struct SslStreamBase_tC63FA60C7C4F937F028A69CB890F91A7C87D3D0C;
// Mono.Security.Protocol.Tls.ValidationResult
struct ValidationResult_t5588E8FFA588F6EC7FCAC8F375E4078A11053094;
// Mono.Security.X509.X509CertificateCollection
struct X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4;
// System.AsyncCallback
struct AsyncCallback_t74ABD1277F711E7FBDCB00E169A63DEFD39E86A2;
// System.Byte[]
struct ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8;
// System.Char[]
struct CharU5BU5D_t79D85CE93255C78D04436552445C364ED409B744;
// System.Collections.ArrayList
struct ArrayList_t438A4032A4FBAF49F565FAD10C546E26CFBD847F;
// System.Collections.Generic.IList`1<System.ArraySegment`1<System.Byte>>
struct IList_1_t9C0223DD26C0B53F7C4C88FF48A7ADFA34939B91;
// System.Collections.Hashtable
struct Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82;
// System.Collections.IComparer
struct IComparer_t971EE8726C43A8A086B35A11585E2AEFF2F7C2EB;
// System.Collections.IDictionary
struct IDictionary_tD35B9437F08BE98D1E0B295CC73C48E168CAB316;
// System.Collections.IEqualityComparer
struct IEqualityComparer_tFBE0A1A09BAE01058D6DE65DD4FE16C50CB8E781;
// System.Collections.IHashCodeProvider
struct IHashCodeProvider_t2302C769B9686FD002965B00B8A3704D828517D5;
// System.Collections.Queue
struct Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD;
// System.Collections.Specialized.HybridDictionary
struct HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747;
// System.Collections.Specialized.ListDictionary
struct ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA;
// System.Collections.Specialized.ListDictionary/DictionaryNode
struct DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973;
// System.Collections.Specialized.NameObjectCollectionBase
struct NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070;
// System.Collections.Specialized.NameObjectCollectionBase/KeysCollection
struct KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB;
// System.Collections.Specialized.NameObjectCollectionBase/_Item
struct _Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7;
// System.DelegateData
struct DelegateData_tF588FE8D395F9A38FC7D222940F9B218441D21A9;
// System.EventHandler`1<System.Net.Sockets.SocketAsyncEventArgs>
struct EventHandler_1_t3063141EC3C7DCDEF308C6DEB970439F1CD3C28D;
// System.Exception
struct Exception_t;
// System.IAsyncResult
struct IAsyncResult_tDA33C24465239FB383C4C2CDAAC43B9AD3CB7F05;
// System.IO.Compression.DeflateStream/UnmanagedReadOrWrite
struct UnmanagedReadOrWrite_t2247EF4976B7CD4D3E37AE6D93EB8409AFC01522;
// System.IO.MemoryStream
struct MemoryStream_tA2A6655CF733913D13B7AB22E4FF081CB92F5FF0;
// System.IO.Stream
struct Stream_tCFD27E43C18381861212C0288CACF467FB602009;
// System.Int16[]
struct Int16U5BU5D_tCB144E0584D28ADA5C82CBC7F4B00263CA9E4E00;
// System.Int32[]
struct Int32U5BU5D_t20AF77B812DFA3168922AE8F35FB9FD20D7EA074;
// System.IntPtr[]
struct IntPtrU5BU5D_tB866BA24C91559CF299618E230043451CC7CF659;
// System.Net.EndPoint
struct EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5;
// System.Net.IPAddress[]
struct IPAddressU5BU5D_t7F5ACE8937120A82DD707759F81D2015550DD7DE;
// System.Net.IWebProxy
struct IWebProxy_t7E44658B5DCD492983886B8614CE96464347062A;
// System.Net.Security.LocalCertificateSelectionCallback
struct LocalCertificateSelectionCallback_tE1266150C68C19D7DCBB2CE25CF18122C9337981;
// System.Net.Security.RemoteCertificateValidationCallback
struct RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489;
// System.Net.Security.SslStream
struct SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02;
// System.Net.Sockets.LingerOption
struct LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267;
// System.Net.Sockets.NetworkStream
struct NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E;
// System.Net.Sockets.Socket
struct Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03;
// System.Net.Sockets.Socket/SocketAsyncResult
struct SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD;
// System.Net.WebHeaderCollection
struct WebHeaderCollection_t01C9818A1AB6381C83A59AD104E8F0092AC87B66;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t3C5F8BAEFAC94CF69694273ACCB6CB41355E0B5C;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t778922F6A5AACC38C8F326D3338A91D6D72B11E2;
// System.Security.Cryptography.AsymmetricAlgorithm
struct AsymmetricAlgorithm_tCE2A08658EFEA671D977BC39FA246B4FC5092BB2;
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_tC6D94A8A63C0640494BE76372C6E4C291D2826DE;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t4326FD1F39792B6FD659D19F8647F52BE2BBDDC7;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B;
// System.Threading.Thread
struct Thread_t83C301EC970792455F76D89E58140949B003EA50;
// System.Threading.WaitHandle
struct WaitHandle_t4E21379F87C00DE80B2973DCAA928C4A19D1A89E;
// System.Uri
struct Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E;
// System.Void
struct Void_tDB81A15FA2AB53E2401A76B745D215397B29F783;
#ifndef U3CMODULEU3E_T3D66A8F35F2157DE9E925FB938396AEDA1FB0CA9_H
#define U3CMODULEU3E_T3D66A8F35F2157DE9E925FB938396AEDA1FB0CA9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t3D66A8F35F2157DE9E925FB938396AEDA1FB0CA9
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CMODULEU3E_T3D66A8F35F2157DE9E925FB938396AEDA1FB0CA9_H
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef LOCALE_TB294B91FA78F6E22E1CCE2B05E5FC1AC28325202_H
#define LOCALE_TB294B91FA78F6E22E1CCE2B05E5FC1AC28325202_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Locale
struct Locale_tB294B91FA78F6E22E1CCE2B05E5FC1AC28325202 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALE_TB294B91FA78F6E22E1CCE2B05E5FC1AC28325202_H
#ifndef ATTRIBUTE_T60F25EB48D5935E4C6C2BAF7F90F57A43528E469_H
#define ATTRIBUTE_T60F25EB48D5935E4C6C2BAF7F90F57A43528E469_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_t60F25EB48D5935E4C6C2BAF7F90F57A43528E469 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_T60F25EB48D5935E4C6C2BAF7F90F57A43528E469_H
#ifndef HYBRIDDICTIONARY_T5AD529BFF21493C38235716C9AD62F1F7623C747_H
#define HYBRIDDICTIONARY_T5AD529BFF21493C38235716C9AD62F1F7623C747_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.HybridDictionary
struct HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747 : public RuntimeObject
{
public:
// System.Boolean System.Collections.Specialized.HybridDictionary::caseInsensitive
bool ___caseInsensitive_0;
// System.Collections.Hashtable System.Collections.Specialized.HybridDictionary::hashtable
Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 * ___hashtable_1;
// System.Collections.Specialized.ListDictionary System.Collections.Specialized.HybridDictionary::list
ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA * ___list_2;
public:
inline static int32_t get_offset_of_caseInsensitive_0() { return static_cast<int32_t>(offsetof(HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747, ___caseInsensitive_0)); }
inline bool get_caseInsensitive_0() const { return ___caseInsensitive_0; }
inline bool* get_address_of_caseInsensitive_0() { return &___caseInsensitive_0; }
inline void set_caseInsensitive_0(bool value)
{
___caseInsensitive_0 = value;
}
inline static int32_t get_offset_of_hashtable_1() { return static_cast<int32_t>(offsetof(HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747, ___hashtable_1)); }
inline Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 * get_hashtable_1() const { return ___hashtable_1; }
inline Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 ** get_address_of_hashtable_1() { return &___hashtable_1; }
inline void set_hashtable_1(Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 * value)
{
___hashtable_1 = value;
Il2CppCodeGenWriteBarrier((&___hashtable_1), value);
}
inline static int32_t get_offset_of_list_2() { return static_cast<int32_t>(offsetof(HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747, ___list_2)); }
inline ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA * get_list_2() const { return ___list_2; }
inline ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA ** get_address_of_list_2() { return &___list_2; }
inline void set_list_2(ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA * value)
{
___list_2 = value;
Il2CppCodeGenWriteBarrier((&___list_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HYBRIDDICTIONARY_T5AD529BFF21493C38235716C9AD62F1F7623C747_H
#ifndef LISTDICTIONARY_TD949561FF8FD1EBEB444214919203DD41A76ECCA_H
#define LISTDICTIONARY_TD949561FF8FD1EBEB444214919203DD41A76ECCA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary
struct ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA : public RuntimeObject
{
public:
// System.Int32 System.Collections.Specialized.ListDictionary::count
int32_t ___count_0;
// System.Int32 System.Collections.Specialized.ListDictionary::version
int32_t ___version_1;
// System.Collections.Specialized.ListDictionary_DictionaryNode System.Collections.Specialized.ListDictionary::head
DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * ___head_2;
// System.Collections.IComparer System.Collections.Specialized.ListDictionary::comparer
RuntimeObject* ___comparer_3;
public:
inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA, ___count_0)); }
inline int32_t get_count_0() const { return ___count_0; }
inline int32_t* get_address_of_count_0() { return &___count_0; }
inline void set_count_0(int32_t value)
{
___count_0 = value;
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_head_2() { return static_cast<int32_t>(offsetof(ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA, ___head_2)); }
inline DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * get_head_2() const { return ___head_2; }
inline DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 ** get_address_of_head_2() { return &___head_2; }
inline void set_head_2(DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * value)
{
___head_2 = value;
Il2CppCodeGenWriteBarrier((&___head_2), value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((&___comparer_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LISTDICTIONARY_TD949561FF8FD1EBEB444214919203DD41A76ECCA_H
#ifndef DICTIONARYNODE_TE865C15924F25A7B21066D345799357693CFE973_H
#define DICTIONARYNODE_TE865C15924F25A7B21066D345799357693CFE973_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary_DictionaryNode
struct DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 : public RuntimeObject
{
public:
// System.Object System.Collections.Specialized.ListDictionary_DictionaryNode::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Specialized.ListDictionary_DictionaryNode::value
RuntimeObject * ___value_1;
// System.Collections.Specialized.ListDictionary_DictionaryNode System.Collections.Specialized.ListDictionary_DictionaryNode::next
DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * ___next_2;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973, ___next_2)); }
inline DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * get_next_2() const { return ___next_2; }
inline DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 ** get_address_of_next_2() { return &___next_2; }
inline void set_next_2(DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * value)
{
___next_2 = value;
Il2CppCodeGenWriteBarrier((&___next_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARYNODE_TE865C15924F25A7B21066D345799357693CFE973_H
#ifndef DICTIONARYNODEENUMERATOR_TF7AA3F261E0E04587E624470DCC081B4CAB4A601_H
#define DICTIONARYNODEENUMERATOR_TF7AA3F261E0E04587E624470DCC081B4CAB4A601_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary_DictionaryNodeEnumerator
struct DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601 : public RuntimeObject
{
public:
// System.Collections.Specialized.ListDictionary System.Collections.Specialized.ListDictionary_DictionaryNodeEnumerator::dict
ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA * ___dict_0;
// System.Boolean System.Collections.Specialized.ListDictionary_DictionaryNodeEnumerator::isAtStart
bool ___isAtStart_1;
// System.Collections.Specialized.ListDictionary_DictionaryNode System.Collections.Specialized.ListDictionary_DictionaryNodeEnumerator::current
DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * ___current_2;
// System.Int32 System.Collections.Specialized.ListDictionary_DictionaryNodeEnumerator::version
int32_t ___version_3;
public:
inline static int32_t get_offset_of_dict_0() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601, ___dict_0)); }
inline ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA * get_dict_0() const { return ___dict_0; }
inline ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA ** get_address_of_dict_0() { return &___dict_0; }
inline void set_dict_0(ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA * value)
{
___dict_0 = value;
Il2CppCodeGenWriteBarrier((&___dict_0), value);
}
inline static int32_t get_offset_of_isAtStart_1() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601, ___isAtStart_1)); }
inline bool get_isAtStart_1() const { return ___isAtStart_1; }
inline bool* get_address_of_isAtStart_1() { return &___isAtStart_1; }
inline void set_isAtStart_1(bool value)
{
___isAtStart_1 = value;
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601, ___current_2)); }
inline DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * get_current_2() const { return ___current_2; }
inline DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 ** get_address_of_current_2() { return &___current_2; }
inline void set_current_2(DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973 * value)
{
___current_2 = value;
Il2CppCodeGenWriteBarrier((&___current_2), value);
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARYNODEENUMERATOR_TF7AA3F261E0E04587E624470DCC081B4CAB4A601_H
#ifndef NAMEOBJECTCOLLECTIONBASE_TC2EE4FB130214FAE7365D519959A2A34DE56E070_H
#define NAMEOBJECTCOLLECTIONBASE_TC2EE4FB130214FAE7365D519959A2A34DE56E070_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase
struct NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Collections.Specialized.NameObjectCollectionBase::m_ItemsContainer
Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 * ___m_ItemsContainer_0;
// System.Collections.Specialized.NameObjectCollectionBase__Item System.Collections.Specialized.NameObjectCollectionBase::m_NullKeyItem
_Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7 * ___m_NullKeyItem_1;
// System.Collections.ArrayList System.Collections.Specialized.NameObjectCollectionBase::m_ItemsArray
ArrayList_t438A4032A4FBAF49F565FAD10C546E26CFBD847F * ___m_ItemsArray_2;
// System.Collections.IHashCodeProvider System.Collections.Specialized.NameObjectCollectionBase::m_hashprovider
RuntimeObject* ___m_hashprovider_3;
// System.Collections.IComparer System.Collections.Specialized.NameObjectCollectionBase::m_comparer
RuntimeObject* ___m_comparer_4;
// System.Int32 System.Collections.Specialized.NameObjectCollectionBase::m_defCapacity
int32_t ___m_defCapacity_5;
// System.Boolean System.Collections.Specialized.NameObjectCollectionBase::m_readonly
bool ___m_readonly_6;
// System.Runtime.Serialization.SerializationInfo System.Collections.Specialized.NameObjectCollectionBase::infoCopy
SerializationInfo_t778922F6A5AACC38C8F326D3338A91D6D72B11E2 * ___infoCopy_7;
// System.Collections.Specialized.NameObjectCollectionBase_KeysCollection System.Collections.Specialized.NameObjectCollectionBase::keyscoll
KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB * ___keyscoll_8;
// System.Collections.IEqualityComparer System.Collections.Specialized.NameObjectCollectionBase::equality_comparer
RuntimeObject* ___equality_comparer_9;
public:
inline static int32_t get_offset_of_m_ItemsContainer_0() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___m_ItemsContainer_0)); }
inline Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 * get_m_ItemsContainer_0() const { return ___m_ItemsContainer_0; }
inline Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 ** get_address_of_m_ItemsContainer_0() { return &___m_ItemsContainer_0; }
inline void set_m_ItemsContainer_0(Hashtable_tA746260C9064A8C1FC071FF85C11C8EBAEB51B82 * value)
{
___m_ItemsContainer_0 = value;
Il2CppCodeGenWriteBarrier((&___m_ItemsContainer_0), value);
}
inline static int32_t get_offset_of_m_NullKeyItem_1() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___m_NullKeyItem_1)); }
inline _Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7 * get_m_NullKeyItem_1() const { return ___m_NullKeyItem_1; }
inline _Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7 ** get_address_of_m_NullKeyItem_1() { return &___m_NullKeyItem_1; }
inline void set_m_NullKeyItem_1(_Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7 * value)
{
___m_NullKeyItem_1 = value;
Il2CppCodeGenWriteBarrier((&___m_NullKeyItem_1), value);
}
inline static int32_t get_offset_of_m_ItemsArray_2() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___m_ItemsArray_2)); }
inline ArrayList_t438A4032A4FBAF49F565FAD10C546E26CFBD847F * get_m_ItemsArray_2() const { return ___m_ItemsArray_2; }
inline ArrayList_t438A4032A4FBAF49F565FAD10C546E26CFBD847F ** get_address_of_m_ItemsArray_2() { return &___m_ItemsArray_2; }
inline void set_m_ItemsArray_2(ArrayList_t438A4032A4FBAF49F565FAD10C546E26CFBD847F * value)
{
___m_ItemsArray_2 = value;
Il2CppCodeGenWriteBarrier((&___m_ItemsArray_2), value);
}
inline static int32_t get_offset_of_m_hashprovider_3() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___m_hashprovider_3)); }
inline RuntimeObject* get_m_hashprovider_3() const { return ___m_hashprovider_3; }
inline RuntimeObject** get_address_of_m_hashprovider_3() { return &___m_hashprovider_3; }
inline void set_m_hashprovider_3(RuntimeObject* value)
{
___m_hashprovider_3 = value;
Il2CppCodeGenWriteBarrier((&___m_hashprovider_3), value);
}
inline static int32_t get_offset_of_m_comparer_4() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___m_comparer_4)); }
inline RuntimeObject* get_m_comparer_4() const { return ___m_comparer_4; }
inline RuntimeObject** get_address_of_m_comparer_4() { return &___m_comparer_4; }
inline void set_m_comparer_4(RuntimeObject* value)
{
___m_comparer_4 = value;
Il2CppCodeGenWriteBarrier((&___m_comparer_4), value);
}
inline static int32_t get_offset_of_m_defCapacity_5() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___m_defCapacity_5)); }
inline int32_t get_m_defCapacity_5() const { return ___m_defCapacity_5; }
inline int32_t* get_address_of_m_defCapacity_5() { return &___m_defCapacity_5; }
inline void set_m_defCapacity_5(int32_t value)
{
___m_defCapacity_5 = value;
}
inline static int32_t get_offset_of_m_readonly_6() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___m_readonly_6)); }
inline bool get_m_readonly_6() const { return ___m_readonly_6; }
inline bool* get_address_of_m_readonly_6() { return &___m_readonly_6; }
inline void set_m_readonly_6(bool value)
{
___m_readonly_6 = value;
}
inline static int32_t get_offset_of_infoCopy_7() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___infoCopy_7)); }
inline SerializationInfo_t778922F6A5AACC38C8F326D3338A91D6D72B11E2 * get_infoCopy_7() const { return ___infoCopy_7; }
inline SerializationInfo_t778922F6A5AACC38C8F326D3338A91D6D72B11E2 ** get_address_of_infoCopy_7() { return &___infoCopy_7; }
inline void set_infoCopy_7(SerializationInfo_t778922F6A5AACC38C8F326D3338A91D6D72B11E2 * value)
{
___infoCopy_7 = value;
Il2CppCodeGenWriteBarrier((&___infoCopy_7), value);
}
inline static int32_t get_offset_of_keyscoll_8() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___keyscoll_8)); }
inline KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB * get_keyscoll_8() const { return ___keyscoll_8; }
inline KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB ** get_address_of_keyscoll_8() { return &___keyscoll_8; }
inline void set_keyscoll_8(KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB * value)
{
___keyscoll_8 = value;
Il2CppCodeGenWriteBarrier((&___keyscoll_8), value);
}
inline static int32_t get_offset_of_equality_comparer_9() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070, ___equality_comparer_9)); }
inline RuntimeObject* get_equality_comparer_9() const { return ___equality_comparer_9; }
inline RuntimeObject** get_address_of_equality_comparer_9() { return &___equality_comparer_9; }
inline void set_equality_comparer_9(RuntimeObject* value)
{
___equality_comparer_9 = value;
Il2CppCodeGenWriteBarrier((&___equality_comparer_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NAMEOBJECTCOLLECTIONBASE_TC2EE4FB130214FAE7365D519959A2A34DE56E070_H
#ifndef KEYSCOLLECTION_T3A1987CE62992069C60E21F2F157579EFBB7FDDB_H
#define KEYSCOLLECTION_T3A1987CE62992069C60E21F2F157579EFBB7FDDB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase_KeysCollection
struct KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB : public RuntimeObject
{
public:
// System.Collections.Specialized.NameObjectCollectionBase System.Collections.Specialized.NameObjectCollectionBase_KeysCollection::m_collection
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 * ___m_collection_0;
public:
inline static int32_t get_offset_of_m_collection_0() { return static_cast<int32_t>(offsetof(KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB, ___m_collection_0)); }
inline NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 * get_m_collection_0() const { return ___m_collection_0; }
inline NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 ** get_address_of_m_collection_0() { return &___m_collection_0; }
inline void set_m_collection_0(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 * value)
{
___m_collection_0 = value;
Il2CppCodeGenWriteBarrier((&___m_collection_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYSCOLLECTION_T3A1987CE62992069C60E21F2F157579EFBB7FDDB_H
#ifndef _ITEM_TFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7_H
#define _ITEM_TFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase__Item
struct _Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7 : public RuntimeObject
{
public:
// System.String System.Collections.Specialized.NameObjectCollectionBase__Item::key
String_t* ___key_0;
// System.Object System.Collections.Specialized.NameObjectCollectionBase__Item::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(_Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(_Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // _ITEM_TFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7_H
#ifndef _KEYSENUMERATOR_T831ED8844B7FCA44E39D0121A1EC06B3AE76941E_H
#define _KEYSENUMERATOR_T831ED8844B7FCA44E39D0121A1EC06B3AE76941E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase__KeysEnumerator
struct _KeysEnumerator_t831ED8844B7FCA44E39D0121A1EC06B3AE76941E : public RuntimeObject
{
public:
// System.Collections.Specialized.NameObjectCollectionBase System.Collections.Specialized.NameObjectCollectionBase__KeysEnumerator::m_collection
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 * ___m_collection_0;
// System.Int32 System.Collections.Specialized.NameObjectCollectionBase__KeysEnumerator::m_position
int32_t ___m_position_1;
public:
inline static int32_t get_offset_of_m_collection_0() { return static_cast<int32_t>(offsetof(_KeysEnumerator_t831ED8844B7FCA44E39D0121A1EC06B3AE76941E, ___m_collection_0)); }
inline NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 * get_m_collection_0() const { return ___m_collection_0; }
inline NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 ** get_address_of_m_collection_0() { return &___m_collection_0; }
inline void set_m_collection_0(NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070 * value)
{
___m_collection_0 = value;
Il2CppCodeGenWriteBarrier((&___m_collection_0), value);
}
inline static int32_t get_offset_of_m_position_1() { return static_cast<int32_t>(offsetof(_KeysEnumerator_t831ED8844B7FCA44E39D0121A1EC06B3AE76941E, ___m_position_1)); }
inline int32_t get_m_position_1() const { return ___m_position_1; }
inline int32_t* get_address_of_m_position_1() { return &___m_position_1; }
inline void set_m_position_1(int32_t value)
{
___m_position_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // _KEYSENUMERATOR_T831ED8844B7FCA44E39D0121A1EC06B3AE76941E_H
#ifndef TYPECONVERTER_T5801C9F7100E1D849000ED0914E01E4CB2541B71_H
#define TYPECONVERTER_T5801C9F7100E1D849000ED0914E01E4CB2541B71_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TypeConverter
struct TypeConverter_t5801C9F7100E1D849000ED0914E01E4CB2541B71 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECONVERTER_T5801C9F7100E1D849000ED0914E01E4CB2541B71_H
#ifndef STOPWATCH_TB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_H
#define STOPWATCH_TB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.Stopwatch
struct Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318 : public RuntimeObject
{
public:
// System.Int64 System.Diagnostics.Stopwatch::elapsed
int64_t ___elapsed_2;
// System.Int64 System.Diagnostics.Stopwatch::started
int64_t ___started_3;
// System.Boolean System.Diagnostics.Stopwatch::is_running
bool ___is_running_4;
public:
inline static int32_t get_offset_of_elapsed_2() { return static_cast<int32_t>(offsetof(Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318, ___elapsed_2)); }
inline int64_t get_elapsed_2() const { return ___elapsed_2; }
inline int64_t* get_address_of_elapsed_2() { return &___elapsed_2; }
inline void set_elapsed_2(int64_t value)
{
___elapsed_2 = value;
}
inline static int32_t get_offset_of_started_3() { return static_cast<int32_t>(offsetof(Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318, ___started_3)); }
inline int64_t get_started_3() const { return ___started_3; }
inline int64_t* get_address_of_started_3() { return &___started_3; }
inline void set_started_3(int64_t value)
{
___started_3 = value;
}
inline static int32_t get_offset_of_is_running_4() { return static_cast<int32_t>(offsetof(Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318, ___is_running_4)); }
inline bool get_is_running_4() const { return ___is_running_4; }
inline bool* get_address_of_is_running_4() { return &___is_running_4; }
inline void set_is_running_4(bool value)
{
___is_running_4 = value;
}
};
struct Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_StaticFields
{
public:
// System.Int64 System.Diagnostics.Stopwatch::Frequency
int64_t ___Frequency_0;
// System.Boolean System.Diagnostics.Stopwatch::IsHighResolution
bool ___IsHighResolution_1;
public:
inline static int32_t get_offset_of_Frequency_0() { return static_cast<int32_t>(offsetof(Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_StaticFields, ___Frequency_0)); }
inline int64_t get_Frequency_0() const { return ___Frequency_0; }
inline int64_t* get_address_of_Frequency_0() { return &___Frequency_0; }
inline void set_Frequency_0(int64_t value)
{
___Frequency_0 = value;
}
inline static int32_t get_offset_of_IsHighResolution_1() { return static_cast<int32_t>(offsetof(Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_StaticFields, ___IsHighResolution_1)); }
inline bool get_IsHighResolution_1() const { return ___IsHighResolution_1; }
inline bool* get_address_of_IsHighResolution_1() { return &___IsHighResolution_1; }
inline void set_IsHighResolution_1(bool value)
{
___IsHighResolution_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STOPWATCH_TB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_H
#ifndef EVENTARGS_TA4C15C1D2AB4B139169B1942C1477933E00DCA17_H
#define EVENTARGS_TA4C15C1D2AB4B139169B1942C1477933E00DCA17_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EventArgs
struct EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17 : public RuntimeObject
{
public:
public:
};
struct EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17_StaticFields
{
public:
// System.EventArgs System.EventArgs::Empty
EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17 * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17_StaticFields, ___Empty_0)); }
inline EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17 * get_Empty_0() const { return ___Empty_0; }
inline EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17 ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17 * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((&___Empty_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTARGS_TA4C15C1D2AB4B139169B1942C1477933E00DCA17_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.IntPtr[] System.Exception::trace_ips
IntPtrU5BU5D_tB866BA24C91559CF299618E230043451CC7CF659* ___trace_ips_0;
// System.Exception System.Exception::inner_exception
Exception_t * ___inner_exception_1;
// System.String System.Exception::message
String_t* ___message_2;
// System.String System.Exception::help_link
String_t* ___help_link_3;
// System.String System.Exception::class_name
String_t* ___class_name_4;
// System.String System.Exception::stack_trace
String_t* ___stack_trace_5;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_6;
// System.Int32 System.Exception::remote_stack_index
int32_t ___remote_stack_index_7;
// System.Int32 System.Exception::hresult
int32_t ___hresult_8;
// System.String System.Exception::source
String_t* ___source_9;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_10;
public:
inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); }
inline IntPtrU5BU5D_tB866BA24C91559CF299618E230043451CC7CF659* get_trace_ips_0() const { return ___trace_ips_0; }
inline IntPtrU5BU5D_tB866BA24C91559CF299618E230043451CC7CF659** get_address_of_trace_ips_0() { return &___trace_ips_0; }
inline void set_trace_ips_0(IntPtrU5BU5D_tB866BA24C91559CF299618E230043451CC7CF659* value)
{
___trace_ips_0 = value;
Il2CppCodeGenWriteBarrier((&___trace_ips_0), value);
}
inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); }
inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; }
inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; }
inline void set_inner_exception_1(Exception_t * value)
{
___inner_exception_1 = value;
Il2CppCodeGenWriteBarrier((&___inner_exception_1), value);
}
inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); }
inline String_t* get_message_2() const { return ___message_2; }
inline String_t** get_address_of_message_2() { return &___message_2; }
inline void set_message_2(String_t* value)
{
___message_2 = value;
Il2CppCodeGenWriteBarrier((&___message_2), value);
}
inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); }
inline String_t* get_help_link_3() const { return ___help_link_3; }
inline String_t** get_address_of_help_link_3() { return &___help_link_3; }
inline void set_help_link_3(String_t* value)
{
___help_link_3 = value;
Il2CppCodeGenWriteBarrier((&___help_link_3), value);
}
inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); }
inline String_t* get_class_name_4() const { return ___class_name_4; }
inline String_t** get_address_of_class_name_4() { return &___class_name_4; }
inline void set_class_name_4(String_t* value)
{
___class_name_4 = value;
Il2CppCodeGenWriteBarrier((&___class_name_4), value);
}
inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); }
inline String_t* get_stack_trace_5() const { return ___stack_trace_5; }
inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; }
inline void set_stack_trace_5(String_t* value)
{
___stack_trace_5 = value;
Il2CppCodeGenWriteBarrier((&___stack_trace_5), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); }
inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; }
inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; }
inline void set__remoteStackTraceString_6(String_t* value)
{
____remoteStackTraceString_6 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value);
}
inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); }
inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; }
inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; }
inline void set_remote_stack_index_7(int32_t value)
{
___remote_stack_index_7 = value;
}
inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); }
inline int32_t get_hresult_8() const { return ___hresult_8; }
inline int32_t* get_address_of_hresult_8() { return &___hresult_8; }
inline void set_hresult_8(int32_t value)
{
___hresult_8 = value;
}
inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); }
inline String_t* get_source_9() const { return ___source_9; }
inline String_t** get_address_of_source_9() { return &___source_9; }
inline void set_source_9(String_t* value)
{
___source_9 = value;
Il2CppCodeGenWriteBarrier((&___source_9), value);
}
inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); }
inline RuntimeObject* get__data_10() const { return ____data_10; }
inline RuntimeObject** get_address_of__data_10() { return &____data_10; }
inline void set__data_10(RuntimeObject* value)
{
____data_10 = value;
Il2CppCodeGenWriteBarrier((&____data_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCEPTION_T_H
#ifndef STREAM_TCFD27E43C18381861212C0288CACF467FB602009_H
#define STREAM_TCFD27E43C18381861212C0288CACF467FB602009_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Stream
struct Stream_tCFD27E43C18381861212C0288CACF467FB602009 : public RuntimeObject
{
public:
public:
};
struct Stream_tCFD27E43C18381861212C0288CACF467FB602009_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_tCFD27E43C18381861212C0288CACF467FB602009 * ___Null_0;
public:
inline static int32_t get_offset_of_Null_0() { return static_cast<int32_t>(offsetof(Stream_tCFD27E43C18381861212C0288CACF467FB602009_StaticFields, ___Null_0)); }
inline Stream_tCFD27E43C18381861212C0288CACF467FB602009 * get_Null_0() const { return ___Null_0; }
inline Stream_tCFD27E43C18381861212C0288CACF467FB602009 ** get_address_of_Null_0() { return &___Null_0; }
inline void set_Null_0(Stream_tCFD27E43C18381861212C0288CACF467FB602009 * value)
{
___Null_0 = value;
Il2CppCodeGenWriteBarrier((&___Null_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAM_TCFD27E43C18381861212C0288CACF467FB602009_H
#ifndef MARSHALBYREFOBJECT_T05F62A8AC86E36BAE3063CA28097945DE9E179C4_H
#define MARSHALBYREFOBJECT_T05F62A8AC86E36BAE3063CA28097945DE9E179C4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MarshalByRefObject
struct MarshalByRefObject_t05F62A8AC86E36BAE3063CA28097945DE9E179C4 : public RuntimeObject
{
public:
// System.Runtime.Remoting.ServerIdentity System.MarshalByRefObject::_identity
ServerIdentity_t3C5F8BAEFAC94CF69694273ACCB6CB41355E0B5C * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_t05F62A8AC86E36BAE3063CA28097945DE9E179C4, ____identity_0)); }
inline ServerIdentity_t3C5F8BAEFAC94CF69694273ACCB6CB41355E0B5C * get__identity_0() const { return ____identity_0; }
inline ServerIdentity_t3C5F8BAEFAC94CF69694273ACCB6CB41355E0B5C ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(ServerIdentity_t3C5F8BAEFAC94CF69694273ACCB6CB41355E0B5C * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((&____identity_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MARSHALBYREFOBJECT_T05F62A8AC86E36BAE3063CA28097945DE9E179C4_H
#ifndef DEFAULTCERTIFICATEPOLICY_T20D131A15C57E252C662EF7DC027E17A9DF237DE_H
#define DEFAULTCERTIFICATEPOLICY_T20D131A15C57E252C662EF7DC027E17A9DF237DE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.DefaultCertificatePolicy
struct DefaultCertificatePolicy_t20D131A15C57E252C662EF7DC027E17A9DF237DE : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEFAULTCERTIFICATEPOLICY_T20D131A15C57E252C662EF7DC027E17A9DF237DE_H
#ifndef DNS_T35F3A3DC5D6D1C5ADD6161054D19486B7AF78A1D_H
#define DNS_T35F3A3DC5D6D1C5ADD6161054D19486B7AF78A1D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Dns
struct Dns_t35F3A3DC5D6D1C5ADD6161054D19486B7AF78A1D : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DNS_T35F3A3DC5D6D1C5ADD6161054D19486B7AF78A1D_H
#ifndef ENDPOINT_T025B464C83C18FB6B01BBA3888ECD9C9168F8DB5_H
#define ENDPOINT_T025B464C83C18FB6B01BBA3888ECD9C9168F8DB5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.EndPoint
struct EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENDPOINT_T025B464C83C18FB6B01BBA3888ECD9C9168F8DB5_H
#ifndef FILEWEBREQUESTCREATOR_TD60F349437141E04C9E12D16F8F041FB10891B8C_H
#define FILEWEBREQUESTCREATOR_TD60F349437141E04C9E12D16F8F041FB10891B8C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.FileWebRequestCreator
struct FileWebRequestCreator_tD60F349437141E04C9E12D16F8F041FB10891B8C : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEWEBREQUESTCREATOR_TD60F349437141E04C9E12D16F8F041FB10891B8C_H
#ifndef FTPREQUESTCREATOR_TCE4465133E262EF54F054235B5AAC7780257A1C5_H
#define FTPREQUESTCREATOR_TCE4465133E262EF54F054235B5AAC7780257A1C5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.FtpRequestCreator
struct FtpRequestCreator_tCE4465133E262EF54F054235B5AAC7780257A1C5 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FTPREQUESTCREATOR_TCE4465133E262EF54F054235B5AAC7780257A1C5_H
#ifndef GLOBALPROXYSELECTION_TDFCA7BC6C93E29ADBF707433E1D10EAD2D5DF472_H
#define GLOBALPROXYSELECTION_TDFCA7BC6C93E29ADBF707433E1D10EAD2D5DF472_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.GlobalProxySelection
struct GlobalProxySelection_tDFCA7BC6C93E29ADBF707433E1D10EAD2D5DF472 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GLOBALPROXYSELECTION_TDFCA7BC6C93E29ADBF707433E1D10EAD2D5DF472_H
#ifndef HTTPREQUESTCREATOR_T2790C4BD42A81817740F2591423D195413F750A8_H
#define HTTPREQUESTCREATOR_T2790C4BD42A81817740F2591423D195413F750A8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.HttpRequestCreator
struct HttpRequestCreator_t2790C4BD42A81817740F2591423D195413F750A8 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HTTPREQUESTCREATOR_T2790C4BD42A81817740F2591423D195413F750A8_H
#ifndef U3CBEGINAUTHENTICATEASCLIENTU3EC__ANONSTOREY7_T94195F778805EAD801F0807A9742186729FEC5E5_H
#define U3CBEGINAUTHENTICATEASCLIENTU3EC__ANONSTOREY7_T94195F778805EAD801F0807A9742186729FEC5E5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.SslStream_<BeginAuthenticateAsClient>c__AnonStorey7
struct U3CBeginAuthenticateAsClientU3Ec__AnonStorey7_t94195F778805EAD801F0807A9742186729FEC5E5 : public RuntimeObject
{
public:
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.Security.SslStream_<BeginAuthenticateAsClient>c__AnonStorey7::clientCertificates
X509CertificateCollection_t4326FD1F39792B6FD659D19F8647F52BE2BBDDC7 * ___clientCertificates_0;
// System.Net.Security.SslStream System.Net.Security.SslStream_<BeginAuthenticateAsClient>c__AnonStorey7::<>f__this
SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 * ___U3CU3Ef__this_1;
public:
inline static int32_t get_offset_of_clientCertificates_0() { return static_cast<int32_t>(offsetof(U3CBeginAuthenticateAsClientU3Ec__AnonStorey7_t94195F778805EAD801F0807A9742186729FEC5E5, ___clientCertificates_0)); }
inline X509CertificateCollection_t4326FD1F39792B6FD659D19F8647F52BE2BBDDC7 * get_clientCertificates_0() const { return ___clientCertificates_0; }
inline X509CertificateCollection_t4326FD1F39792B6FD659D19F8647F52BE2BBDDC7 ** get_address_of_clientCertificates_0() { return &___clientCertificates_0; }
inline void set_clientCertificates_0(X509CertificateCollection_t4326FD1F39792B6FD659D19F8647F52BE2BBDDC7 * value)
{
___clientCertificates_0 = value;
Il2CppCodeGenWriteBarrier((&___clientCertificates_0), value);
}
inline static int32_t get_offset_of_U3CU3Ef__this_1() { return static_cast<int32_t>(offsetof(U3CBeginAuthenticateAsClientU3Ec__AnonStorey7_t94195F778805EAD801F0807A9742186729FEC5E5, ___U3CU3Ef__this_1)); }
inline SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 * get_U3CU3Ef__this_1() const { return ___U3CU3Ef__this_1; }
inline SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 ** get_address_of_U3CU3Ef__this_1() { return &___U3CU3Ef__this_1; }
inline void set_U3CU3Ef__this_1(SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 * value)
{
___U3CU3Ef__this_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__this_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CBEGINAUTHENTICATEASCLIENTU3EC__ANONSTOREY7_T94195F778805EAD801F0807A9742186729FEC5E5_H
#ifndef U3CBEGINAUTHENTICATEASSERVERU3EC__ANONSTOREY8_TFC744427E22FEF8C086A09215F4DF75A252322B7_H
#define U3CBEGINAUTHENTICATEASSERVERU3EC__ANONSTOREY8_TFC744427E22FEF8C086A09215F4DF75A252322B7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.SslStream_<BeginAuthenticateAsServer>c__AnonStorey8
struct U3CBeginAuthenticateAsServerU3Ec__AnonStorey8_tFC744427E22FEF8C086A09215F4DF75A252322B7 : public RuntimeObject
{
public:
// System.Security.Cryptography.X509Certificates.X509Certificate System.Net.Security.SslStream_<BeginAuthenticateAsServer>c__AnonStorey8::serverCertificate
X509Certificate_tC6D94A8A63C0640494BE76372C6E4C291D2826DE * ___serverCertificate_0;
// System.Net.Security.SslStream System.Net.Security.SslStream_<BeginAuthenticateAsServer>c__AnonStorey8::<>f__this
SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 * ___U3CU3Ef__this_1;
public:
inline static int32_t get_offset_of_serverCertificate_0() { return static_cast<int32_t>(offsetof(U3CBeginAuthenticateAsServerU3Ec__AnonStorey8_tFC744427E22FEF8C086A09215F4DF75A252322B7, ___serverCertificate_0)); }
inline X509Certificate_tC6D94A8A63C0640494BE76372C6E4C291D2826DE * get_serverCertificate_0() const { return ___serverCertificate_0; }
inline X509Certificate_tC6D94A8A63C0640494BE76372C6E4C291D2826DE ** get_address_of_serverCertificate_0() { return &___serverCertificate_0; }
inline void set_serverCertificate_0(X509Certificate_tC6D94A8A63C0640494BE76372C6E4C291D2826DE * value)
{
___serverCertificate_0 = value;
Il2CppCodeGenWriteBarrier((&___serverCertificate_0), value);
}
inline static int32_t get_offset_of_U3CU3Ef__this_1() { return static_cast<int32_t>(offsetof(U3CBeginAuthenticateAsServerU3Ec__AnonStorey8_tFC744427E22FEF8C086A09215F4DF75A252322B7, ___U3CU3Ef__this_1)); }
inline SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 * get_U3CU3Ef__this_1() const { return ___U3CU3Ef__this_1; }
inline SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 ** get_address_of_U3CU3Ef__this_1() { return &___U3CU3Ef__this_1; }
inline void set_U3CU3Ef__this_1(SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 * value)
{
___U3CU3Ef__this_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__this_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CBEGINAUTHENTICATEASSERVERU3EC__ANONSTOREY8_TFC744427E22FEF8C086A09215F4DF75A252322B7_H
#ifndef IPV6MULTICASTOPTION_T83F754083F4F091E96895956BE1EDED9D2C4B63B_H
#define IPV6MULTICASTOPTION_T83F754083F4F091E96895956BE1EDED9D2C4B63B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.IPv6MulticastOption
struct IPv6MulticastOption_t83F754083F4F091E96895956BE1EDED9D2C4B63B : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IPV6MULTICASTOPTION_T83F754083F4F091E96895956BE1EDED9D2C4B63B_H
#ifndef LINGEROPTION_T62B714AFE2251DFCF0B64F164C08A8A533EE1267_H
#define LINGEROPTION_T62B714AFE2251DFCF0B64F164C08A8A533EE1267_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.LingerOption
struct LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267 : public RuntimeObject
{
public:
// System.Boolean System.Net.Sockets.LingerOption::enabled
bool ___enabled_0;
// System.Int32 System.Net.Sockets.LingerOption::seconds
int32_t ___seconds_1;
public:
inline static int32_t get_offset_of_enabled_0() { return static_cast<int32_t>(offsetof(LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267, ___enabled_0)); }
inline bool get_enabled_0() const { return ___enabled_0; }
inline bool* get_address_of_enabled_0() { return &___enabled_0; }
inline void set_enabled_0(bool value)
{
___enabled_0 = value;
}
inline static int32_t get_offset_of_seconds_1() { return static_cast<int32_t>(offsetof(LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267, ___seconds_1)); }
inline int32_t get_seconds_1() const { return ___seconds_1; }
inline int32_t* get_address_of_seconds_1() { return &___seconds_1; }
inline void set_seconds_1(int32_t value)
{
___seconds_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LINGEROPTION_T62B714AFE2251DFCF0B64F164C08A8A533EE1267_H
#ifndef MULTICASTOPTION_T0111E2D23A0232DB1748487EACD9EF4EDE686E05_H
#define MULTICASTOPTION_T0111E2D23A0232DB1748487EACD9EF4EDE686E05_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.MulticastOption
struct MulticastOption_t0111E2D23A0232DB1748487EACD9EF4EDE686E05 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MULTICASTOPTION_T0111E2D23A0232DB1748487EACD9EF4EDE686E05_H
#ifndef WORKER_TC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4_H
#define WORKER_TC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.Socket_Worker
struct Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4 : public RuntimeObject
{
public:
// System.Net.Sockets.Socket_SocketAsyncResult System.Net.Sockets.Socket_Worker::result
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD * ___result_0;
// System.Boolean System.Net.Sockets.Socket_Worker::requireSocketSecurity
bool ___requireSocketSecurity_1;
// System.Int32 System.Net.Sockets.Socket_Worker::send_so_far
int32_t ___send_so_far_2;
public:
inline static int32_t get_offset_of_result_0() { return static_cast<int32_t>(offsetof(Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4, ___result_0)); }
inline SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD * get_result_0() const { return ___result_0; }
inline SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD ** get_address_of_result_0() { return &___result_0; }
inline void set_result_0(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD * value)
{
___result_0 = value;
Il2CppCodeGenWriteBarrier((&___result_0), value);
}
inline static int32_t get_offset_of_requireSocketSecurity_1() { return static_cast<int32_t>(offsetof(Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4, ___requireSocketSecurity_1)); }
inline bool get_requireSocketSecurity_1() const { return ___requireSocketSecurity_1; }
inline bool* get_address_of_requireSocketSecurity_1() { return &___requireSocketSecurity_1; }
inline void set_requireSocketSecurity_1(bool value)
{
___requireSocketSecurity_1 = value;
}
inline static int32_t get_offset_of_send_so_far_2() { return static_cast<int32_t>(offsetof(Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4, ___send_so_far_2)); }
inline int32_t get_send_so_far_2() const { return ___send_so_far_2; }
inline int32_t* get_address_of_send_so_far_2() { return &___send_so_far_2; }
inline void set_send_so_far_2(int32_t value)
{
___send_so_far_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WORKER_TC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4_H
#ifndef VALUETYPE_T1810BD84E0FDB5D3A7CD34286A5B22F343995C9C_H
#define VALUETYPE_T1810BD84E0FDB5D3A7CD34286A5B22F343995C9C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t1810BD84E0FDB5D3A7CD34286A5B22F343995C9C : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t1810BD84E0FDB5D3A7CD34286A5B22F343995C9C_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t1810BD84E0FDB5D3A7CD34286A5B22F343995C9C_marshaled_com
{
};
#endif // VALUETYPE_T1810BD84E0FDB5D3A7CD34286A5B22F343995C9C_H
#ifndef U24ARRAYTYPEU2412_T34A0555607D56E64995C58450DA7271038B4E338_H
#define U24ARRAYTYPEU2412_T34A0555607D56E64995C58450DA7271038B4E338_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU2412
struct U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338__padding[12];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2412_T34A0555607D56E64995C58450DA7271038B4E338_H
#ifndef U24ARRAYTYPEU2416_T3ED63219EF62A55102C1A217300B96A85574E8CF_H
#define U24ARRAYTYPEU2416_T3ED63219EF62A55102C1A217300B96A85574E8CF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU2416
struct U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF__padding[16];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2416_T3ED63219EF62A55102C1A217300B96A85574E8CF_H
#ifndef U24ARRAYTYPEU2420_TC30B3410ED78E77399E9EB0BC02865F70054B6B0_H
#define U24ARRAYTYPEU2420_TC30B3410ED78E77399E9EB0BC02865F70054B6B0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU2420
struct U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0__padding[20];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2420_TC30B3410ED78E77399E9EB0BC02865F70054B6B0_H
#ifndef U24ARRAYTYPEU24256_TECF690BE542BCE69FA380DA73129A32EBBA79EC0_H
#define U24ARRAYTYPEU24256_TECF690BE542BCE69FA380DA73129A32EBBA79EC0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU24256
struct U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0__padding[256];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24256_TECF690BE542BCE69FA380DA73129A32EBBA79EC0_H
#ifndef U24ARRAYTYPEU243132_TB4B2D02CB1D25DA8A2365FF1F7194778F5865375_H
#define U24ARRAYTYPEU243132_TB4B2D02CB1D25DA8A2365FF1F7194778F5865375_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU243132
struct U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375__padding[3132];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU243132_TB4B2D02CB1D25DA8A2365FF1F7194778F5865375_H
#ifndef U24ARRAYTYPEU2432_T81B2756612AE7B8BC584F0547C5AC6ED5C719BAF_H
#define U24ARRAYTYPEU2432_T81B2756612AE7B8BC584F0547C5AC6ED5C719BAF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU2432
struct U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF__padding[32];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2432_T81B2756612AE7B8BC584F0547C5AC6ED5C719BAF_H
#ifndef U24ARRAYTYPEU244_TF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474_H
#define U24ARRAYTYPEU244_TF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU244
struct U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474__padding[4];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU244_TF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474_H
#ifndef U24ARRAYTYPEU2448_T206F0CAD1CFE1565A495415F94F351EAA0209291_H
#define U24ARRAYTYPEU2448_T206F0CAD1CFE1565A495415F94F351EAA0209291_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU2448
struct U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291__padding[48];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2448_T206F0CAD1CFE1565A495415F94F351EAA0209291_H
#ifndef U24ARRAYTYPEU2464_T7527DA046E72F979D34D3924E0957FA03B3CE1EE_H
#define U24ARRAYTYPEU2464_T7527DA046E72F979D34D3924E0957FA03B3CE1EE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>_U24ArrayTypeU2464
struct U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE__padding[64];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2464_T7527DA046E72F979D34D3924E0957FA03B3CE1EE_H
#ifndef TLSSTREAM_T564FEEACB059C6549038DCA5C737C62C96135490_H
#define TLSSTREAM_T564FEEACB059C6549038DCA5C737C62C96135490_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.TlsStream
struct TlsStream_t564FEEACB059C6549038DCA5C737C62C96135490 : public Stream_tCFD27E43C18381861212C0288CACF467FB602009
{
public:
// System.Boolean Mono.Security.Protocol.Tls.TlsStream::canRead
bool ___canRead_1;
// System.Boolean Mono.Security.Protocol.Tls.TlsStream::canWrite
bool ___canWrite_2;
// System.IO.MemoryStream Mono.Security.Protocol.Tls.TlsStream::buffer
MemoryStream_tA2A6655CF733913D13B7AB22E4FF081CB92F5FF0 * ___buffer_3;
// System.Byte[] Mono.Security.Protocol.Tls.TlsStream::temp
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___temp_4;
public:
inline static int32_t get_offset_of_canRead_1() { return static_cast<int32_t>(offsetof(TlsStream_t564FEEACB059C6549038DCA5C737C62C96135490, ___canRead_1)); }
inline bool get_canRead_1() const { return ___canRead_1; }
inline bool* get_address_of_canRead_1() { return &___canRead_1; }
inline void set_canRead_1(bool value)
{
___canRead_1 = value;
}
inline static int32_t get_offset_of_canWrite_2() { return static_cast<int32_t>(offsetof(TlsStream_t564FEEACB059C6549038DCA5C737C62C96135490, ___canWrite_2)); }
inline bool get_canWrite_2() const { return ___canWrite_2; }
inline bool* get_address_of_canWrite_2() { return &___canWrite_2; }
inline void set_canWrite_2(bool value)
{
___canWrite_2 = value;
}
inline static int32_t get_offset_of_buffer_3() { return static_cast<int32_t>(offsetof(TlsStream_t564FEEACB059C6549038DCA5C737C62C96135490, ___buffer_3)); }
inline MemoryStream_tA2A6655CF733913D13B7AB22E4FF081CB92F5FF0 * get_buffer_3() const { return ___buffer_3; }
inline MemoryStream_tA2A6655CF733913D13B7AB22E4FF081CB92F5FF0 ** get_address_of_buffer_3() { return &___buffer_3; }
inline void set_buffer_3(MemoryStream_tA2A6655CF733913D13B7AB22E4FF081CB92F5FF0 * value)
{
___buffer_3 = value;
Il2CppCodeGenWriteBarrier((&___buffer_3), value);
}
inline static int32_t get_offset_of_temp_4() { return static_cast<int32_t>(offsetof(TlsStream_t564FEEACB059C6549038DCA5C737C62C96135490, ___temp_4)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_temp_4() const { return ___temp_4; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_temp_4() { return &___temp_4; }
inline void set_temp_4(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___temp_4 = value;
Il2CppCodeGenWriteBarrier((&___temp_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSTREAM_T564FEEACB059C6549038DCA5C737C62C96135490_H
#ifndef NAMEVALUECOLLECTION_TB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF_H
#define NAMEVALUECOLLECTION_TB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameValueCollection
struct NameValueCollection_tB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF : public NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070
{
public:
// System.String[] System.Collections.Specialized.NameValueCollection::cachedAllKeys
StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* ___cachedAllKeys_10;
// System.String[] System.Collections.Specialized.NameValueCollection::cachedAll
StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* ___cachedAll_11;
public:
inline static int32_t get_offset_of_cachedAllKeys_10() { return static_cast<int32_t>(offsetof(NameValueCollection_tB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF, ___cachedAllKeys_10)); }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* get_cachedAllKeys_10() const { return ___cachedAllKeys_10; }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B** get_address_of_cachedAllKeys_10() { return &___cachedAllKeys_10; }
inline void set_cachedAllKeys_10(StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* value)
{
___cachedAllKeys_10 = value;
Il2CppCodeGenWriteBarrier((&___cachedAllKeys_10), value);
}
inline static int32_t get_offset_of_cachedAll_11() { return static_cast<int32_t>(offsetof(NameValueCollection_tB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF, ___cachedAll_11)); }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* get_cachedAll_11() const { return ___cachedAll_11; }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B** get_address_of_cachedAll_11() { return &___cachedAll_11; }
inline void set_cachedAll_11(StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* value)
{
___cachedAll_11 = value;
Il2CppCodeGenWriteBarrier((&___cachedAll_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NAMEVALUECOLLECTION_TB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF_H
#ifndef TYPECONVERTERATTRIBUTE_TC7B95DB483CF95DC3E325F90964995E1939B4E27_H
#define TYPECONVERTERATTRIBUTE_TC7B95DB483CF95DC3E325F90964995E1939B4E27_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TypeConverterAttribute
struct TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27 : public Attribute_t60F25EB48D5935E4C6C2BAF7F90F57A43528E469
{
public:
// System.String System.ComponentModel.TypeConverterAttribute::converter_type
String_t* ___converter_type_1;
public:
inline static int32_t get_offset_of_converter_type_1() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27, ___converter_type_1)); }
inline String_t* get_converter_type_1() const { return ___converter_type_1; }
inline String_t** get_address_of_converter_type_1() { return &___converter_type_1; }
inline void set_converter_type_1(String_t* value)
{
___converter_type_1 = value;
Il2CppCodeGenWriteBarrier((&___converter_type_1), value);
}
};
struct TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27_StaticFields
{
public:
// System.ComponentModel.TypeConverterAttribute System.ComponentModel.TypeConverterAttribute::Default
TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27 * ___Default_0;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27_StaticFields, ___Default_0)); }
inline TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27 * get_Default_0() const { return ___Default_0; }
inline TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27 ** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27 * value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((&___Default_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECONVERTERATTRIBUTE_TC7B95DB483CF95DC3E325F90964995E1939B4E27_H
#ifndef ENUM_T5AAC444DFCAA78411386665A25FE3CD3169879EF_H
#define ENUM_T5AAC444DFCAA78411386665A25FE3CD3169879EF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t5AAC444DFCAA78411386665A25FE3CD3169879EF : public ValueType_t1810BD84E0FDB5D3A7CD34286A5B22F343995C9C
{
public:
public:
};
struct Enum_t5AAC444DFCAA78411386665A25FE3CD3169879EF_StaticFields
{
public:
// System.Char[] System.Enum::split_char
CharU5BU5D_t79D85CE93255C78D04436552445C364ED409B744* ___split_char_0;
public:
inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t5AAC444DFCAA78411386665A25FE3CD3169879EF_StaticFields, ___split_char_0)); }
inline CharU5BU5D_t79D85CE93255C78D04436552445C364ED409B744* get_split_char_0() const { return ___split_char_0; }
inline CharU5BU5D_t79D85CE93255C78D04436552445C364ED409B744** get_address_of_split_char_0() { return &___split_char_0; }
inline void set_split_char_0(CharU5BU5D_t79D85CE93255C78D04436552445C364ED409B744* value)
{
___split_char_0 = value;
Il2CppCodeGenWriteBarrier((&___split_char_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t5AAC444DFCAA78411386665A25FE3CD3169879EF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t5AAC444DFCAA78411386665A25FE3CD3169879EF_marshaled_com
{
};
#endif // ENUM_T5AAC444DFCAA78411386665A25FE3CD3169879EF_H
#ifndef INT32_TC16F64335CE8B56D99229DE94BB3A876ED55FE87_H
#define INT32_TC16F64335CE8B56D99229DE94BB3A876ED55FE87_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_tC16F64335CE8B56D99229DE94BB3A876ED55FE87
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_tC16F64335CE8B56D99229DE94BB3A876ED55FE87, ___m_value_2)); }
inline int32_t get_m_value_2() const { return ___m_value_2; }
inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(int32_t value)
{
___m_value_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_TC16F64335CE8B56D99229DE94BB3A876ED55FE87_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef MONOTODOATTRIBUTE_T9D89F1E822F284972E35E1E9E94CFA0817EFB2CB_H
#define MONOTODOATTRIBUTE_T9D89F1E822F284972E35E1E9E94CFA0817EFB2CB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoTODOAttribute
struct MonoTODOAttribute_t9D89F1E822F284972E35E1E9E94CFA0817EFB2CB : public Attribute_t60F25EB48D5935E4C6C2BAF7F90F57A43528E469
{
public:
// System.String System.MonoTODOAttribute::comment
String_t* ___comment_0;
public:
inline static int32_t get_offset_of_comment_0() { return static_cast<int32_t>(offsetof(MonoTODOAttribute_t9D89F1E822F284972E35E1E9E94CFA0817EFB2CB, ___comment_0)); }
inline String_t* get_comment_0() const { return ___comment_0; }
inline String_t** get_address_of_comment_0() { return &___comment_0; }
inline void set_comment_0(String_t* value)
{
___comment_0 = value;
Il2CppCodeGenWriteBarrier((&___comment_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTODOATTRIBUTE_T9D89F1E822F284972E35E1E9E94CFA0817EFB2CB_H
#ifndef AUTHENTICATEDSTREAM_TD1567684CF73B3685DA40392729A8B4B0313E8CB_H
#define AUTHENTICATEDSTREAM_TD1567684CF73B3685DA40392729A8B4B0313E8CB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.AuthenticatedStream
struct AuthenticatedStream_tD1567684CF73B3685DA40392729A8B4B0313E8CB : public Stream_tCFD27E43C18381861212C0288CACF467FB602009
{
public:
// System.IO.Stream System.Net.Security.AuthenticatedStream::innerStream
Stream_tCFD27E43C18381861212C0288CACF467FB602009 * ___innerStream_1;
// System.Boolean System.Net.Security.AuthenticatedStream::leaveStreamOpen
bool ___leaveStreamOpen_2;
public:
inline static int32_t get_offset_of_innerStream_1() { return static_cast<int32_t>(offsetof(AuthenticatedStream_tD1567684CF73B3685DA40392729A8B4B0313E8CB, ___innerStream_1)); }
inline Stream_tCFD27E43C18381861212C0288CACF467FB602009 * get_innerStream_1() const { return ___innerStream_1; }
inline Stream_tCFD27E43C18381861212C0288CACF467FB602009 ** get_address_of_innerStream_1() { return &___innerStream_1; }
inline void set_innerStream_1(Stream_tCFD27E43C18381861212C0288CACF467FB602009 * value)
{
___innerStream_1 = value;
Il2CppCodeGenWriteBarrier((&___innerStream_1), value);
}
inline static int32_t get_offset_of_leaveStreamOpen_2() { return static_cast<int32_t>(offsetof(AuthenticatedStream_tD1567684CF73B3685DA40392729A8B4B0313E8CB, ___leaveStreamOpen_2)); }
inline bool get_leaveStreamOpen_2() const { return ___leaveStreamOpen_2; }
inline bool* get_address_of_leaveStreamOpen_2() { return &___leaveStreamOpen_2; }
inline void set_leaveStreamOpen_2(bool value)
{
___leaveStreamOpen_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // AUTHENTICATEDSTREAM_TD1567684CF73B3685DA40392729A8B4B0313E8CB_H
#ifndef GCHANDLE_TE002D24915851AD73ACC0F503601C384273C3060_H
#define GCHANDLE_TE002D24915851AD73ACC0F503601C384273C3060_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.GCHandle
struct GCHandle_tE002D24915851AD73ACC0F503601C384273C3060
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_tE002D24915851AD73ACC0F503601C384273C3060, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GCHANDLE_TE002D24915851AD73ACC0F503601C384273C3060_H
#ifndef RSAPARAMETERS_TA5A3AA05FC9F3437383EF914476E1584FC05B150_H
#define RSAPARAMETERS_TA5A3AA05FC9F3437383EF914476E1584FC05B150_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.RSAParameters
struct RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150
{
public:
// System.Byte[] System.Security.Cryptography.RSAParameters::P
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___P_0;
// System.Byte[] System.Security.Cryptography.RSAParameters::Q
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___Q_1;
// System.Byte[] System.Security.Cryptography.RSAParameters::D
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___D_2;
// System.Byte[] System.Security.Cryptography.RSAParameters::DP
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___DP_3;
// System.Byte[] System.Security.Cryptography.RSAParameters::DQ
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___DQ_4;
// System.Byte[] System.Security.Cryptography.RSAParameters::InverseQ
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___InverseQ_5;
// System.Byte[] System.Security.Cryptography.RSAParameters::Modulus
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___Modulus_6;
// System.Byte[] System.Security.Cryptography.RSAParameters::Exponent
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___Exponent_7;
public:
inline static int32_t get_offset_of_P_0() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___P_0)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_P_0() const { return ___P_0; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_P_0() { return &___P_0; }
inline void set_P_0(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___P_0 = value;
Il2CppCodeGenWriteBarrier((&___P_0), value);
}
inline static int32_t get_offset_of_Q_1() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___Q_1)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_Q_1() const { return ___Q_1; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_Q_1() { return &___Q_1; }
inline void set_Q_1(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___Q_1 = value;
Il2CppCodeGenWriteBarrier((&___Q_1), value);
}
inline static int32_t get_offset_of_D_2() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___D_2)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_D_2() const { return ___D_2; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_D_2() { return &___D_2; }
inline void set_D_2(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___D_2 = value;
Il2CppCodeGenWriteBarrier((&___D_2), value);
}
inline static int32_t get_offset_of_DP_3() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___DP_3)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_DP_3() const { return ___DP_3; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_DP_3() { return &___DP_3; }
inline void set_DP_3(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___DP_3 = value;
Il2CppCodeGenWriteBarrier((&___DP_3), value);
}
inline static int32_t get_offset_of_DQ_4() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___DQ_4)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_DQ_4() const { return ___DQ_4; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_DQ_4() { return &___DQ_4; }
inline void set_DQ_4(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___DQ_4 = value;
Il2CppCodeGenWriteBarrier((&___DQ_4), value);
}
inline static int32_t get_offset_of_InverseQ_5() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___InverseQ_5)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_InverseQ_5() const { return ___InverseQ_5; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_InverseQ_5() { return &___InverseQ_5; }
inline void set_InverseQ_5(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___InverseQ_5 = value;
Il2CppCodeGenWriteBarrier((&___InverseQ_5), value);
}
inline static int32_t get_offset_of_Modulus_6() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___Modulus_6)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_Modulus_6() const { return ___Modulus_6; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_Modulus_6() { return &___Modulus_6; }
inline void set_Modulus_6(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___Modulus_6 = value;
Il2CppCodeGenWriteBarrier((&___Modulus_6), value);
}
inline static int32_t get_offset_of_Exponent_7() { return static_cast<int32_t>(offsetof(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150, ___Exponent_7)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_Exponent_7() const { return ___Exponent_7; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_Exponent_7() { return &___Exponent_7; }
inline void set_Exponent_7(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___Exponent_7 = value;
Il2CppCodeGenWriteBarrier((&___Exponent_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RSAPARAMETERS_TA5A3AA05FC9F3437383EF914476E1584FC05B150_H
#ifndef SYSTEMEXCEPTION_T81A06ADD519539D252788D75E44AFFBE6580E301_H
#define SYSTEMEXCEPTION_T81A06ADD519539D252788D75E44AFFBE6580E301_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t81A06ADD519539D252788D75E44AFFBE6580E301 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T81A06ADD519539D252788D75E44AFFBE6580E301_H
#ifndef VOID_TDB81A15FA2AB53E2401A76B745D215397B29F783_H
#define VOID_TDB81A15FA2AB53E2401A76B745D215397B29F783_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_tDB81A15FA2AB53E2401A76B745D215397B29F783
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_TDB81A15FA2AB53E2401A76B745D215397B29F783_H
#ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_TB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_H
#define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_TB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0 : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields
{
public:
// <PrivateImplementationDetails>_U24ArrayTypeU243132 <PrivateImplementationDetails>::U24U24fieldU2D0
U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375 ___U24U24fieldU2D0_0;
// <PrivateImplementationDetails>_U24ArrayTypeU24256 <PrivateImplementationDetails>::U24U24fieldU2D5
U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0 ___U24U24fieldU2D5_1;
// <PrivateImplementationDetails>_U24ArrayTypeU2420 <PrivateImplementationDetails>::U24U24fieldU2D6
U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0 ___U24U24fieldU2D6_2;
// <PrivateImplementationDetails>_U24ArrayTypeU2432 <PrivateImplementationDetails>::U24U24fieldU2D7
U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF ___U24U24fieldU2D7_3;
// <PrivateImplementationDetails>_U24ArrayTypeU2448 <PrivateImplementationDetails>::U24U24fieldU2D8
U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291 ___U24U24fieldU2D8_4;
// <PrivateImplementationDetails>_U24ArrayTypeU2464 <PrivateImplementationDetails>::U24U24fieldU2D9
U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE ___U24U24fieldU2D9_5;
// <PrivateImplementationDetails>_U24ArrayTypeU2464 <PrivateImplementationDetails>::U24U24fieldU2D11
U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE ___U24U24fieldU2D11_6;
// <PrivateImplementationDetails>_U24ArrayTypeU2464 <PrivateImplementationDetails>::U24U24fieldU2D12
U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE ___U24U24fieldU2D12_7;
// <PrivateImplementationDetails>_U24ArrayTypeU2464 <PrivateImplementationDetails>::U24U24fieldU2D13
U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE ___U24U24fieldU2D13_8;
// <PrivateImplementationDetails>_U24ArrayTypeU2412 <PrivateImplementationDetails>::U24U24fieldU2D14
U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 ___U24U24fieldU2D14_9;
// <PrivateImplementationDetails>_U24ArrayTypeU2412 <PrivateImplementationDetails>::U24U24fieldU2D15
U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 ___U24U24fieldU2D15_10;
// <PrivateImplementationDetails>_U24ArrayTypeU2412 <PrivateImplementationDetails>::U24U24fieldU2D16
U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 ___U24U24fieldU2D16_11;
// <PrivateImplementationDetails>_U24ArrayTypeU2416 <PrivateImplementationDetails>::U24U24fieldU2D17
U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF ___U24U24fieldU2D17_12;
// <PrivateImplementationDetails>_U24ArrayTypeU244 <PrivateImplementationDetails>::U24U24fieldU2D21
U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 ___U24U24fieldU2D21_13;
// <PrivateImplementationDetails>_U24ArrayTypeU244 <PrivateImplementationDetails>::U24U24fieldU2D22
U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 ___U24U24fieldU2D22_14;
// <PrivateImplementationDetails>_U24ArrayTypeU244 <PrivateImplementationDetails>::U24U24fieldU2D23
U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 ___U24U24fieldU2D23_15;
public:
inline static int32_t get_offset_of_U24U24fieldU2D0_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D0_0)); }
inline U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375 get_U24U24fieldU2D0_0() const { return ___U24U24fieldU2D0_0; }
inline U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375 * get_address_of_U24U24fieldU2D0_0() { return &___U24U24fieldU2D0_0; }
inline void set_U24U24fieldU2D0_0(U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375 value)
{
___U24U24fieldU2D0_0 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D5_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D5_1)); }
inline U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0 get_U24U24fieldU2D5_1() const { return ___U24U24fieldU2D5_1; }
inline U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0 * get_address_of_U24U24fieldU2D5_1() { return &___U24U24fieldU2D5_1; }
inline void set_U24U24fieldU2D5_1(U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0 value)
{
___U24U24fieldU2D5_1 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D6_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D6_2)); }
inline U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0 get_U24U24fieldU2D6_2() const { return ___U24U24fieldU2D6_2; }
inline U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0 * get_address_of_U24U24fieldU2D6_2() { return &___U24U24fieldU2D6_2; }
inline void set_U24U24fieldU2D6_2(U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0 value)
{
___U24U24fieldU2D6_2 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D7_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D7_3)); }
inline U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF get_U24U24fieldU2D7_3() const { return ___U24U24fieldU2D7_3; }
inline U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF * get_address_of_U24U24fieldU2D7_3() { return &___U24U24fieldU2D7_3; }
inline void set_U24U24fieldU2D7_3(U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF value)
{
___U24U24fieldU2D7_3 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D8_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D8_4)); }
inline U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291 get_U24U24fieldU2D8_4() const { return ___U24U24fieldU2D8_4; }
inline U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291 * get_address_of_U24U24fieldU2D8_4() { return &___U24U24fieldU2D8_4; }
inline void set_U24U24fieldU2D8_4(U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291 value)
{
___U24U24fieldU2D8_4 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D9_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D9_5)); }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE get_U24U24fieldU2D9_5() const { return ___U24U24fieldU2D9_5; }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE * get_address_of_U24U24fieldU2D9_5() { return &___U24U24fieldU2D9_5; }
inline void set_U24U24fieldU2D9_5(U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE value)
{
___U24U24fieldU2D9_5 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D11_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D11_6)); }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE get_U24U24fieldU2D11_6() const { return ___U24U24fieldU2D11_6; }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE * get_address_of_U24U24fieldU2D11_6() { return &___U24U24fieldU2D11_6; }
inline void set_U24U24fieldU2D11_6(U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE value)
{
___U24U24fieldU2D11_6 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D12_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D12_7)); }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE get_U24U24fieldU2D12_7() const { return ___U24U24fieldU2D12_7; }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE * get_address_of_U24U24fieldU2D12_7() { return &___U24U24fieldU2D12_7; }
inline void set_U24U24fieldU2D12_7(U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE value)
{
___U24U24fieldU2D12_7 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D13_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D13_8)); }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE get_U24U24fieldU2D13_8() const { return ___U24U24fieldU2D13_8; }
inline U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE * get_address_of_U24U24fieldU2D13_8() { return &___U24U24fieldU2D13_8; }
inline void set_U24U24fieldU2D13_8(U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE value)
{
___U24U24fieldU2D13_8 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D14_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D14_9)); }
inline U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 get_U24U24fieldU2D14_9() const { return ___U24U24fieldU2D14_9; }
inline U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 * get_address_of_U24U24fieldU2D14_9() { return &___U24U24fieldU2D14_9; }
inline void set_U24U24fieldU2D14_9(U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 value)
{
___U24U24fieldU2D14_9 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D15_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D15_10)); }
inline U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 get_U24U24fieldU2D15_10() const { return ___U24U24fieldU2D15_10; }
inline U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 * get_address_of_U24U24fieldU2D15_10() { return &___U24U24fieldU2D15_10; }
inline void set_U24U24fieldU2D15_10(U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 value)
{
___U24U24fieldU2D15_10 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D16_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D16_11)); }
inline U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 get_U24U24fieldU2D16_11() const { return ___U24U24fieldU2D16_11; }
inline U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 * get_address_of_U24U24fieldU2D16_11() { return &___U24U24fieldU2D16_11; }
inline void set_U24U24fieldU2D16_11(U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 value)
{
___U24U24fieldU2D16_11 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D17_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D17_12)); }
inline U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF get_U24U24fieldU2D17_12() const { return ___U24U24fieldU2D17_12; }
inline U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF * get_address_of_U24U24fieldU2D17_12() { return &___U24U24fieldU2D17_12; }
inline void set_U24U24fieldU2D17_12(U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF value)
{
___U24U24fieldU2D17_12 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D21_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D21_13)); }
inline U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 get_U24U24fieldU2D21_13() const { return ___U24U24fieldU2D21_13; }
inline U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 * get_address_of_U24U24fieldU2D21_13() { return &___U24U24fieldU2D21_13; }
inline void set_U24U24fieldU2D21_13(U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 value)
{
___U24U24fieldU2D21_13 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D22_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D22_14)); }
inline U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 get_U24U24fieldU2D22_14() const { return ___U24U24fieldU2D22_14; }
inline U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 * get_address_of_U24U24fieldU2D22_14() { return &___U24U24fieldU2D22_14; }
inline void set_U24U24fieldU2D22_14(U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 value)
{
___U24U24fieldU2D22_14 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D23_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields, ___U24U24fieldU2D23_15)); }
inline U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 get_U24U24fieldU2D23_15() const { return ___U24U24fieldU2D23_15; }
inline U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 * get_address_of_U24U24fieldU2D23_15() { return &___U24U24fieldU2D23_15; }
inline void set_U24U24fieldU2D23_15(U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 value)
{
___U24U24fieldU2D23_15 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_TB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_H
#ifndef CONFIDENCEFACTOR_T09F5717EE806C44975FD23B3ED7DB48019FFD84E_H
#define CONFIDENCEFACTOR_T09F5717EE806C44975FD23B3ED7DB48019FFD84E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Math.Prime.ConfidenceFactor
struct ConfidenceFactor_t09F5717EE806C44975FD23B3ED7DB48019FFD84E
{
public:
// System.Int32 Mono.Math.Prime.ConfidenceFactor::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ConfidenceFactor_t09F5717EE806C44975FD23B3ED7DB48019FFD84E, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIDENCEFACTOR_T09F5717EE806C44975FD23B3ED7DB48019FFD84E_H
#ifndef CONTENTTYPE_T9061EB188B2DD3900C62259EB0BAE7205449A29D_H
#define CONTENTTYPE_T9061EB188B2DD3900C62259EB0BAE7205449A29D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.ContentType
struct ContentType_t9061EB188B2DD3900C62259EB0BAE7205449A29D
{
public:
// System.Byte Mono.Security.Protocol.Tls.ContentType::value__
uint8_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ContentType_t9061EB188B2DD3900C62259EB0BAE7205449A29D, ___value___1)); }
inline uint8_t get_value___1() const { return ___value___1; }
inline uint8_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(uint8_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTENTTYPE_T9061EB188B2DD3900C62259EB0BAE7205449A29D_H
#ifndef HANDSHAKETYPE_T0A4BCF35DDA0E586A4157D82F311B800974F3E13_H
#define HANDSHAKETYPE_T0A4BCF35DDA0E586A4157D82F311B800974F3E13_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.HandshakeType
struct HandshakeType_t0A4BCF35DDA0E586A4157D82F311B800974F3E13
{
public:
// System.Byte Mono.Security.Protocol.Tls.Handshake.HandshakeType::value__
uint8_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(HandshakeType_t0A4BCF35DDA0E586A4157D82F311B800974F3E13, ___value___1)); }
inline uint8_t get_value___1() const { return ___value___1; }
inline uint8_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(uint8_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HANDSHAKETYPE_T0A4BCF35DDA0E586A4157D82F311B800974F3E13_H
#ifndef SECURITYCOMPRESSIONTYPE_T4530F0B7005BDB6ADEB35A3CDDCBDC5E591751ED_H
#define SECURITYCOMPRESSIONTYPE_T4530F0B7005BDB6ADEB35A3CDDCBDC5E591751ED_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SecurityCompressionType
struct SecurityCompressionType_t4530F0B7005BDB6ADEB35A3CDDCBDC5E591751ED
{
public:
// System.Int32 Mono.Security.Protocol.Tls.SecurityCompressionType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SecurityCompressionType_t4530F0B7005BDB6ADEB35A3CDDCBDC5E591751ED, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYCOMPRESSIONTYPE_T4530F0B7005BDB6ADEB35A3CDDCBDC5E591751ED_H
#ifndef EDITORBROWSABLESTATE_T29045763CB3BEAC19254BB89EEF28ECA6A824E22_H
#define EDITORBROWSABLESTATE_T29045763CB3BEAC19254BB89EEF28ECA6A824E22_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.EditorBrowsableState
struct EditorBrowsableState_t29045763CB3BEAC19254BB89EEF28ECA6A824E22
{
public:
// System.Int32 System.ComponentModel.EditorBrowsableState::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(EditorBrowsableState_t29045763CB3BEAC19254BB89EEF28ECA6A824E22, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EDITORBROWSABLESTATE_T29045763CB3BEAC19254BB89EEF28ECA6A824E22_H
#ifndef DELEGATE_T_H
#define DELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_5;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_6;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_7;
// System.DelegateData System.Delegate::data
DelegateData_tF588FE8D395F9A38FC7D222940F9B218441D21A9 * ___data_8;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_5)); }
inline intptr_t get_method_code_5() const { return ___method_code_5; }
inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; }
inline void set_method_code_5(intptr_t value)
{
___method_code_5 = value;
}
inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_6)); }
inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; }
inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; }
inline void set_method_info_6(MethodInfo_t * value)
{
___method_info_6 = value;
Il2CppCodeGenWriteBarrier((&___method_info_6), value);
}
inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_7)); }
inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; }
inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; }
inline void set_original_method_info_7(MethodInfo_t * value)
{
___original_method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_7), value);
}
inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_8)); }
inline DelegateData_tF588FE8D395F9A38FC7D222940F9B218441D21A9 * get_data_8() const { return ___data_8; }
inline DelegateData_tF588FE8D395F9A38FC7D222940F9B218441D21A9 ** get_address_of_data_8() { return &___data_8; }
inline void set_data_8(DelegateData_tF588FE8D395F9A38FC7D222940F9B218441D21A9 * value)
{
___data_8 = value;
Il2CppCodeGenWriteBarrier((&___data_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DELEGATE_T_H
#ifndef COMPRESSIONMODE_T535F84D55EC31A6E5A333E468EC2B8A92E5207B8_H
#define COMPRESSIONMODE_T535F84D55EC31A6E5A333E468EC2B8A92E5207B8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.CompressionMode
struct CompressionMode_t535F84D55EC31A6E5A333E468EC2B8A92E5207B8
{
public:
// System.Int32 System.IO.Compression.CompressionMode::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CompressionMode_t535F84D55EC31A6E5A333E468EC2B8A92E5207B8, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPRESSIONMODE_T535F84D55EC31A6E5A333E468EC2B8A92E5207B8_H
#ifndef FILEACCESS_T31DF356A13590FED578C50963AE6A7DE1D2AF4A9_H
#define FILEACCESS_T31DF356A13590FED578C50963AE6A7DE1D2AF4A9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileAccess
struct FileAccess_t31DF356A13590FED578C50963AE6A7DE1D2AF4A9
{
public:
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(FileAccess_t31DF356A13590FED578C50963AE6A7DE1D2AF4A9, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEACCESS_T31DF356A13590FED578C50963AE6A7DE1D2AF4A9_H
#ifndef HTTPREQUESTHEADER_T108500199B65E07728C618542222C53AA8C1064B_H
#define HTTPREQUESTHEADER_T108500199B65E07728C618542222C53AA8C1064B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.HttpRequestHeader
struct HttpRequestHeader_t108500199B65E07728C618542222C53AA8C1064B
{
public:
// System.Int32 System.Net.HttpRequestHeader::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(HttpRequestHeader_t108500199B65E07728C618542222C53AA8C1064B, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HTTPREQUESTHEADER_T108500199B65E07728C618542222C53AA8C1064B_H
#ifndef HTTPRESPONSEHEADER_T65CEF936279F28AF8A67629491C15C44B6391C1B_H
#define HTTPRESPONSEHEADER_T65CEF936279F28AF8A67629491C15C44B6391C1B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.HttpResponseHeader
struct HttpResponseHeader_t65CEF936279F28AF8A67629491C15C44B6391C1B
{
public:
// System.Int32 System.Net.HttpResponseHeader::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(HttpResponseHeader_t65CEF936279F28AF8A67629491C15C44B6391C1B, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HTTPRESPONSEHEADER_T65CEF936279F28AF8A67629491C15C44B6391C1B_H
#ifndef AUTHENTICATIONLEVEL_TDD7C55ABAF179BD6273AA3DC6AC59A265B006E17_H
#define AUTHENTICATIONLEVEL_TDD7C55ABAF179BD6273AA3DC6AC59A265B006E17_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.AuthenticationLevel
struct AuthenticationLevel_tDD7C55ABAF179BD6273AA3DC6AC59A265B006E17
{
public:
// System.Int32 System.Net.Security.AuthenticationLevel::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AuthenticationLevel_tDD7C55ABAF179BD6273AA3DC6AC59A265B006E17, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // AUTHENTICATIONLEVEL_TDD7C55ABAF179BD6273AA3DC6AC59A265B006E17_H
#ifndef SSLPOLICYERRORS_T821E0247A29EDB8CD8327153A81349E907DBE6E9_H
#define SSLPOLICYERRORS_T821E0247A29EDB8CD8327153A81349E907DBE6E9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.SslPolicyErrors
struct SslPolicyErrors_t821E0247A29EDB8CD8327153A81349E907DBE6E9
{
public:
// System.Int32 System.Net.Security.SslPolicyErrors::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SslPolicyErrors_t821E0247A29EDB8CD8327153A81349E907DBE6E9, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLPOLICYERRORS_T821E0247A29EDB8CD8327153A81349E907DBE6E9_H
#ifndef SSLSTREAM_TC58E03397FD48E34D92CD16EF17F480748888B02_H
#define SSLSTREAM_TC58E03397FD48E34D92CD16EF17F480748888B02_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.SslStream
struct SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02 : public AuthenticatedStream_tD1567684CF73B3685DA40392729A8B4B0313E8CB
{
public:
// Mono.Security.Protocol.Tls.SslStreamBase System.Net.Security.SslStream::ssl_stream
SslStreamBase_tC63FA60C7C4F937F028A69CB890F91A7C87D3D0C * ___ssl_stream_3;
// System.Net.Security.RemoteCertificateValidationCallback System.Net.Security.SslStream::validation_callback
RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * ___validation_callback_4;
// System.Net.Security.LocalCertificateSelectionCallback System.Net.Security.SslStream::selection_callback
LocalCertificateSelectionCallback_tE1266150C68C19D7DCBB2CE25CF18122C9337981 * ___selection_callback_5;
public:
inline static int32_t get_offset_of_ssl_stream_3() { return static_cast<int32_t>(offsetof(SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02, ___ssl_stream_3)); }
inline SslStreamBase_tC63FA60C7C4F937F028A69CB890F91A7C87D3D0C * get_ssl_stream_3() const { return ___ssl_stream_3; }
inline SslStreamBase_tC63FA60C7C4F937F028A69CB890F91A7C87D3D0C ** get_address_of_ssl_stream_3() { return &___ssl_stream_3; }
inline void set_ssl_stream_3(SslStreamBase_tC63FA60C7C4F937F028A69CB890F91A7C87D3D0C * value)
{
___ssl_stream_3 = value;
Il2CppCodeGenWriteBarrier((&___ssl_stream_3), value);
}
inline static int32_t get_offset_of_validation_callback_4() { return static_cast<int32_t>(offsetof(SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02, ___validation_callback_4)); }
inline RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * get_validation_callback_4() const { return ___validation_callback_4; }
inline RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 ** get_address_of_validation_callback_4() { return &___validation_callback_4; }
inline void set_validation_callback_4(RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * value)
{
___validation_callback_4 = value;
Il2CppCodeGenWriteBarrier((&___validation_callback_4), value);
}
inline static int32_t get_offset_of_selection_callback_5() { return static_cast<int32_t>(offsetof(SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02, ___selection_callback_5)); }
inline LocalCertificateSelectionCallback_tE1266150C68C19D7DCBB2CE25CF18122C9337981 * get_selection_callback_5() const { return ___selection_callback_5; }
inline LocalCertificateSelectionCallback_tE1266150C68C19D7DCBB2CE25CF18122C9337981 ** get_address_of_selection_callback_5() { return &___selection_callback_5; }
inline void set_selection_callback_5(LocalCertificateSelectionCallback_tE1266150C68C19D7DCBB2CE25CF18122C9337981 * value)
{
___selection_callback_5 = value;
Il2CppCodeGenWriteBarrier((&___selection_callback_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLSTREAM_TC58E03397FD48E34D92CD16EF17F480748888B02_H
#ifndef ADDRESSFAMILY_T56E41B784F73C1D53BE91A309AB9E5A35F947876_H
#define ADDRESSFAMILY_T56E41B784F73C1D53BE91A309AB9E5A35F947876_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.AddressFamily
struct AddressFamily_t56E41B784F73C1D53BE91A309AB9E5A35F947876
{
public:
// System.Int32 System.Net.Sockets.AddressFamily::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AddressFamily_t56E41B784F73C1D53BE91A309AB9E5A35F947876, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ADDRESSFAMILY_T56E41B784F73C1D53BE91A309AB9E5A35F947876_H
#ifndef PROTOCOLTYPE_T1223B6D594BC5A355A06BC2193B1EE86A1EC3298_H
#define PROTOCOLTYPE_T1223B6D594BC5A355A06BC2193B1EE86A1EC3298_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.ProtocolType
struct ProtocolType_t1223B6D594BC5A355A06BC2193B1EE86A1EC3298
{
public:
// System.Int32 System.Net.Sockets.ProtocolType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ProtocolType_t1223B6D594BC5A355A06BC2193B1EE86A1EC3298, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROTOCOLTYPE_T1223B6D594BC5A355A06BC2193B1EE86A1EC3298_H
#ifndef SELECTMODE_T63DBEB3888C548C3B2F79C56CEFB19D8C93B9963_H
#define SELECTMODE_T63DBEB3888C548C3B2F79C56CEFB19D8C93B9963_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SelectMode
struct SelectMode_t63DBEB3888C548C3B2F79C56CEFB19D8C93B9963
{
public:
// System.Int32 System.Net.Sockets.SelectMode::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SelectMode_t63DBEB3888C548C3B2F79C56CEFB19D8C93B9963, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTMODE_T63DBEB3888C548C3B2F79C56CEFB19D8C93B9963_H
#ifndef SOCKETOPERATION_TA812699D05A43751860066A6FAB3D7C3EC199217_H
#define SOCKETOPERATION_TA812699D05A43751860066A6FAB3D7C3EC199217_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.Socket_SocketOperation
struct SocketOperation_tA812699D05A43751860066A6FAB3D7C3EC199217
{
public:
// System.Int32 System.Net.Sockets.Socket_SocketOperation::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketOperation_tA812699D05A43751860066A6FAB3D7C3EC199217, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETOPERATION_TA812699D05A43751860066A6FAB3D7C3EC199217_H
#ifndef SOCKETASYNCOPERATION_TBC4E2C28279395EED1128B17804E2637CA216B83_H
#define SOCKETASYNCOPERATION_TBC4E2C28279395EED1128B17804E2637CA216B83_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketAsyncOperation
struct SocketAsyncOperation_tBC4E2C28279395EED1128B17804E2637CA216B83
{
public:
// System.Int32 System.Net.Sockets.SocketAsyncOperation::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketAsyncOperation_tBC4E2C28279395EED1128B17804E2637CA216B83, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETASYNCOPERATION_TBC4E2C28279395EED1128B17804E2637CA216B83_H
#ifndef SOCKETERROR_TC34E45C7F26E52F15247953F3FFAC887AE2FF4EF_H
#define SOCKETERROR_TC34E45C7F26E52F15247953F3FFAC887AE2FF4EF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketError
struct SocketError_tC34E45C7F26E52F15247953F3FFAC887AE2FF4EF
{
public:
// System.Int32 System.Net.Sockets.SocketError::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketError_tC34E45C7F26E52F15247953F3FFAC887AE2FF4EF, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETERROR_TC34E45C7F26E52F15247953F3FFAC887AE2FF4EF_H
#ifndef SOCKETFLAGS_T5240370DDBF286FBD7D3DE6DD712965DABC51962_H
#define SOCKETFLAGS_T5240370DDBF286FBD7D3DE6DD712965DABC51962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketFlags
struct SocketFlags_t5240370DDBF286FBD7D3DE6DD712965DABC51962
{
public:
// System.Int32 System.Net.Sockets.SocketFlags::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketFlags_t5240370DDBF286FBD7D3DE6DD712965DABC51962, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETFLAGS_T5240370DDBF286FBD7D3DE6DD712965DABC51962_H
#ifndef SOCKETOPTIONLEVEL_T16A2C4AF3E0DA331C1DD44EA1A5587DDE3FBB0B4_H
#define SOCKETOPTIONLEVEL_T16A2C4AF3E0DA331C1DD44EA1A5587DDE3FBB0B4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketOptionLevel
struct SocketOptionLevel_t16A2C4AF3E0DA331C1DD44EA1A5587DDE3FBB0B4
{
public:
// System.Int32 System.Net.Sockets.SocketOptionLevel::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketOptionLevel_t16A2C4AF3E0DA331C1DD44EA1A5587DDE3FBB0B4, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETOPTIONLEVEL_T16A2C4AF3E0DA331C1DD44EA1A5587DDE3FBB0B4_H
#ifndef SOCKETOPTIONNAME_T7EDE8ADE79DE30F68493017CE15235C5B770409B_H
#define SOCKETOPTIONNAME_T7EDE8ADE79DE30F68493017CE15235C5B770409B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketOptionName
struct SocketOptionName_t7EDE8ADE79DE30F68493017CE15235C5B770409B
{
public:
// System.Int32 System.Net.Sockets.SocketOptionName::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketOptionName_t7EDE8ADE79DE30F68493017CE15235C5B770409B, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETOPTIONNAME_T7EDE8ADE79DE30F68493017CE15235C5B770409B_H
#ifndef SOCKETSHUTDOWN_T43233BE07927F1DC6413AC0902E0F26CFF5E33E3_H
#define SOCKETSHUTDOWN_T43233BE07927F1DC6413AC0902E0F26CFF5E33E3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketShutdown
struct SocketShutdown_t43233BE07927F1DC6413AC0902E0F26CFF5E33E3
{
public:
// System.Int32 System.Net.Sockets.SocketShutdown::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketShutdown_t43233BE07927F1DC6413AC0902E0F26CFF5E33E3, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETSHUTDOWN_T43233BE07927F1DC6413AC0902E0F26CFF5E33E3_H
#ifndef SOCKETTYPE_T1B9521817354AD18AAD4F25B8575AEFE3A1160CD_H
#define SOCKETTYPE_T1B9521817354AD18AAD4F25B8575AEFE3A1160CD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketType
struct SocketType_t1B9521817354AD18AAD4F25B8575AEFE3A1160CD
{
public:
// System.Int32 System.Net.Sockets.SocketType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SocketType_t1B9521817354AD18AAD4F25B8575AEFE3A1160CD, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETTYPE_T1B9521817354AD18AAD4F25B8575AEFE3A1160CD_H
#ifndef PROPERTIES_T097EA488E9DF1053ABA670D68E0F7F33FC3CD017_H
#define PROPERTIES_T097EA488E9DF1053ABA670D68E0F7F33FC3CD017_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.TcpClient_Properties
struct Properties_t097EA488E9DF1053ABA670D68E0F7F33FC3CD017
{
public:
// System.UInt32 System.Net.Sockets.TcpClient_Properties::value__
uint32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(Properties_t097EA488E9DF1053ABA670D68E0F7F33FC3CD017, ___value___1)); }
inline uint32_t get_value___1() const { return ___value___1; }
inline uint32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(uint32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROPERTIES_T097EA488E9DF1053ABA670D68E0F7F33FC3CD017_H
#ifndef EXTERNALEXCEPTION_TF3125876B625B17B9682FFEA1AF1B405736E67C7_H
#define EXTERNALEXCEPTION_TF3125876B625B17B9682FFEA1AF1B405736E67C7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.ExternalException
struct ExternalException_tF3125876B625B17B9682FFEA1AF1B405736E67C7 : public SystemException_t81A06ADD519539D252788D75E44AFFBE6580E301
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXTERNALEXCEPTION_TF3125876B625B17B9682FFEA1AF1B405736E67C7_H
#ifndef HANDSHAKEMESSAGE_TEBF369C889158C306E3A860F224B7486028C0FC1_H
#define HANDSHAKEMESSAGE_TEBF369C889158C306E3A860F224B7486028C0FC1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.HandshakeMessage
struct HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1 : public TlsStream_t564FEEACB059C6549038DCA5C737C62C96135490
{
public:
// Mono.Security.Protocol.Tls.Context Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::context
Context_tFB7966C5881B9A31E697B2C7CB4E8A5AA13BB1B9 * ___context_5;
// Mono.Security.Protocol.Tls.Handshake.HandshakeType Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::handshakeType
uint8_t ___handshakeType_6;
// Mono.Security.Protocol.Tls.ContentType Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::contentType
uint8_t ___contentType_7;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::cache
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___cache_8;
public:
inline static int32_t get_offset_of_context_5() { return static_cast<int32_t>(offsetof(HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1, ___context_5)); }
inline Context_tFB7966C5881B9A31E697B2C7CB4E8A5AA13BB1B9 * get_context_5() const { return ___context_5; }
inline Context_tFB7966C5881B9A31E697B2C7CB4E8A5AA13BB1B9 ** get_address_of_context_5() { return &___context_5; }
inline void set_context_5(Context_tFB7966C5881B9A31E697B2C7CB4E8A5AA13BB1B9 * value)
{
___context_5 = value;
Il2CppCodeGenWriteBarrier((&___context_5), value);
}
inline static int32_t get_offset_of_handshakeType_6() { return static_cast<int32_t>(offsetof(HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1, ___handshakeType_6)); }
inline uint8_t get_handshakeType_6() const { return ___handshakeType_6; }
inline uint8_t* get_address_of_handshakeType_6() { return &___handshakeType_6; }
inline void set_handshakeType_6(uint8_t value)
{
___handshakeType_6 = value;
}
inline static int32_t get_offset_of_contentType_7() { return static_cast<int32_t>(offsetof(HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1, ___contentType_7)); }
inline uint8_t get_contentType_7() const { return ___contentType_7; }
inline uint8_t* get_address_of_contentType_7() { return &___contentType_7; }
inline void set_contentType_7(uint8_t value)
{
___contentType_7 = value;
}
inline static int32_t get_offset_of_cache_8() { return static_cast<int32_t>(offsetof(HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1, ___cache_8)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_cache_8() const { return ___cache_8; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_cache_8() { return &___cache_8; }
inline void set_cache_8(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___cache_8 = value;
Il2CppCodeGenWriteBarrier((&___cache_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HANDSHAKEMESSAGE_TEBF369C889158C306E3A860F224B7486028C0FC1_H
#ifndef EDITORBROWSABLEATTRIBUTE_T89B76DD408DEC1C18C8B0F2A40836D5728A827DD_H
#define EDITORBROWSABLEATTRIBUTE_T89B76DD408DEC1C18C8B0F2A40836D5728A827DD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.EditorBrowsableAttribute
struct EditorBrowsableAttribute_t89B76DD408DEC1C18C8B0F2A40836D5728A827DD : public Attribute_t60F25EB48D5935E4C6C2BAF7F90F57A43528E469
{
public:
// System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::state
int32_t ___state_0;
public:
inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(EditorBrowsableAttribute_t89B76DD408DEC1C18C8B0F2A40836D5728A827DD, ___state_0)); }
inline int32_t get_state_0() const { return ___state_0; }
inline int32_t* get_address_of_state_0() { return &___state_0; }
inline void set_state_0(int32_t value)
{
___state_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EDITORBROWSABLEATTRIBUTE_T89B76DD408DEC1C18C8B0F2A40836D5728A827DD_H
#ifndef WIN32EXCEPTION_T49FE19329E4B4698A554BED1E8C37D0F1A4CC873_H
#define WIN32EXCEPTION_T49FE19329E4B4698A554BED1E8C37D0F1A4CC873_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.Win32Exception
struct Win32Exception_t49FE19329E4B4698A554BED1E8C37D0F1A4CC873 : public ExternalException_tF3125876B625B17B9682FFEA1AF1B405736E67C7
{
public:
// System.Int32 System.ComponentModel.Win32Exception::native_error_code
int32_t ___native_error_code_11;
public:
inline static int32_t get_offset_of_native_error_code_11() { return static_cast<int32_t>(offsetof(Win32Exception_t49FE19329E4B4698A554BED1E8C37D0F1A4CC873, ___native_error_code_11)); }
inline int32_t get_native_error_code_11() const { return ___native_error_code_11; }
inline int32_t* get_address_of_native_error_code_11() { return &___native_error_code_11; }
inline void set_native_error_code_11(int32_t value)
{
___native_error_code_11 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WIN32EXCEPTION_T49FE19329E4B4698A554BED1E8C37D0F1A4CC873_H
#ifndef DEFLATESTREAM_T3993C952E7EF0747F70E757E7A22EAAE89E8884E_H
#define DEFLATESTREAM_T3993C952E7EF0747F70E757E7A22EAAE89E8884E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream
struct DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E : public Stream_tCFD27E43C18381861212C0288CACF467FB602009
{
public:
// System.IO.Stream System.IO.Compression.DeflateStream::base_stream
Stream_tCFD27E43C18381861212C0288CACF467FB602009 * ___base_stream_1;
// System.IO.Compression.CompressionMode System.IO.Compression.DeflateStream::mode
int32_t ___mode_2;
// System.Boolean System.IO.Compression.DeflateStream::leaveOpen
bool ___leaveOpen_3;
// System.Boolean System.IO.Compression.DeflateStream::disposed
bool ___disposed_4;
// System.IO.Compression.DeflateStream_UnmanagedReadOrWrite System.IO.Compression.DeflateStream::feeder
UnmanagedReadOrWrite_t2247EF4976B7CD4D3E37AE6D93EB8409AFC01522 * ___feeder_5;
// System.IntPtr System.IO.Compression.DeflateStream::z_stream
intptr_t ___z_stream_6;
// System.Byte[] System.IO.Compression.DeflateStream::io_buffer
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___io_buffer_7;
// System.Runtime.InteropServices.GCHandle System.IO.Compression.DeflateStream::data
GCHandle_tE002D24915851AD73ACC0F503601C384273C3060 ___data_8;
public:
inline static int32_t get_offset_of_base_stream_1() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___base_stream_1)); }
inline Stream_tCFD27E43C18381861212C0288CACF467FB602009 * get_base_stream_1() const { return ___base_stream_1; }
inline Stream_tCFD27E43C18381861212C0288CACF467FB602009 ** get_address_of_base_stream_1() { return &___base_stream_1; }
inline void set_base_stream_1(Stream_tCFD27E43C18381861212C0288CACF467FB602009 * value)
{
___base_stream_1 = value;
Il2CppCodeGenWriteBarrier((&___base_stream_1), value);
}
inline static int32_t get_offset_of_mode_2() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___mode_2)); }
inline int32_t get_mode_2() const { return ___mode_2; }
inline int32_t* get_address_of_mode_2() { return &___mode_2; }
inline void set_mode_2(int32_t value)
{
___mode_2 = value;
}
inline static int32_t get_offset_of_leaveOpen_3() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___leaveOpen_3)); }
inline bool get_leaveOpen_3() const { return ___leaveOpen_3; }
inline bool* get_address_of_leaveOpen_3() { return &___leaveOpen_3; }
inline void set_leaveOpen_3(bool value)
{
___leaveOpen_3 = value;
}
inline static int32_t get_offset_of_disposed_4() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___disposed_4)); }
inline bool get_disposed_4() const { return ___disposed_4; }
inline bool* get_address_of_disposed_4() { return &___disposed_4; }
inline void set_disposed_4(bool value)
{
___disposed_4 = value;
}
inline static int32_t get_offset_of_feeder_5() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___feeder_5)); }
inline UnmanagedReadOrWrite_t2247EF4976B7CD4D3E37AE6D93EB8409AFC01522 * get_feeder_5() const { return ___feeder_5; }
inline UnmanagedReadOrWrite_t2247EF4976B7CD4D3E37AE6D93EB8409AFC01522 ** get_address_of_feeder_5() { return &___feeder_5; }
inline void set_feeder_5(UnmanagedReadOrWrite_t2247EF4976B7CD4D3E37AE6D93EB8409AFC01522 * value)
{
___feeder_5 = value;
Il2CppCodeGenWriteBarrier((&___feeder_5), value);
}
inline static int32_t get_offset_of_z_stream_6() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___z_stream_6)); }
inline intptr_t get_z_stream_6() const { return ___z_stream_6; }
inline intptr_t* get_address_of_z_stream_6() { return &___z_stream_6; }
inline void set_z_stream_6(intptr_t value)
{
___z_stream_6 = value;
}
inline static int32_t get_offset_of_io_buffer_7() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___io_buffer_7)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_io_buffer_7() const { return ___io_buffer_7; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_io_buffer_7() { return &___io_buffer_7; }
inline void set_io_buffer_7(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___io_buffer_7 = value;
Il2CppCodeGenWriteBarrier((&___io_buffer_7), value);
}
inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E, ___data_8)); }
inline GCHandle_tE002D24915851AD73ACC0F503601C384273C3060 get_data_8() const { return ___data_8; }
inline GCHandle_tE002D24915851AD73ACC0F503601C384273C3060 * get_address_of_data_8() { return &___data_8; }
inline void set_data_8(GCHandle_tE002D24915851AD73ACC0F503601C384273C3060 value)
{
___data_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEFLATESTREAM_T3993C952E7EF0747F70E757E7A22EAAE89E8884E_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.MulticastDelegate System.MulticastDelegate::prev
MulticastDelegate_t * ___prev_9;
// System.MulticastDelegate System.MulticastDelegate::kpm_next
MulticastDelegate_t * ___kpm_next_10;
public:
inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); }
inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; }
inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; }
inline void set_prev_9(MulticastDelegate_t * value)
{
___prev_9 = value;
Il2CppCodeGenWriteBarrier((&___prev_9), value);
}
inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); }
inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; }
inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; }
inline void set_kpm_next_10(MulticastDelegate_t * value)
{
___kpm_next_10 = value;
Il2CppCodeGenWriteBarrier((&___kpm_next_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MULTICASTDELEGATE_T_H
#ifndef NETWORKSTREAM_TD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E_H
#define NETWORKSTREAM_TD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.NetworkStream
struct NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E : public Stream_tCFD27E43C18381861212C0288CACF467FB602009
{
public:
// System.IO.FileAccess System.Net.Sockets.NetworkStream::access
int32_t ___access_1;
// System.Net.Sockets.Socket System.Net.Sockets.NetworkStream::socket
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___socket_2;
// System.Boolean System.Net.Sockets.NetworkStream::owns_socket
bool ___owns_socket_3;
// System.Boolean System.Net.Sockets.NetworkStream::readable
bool ___readable_4;
// System.Boolean System.Net.Sockets.NetworkStream::writeable
bool ___writeable_5;
// System.Boolean System.Net.Sockets.NetworkStream::disposed
bool ___disposed_6;
public:
inline static int32_t get_offset_of_access_1() { return static_cast<int32_t>(offsetof(NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E, ___access_1)); }
inline int32_t get_access_1() const { return ___access_1; }
inline int32_t* get_address_of_access_1() { return &___access_1; }
inline void set_access_1(int32_t value)
{
___access_1 = value;
}
inline static int32_t get_offset_of_socket_2() { return static_cast<int32_t>(offsetof(NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E, ___socket_2)); }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * get_socket_2() const { return ___socket_2; }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 ** get_address_of_socket_2() { return &___socket_2; }
inline void set_socket_2(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * value)
{
___socket_2 = value;
Il2CppCodeGenWriteBarrier((&___socket_2), value);
}
inline static int32_t get_offset_of_owns_socket_3() { return static_cast<int32_t>(offsetof(NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E, ___owns_socket_3)); }
inline bool get_owns_socket_3() const { return ___owns_socket_3; }
inline bool* get_address_of_owns_socket_3() { return &___owns_socket_3; }
inline void set_owns_socket_3(bool value)
{
___owns_socket_3 = value;
}
inline static int32_t get_offset_of_readable_4() { return static_cast<int32_t>(offsetof(NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E, ___readable_4)); }
inline bool get_readable_4() const { return ___readable_4; }
inline bool* get_address_of_readable_4() { return &___readable_4; }
inline void set_readable_4(bool value)
{
___readable_4 = value;
}
inline static int32_t get_offset_of_writeable_5() { return static_cast<int32_t>(offsetof(NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E, ___writeable_5)); }
inline bool get_writeable_5() const { return ___writeable_5; }
inline bool* get_address_of_writeable_5() { return &___writeable_5; }
inline void set_writeable_5(bool value)
{
___writeable_5 = value;
}
inline static int32_t get_offset_of_disposed_6() { return static_cast<int32_t>(offsetof(NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E, ___disposed_6)); }
inline bool get_disposed_6() const { return ___disposed_6; }
inline bool* get_address_of_disposed_6() { return &___disposed_6; }
inline void set_disposed_6(bool value)
{
___disposed_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETWORKSTREAM_TD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E_H
#ifndef SOCKET_T78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_H
#define SOCKET_T78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.Socket
struct Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 : public RuntimeObject
{
public:
// System.Collections.Queue System.Net.Sockets.Socket::readQ
Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD * ___readQ_0;
// System.Collections.Queue System.Net.Sockets.Socket::writeQ
Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD * ___writeQ_1;
// System.Boolean System.Net.Sockets.Socket::islistening
bool ___islistening_2;
// System.Boolean System.Net.Sockets.Socket::useoverlappedIO
bool ___useoverlappedIO_3;
// System.Int32 System.Net.Sockets.Socket::MinListenPort
int32_t ___MinListenPort_4;
// System.Int32 System.Net.Sockets.Socket::MaxListenPort
int32_t ___MaxListenPort_5;
// System.Int32 System.Net.Sockets.Socket::linger_timeout
int32_t ___linger_timeout_8;
// System.IntPtr System.Net.Sockets.Socket::socket
intptr_t ___socket_9;
// System.Net.Sockets.AddressFamily System.Net.Sockets.Socket::address_family
int32_t ___address_family_10;
// System.Net.Sockets.SocketType System.Net.Sockets.Socket::socket_type
int32_t ___socket_type_11;
// System.Net.Sockets.ProtocolType System.Net.Sockets.Socket::protocol_type
int32_t ___protocol_type_12;
// System.Boolean System.Net.Sockets.Socket::blocking
bool ___blocking_13;
// System.Threading.Thread System.Net.Sockets.Socket::blocking_thread
Thread_t83C301EC970792455F76D89E58140949B003EA50 * ___blocking_thread_14;
// System.Boolean System.Net.Sockets.Socket::isbound
bool ___isbound_15;
// System.Int32 System.Net.Sockets.Socket::max_bind_count
int32_t ___max_bind_count_17;
// System.Boolean System.Net.Sockets.Socket::connected
bool ___connected_18;
// System.Boolean System.Net.Sockets.Socket::closed
bool ___closed_19;
// System.Boolean System.Net.Sockets.Socket::disposed
bool ___disposed_20;
// System.Net.EndPoint System.Net.Sockets.Socket::seed_endpoint
EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * ___seed_endpoint_21;
public:
inline static int32_t get_offset_of_readQ_0() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___readQ_0)); }
inline Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD * get_readQ_0() const { return ___readQ_0; }
inline Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD ** get_address_of_readQ_0() { return &___readQ_0; }
inline void set_readQ_0(Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD * value)
{
___readQ_0 = value;
Il2CppCodeGenWriteBarrier((&___readQ_0), value);
}
inline static int32_t get_offset_of_writeQ_1() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___writeQ_1)); }
inline Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD * get_writeQ_1() const { return ___writeQ_1; }
inline Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD ** get_address_of_writeQ_1() { return &___writeQ_1; }
inline void set_writeQ_1(Queue_t2B066F5DA52AD958C3B9532F7C88339BA1427EAD * value)
{
___writeQ_1 = value;
Il2CppCodeGenWriteBarrier((&___writeQ_1), value);
}
inline static int32_t get_offset_of_islistening_2() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___islistening_2)); }
inline bool get_islistening_2() const { return ___islistening_2; }
inline bool* get_address_of_islistening_2() { return &___islistening_2; }
inline void set_islistening_2(bool value)
{
___islistening_2 = value;
}
inline static int32_t get_offset_of_useoverlappedIO_3() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___useoverlappedIO_3)); }
inline bool get_useoverlappedIO_3() const { return ___useoverlappedIO_3; }
inline bool* get_address_of_useoverlappedIO_3() { return &___useoverlappedIO_3; }
inline void set_useoverlappedIO_3(bool value)
{
___useoverlappedIO_3 = value;
}
inline static int32_t get_offset_of_MinListenPort_4() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___MinListenPort_4)); }
inline int32_t get_MinListenPort_4() const { return ___MinListenPort_4; }
inline int32_t* get_address_of_MinListenPort_4() { return &___MinListenPort_4; }
inline void set_MinListenPort_4(int32_t value)
{
___MinListenPort_4 = value;
}
inline static int32_t get_offset_of_MaxListenPort_5() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___MaxListenPort_5)); }
inline int32_t get_MaxListenPort_5() const { return ___MaxListenPort_5; }
inline int32_t* get_address_of_MaxListenPort_5() { return &___MaxListenPort_5; }
inline void set_MaxListenPort_5(int32_t value)
{
___MaxListenPort_5 = value;
}
inline static int32_t get_offset_of_linger_timeout_8() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___linger_timeout_8)); }
inline int32_t get_linger_timeout_8() const { return ___linger_timeout_8; }
inline int32_t* get_address_of_linger_timeout_8() { return &___linger_timeout_8; }
inline void set_linger_timeout_8(int32_t value)
{
___linger_timeout_8 = value;
}
inline static int32_t get_offset_of_socket_9() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___socket_9)); }
inline intptr_t get_socket_9() const { return ___socket_9; }
inline intptr_t* get_address_of_socket_9() { return &___socket_9; }
inline void set_socket_9(intptr_t value)
{
___socket_9 = value;
}
inline static int32_t get_offset_of_address_family_10() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___address_family_10)); }
inline int32_t get_address_family_10() const { return ___address_family_10; }
inline int32_t* get_address_of_address_family_10() { return &___address_family_10; }
inline void set_address_family_10(int32_t value)
{
___address_family_10 = value;
}
inline static int32_t get_offset_of_socket_type_11() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___socket_type_11)); }
inline int32_t get_socket_type_11() const { return ___socket_type_11; }
inline int32_t* get_address_of_socket_type_11() { return &___socket_type_11; }
inline void set_socket_type_11(int32_t value)
{
___socket_type_11 = value;
}
inline static int32_t get_offset_of_protocol_type_12() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___protocol_type_12)); }
inline int32_t get_protocol_type_12() const { return ___protocol_type_12; }
inline int32_t* get_address_of_protocol_type_12() { return &___protocol_type_12; }
inline void set_protocol_type_12(int32_t value)
{
___protocol_type_12 = value;
}
inline static int32_t get_offset_of_blocking_13() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___blocking_13)); }
inline bool get_blocking_13() const { return ___blocking_13; }
inline bool* get_address_of_blocking_13() { return &___blocking_13; }
inline void set_blocking_13(bool value)
{
___blocking_13 = value;
}
inline static int32_t get_offset_of_blocking_thread_14() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___blocking_thread_14)); }
inline Thread_t83C301EC970792455F76D89E58140949B003EA50 * get_blocking_thread_14() const { return ___blocking_thread_14; }
inline Thread_t83C301EC970792455F76D89E58140949B003EA50 ** get_address_of_blocking_thread_14() { return &___blocking_thread_14; }
inline void set_blocking_thread_14(Thread_t83C301EC970792455F76D89E58140949B003EA50 * value)
{
___blocking_thread_14 = value;
Il2CppCodeGenWriteBarrier((&___blocking_thread_14), value);
}
inline static int32_t get_offset_of_isbound_15() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___isbound_15)); }
inline bool get_isbound_15() const { return ___isbound_15; }
inline bool* get_address_of_isbound_15() { return &___isbound_15; }
inline void set_isbound_15(bool value)
{
___isbound_15 = value;
}
inline static int32_t get_offset_of_max_bind_count_17() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___max_bind_count_17)); }
inline int32_t get_max_bind_count_17() const { return ___max_bind_count_17; }
inline int32_t* get_address_of_max_bind_count_17() { return &___max_bind_count_17; }
inline void set_max_bind_count_17(int32_t value)
{
___max_bind_count_17 = value;
}
inline static int32_t get_offset_of_connected_18() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___connected_18)); }
inline bool get_connected_18() const { return ___connected_18; }
inline bool* get_address_of_connected_18() { return &___connected_18; }
inline void set_connected_18(bool value)
{
___connected_18 = value;
}
inline static int32_t get_offset_of_closed_19() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___closed_19)); }
inline bool get_closed_19() const { return ___closed_19; }
inline bool* get_address_of_closed_19() { return &___closed_19; }
inline void set_closed_19(bool value)
{
___closed_19 = value;
}
inline static int32_t get_offset_of_disposed_20() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___disposed_20)); }
inline bool get_disposed_20() const { return ___disposed_20; }
inline bool* get_address_of_disposed_20() { return &___disposed_20; }
inline void set_disposed_20(bool value)
{
___disposed_20 = value;
}
inline static int32_t get_offset_of_seed_endpoint_21() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03, ___seed_endpoint_21)); }
inline EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * get_seed_endpoint_21() const { return ___seed_endpoint_21; }
inline EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 ** get_address_of_seed_endpoint_21() { return &___seed_endpoint_21; }
inline void set_seed_endpoint_21(EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * value)
{
___seed_endpoint_21 = value;
Il2CppCodeGenWriteBarrier((&___seed_endpoint_21), value);
}
};
struct Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields
{
public:
// System.Int32 System.Net.Sockets.Socket::ipv4Supported
int32_t ___ipv4Supported_6;
// System.Int32 System.Net.Sockets.Socket::ipv6Supported
int32_t ___ipv6Supported_7;
// System.Int32 System.Net.Sockets.Socket::current_bind_count
int32_t ___current_bind_count_16;
// System.Reflection.MethodInfo System.Net.Sockets.Socket::check_socket_policy
MethodInfo_t * ___check_socket_policy_22;
public:
inline static int32_t get_offset_of_ipv4Supported_6() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields, ___ipv4Supported_6)); }
inline int32_t get_ipv4Supported_6() const { return ___ipv4Supported_6; }
inline int32_t* get_address_of_ipv4Supported_6() { return &___ipv4Supported_6; }
inline void set_ipv4Supported_6(int32_t value)
{
___ipv4Supported_6 = value;
}
inline static int32_t get_offset_of_ipv6Supported_7() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields, ___ipv6Supported_7)); }
inline int32_t get_ipv6Supported_7() const { return ___ipv6Supported_7; }
inline int32_t* get_address_of_ipv6Supported_7() { return &___ipv6Supported_7; }
inline void set_ipv6Supported_7(int32_t value)
{
___ipv6Supported_7 = value;
}
inline static int32_t get_offset_of_current_bind_count_16() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields, ___current_bind_count_16)); }
inline int32_t get_current_bind_count_16() const { return ___current_bind_count_16; }
inline int32_t* get_address_of_current_bind_count_16() { return &___current_bind_count_16; }
inline void set_current_bind_count_16(int32_t value)
{
___current_bind_count_16 = value;
}
inline static int32_t get_offset_of_check_socket_policy_22() { return static_cast<int32_t>(offsetof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields, ___check_socket_policy_22)); }
inline MethodInfo_t * get_check_socket_policy_22() const { return ___check_socket_policy_22; }
inline MethodInfo_t ** get_address_of_check_socket_policy_22() { return &___check_socket_policy_22; }
inline void set_check_socket_policy_22(MethodInfo_t * value)
{
___check_socket_policy_22 = value;
Il2CppCodeGenWriteBarrier((&___check_socket_policy_22), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKET_T78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_H
#ifndef SOCKETASYNCRESULT_T446231DAC0849FAA558839CFC440557641F8AEFD_H
#define SOCKETASYNCRESULT_T446231DAC0849FAA558839CFC440557641F8AEFD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.Socket_SocketAsyncResult
struct SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD : public RuntimeObject
{
public:
// System.Net.Sockets.Socket System.Net.Sockets.Socket_SocketAsyncResult::Sock
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___Sock_0;
// System.IntPtr System.Net.Sockets.Socket_SocketAsyncResult::handle
intptr_t ___handle_1;
// System.Object System.Net.Sockets.Socket_SocketAsyncResult::state
RuntimeObject * ___state_2;
// System.AsyncCallback System.Net.Sockets.Socket_SocketAsyncResult::callback
AsyncCallback_t74ABD1277F711E7FBDCB00E169A63DEFD39E86A2 * ___callback_3;
// System.Threading.WaitHandle System.Net.Sockets.Socket_SocketAsyncResult::waithandle
WaitHandle_t4E21379F87C00DE80B2973DCAA928C4A19D1A89E * ___waithandle_4;
// System.Exception System.Net.Sockets.Socket_SocketAsyncResult::delayedException
Exception_t * ___delayedException_5;
// System.Net.EndPoint System.Net.Sockets.Socket_SocketAsyncResult::EndPoint
EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * ___EndPoint_6;
// System.Byte[] System.Net.Sockets.Socket_SocketAsyncResult::Buffer
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___Buffer_7;
// System.Int32 System.Net.Sockets.Socket_SocketAsyncResult::Offset
int32_t ___Offset_8;
// System.Int32 System.Net.Sockets.Socket_SocketAsyncResult::Size
int32_t ___Size_9;
// System.Net.Sockets.SocketFlags System.Net.Sockets.Socket_SocketAsyncResult::SockFlags
int32_t ___SockFlags_10;
// System.Net.Sockets.Socket System.Net.Sockets.Socket_SocketAsyncResult::AcceptSocket
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___AcceptSocket_11;
// System.Net.IPAddress[] System.Net.Sockets.Socket_SocketAsyncResult::Addresses
IPAddressU5BU5D_t7F5ACE8937120A82DD707759F81D2015550DD7DE* ___Addresses_12;
// System.Int32 System.Net.Sockets.Socket_SocketAsyncResult::Port
int32_t ___Port_13;
// System.Collections.Generic.IList`1<System.ArraySegment`1<System.Byte>> System.Net.Sockets.Socket_SocketAsyncResult::Buffers
RuntimeObject* ___Buffers_14;
// System.Boolean System.Net.Sockets.Socket_SocketAsyncResult::ReuseSocket
bool ___ReuseSocket_15;
// System.Net.Sockets.Socket System.Net.Sockets.Socket_SocketAsyncResult::acc_socket
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___acc_socket_16;
// System.Int32 System.Net.Sockets.Socket_SocketAsyncResult::total
int32_t ___total_17;
// System.Boolean System.Net.Sockets.Socket_SocketAsyncResult::completed_sync
bool ___completed_sync_18;
// System.Boolean System.Net.Sockets.Socket_SocketAsyncResult::completed
bool ___completed_19;
// System.Boolean System.Net.Sockets.Socket_SocketAsyncResult::blocking
bool ___blocking_20;
// System.Int32 System.Net.Sockets.Socket_SocketAsyncResult::error
int32_t ___error_21;
// System.Net.Sockets.Socket_SocketOperation System.Net.Sockets.Socket_SocketAsyncResult::operation
int32_t ___operation_22;
// System.Object System.Net.Sockets.Socket_SocketAsyncResult::ares
RuntimeObject * ___ares_23;
// System.Int32 System.Net.Sockets.Socket_SocketAsyncResult::EndCalled
int32_t ___EndCalled_24;
public:
inline static int32_t get_offset_of_Sock_0() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___Sock_0)); }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * get_Sock_0() const { return ___Sock_0; }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 ** get_address_of_Sock_0() { return &___Sock_0; }
inline void set_Sock_0(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * value)
{
___Sock_0 = value;
Il2CppCodeGenWriteBarrier((&___Sock_0), value);
}
inline static int32_t get_offset_of_handle_1() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___handle_1)); }
inline intptr_t get_handle_1() const { return ___handle_1; }
inline intptr_t* get_address_of_handle_1() { return &___handle_1; }
inline void set_handle_1(intptr_t value)
{
___handle_1 = value;
}
inline static int32_t get_offset_of_state_2() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___state_2)); }
inline RuntimeObject * get_state_2() const { return ___state_2; }
inline RuntimeObject ** get_address_of_state_2() { return &___state_2; }
inline void set_state_2(RuntimeObject * value)
{
___state_2 = value;
Il2CppCodeGenWriteBarrier((&___state_2), value);
}
inline static int32_t get_offset_of_callback_3() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___callback_3)); }
inline AsyncCallback_t74ABD1277F711E7FBDCB00E169A63DEFD39E86A2 * get_callback_3() const { return ___callback_3; }
inline AsyncCallback_t74ABD1277F711E7FBDCB00E169A63DEFD39E86A2 ** get_address_of_callback_3() { return &___callback_3; }
inline void set_callback_3(AsyncCallback_t74ABD1277F711E7FBDCB00E169A63DEFD39E86A2 * value)
{
___callback_3 = value;
Il2CppCodeGenWriteBarrier((&___callback_3), value);
}
inline static int32_t get_offset_of_waithandle_4() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___waithandle_4)); }
inline WaitHandle_t4E21379F87C00DE80B2973DCAA928C4A19D1A89E * get_waithandle_4() const { return ___waithandle_4; }
inline WaitHandle_t4E21379F87C00DE80B2973DCAA928C4A19D1A89E ** get_address_of_waithandle_4() { return &___waithandle_4; }
inline void set_waithandle_4(WaitHandle_t4E21379F87C00DE80B2973DCAA928C4A19D1A89E * value)
{
___waithandle_4 = value;
Il2CppCodeGenWriteBarrier((&___waithandle_4), value);
}
inline static int32_t get_offset_of_delayedException_5() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___delayedException_5)); }
inline Exception_t * get_delayedException_5() const { return ___delayedException_5; }
inline Exception_t ** get_address_of_delayedException_5() { return &___delayedException_5; }
inline void set_delayedException_5(Exception_t * value)
{
___delayedException_5 = value;
Il2CppCodeGenWriteBarrier((&___delayedException_5), value);
}
inline static int32_t get_offset_of_EndPoint_6() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___EndPoint_6)); }
inline EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * get_EndPoint_6() const { return ___EndPoint_6; }
inline EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 ** get_address_of_EndPoint_6() { return &___EndPoint_6; }
inline void set_EndPoint_6(EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * value)
{
___EndPoint_6 = value;
Il2CppCodeGenWriteBarrier((&___EndPoint_6), value);
}
inline static int32_t get_offset_of_Buffer_7() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___Buffer_7)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_Buffer_7() const { return ___Buffer_7; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_Buffer_7() { return &___Buffer_7; }
inline void set_Buffer_7(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___Buffer_7 = value;
Il2CppCodeGenWriteBarrier((&___Buffer_7), value);
}
inline static int32_t get_offset_of_Offset_8() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___Offset_8)); }
inline int32_t get_Offset_8() const { return ___Offset_8; }
inline int32_t* get_address_of_Offset_8() { return &___Offset_8; }
inline void set_Offset_8(int32_t value)
{
___Offset_8 = value;
}
inline static int32_t get_offset_of_Size_9() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___Size_9)); }
inline int32_t get_Size_9() const { return ___Size_9; }
inline int32_t* get_address_of_Size_9() { return &___Size_9; }
inline void set_Size_9(int32_t value)
{
___Size_9 = value;
}
inline static int32_t get_offset_of_SockFlags_10() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___SockFlags_10)); }
inline int32_t get_SockFlags_10() const { return ___SockFlags_10; }
inline int32_t* get_address_of_SockFlags_10() { return &___SockFlags_10; }
inline void set_SockFlags_10(int32_t value)
{
___SockFlags_10 = value;
}
inline static int32_t get_offset_of_AcceptSocket_11() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___AcceptSocket_11)); }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * get_AcceptSocket_11() const { return ___AcceptSocket_11; }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 ** get_address_of_AcceptSocket_11() { return &___AcceptSocket_11; }
inline void set_AcceptSocket_11(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * value)
{
___AcceptSocket_11 = value;
Il2CppCodeGenWriteBarrier((&___AcceptSocket_11), value);
}
inline static int32_t get_offset_of_Addresses_12() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___Addresses_12)); }
inline IPAddressU5BU5D_t7F5ACE8937120A82DD707759F81D2015550DD7DE* get_Addresses_12() const { return ___Addresses_12; }
inline IPAddressU5BU5D_t7F5ACE8937120A82DD707759F81D2015550DD7DE** get_address_of_Addresses_12() { return &___Addresses_12; }
inline void set_Addresses_12(IPAddressU5BU5D_t7F5ACE8937120A82DD707759F81D2015550DD7DE* value)
{
___Addresses_12 = value;
Il2CppCodeGenWriteBarrier((&___Addresses_12), value);
}
inline static int32_t get_offset_of_Port_13() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___Port_13)); }
inline int32_t get_Port_13() const { return ___Port_13; }
inline int32_t* get_address_of_Port_13() { return &___Port_13; }
inline void set_Port_13(int32_t value)
{
___Port_13 = value;
}
inline static int32_t get_offset_of_Buffers_14() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___Buffers_14)); }
inline RuntimeObject* get_Buffers_14() const { return ___Buffers_14; }
inline RuntimeObject** get_address_of_Buffers_14() { return &___Buffers_14; }
inline void set_Buffers_14(RuntimeObject* value)
{
___Buffers_14 = value;
Il2CppCodeGenWriteBarrier((&___Buffers_14), value);
}
inline static int32_t get_offset_of_ReuseSocket_15() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___ReuseSocket_15)); }
inline bool get_ReuseSocket_15() const { return ___ReuseSocket_15; }
inline bool* get_address_of_ReuseSocket_15() { return &___ReuseSocket_15; }
inline void set_ReuseSocket_15(bool value)
{
___ReuseSocket_15 = value;
}
inline static int32_t get_offset_of_acc_socket_16() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___acc_socket_16)); }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * get_acc_socket_16() const { return ___acc_socket_16; }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 ** get_address_of_acc_socket_16() { return &___acc_socket_16; }
inline void set_acc_socket_16(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * value)
{
___acc_socket_16 = value;
Il2CppCodeGenWriteBarrier((&___acc_socket_16), value);
}
inline static int32_t get_offset_of_total_17() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___total_17)); }
inline int32_t get_total_17() const { return ___total_17; }
inline int32_t* get_address_of_total_17() { return &___total_17; }
inline void set_total_17(int32_t value)
{
___total_17 = value;
}
inline static int32_t get_offset_of_completed_sync_18() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___completed_sync_18)); }
inline bool get_completed_sync_18() const { return ___completed_sync_18; }
inline bool* get_address_of_completed_sync_18() { return &___completed_sync_18; }
inline void set_completed_sync_18(bool value)
{
___completed_sync_18 = value;
}
inline static int32_t get_offset_of_completed_19() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___completed_19)); }
inline bool get_completed_19() const { return ___completed_19; }
inline bool* get_address_of_completed_19() { return &___completed_19; }
inline void set_completed_19(bool value)
{
___completed_19 = value;
}
inline static int32_t get_offset_of_blocking_20() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___blocking_20)); }
inline bool get_blocking_20() const { return ___blocking_20; }
inline bool* get_address_of_blocking_20() { return &___blocking_20; }
inline void set_blocking_20(bool value)
{
___blocking_20 = value;
}
inline static int32_t get_offset_of_error_21() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___error_21)); }
inline int32_t get_error_21() const { return ___error_21; }
inline int32_t* get_address_of_error_21() { return &___error_21; }
inline void set_error_21(int32_t value)
{
___error_21 = value;
}
inline static int32_t get_offset_of_operation_22() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___operation_22)); }
inline int32_t get_operation_22() const { return ___operation_22; }
inline int32_t* get_address_of_operation_22() { return &___operation_22; }
inline void set_operation_22(int32_t value)
{
___operation_22 = value;
}
inline static int32_t get_offset_of_ares_23() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___ares_23)); }
inline RuntimeObject * get_ares_23() const { return ___ares_23; }
inline RuntimeObject ** get_address_of_ares_23() { return &___ares_23; }
inline void set_ares_23(RuntimeObject * value)
{
___ares_23 = value;
Il2CppCodeGenWriteBarrier((&___ares_23), value);
}
inline static int32_t get_offset_of_EndCalled_24() { return static_cast<int32_t>(offsetof(SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD, ___EndCalled_24)); }
inline int32_t get_EndCalled_24() const { return ___EndCalled_24; }
inline int32_t* get_address_of_EndCalled_24() { return &___EndCalled_24; }
inline void set_EndCalled_24(int32_t value)
{
___EndCalled_24 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.Sockets.Socket/SocketAsyncResult
struct SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD_marshaled_pinvoke
{
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___Sock_0;
intptr_t ___handle_1;
Il2CppIUnknown* ___state_2;
Il2CppMethodPointer ___callback_3;
WaitHandle_t4E21379F87C00DE80B2973DCAA928C4A19D1A89E * ___waithandle_4;
Exception_t * ___delayedException_5;
EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * ___EndPoint_6;
uint8_t* ___Buffer_7;
int32_t ___Offset_8;
int32_t ___Size_9;
int32_t ___SockFlags_10;
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___AcceptSocket_11;
IPAddressU5BU5D_t7F5ACE8937120A82DD707759F81D2015550DD7DE* ___Addresses_12;
int32_t ___Port_13;
RuntimeObject* ___Buffers_14;
int32_t ___ReuseSocket_15;
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___acc_socket_16;
int32_t ___total_17;
int32_t ___completed_sync_18;
int32_t ___completed_19;
int32_t ___blocking_20;
int32_t ___error_21;
int32_t ___operation_22;
Il2CppIUnknown* ___ares_23;
int32_t ___EndCalled_24;
};
// Native definition for COM marshalling of System.Net.Sockets.Socket/SocketAsyncResult
struct SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD_marshaled_com
{
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___Sock_0;
intptr_t ___handle_1;
Il2CppIUnknown* ___state_2;
Il2CppMethodPointer ___callback_3;
WaitHandle_t4E21379F87C00DE80B2973DCAA928C4A19D1A89E * ___waithandle_4;
Exception_t * ___delayedException_5;
EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * ___EndPoint_6;
uint8_t* ___Buffer_7;
int32_t ___Offset_8;
int32_t ___Size_9;
int32_t ___SockFlags_10;
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___AcceptSocket_11;
IPAddressU5BU5D_t7F5ACE8937120A82DD707759F81D2015550DD7DE* ___Addresses_12;
int32_t ___Port_13;
RuntimeObject* ___Buffers_14;
int32_t ___ReuseSocket_15;
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___acc_socket_16;
int32_t ___total_17;
int32_t ___completed_sync_18;
int32_t ___completed_19;
int32_t ___blocking_20;
int32_t ___error_21;
int32_t ___operation_22;
Il2CppIUnknown* ___ares_23;
int32_t ___EndCalled_24;
};
#endif // SOCKETASYNCRESULT_T446231DAC0849FAA558839CFC440557641F8AEFD_H
#ifndef SOCKETASYNCEVENTARGS_T816F3F5E4B73481486609F7CD6FFED7ABEC8C84B_H
#define SOCKETASYNCEVENTARGS_T816F3F5E4B73481486609F7CD6FFED7ABEC8C84B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketAsyncEventArgs
struct SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B : public EventArgs_tA4C15C1D2AB4B139169B1942C1477933E00DCA17
{
public:
// System.Collections.Generic.IList`1<System.ArraySegment`1<System.Byte>> System.Net.Sockets.SocketAsyncEventArgs::_bufferList
RuntimeObject* ____bufferList_1;
// System.Net.Sockets.Socket System.Net.Sockets.SocketAsyncEventArgs::curSocket
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___curSocket_2;
// System.EventHandler`1<System.Net.Sockets.SocketAsyncEventArgs> System.Net.Sockets.SocketAsyncEventArgs::Completed
EventHandler_1_t3063141EC3C7DCDEF308C6DEB970439F1CD3C28D * ___Completed_3;
// System.Net.Sockets.Socket System.Net.Sockets.SocketAsyncEventArgs::<AcceptSocket>k__BackingField
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___U3CAcceptSocketU3Ek__BackingField_4;
// System.Byte[] System.Net.Sockets.SocketAsyncEventArgs::<Buffer>k__BackingField
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___U3CBufferU3Ek__BackingField_5;
// System.Int32 System.Net.Sockets.SocketAsyncEventArgs::<BytesTransferred>k__BackingField
int32_t ___U3CBytesTransferredU3Ek__BackingField_6;
// System.Int32 System.Net.Sockets.SocketAsyncEventArgs::<Count>k__BackingField
int32_t ___U3CCountU3Ek__BackingField_7;
// System.Boolean System.Net.Sockets.SocketAsyncEventArgs::<DisconnectReuseSocket>k__BackingField
bool ___U3CDisconnectReuseSocketU3Ek__BackingField_8;
// System.Net.Sockets.SocketAsyncOperation System.Net.Sockets.SocketAsyncEventArgs::<LastOperation>k__BackingField
int32_t ___U3CLastOperationU3Ek__BackingField_9;
// System.Int32 System.Net.Sockets.SocketAsyncEventArgs::<Offset>k__BackingField
int32_t ___U3COffsetU3Ek__BackingField_10;
// System.Net.EndPoint System.Net.Sockets.SocketAsyncEventArgs::<RemoteEndPoint>k__BackingField
EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * ___U3CRemoteEndPointU3Ek__BackingField_11;
// System.Int32 System.Net.Sockets.SocketAsyncEventArgs::<SendPacketsSendSize>k__BackingField
int32_t ___U3CSendPacketsSendSizeU3Ek__BackingField_12;
// System.Net.Sockets.SocketError System.Net.Sockets.SocketAsyncEventArgs::<SocketError>k__BackingField
int32_t ___U3CSocketErrorU3Ek__BackingField_13;
// System.Net.Sockets.SocketFlags System.Net.Sockets.SocketAsyncEventArgs::<SocketFlags>k__BackingField
int32_t ___U3CSocketFlagsU3Ek__BackingField_14;
// System.Object System.Net.Sockets.SocketAsyncEventArgs::<UserToken>k__BackingField
RuntimeObject * ___U3CUserTokenU3Ek__BackingField_15;
public:
inline static int32_t get_offset_of__bufferList_1() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ____bufferList_1)); }
inline RuntimeObject* get__bufferList_1() const { return ____bufferList_1; }
inline RuntimeObject** get_address_of__bufferList_1() { return &____bufferList_1; }
inline void set__bufferList_1(RuntimeObject* value)
{
____bufferList_1 = value;
Il2CppCodeGenWriteBarrier((&____bufferList_1), value);
}
inline static int32_t get_offset_of_curSocket_2() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___curSocket_2)); }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * get_curSocket_2() const { return ___curSocket_2; }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 ** get_address_of_curSocket_2() { return &___curSocket_2; }
inline void set_curSocket_2(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * value)
{
___curSocket_2 = value;
Il2CppCodeGenWriteBarrier((&___curSocket_2), value);
}
inline static int32_t get_offset_of_Completed_3() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___Completed_3)); }
inline EventHandler_1_t3063141EC3C7DCDEF308C6DEB970439F1CD3C28D * get_Completed_3() const { return ___Completed_3; }
inline EventHandler_1_t3063141EC3C7DCDEF308C6DEB970439F1CD3C28D ** get_address_of_Completed_3() { return &___Completed_3; }
inline void set_Completed_3(EventHandler_1_t3063141EC3C7DCDEF308C6DEB970439F1CD3C28D * value)
{
___Completed_3 = value;
Il2CppCodeGenWriteBarrier((&___Completed_3), value);
}
inline static int32_t get_offset_of_U3CAcceptSocketU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CAcceptSocketU3Ek__BackingField_4)); }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * get_U3CAcceptSocketU3Ek__BackingField_4() const { return ___U3CAcceptSocketU3Ek__BackingField_4; }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 ** get_address_of_U3CAcceptSocketU3Ek__BackingField_4() { return &___U3CAcceptSocketU3Ek__BackingField_4; }
inline void set_U3CAcceptSocketU3Ek__BackingField_4(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * value)
{
___U3CAcceptSocketU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((&___U3CAcceptSocketU3Ek__BackingField_4), value);
}
inline static int32_t get_offset_of_U3CBufferU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CBufferU3Ek__BackingField_5)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_U3CBufferU3Ek__BackingField_5() const { return ___U3CBufferU3Ek__BackingField_5; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_U3CBufferU3Ek__BackingField_5() { return &___U3CBufferU3Ek__BackingField_5; }
inline void set_U3CBufferU3Ek__BackingField_5(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___U3CBufferU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((&___U3CBufferU3Ek__BackingField_5), value);
}
inline static int32_t get_offset_of_U3CBytesTransferredU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CBytesTransferredU3Ek__BackingField_6)); }
inline int32_t get_U3CBytesTransferredU3Ek__BackingField_6() const { return ___U3CBytesTransferredU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CBytesTransferredU3Ek__BackingField_6() { return &___U3CBytesTransferredU3Ek__BackingField_6; }
inline void set_U3CBytesTransferredU3Ek__BackingField_6(int32_t value)
{
___U3CBytesTransferredU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CCountU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CCountU3Ek__BackingField_7)); }
inline int32_t get_U3CCountU3Ek__BackingField_7() const { return ___U3CCountU3Ek__BackingField_7; }
inline int32_t* get_address_of_U3CCountU3Ek__BackingField_7() { return &___U3CCountU3Ek__BackingField_7; }
inline void set_U3CCountU3Ek__BackingField_7(int32_t value)
{
___U3CCountU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CDisconnectReuseSocketU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CDisconnectReuseSocketU3Ek__BackingField_8)); }
inline bool get_U3CDisconnectReuseSocketU3Ek__BackingField_8() const { return ___U3CDisconnectReuseSocketU3Ek__BackingField_8; }
inline bool* get_address_of_U3CDisconnectReuseSocketU3Ek__BackingField_8() { return &___U3CDisconnectReuseSocketU3Ek__BackingField_8; }
inline void set_U3CDisconnectReuseSocketU3Ek__BackingField_8(bool value)
{
___U3CDisconnectReuseSocketU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CLastOperationU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CLastOperationU3Ek__BackingField_9)); }
inline int32_t get_U3CLastOperationU3Ek__BackingField_9() const { return ___U3CLastOperationU3Ek__BackingField_9; }
inline int32_t* get_address_of_U3CLastOperationU3Ek__BackingField_9() { return &___U3CLastOperationU3Ek__BackingField_9; }
inline void set_U3CLastOperationU3Ek__BackingField_9(int32_t value)
{
___U3CLastOperationU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3COffsetU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3COffsetU3Ek__BackingField_10)); }
inline int32_t get_U3COffsetU3Ek__BackingField_10() const { return ___U3COffsetU3Ek__BackingField_10; }
inline int32_t* get_address_of_U3COffsetU3Ek__BackingField_10() { return &___U3COffsetU3Ek__BackingField_10; }
inline void set_U3COffsetU3Ek__BackingField_10(int32_t value)
{
___U3COffsetU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CRemoteEndPointU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CRemoteEndPointU3Ek__BackingField_11)); }
inline EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * get_U3CRemoteEndPointU3Ek__BackingField_11() const { return ___U3CRemoteEndPointU3Ek__BackingField_11; }
inline EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 ** get_address_of_U3CRemoteEndPointU3Ek__BackingField_11() { return &___U3CRemoteEndPointU3Ek__BackingField_11; }
inline void set_U3CRemoteEndPointU3Ek__BackingField_11(EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5 * value)
{
___U3CRemoteEndPointU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((&___U3CRemoteEndPointU3Ek__BackingField_11), value);
}
inline static int32_t get_offset_of_U3CSendPacketsSendSizeU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CSendPacketsSendSizeU3Ek__BackingField_12)); }
inline int32_t get_U3CSendPacketsSendSizeU3Ek__BackingField_12() const { return ___U3CSendPacketsSendSizeU3Ek__BackingField_12; }
inline int32_t* get_address_of_U3CSendPacketsSendSizeU3Ek__BackingField_12() { return &___U3CSendPacketsSendSizeU3Ek__BackingField_12; }
inline void set_U3CSendPacketsSendSizeU3Ek__BackingField_12(int32_t value)
{
___U3CSendPacketsSendSizeU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CSocketErrorU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CSocketErrorU3Ek__BackingField_13)); }
inline int32_t get_U3CSocketErrorU3Ek__BackingField_13() const { return ___U3CSocketErrorU3Ek__BackingField_13; }
inline int32_t* get_address_of_U3CSocketErrorU3Ek__BackingField_13() { return &___U3CSocketErrorU3Ek__BackingField_13; }
inline void set_U3CSocketErrorU3Ek__BackingField_13(int32_t value)
{
___U3CSocketErrorU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CSocketFlagsU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CSocketFlagsU3Ek__BackingField_14)); }
inline int32_t get_U3CSocketFlagsU3Ek__BackingField_14() const { return ___U3CSocketFlagsU3Ek__BackingField_14; }
inline int32_t* get_address_of_U3CSocketFlagsU3Ek__BackingField_14() { return &___U3CSocketFlagsU3Ek__BackingField_14; }
inline void set_U3CSocketFlagsU3Ek__BackingField_14(int32_t value)
{
___U3CSocketFlagsU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CUserTokenU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B, ___U3CUserTokenU3Ek__BackingField_15)); }
inline RuntimeObject * get_U3CUserTokenU3Ek__BackingField_15() const { return ___U3CUserTokenU3Ek__BackingField_15; }
inline RuntimeObject ** get_address_of_U3CUserTokenU3Ek__BackingField_15() { return &___U3CUserTokenU3Ek__BackingField_15; }
inline void set_U3CUserTokenU3Ek__BackingField_15(RuntimeObject * value)
{
___U3CUserTokenU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((&___U3CUserTokenU3Ek__BackingField_15), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETASYNCEVENTARGS_T816F3F5E4B73481486609F7CD6FFED7ABEC8C84B_H
#ifndef TCPCLIENT_TC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8_H
#define TCPCLIENT_TC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.TcpClient
struct TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8 : public RuntimeObject
{
public:
// System.Net.Sockets.NetworkStream System.Net.Sockets.TcpClient::stream
NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E * ___stream_0;
// System.Boolean System.Net.Sockets.TcpClient::active
bool ___active_1;
// System.Net.Sockets.Socket System.Net.Sockets.TcpClient::client
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * ___client_2;
// System.Boolean System.Net.Sockets.TcpClient::disposed
bool ___disposed_3;
// System.Net.Sockets.TcpClient_Properties System.Net.Sockets.TcpClient::values
uint32_t ___values_4;
// System.Int32 System.Net.Sockets.TcpClient::recv_timeout
int32_t ___recv_timeout_5;
// System.Int32 System.Net.Sockets.TcpClient::send_timeout
int32_t ___send_timeout_6;
// System.Int32 System.Net.Sockets.TcpClient::recv_buffer_size
int32_t ___recv_buffer_size_7;
// System.Int32 System.Net.Sockets.TcpClient::send_buffer_size
int32_t ___send_buffer_size_8;
// System.Net.Sockets.LingerOption System.Net.Sockets.TcpClient::linger_state
LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267 * ___linger_state_9;
// System.Boolean System.Net.Sockets.TcpClient::no_delay
bool ___no_delay_10;
public:
inline static int32_t get_offset_of_stream_0() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___stream_0)); }
inline NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E * get_stream_0() const { return ___stream_0; }
inline NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E ** get_address_of_stream_0() { return &___stream_0; }
inline void set_stream_0(NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E * value)
{
___stream_0 = value;
Il2CppCodeGenWriteBarrier((&___stream_0), value);
}
inline static int32_t get_offset_of_active_1() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___active_1)); }
inline bool get_active_1() const { return ___active_1; }
inline bool* get_address_of_active_1() { return &___active_1; }
inline void set_active_1(bool value)
{
___active_1 = value;
}
inline static int32_t get_offset_of_client_2() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___client_2)); }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * get_client_2() const { return ___client_2; }
inline Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 ** get_address_of_client_2() { return &___client_2; }
inline void set_client_2(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03 * value)
{
___client_2 = value;
Il2CppCodeGenWriteBarrier((&___client_2), value);
}
inline static int32_t get_offset_of_disposed_3() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___disposed_3)); }
inline bool get_disposed_3() const { return ___disposed_3; }
inline bool* get_address_of_disposed_3() { return &___disposed_3; }
inline void set_disposed_3(bool value)
{
___disposed_3 = value;
}
inline static int32_t get_offset_of_values_4() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___values_4)); }
inline uint32_t get_values_4() const { return ___values_4; }
inline uint32_t* get_address_of_values_4() { return &___values_4; }
inline void set_values_4(uint32_t value)
{
___values_4 = value;
}
inline static int32_t get_offset_of_recv_timeout_5() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___recv_timeout_5)); }
inline int32_t get_recv_timeout_5() const { return ___recv_timeout_5; }
inline int32_t* get_address_of_recv_timeout_5() { return &___recv_timeout_5; }
inline void set_recv_timeout_5(int32_t value)
{
___recv_timeout_5 = value;
}
inline static int32_t get_offset_of_send_timeout_6() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___send_timeout_6)); }
inline int32_t get_send_timeout_6() const { return ___send_timeout_6; }
inline int32_t* get_address_of_send_timeout_6() { return &___send_timeout_6; }
inline void set_send_timeout_6(int32_t value)
{
___send_timeout_6 = value;
}
inline static int32_t get_offset_of_recv_buffer_size_7() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___recv_buffer_size_7)); }
inline int32_t get_recv_buffer_size_7() const { return ___recv_buffer_size_7; }
inline int32_t* get_address_of_recv_buffer_size_7() { return &___recv_buffer_size_7; }
inline void set_recv_buffer_size_7(int32_t value)
{
___recv_buffer_size_7 = value;
}
inline static int32_t get_offset_of_send_buffer_size_8() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___send_buffer_size_8)); }
inline int32_t get_send_buffer_size_8() const { return ___send_buffer_size_8; }
inline int32_t* get_address_of_send_buffer_size_8() { return &___send_buffer_size_8; }
inline void set_send_buffer_size_8(int32_t value)
{
___send_buffer_size_8 = value;
}
inline static int32_t get_offset_of_linger_state_9() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___linger_state_9)); }
inline LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267 * get_linger_state_9() const { return ___linger_state_9; }
inline LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267 ** get_address_of_linger_state_9() { return &___linger_state_9; }
inline void set_linger_state_9(LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267 * value)
{
___linger_state_9 = value;
Il2CppCodeGenWriteBarrier((&___linger_state_9), value);
}
inline static int32_t get_offset_of_no_delay_10() { return static_cast<int32_t>(offsetof(TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8, ___no_delay_10)); }
inline bool get_no_delay_10() const { return ___no_delay_10; }
inline bool* get_address_of_no_delay_10() { return &___no_delay_10; }
inline void set_no_delay_10(bool value)
{
___no_delay_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TCPCLIENT_TC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8_H
#ifndef WEBREQUEST_T079731BC640578743ADC705570EAC33A9BCFB399_H
#define WEBREQUEST_T079731BC640578743ADC705570EAC33A9BCFB399_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.WebRequest
struct WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399 : public MarshalByRefObject_t05F62A8AC86E36BAE3063CA28097945DE9E179C4
{
public:
// System.Net.Security.AuthenticationLevel System.Net.WebRequest::authentication_level
int32_t ___authentication_level_4;
public:
inline static int32_t get_offset_of_authentication_level_4() { return static_cast<int32_t>(offsetof(WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399, ___authentication_level_4)); }
inline int32_t get_authentication_level_4() const { return ___authentication_level_4; }
inline int32_t* get_address_of_authentication_level_4() { return &___authentication_level_4; }
inline void set_authentication_level_4(int32_t value)
{
___authentication_level_4 = value;
}
};
struct WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399_StaticFields
{
public:
// System.Collections.Specialized.HybridDictionary System.Net.WebRequest::prefixes
HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747 * ___prefixes_1;
// System.Boolean System.Net.WebRequest::isDefaultWebProxySet
bool ___isDefaultWebProxySet_2;
// System.Net.IWebProxy System.Net.WebRequest::defaultWebProxy
RuntimeObject* ___defaultWebProxy_3;
// System.Object System.Net.WebRequest::lockobj
RuntimeObject * ___lockobj_5;
public:
inline static int32_t get_offset_of_prefixes_1() { return static_cast<int32_t>(offsetof(WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399_StaticFields, ___prefixes_1)); }
inline HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747 * get_prefixes_1() const { return ___prefixes_1; }
inline HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747 ** get_address_of_prefixes_1() { return &___prefixes_1; }
inline void set_prefixes_1(HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747 * value)
{
___prefixes_1 = value;
Il2CppCodeGenWriteBarrier((&___prefixes_1), value);
}
inline static int32_t get_offset_of_isDefaultWebProxySet_2() { return static_cast<int32_t>(offsetof(WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399_StaticFields, ___isDefaultWebProxySet_2)); }
inline bool get_isDefaultWebProxySet_2() const { return ___isDefaultWebProxySet_2; }
inline bool* get_address_of_isDefaultWebProxySet_2() { return &___isDefaultWebProxySet_2; }
inline void set_isDefaultWebProxySet_2(bool value)
{
___isDefaultWebProxySet_2 = value;
}
inline static int32_t get_offset_of_defaultWebProxy_3() { return static_cast<int32_t>(offsetof(WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399_StaticFields, ___defaultWebProxy_3)); }
inline RuntimeObject* get_defaultWebProxy_3() const { return ___defaultWebProxy_3; }
inline RuntimeObject** get_address_of_defaultWebProxy_3() { return &___defaultWebProxy_3; }
inline void set_defaultWebProxy_3(RuntimeObject* value)
{
___defaultWebProxy_3 = value;
Il2CppCodeGenWriteBarrier((&___defaultWebProxy_3), value);
}
inline static int32_t get_offset_of_lockobj_5() { return static_cast<int32_t>(offsetof(WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399_StaticFields, ___lockobj_5)); }
inline RuntimeObject * get_lockobj_5() const { return ___lockobj_5; }
inline RuntimeObject ** get_address_of_lockobj_5() { return &___lockobj_5; }
inline void set_lockobj_5(RuntimeObject * value)
{
___lockobj_5 = value;
Il2CppCodeGenWriteBarrier((&___lockobj_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WEBREQUEST_T079731BC640578743ADC705570EAC33A9BCFB399_H
#ifndef PRIMALITYTEST_T21BB24E4B8386B8AD6B7CDA7CF189A35A93AF260_H
#define PRIMALITYTEST_T21BB24E4B8386B8AD6B7CDA7CF189A35A93AF260_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Math.Prime.PrimalityTest
struct PrimalityTest_t21BB24E4B8386B8AD6B7CDA7CF189A35A93AF260 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMALITYTEST_T21BB24E4B8386B8AD6B7CDA7CF189A35A93AF260_H
#ifndef CERTIFICATESELECTIONCALLBACK_T4DE34335A1E16424F4D74044D2B62988D1A5D258_H
#define CERTIFICATESELECTIONCALLBACK_T4DE34335A1E16424F4D74044D2B62988D1A5D258_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CertificateSelectionCallback
struct CertificateSelectionCallback_t4DE34335A1E16424F4D74044D2B62988D1A5D258 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CERTIFICATESELECTIONCALLBACK_T4DE34335A1E16424F4D74044D2B62988D1A5D258_H
#ifndef CERTIFICATEVALIDATIONCALLBACK_T1265D8B2396A0F0D2F26746A6F474F59907507F8_H
#define CERTIFICATEVALIDATIONCALLBACK_T1265D8B2396A0F0D2F26746A6F474F59907507F8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CertificateValidationCallback
struct CertificateValidationCallback_t1265D8B2396A0F0D2F26746A6F474F59907507F8 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CERTIFICATEVALIDATIONCALLBACK_T1265D8B2396A0F0D2F26746A6F474F59907507F8_H
#ifndef CERTIFICATEVALIDATIONCALLBACK2_TE6E262A957066F2E324A9FE910295798E07986C2_H
#define CERTIFICATEVALIDATIONCALLBACK2_TE6E262A957066F2E324A9FE910295798E07986C2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CertificateValidationCallback2
struct CertificateValidationCallback2_tE6E262A957066F2E324A9FE910295798E07986C2 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CERTIFICATEVALIDATIONCALLBACK2_TE6E262A957066F2E324A9FE910295798E07986C2_H
#ifndef TLSCLIENTKEYEXCHANGE_TBAEECDA44C27B3242E1313B3677343C44E39A045_H
#define TLSCLIENTKEYEXCHANGE_TBAEECDA44C27B3242E1313B3677343C44E39A045_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsClientKeyExchange
struct TlsClientKeyExchange_tBAEECDA44C27B3242E1313B3677343C44E39A045 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTKEYEXCHANGE_TBAEECDA44C27B3242E1313B3677343C44E39A045_H
#ifndef TLSSERVERCERTIFICATE_T32F2B38468F40846D45AC89959DF793D3AEB6B30_H
#define TLSSERVERCERTIFICATE_T32F2B38468F40846D45AC89959DF793D3AEB6B30_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate
struct TlsServerCertificate_t32F2B38468F40846D45AC89959DF793D3AEB6B30 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
// Mono.Security.X509.X509CertificateCollection Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate::certificates
X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 * ___certificates_9;
public:
inline static int32_t get_offset_of_certificates_9() { return static_cast<int32_t>(offsetof(TlsServerCertificate_t32F2B38468F40846D45AC89959DF793D3AEB6B30, ___certificates_9)); }
inline X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 * get_certificates_9() const { return ___certificates_9; }
inline X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 ** get_address_of_certificates_9() { return &___certificates_9; }
inline void set_certificates_9(X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 * value)
{
___certificates_9 = value;
Il2CppCodeGenWriteBarrier((&___certificates_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERCERTIFICATE_T32F2B38468F40846D45AC89959DF793D3AEB6B30_H
#ifndef TLSSERVERCERTIFICATEREQUEST_T1947714A64A023B7E2202F72C092BEB5641BE514_H
#define TLSSERVERCERTIFICATEREQUEST_T1947714A64A023B7E2202F72C092BEB5641BE514_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificateRequest
struct TlsServerCertificateRequest_t1947714A64A023B7E2202F72C092BEB5641BE514 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
// Mono.Security.Protocol.Tls.Handshake.ClientCertificateType[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificateRequest::certificateTypes
ClientCertificateTypeU5BU5D_tDDB75305D8B2DEB805F8F855A4FF116797A8FADD* ___certificateTypes_9;
// System.String[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificateRequest::distinguisedNames
StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* ___distinguisedNames_10;
public:
inline static int32_t get_offset_of_certificateTypes_9() { return static_cast<int32_t>(offsetof(TlsServerCertificateRequest_t1947714A64A023B7E2202F72C092BEB5641BE514, ___certificateTypes_9)); }
inline ClientCertificateTypeU5BU5D_tDDB75305D8B2DEB805F8F855A4FF116797A8FADD* get_certificateTypes_9() const { return ___certificateTypes_9; }
inline ClientCertificateTypeU5BU5D_tDDB75305D8B2DEB805F8F855A4FF116797A8FADD** get_address_of_certificateTypes_9() { return &___certificateTypes_9; }
inline void set_certificateTypes_9(ClientCertificateTypeU5BU5D_tDDB75305D8B2DEB805F8F855A4FF116797A8FADD* value)
{
___certificateTypes_9 = value;
Il2CppCodeGenWriteBarrier((&___certificateTypes_9), value);
}
inline static int32_t get_offset_of_distinguisedNames_10() { return static_cast<int32_t>(offsetof(TlsServerCertificateRequest_t1947714A64A023B7E2202F72C092BEB5641BE514, ___distinguisedNames_10)); }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* get_distinguisedNames_10() const { return ___distinguisedNames_10; }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B** get_address_of_distinguisedNames_10() { return &___distinguisedNames_10; }
inline void set_distinguisedNames_10(StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* value)
{
___distinguisedNames_10 = value;
Il2CppCodeGenWriteBarrier((&___distinguisedNames_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERCERTIFICATEREQUEST_T1947714A64A023B7E2202F72C092BEB5641BE514_H
#ifndef TLSSERVERFINISHED_TD74DCB7D86BAE8363139D71390CA8FB77C0138F1_H
#define TLSSERVERFINISHED_TD74DCB7D86BAE8363139D71390CA8FB77C0138F1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerFinished
struct TlsServerFinished_tD74DCB7D86BAE8363139D71390CA8FB77C0138F1 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
struct TlsServerFinished_tD74DCB7D86BAE8363139D71390CA8FB77C0138F1_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerFinished::Ssl3Marker
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___Ssl3Marker_9;
public:
inline static int32_t get_offset_of_Ssl3Marker_9() { return static_cast<int32_t>(offsetof(TlsServerFinished_tD74DCB7D86BAE8363139D71390CA8FB77C0138F1_StaticFields, ___Ssl3Marker_9)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_Ssl3Marker_9() const { return ___Ssl3Marker_9; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_Ssl3Marker_9() { return &___Ssl3Marker_9; }
inline void set_Ssl3Marker_9(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___Ssl3Marker_9 = value;
Il2CppCodeGenWriteBarrier((&___Ssl3Marker_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERFINISHED_TD74DCB7D86BAE8363139D71390CA8FB77C0138F1_H
#ifndef TLSSERVERHELLO_TD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E_H
#define TLSSERVERHELLO_TD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello
struct TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
// Mono.Security.Protocol.Tls.SecurityCompressionType Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::compressionMethod
int32_t ___compressionMethod_9;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::random
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___random_10;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::sessionId
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___sessionId_11;
// Mono.Security.Protocol.Tls.CipherSuite Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::cipherSuite
CipherSuite_tC56AE7195CA8EBEA13D5CC853EBC0E5D5584C722 * ___cipherSuite_12;
public:
inline static int32_t get_offset_of_compressionMethod_9() { return static_cast<int32_t>(offsetof(TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E, ___compressionMethod_9)); }
inline int32_t get_compressionMethod_9() const { return ___compressionMethod_9; }
inline int32_t* get_address_of_compressionMethod_9() { return &___compressionMethod_9; }
inline void set_compressionMethod_9(int32_t value)
{
___compressionMethod_9 = value;
}
inline static int32_t get_offset_of_random_10() { return static_cast<int32_t>(offsetof(TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E, ___random_10)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_random_10() const { return ___random_10; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_random_10() { return &___random_10; }
inline void set_random_10(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___random_10 = value;
Il2CppCodeGenWriteBarrier((&___random_10), value);
}
inline static int32_t get_offset_of_sessionId_11() { return static_cast<int32_t>(offsetof(TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E, ___sessionId_11)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_sessionId_11() const { return ___sessionId_11; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_sessionId_11() { return &___sessionId_11; }
inline void set_sessionId_11(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___sessionId_11 = value;
Il2CppCodeGenWriteBarrier((&___sessionId_11), value);
}
inline static int32_t get_offset_of_cipherSuite_12() { return static_cast<int32_t>(offsetof(TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E, ___cipherSuite_12)); }
inline CipherSuite_tC56AE7195CA8EBEA13D5CC853EBC0E5D5584C722 * get_cipherSuite_12() const { return ___cipherSuite_12; }
inline CipherSuite_tC56AE7195CA8EBEA13D5CC853EBC0E5D5584C722 ** get_address_of_cipherSuite_12() { return &___cipherSuite_12; }
inline void set_cipherSuite_12(CipherSuite_tC56AE7195CA8EBEA13D5CC853EBC0E5D5584C722 * value)
{
___cipherSuite_12 = value;
Il2CppCodeGenWriteBarrier((&___cipherSuite_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERHELLO_TD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E_H
#ifndef TLSSERVERHELLODONE_TC2206D368BB68E27595A8C67BB836DEB10BCA9BC_H
#define TLSSERVERHELLODONE_TC2206D368BB68E27595A8C67BB836DEB10BCA9BC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHelloDone
struct TlsServerHelloDone_tC2206D368BB68E27595A8C67BB836DEB10BCA9BC : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERHELLODONE_TC2206D368BB68E27595A8C67BB836DEB10BCA9BC_H
#ifndef TLSSERVERKEYEXCHANGE_T432C66F5AC47091BB84BCF9CBC447A73A637BFE3_H
#define TLSSERVERKEYEXCHANGE_T432C66F5AC47091BB84BCF9CBC447A73A637BFE3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerKeyExchange
struct TlsServerKeyExchange_t432C66F5AC47091BB84BCF9CBC447A73A637BFE3 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
// System.Security.Cryptography.RSAParameters Mono.Security.Protocol.Tls.Handshake.Client.TlsServerKeyExchange::rsaParams
RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150 ___rsaParams_9;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerKeyExchange::signedParams
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___signedParams_10;
public:
inline static int32_t get_offset_of_rsaParams_9() { return static_cast<int32_t>(offsetof(TlsServerKeyExchange_t432C66F5AC47091BB84BCF9CBC447A73A637BFE3, ___rsaParams_9)); }
inline RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150 get_rsaParams_9() const { return ___rsaParams_9; }
inline RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150 * get_address_of_rsaParams_9() { return &___rsaParams_9; }
inline void set_rsaParams_9(RSAParameters_tA5A3AA05FC9F3437383EF914476E1584FC05B150 value)
{
___rsaParams_9 = value;
}
inline static int32_t get_offset_of_signedParams_10() { return static_cast<int32_t>(offsetof(TlsServerKeyExchange_t432C66F5AC47091BB84BCF9CBC447A73A637BFE3, ___signedParams_10)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_signedParams_10() const { return ___signedParams_10; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_signedParams_10() { return &___signedParams_10; }
inline void set_signedParams_10(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___signedParams_10 = value;
Il2CppCodeGenWriteBarrier((&___signedParams_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERKEYEXCHANGE_T432C66F5AC47091BB84BCF9CBC447A73A637BFE3_H
#ifndef TLSCLIENTCERTIFICATE_TAEF87DFB50E630BFB4EB43D24146B7B1FDBCB25C_H
#define TLSCLIENTCERTIFICATE_TAEF87DFB50E630BFB4EB43D24146B7B1FDBCB25C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsClientCertificate
struct TlsClientCertificate_tAEF87DFB50E630BFB4EB43D24146B7B1FDBCB25C : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
// Mono.Security.X509.X509CertificateCollection Mono.Security.Protocol.Tls.Handshake.Server.TlsClientCertificate::clientCertificates
X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 * ___clientCertificates_9;
public:
inline static int32_t get_offset_of_clientCertificates_9() { return static_cast<int32_t>(offsetof(TlsClientCertificate_tAEF87DFB50E630BFB4EB43D24146B7B1FDBCB25C, ___clientCertificates_9)); }
inline X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 * get_clientCertificates_9() const { return ___clientCertificates_9; }
inline X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 ** get_address_of_clientCertificates_9() { return &___clientCertificates_9; }
inline void set_clientCertificates_9(X509CertificateCollection_t59402ED1601796E9D33AA78F60D998BC0DDA12F4 * value)
{
___clientCertificates_9 = value;
Il2CppCodeGenWriteBarrier((&___clientCertificates_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTCERTIFICATE_TAEF87DFB50E630BFB4EB43D24146B7B1FDBCB25C_H
#ifndef TLSCLIENTCERTIFICATEVERIFY_T032C1C7DB7106977F9DA2FCCC1AEAA5DA458656F_H
#define TLSCLIENTCERTIFICATEVERIFY_T032C1C7DB7106977F9DA2FCCC1AEAA5DA458656F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsClientCertificateVerify
struct TlsClientCertificateVerify_t032C1C7DB7106977F9DA2FCCC1AEAA5DA458656F : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTCERTIFICATEVERIFY_T032C1C7DB7106977F9DA2FCCC1AEAA5DA458656F_H
#ifndef TLSCLIENTFINISHED_T7743ED2B4564A97AB2BCF8FD6BAF80A27FD0436E_H
#define TLSCLIENTFINISHED_T7743ED2B4564A97AB2BCF8FD6BAF80A27FD0436E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsClientFinished
struct TlsClientFinished_t7743ED2B4564A97AB2BCF8FD6BAF80A27FD0436E : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTFINISHED_T7743ED2B4564A97AB2BCF8FD6BAF80A27FD0436E_H
#ifndef TLSCLIENTHELLO_T7384836B64BF5ED37682B4B862577D472635BFF6_H
#define TLSCLIENTHELLO_T7384836B64BF5ED37682B4B862577D472635BFF6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsClientHello
struct TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Server.TlsClientHello::random
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___random_9;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Server.TlsClientHello::sessionId
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___sessionId_10;
// System.Int16[] Mono.Security.Protocol.Tls.Handshake.Server.TlsClientHello::cipherSuites
Int16U5BU5D_tCB144E0584D28ADA5C82CBC7F4B00263CA9E4E00* ___cipherSuites_11;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Server.TlsClientHello::compressionMethods
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___compressionMethods_12;
public:
inline static int32_t get_offset_of_random_9() { return static_cast<int32_t>(offsetof(TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6, ___random_9)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_random_9() const { return ___random_9; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_random_9() { return &___random_9; }
inline void set_random_9(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___random_9 = value;
Il2CppCodeGenWriteBarrier((&___random_9), value);
}
inline static int32_t get_offset_of_sessionId_10() { return static_cast<int32_t>(offsetof(TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6, ___sessionId_10)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_sessionId_10() const { return ___sessionId_10; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_sessionId_10() { return &___sessionId_10; }
inline void set_sessionId_10(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___sessionId_10 = value;
Il2CppCodeGenWriteBarrier((&___sessionId_10), value);
}
inline static int32_t get_offset_of_cipherSuites_11() { return static_cast<int32_t>(offsetof(TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6, ___cipherSuites_11)); }
inline Int16U5BU5D_tCB144E0584D28ADA5C82CBC7F4B00263CA9E4E00* get_cipherSuites_11() const { return ___cipherSuites_11; }
inline Int16U5BU5D_tCB144E0584D28ADA5C82CBC7F4B00263CA9E4E00** get_address_of_cipherSuites_11() { return &___cipherSuites_11; }
inline void set_cipherSuites_11(Int16U5BU5D_tCB144E0584D28ADA5C82CBC7F4B00263CA9E4E00* value)
{
___cipherSuites_11 = value;
Il2CppCodeGenWriteBarrier((&___cipherSuites_11), value);
}
inline static int32_t get_offset_of_compressionMethods_12() { return static_cast<int32_t>(offsetof(TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6, ___compressionMethods_12)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_compressionMethods_12() const { return ___compressionMethods_12; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_compressionMethods_12() { return &___compressionMethods_12; }
inline void set_compressionMethods_12(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___compressionMethods_12 = value;
Il2CppCodeGenWriteBarrier((&___compressionMethods_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTHELLO_T7384836B64BF5ED37682B4B862577D472635BFF6_H
#ifndef TLSCLIENTKEYEXCHANGE_T816F288E33C892931A308C81890B2CC457162DBD_H
#define TLSCLIENTKEYEXCHANGE_T816F288E33C892931A308C81890B2CC457162DBD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsClientKeyExchange
struct TlsClientKeyExchange_t816F288E33C892931A308C81890B2CC457162DBD : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTKEYEXCHANGE_T816F288E33C892931A308C81890B2CC457162DBD_H
#ifndef TLSSERVERCERTIFICATE_T4FCBE467D8C4AAB4B740B4FDFC06587D3BE1FCB3_H
#define TLSSERVERCERTIFICATE_T4FCBE467D8C4AAB4B740B4FDFC06587D3BE1FCB3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsServerCertificate
struct TlsServerCertificate_t4FCBE467D8C4AAB4B740B4FDFC06587D3BE1FCB3 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERCERTIFICATE_T4FCBE467D8C4AAB4B740B4FDFC06587D3BE1FCB3_H
#ifndef TLSSERVERCERTIFICATEREQUEST_TF577E5F4C8BAB6763C0B83FBAF83B9B0D7AC2E73_H
#define TLSSERVERCERTIFICATEREQUEST_TF577E5F4C8BAB6763C0B83FBAF83B9B0D7AC2E73_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsServerCertificateRequest
struct TlsServerCertificateRequest_tF577E5F4C8BAB6763C0B83FBAF83B9B0D7AC2E73 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERCERTIFICATEREQUEST_TF577E5F4C8BAB6763C0B83FBAF83B9B0D7AC2E73_H
#ifndef TLSSERVERFINISHED_T85EB4EF17C01429D073E6F3AC60F06B2220784D6_H
#define TLSSERVERFINISHED_T85EB4EF17C01429D073E6F3AC60F06B2220784D6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsServerFinished
struct TlsServerFinished_t85EB4EF17C01429D073E6F3AC60F06B2220784D6 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
struct TlsServerFinished_t85EB4EF17C01429D073E6F3AC60F06B2220784D6_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Server.TlsServerFinished::Ssl3Marker
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___Ssl3Marker_9;
public:
inline static int32_t get_offset_of_Ssl3Marker_9() { return static_cast<int32_t>(offsetof(TlsServerFinished_t85EB4EF17C01429D073E6F3AC60F06B2220784D6_StaticFields, ___Ssl3Marker_9)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_Ssl3Marker_9() const { return ___Ssl3Marker_9; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_Ssl3Marker_9() { return &___Ssl3Marker_9; }
inline void set_Ssl3Marker_9(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___Ssl3Marker_9 = value;
Il2CppCodeGenWriteBarrier((&___Ssl3Marker_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERFINISHED_T85EB4EF17C01429D073E6F3AC60F06B2220784D6_H
#ifndef TLSSERVERHELLO_TC60C7307EE3EB22B8C73E9ACFF4E818842D281DC_H
#define TLSSERVERHELLO_TC60C7307EE3EB22B8C73E9ACFF4E818842D281DC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsServerHello
struct TlsServerHello_tC60C7307EE3EB22B8C73E9ACFF4E818842D281DC : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
// System.Int32 Mono.Security.Protocol.Tls.Handshake.Server.TlsServerHello::unixTime
int32_t ___unixTime_9;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Server.TlsServerHello::random
ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* ___random_10;
public:
inline static int32_t get_offset_of_unixTime_9() { return static_cast<int32_t>(offsetof(TlsServerHello_tC60C7307EE3EB22B8C73E9ACFF4E818842D281DC, ___unixTime_9)); }
inline int32_t get_unixTime_9() const { return ___unixTime_9; }
inline int32_t* get_address_of_unixTime_9() { return &___unixTime_9; }
inline void set_unixTime_9(int32_t value)
{
___unixTime_9 = value;
}
inline static int32_t get_offset_of_random_10() { return static_cast<int32_t>(offsetof(TlsServerHello_tC60C7307EE3EB22B8C73E9ACFF4E818842D281DC, ___random_10)); }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* get_random_10() const { return ___random_10; }
inline ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8** get_address_of_random_10() { return &___random_10; }
inline void set_random_10(ByteU5BU5D_t8E14BD25C7BEB727CB1849CF449DE26B113309E8* value)
{
___random_10 = value;
Il2CppCodeGenWriteBarrier((&___random_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERHELLO_TC60C7307EE3EB22B8C73E9ACFF4E818842D281DC_H
#ifndef TLSSERVERHELLODONE_T6261CCFF0A629AB307096A7A93C17D50BA0EF086_H
#define TLSSERVERHELLODONE_T6261CCFF0A629AB307096A7A93C17D50BA0EF086_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsServerHelloDone
struct TlsServerHelloDone_t6261CCFF0A629AB307096A7A93C17D50BA0EF086 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERHELLODONE_T6261CCFF0A629AB307096A7A93C17D50BA0EF086_H
#ifndef TLSSERVERKEYEXCHANGE_T7BEA370303282C53FD7A01B1A947EC4836C487B0_H
#define TLSSERVERKEYEXCHANGE_T7BEA370303282C53FD7A01B1A947EC4836C487B0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Server.TlsServerKeyExchange
struct TlsServerKeyExchange_t7BEA370303282C53FD7A01B1A947EC4836C487B0 : public HandshakeMessage_tEBF369C889158C306E3A860F224B7486028C0FC1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERKEYEXCHANGE_T7BEA370303282C53FD7A01B1A947EC4836C487B0_H
#ifndef PRIVATEKEYSELECTIONCALLBACK_T79D7007C82C157D4C11FB0A6FDE85DC1DC5EE7AD_H
#define PRIVATEKEYSELECTIONCALLBACK_T79D7007C82C157D4C11FB0A6FDE85DC1DC5EE7AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.PrivateKeySelectionCallback
struct PrivateKeySelectionCallback_t79D7007C82C157D4C11FB0A6FDE85DC1DC5EE7AD : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIVATEKEYSELECTIONCALLBACK_T79D7007C82C157D4C11FB0A6FDE85DC1DC5EE7AD_H
#ifndef READMETHOD_TA9A9CDB95BDE8256913BD139B98E2F28DF835363_H
#define READMETHOD_TA9A9CDB95BDE8256913BD139B98E2F28DF835363_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream_ReadMethod
struct ReadMethod_tA9A9CDB95BDE8256913BD139B98E2F28DF835363 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // READMETHOD_TA9A9CDB95BDE8256913BD139B98E2F28DF835363_H
#ifndef UNMANAGEDREADORWRITE_T2247EF4976B7CD4D3E37AE6D93EB8409AFC01522_H
#define UNMANAGEDREADORWRITE_T2247EF4976B7CD4D3E37AE6D93EB8409AFC01522_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream_UnmanagedReadOrWrite
struct UnmanagedReadOrWrite_t2247EF4976B7CD4D3E37AE6D93EB8409AFC01522 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNMANAGEDREADORWRITE_T2247EF4976B7CD4D3E37AE6D93EB8409AFC01522_H
#ifndef WRITEMETHOD_TBE1B0FCFCA59831616AC20F8BB221961D004B48C_H
#define WRITEMETHOD_TBE1B0FCFCA59831616AC20F8BB221961D004B48C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream_WriteMethod
struct WriteMethod_tBE1B0FCFCA59831616AC20F8BB221961D004B48C : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WRITEMETHOD_TBE1B0FCFCA59831616AC20F8BB221961D004B48C_H
#ifndef FILEWEBREQUEST_T24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7_H
#define FILEWEBREQUEST_T24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.FileWebRequest
struct FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7 : public WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399
{
public:
// System.Uri System.Net.FileWebRequest::uri
Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E * ___uri_6;
// System.Net.WebHeaderCollection System.Net.FileWebRequest::webHeaders
WebHeaderCollection_t01C9818A1AB6381C83A59AD104E8F0092AC87B66 * ___webHeaders_7;
// System.String System.Net.FileWebRequest::connectionGroup
String_t* ___connectionGroup_8;
// System.Int64 System.Net.FileWebRequest::contentLength
int64_t ___contentLength_9;
// System.IO.FileAccess System.Net.FileWebRequest::fileAccess
int32_t ___fileAccess_10;
// System.String System.Net.FileWebRequest::method
String_t* ___method_11;
// System.Net.IWebProxy System.Net.FileWebRequest::proxy
RuntimeObject* ___proxy_12;
// System.Boolean System.Net.FileWebRequest::preAuthenticate
bool ___preAuthenticate_13;
// System.Int32 System.Net.FileWebRequest::timeout
int32_t ___timeout_14;
public:
inline static int32_t get_offset_of_uri_6() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___uri_6)); }
inline Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E * get_uri_6() const { return ___uri_6; }
inline Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E ** get_address_of_uri_6() { return &___uri_6; }
inline void set_uri_6(Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E * value)
{
___uri_6 = value;
Il2CppCodeGenWriteBarrier((&___uri_6), value);
}
inline static int32_t get_offset_of_webHeaders_7() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___webHeaders_7)); }
inline WebHeaderCollection_t01C9818A1AB6381C83A59AD104E8F0092AC87B66 * get_webHeaders_7() const { return ___webHeaders_7; }
inline WebHeaderCollection_t01C9818A1AB6381C83A59AD104E8F0092AC87B66 ** get_address_of_webHeaders_7() { return &___webHeaders_7; }
inline void set_webHeaders_7(WebHeaderCollection_t01C9818A1AB6381C83A59AD104E8F0092AC87B66 * value)
{
___webHeaders_7 = value;
Il2CppCodeGenWriteBarrier((&___webHeaders_7), value);
}
inline static int32_t get_offset_of_connectionGroup_8() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___connectionGroup_8)); }
inline String_t* get_connectionGroup_8() const { return ___connectionGroup_8; }
inline String_t** get_address_of_connectionGroup_8() { return &___connectionGroup_8; }
inline void set_connectionGroup_8(String_t* value)
{
___connectionGroup_8 = value;
Il2CppCodeGenWriteBarrier((&___connectionGroup_8), value);
}
inline static int32_t get_offset_of_contentLength_9() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___contentLength_9)); }
inline int64_t get_contentLength_9() const { return ___contentLength_9; }
inline int64_t* get_address_of_contentLength_9() { return &___contentLength_9; }
inline void set_contentLength_9(int64_t value)
{
___contentLength_9 = value;
}
inline static int32_t get_offset_of_fileAccess_10() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___fileAccess_10)); }
inline int32_t get_fileAccess_10() const { return ___fileAccess_10; }
inline int32_t* get_address_of_fileAccess_10() { return &___fileAccess_10; }
inline void set_fileAccess_10(int32_t value)
{
___fileAccess_10 = value;
}
inline static int32_t get_offset_of_method_11() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___method_11)); }
inline String_t* get_method_11() const { return ___method_11; }
inline String_t** get_address_of_method_11() { return &___method_11; }
inline void set_method_11(String_t* value)
{
___method_11 = value;
Il2CppCodeGenWriteBarrier((&___method_11), value);
}
inline static int32_t get_offset_of_proxy_12() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___proxy_12)); }
inline RuntimeObject* get_proxy_12() const { return ___proxy_12; }
inline RuntimeObject** get_address_of_proxy_12() { return &___proxy_12; }
inline void set_proxy_12(RuntimeObject* value)
{
___proxy_12 = value;
Il2CppCodeGenWriteBarrier((&___proxy_12), value);
}
inline static int32_t get_offset_of_preAuthenticate_13() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___preAuthenticate_13)); }
inline bool get_preAuthenticate_13() const { return ___preAuthenticate_13; }
inline bool* get_address_of_preAuthenticate_13() { return &___preAuthenticate_13; }
inline void set_preAuthenticate_13(bool value)
{
___preAuthenticate_13 = value;
}
inline static int32_t get_offset_of_timeout_14() { return static_cast<int32_t>(offsetof(FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7, ___timeout_14)); }
inline int32_t get_timeout_14() const { return ___timeout_14; }
inline int32_t* get_address_of_timeout_14() { return &___timeout_14; }
inline void set_timeout_14(int32_t value)
{
___timeout_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEWEBREQUEST_T24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7_H
#ifndef FTPWEBREQUEST_T1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_H
#define FTPWEBREQUEST_T1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.FtpWebRequest
struct FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A : public WebRequest_t079731BC640578743ADC705570EAC33A9BCFB399
{
public:
// System.Uri System.Net.FtpWebRequest::requestUri
Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E * ___requestUri_6;
// System.Net.IWebProxy System.Net.FtpWebRequest::proxy
RuntimeObject* ___proxy_7;
// System.Int32 System.Net.FtpWebRequest::timeout
int32_t ___timeout_8;
// System.Int32 System.Net.FtpWebRequest::rwTimeout
int32_t ___rwTimeout_9;
// System.Boolean System.Net.FtpWebRequest::binary
bool ___binary_10;
// System.Boolean System.Net.FtpWebRequest::usePassive
bool ___usePassive_11;
// System.String System.Net.FtpWebRequest::method
String_t* ___method_12;
// System.Object System.Net.FtpWebRequest::locker
RuntimeObject * ___locker_13;
// System.Net.Security.RemoteCertificateValidationCallback System.Net.FtpWebRequest::callback
RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * ___callback_15;
public:
inline static int32_t get_offset_of_requestUri_6() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___requestUri_6)); }
inline Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E * get_requestUri_6() const { return ___requestUri_6; }
inline Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E ** get_address_of_requestUri_6() { return &___requestUri_6; }
inline void set_requestUri_6(Uri_tF93A2559917F312C27D9DEAC7CAE4400D3A40F1E * value)
{
___requestUri_6 = value;
Il2CppCodeGenWriteBarrier((&___requestUri_6), value);
}
inline static int32_t get_offset_of_proxy_7() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___proxy_7)); }
inline RuntimeObject* get_proxy_7() const { return ___proxy_7; }
inline RuntimeObject** get_address_of_proxy_7() { return &___proxy_7; }
inline void set_proxy_7(RuntimeObject* value)
{
___proxy_7 = value;
Il2CppCodeGenWriteBarrier((&___proxy_7), value);
}
inline static int32_t get_offset_of_timeout_8() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___timeout_8)); }
inline int32_t get_timeout_8() const { return ___timeout_8; }
inline int32_t* get_address_of_timeout_8() { return &___timeout_8; }
inline void set_timeout_8(int32_t value)
{
___timeout_8 = value;
}
inline static int32_t get_offset_of_rwTimeout_9() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___rwTimeout_9)); }
inline int32_t get_rwTimeout_9() const { return ___rwTimeout_9; }
inline int32_t* get_address_of_rwTimeout_9() { return &___rwTimeout_9; }
inline void set_rwTimeout_9(int32_t value)
{
___rwTimeout_9 = value;
}
inline static int32_t get_offset_of_binary_10() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___binary_10)); }
inline bool get_binary_10() const { return ___binary_10; }
inline bool* get_address_of_binary_10() { return &___binary_10; }
inline void set_binary_10(bool value)
{
___binary_10 = value;
}
inline static int32_t get_offset_of_usePassive_11() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___usePassive_11)); }
inline bool get_usePassive_11() const { return ___usePassive_11; }
inline bool* get_address_of_usePassive_11() { return &___usePassive_11; }
inline void set_usePassive_11(bool value)
{
___usePassive_11 = value;
}
inline static int32_t get_offset_of_method_12() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___method_12)); }
inline String_t* get_method_12() const { return ___method_12; }
inline String_t** get_address_of_method_12() { return &___method_12; }
inline void set_method_12(String_t* value)
{
___method_12 = value;
Il2CppCodeGenWriteBarrier((&___method_12), value);
}
inline static int32_t get_offset_of_locker_13() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___locker_13)); }
inline RuntimeObject * get_locker_13() const { return ___locker_13; }
inline RuntimeObject ** get_address_of_locker_13() { return &___locker_13; }
inline void set_locker_13(RuntimeObject * value)
{
___locker_13 = value;
Il2CppCodeGenWriteBarrier((&___locker_13), value);
}
inline static int32_t get_offset_of_callback_15() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A, ___callback_15)); }
inline RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * get_callback_15() const { return ___callback_15; }
inline RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 ** get_address_of_callback_15() { return &___callback_15; }
inline void set_callback_15(RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * value)
{
___callback_15 = value;
Il2CppCodeGenWriteBarrier((&___callback_15), value);
}
};
struct FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_StaticFields
{
public:
// System.String[] System.Net.FtpWebRequest::supportedCommands
StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* ___supportedCommands_14;
// System.Net.Security.RemoteCertificateValidationCallback System.Net.FtpWebRequest::<>f__amU24cache1C
RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * ___U3CU3Ef__amU24cache1C_16;
public:
inline static int32_t get_offset_of_supportedCommands_14() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_StaticFields, ___supportedCommands_14)); }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* get_supportedCommands_14() const { return ___supportedCommands_14; }
inline StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B** get_address_of_supportedCommands_14() { return &___supportedCommands_14; }
inline void set_supportedCommands_14(StringU5BU5D_t632E9CB8D244841312F333CBF60404AFA46E0B3B* value)
{
___supportedCommands_14 = value;
Il2CppCodeGenWriteBarrier((&___supportedCommands_14), value);
}
inline static int32_t get_offset_of_U3CU3Ef__amU24cache1C_16() { return static_cast<int32_t>(offsetof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_StaticFields, ___U3CU3Ef__amU24cache1C_16)); }
inline RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * get_U3CU3Ef__amU24cache1C_16() const { return ___U3CU3Ef__amU24cache1C_16; }
inline RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 ** get_address_of_U3CU3Ef__amU24cache1C_16() { return &___U3CU3Ef__amU24cache1C_16; }
inline void set_U3CU3Ef__amU24cache1C_16(RemoteCertificateValidationCallback_t1276D648C0AECBBE8AF2790937BA182B64D3A489 * value)
{
___U3CU3Ef__amU24cache1C_16 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cache1C_16), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FTPWEBREQUEST_T1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_H
#ifndef SOCKETASYNCCALL_T135502FC1C171E166A4932237AC2514312060105_H
#define SOCKETASYNCCALL_T135502FC1C171E166A4932237AC2514312060105_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.Socket_SocketAsyncCall
struct SocketAsyncCall_t135502FC1C171E166A4932237AC2514312060105 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETASYNCCALL_T135502FC1C171E166A4932237AC2514312060105_H
#ifndef SOCKETEXCEPTION_T2FE2818FCEB9CEA13015CFBF6D780D46E395D7ED_H
#define SOCKETEXCEPTION_T2FE2818FCEB9CEA13015CFBF6D780D46E395D7ED_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketException
struct SocketException_t2FE2818FCEB9CEA13015CFBF6D780D46E395D7ED : public Win32Exception_t49FE19329E4B4698A554BED1E8C37D0F1A4CC873
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETEXCEPTION_T2FE2818FCEB9CEA13015CFBF6D780D46E395D7ED_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1100 = { sizeof (TlsClientKeyExchange_tBAEECDA44C27B3242E1313B3677343C44E39A045), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1101 = { sizeof (TlsServerCertificate_t32F2B38468F40846D45AC89959DF793D3AEB6B30), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1101[1] =
{
TlsServerCertificate_t32F2B38468F40846D45AC89959DF793D3AEB6B30::get_offset_of_certificates_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1102 = { sizeof (TlsServerCertificateRequest_t1947714A64A023B7E2202F72C092BEB5641BE514), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1102[2] =
{
TlsServerCertificateRequest_t1947714A64A023B7E2202F72C092BEB5641BE514::get_offset_of_certificateTypes_9(),
TlsServerCertificateRequest_t1947714A64A023B7E2202F72C092BEB5641BE514::get_offset_of_distinguisedNames_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1103 = { sizeof (TlsServerFinished_tD74DCB7D86BAE8363139D71390CA8FB77C0138F1), -1, sizeof(TlsServerFinished_tD74DCB7D86BAE8363139D71390CA8FB77C0138F1_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1103[1] =
{
TlsServerFinished_tD74DCB7D86BAE8363139D71390CA8FB77C0138F1_StaticFields::get_offset_of_Ssl3Marker_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1104 = { sizeof (TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1104[4] =
{
TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E::get_offset_of_compressionMethod_9(),
TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E::get_offset_of_random_10(),
TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E::get_offset_of_sessionId_11(),
TlsServerHello_tD836EE7E891A7E6DBB3E7E35DF5233AC40D9D06E::get_offset_of_cipherSuite_12(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1105 = { sizeof (TlsServerHelloDone_tC2206D368BB68E27595A8C67BB836DEB10BCA9BC), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1106 = { sizeof (TlsServerKeyExchange_t432C66F5AC47091BB84BCF9CBC447A73A637BFE3), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1106[2] =
{
TlsServerKeyExchange_t432C66F5AC47091BB84BCF9CBC447A73A637BFE3::get_offset_of_rsaParams_9(),
TlsServerKeyExchange_t432C66F5AC47091BB84BCF9CBC447A73A637BFE3::get_offset_of_signedParams_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1107 = { sizeof (TlsClientCertificate_tAEF87DFB50E630BFB4EB43D24146B7B1FDBCB25C), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1107[1] =
{
TlsClientCertificate_tAEF87DFB50E630BFB4EB43D24146B7B1FDBCB25C::get_offset_of_clientCertificates_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1108 = { sizeof (TlsClientCertificateVerify_t032C1C7DB7106977F9DA2FCCC1AEAA5DA458656F), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1109 = { sizeof (TlsClientFinished_t7743ED2B4564A97AB2BCF8FD6BAF80A27FD0436E), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1110 = { sizeof (TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1110[4] =
{
TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6::get_offset_of_random_9(),
TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6::get_offset_of_sessionId_10(),
TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6::get_offset_of_cipherSuites_11(),
TlsClientHello_t7384836B64BF5ED37682B4B862577D472635BFF6::get_offset_of_compressionMethods_12(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1111 = { sizeof (TlsClientKeyExchange_t816F288E33C892931A308C81890B2CC457162DBD), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1112 = { sizeof (TlsServerCertificate_t4FCBE467D8C4AAB4B740B4FDFC06587D3BE1FCB3), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1113 = { sizeof (TlsServerCertificateRequest_tF577E5F4C8BAB6763C0B83FBAF83B9B0D7AC2E73), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1114 = { sizeof (TlsServerFinished_t85EB4EF17C01429D073E6F3AC60F06B2220784D6), -1, sizeof(TlsServerFinished_t85EB4EF17C01429D073E6F3AC60F06B2220784D6_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1114[1] =
{
TlsServerFinished_t85EB4EF17C01429D073E6F3AC60F06B2220784D6_StaticFields::get_offset_of_Ssl3Marker_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1115 = { sizeof (TlsServerHello_tC60C7307EE3EB22B8C73E9ACFF4E818842D281DC), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1115[2] =
{
TlsServerHello_tC60C7307EE3EB22B8C73E9ACFF4E818842D281DC::get_offset_of_unixTime_9(),
TlsServerHello_tC60C7307EE3EB22B8C73E9ACFF4E818842D281DC::get_offset_of_random_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1116 = { sizeof (TlsServerHelloDone_t6261CCFF0A629AB307096A7A93C17D50BA0EF086), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1117 = { sizeof (TlsServerKeyExchange_t7BEA370303282C53FD7A01B1A947EC4836C487B0), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1118 = { sizeof (PrimalityTest_t21BB24E4B8386B8AD6B7CDA7CF189A35A93AF260), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1119 = { sizeof (CertificateValidationCallback_t1265D8B2396A0F0D2F26746A6F474F59907507F8), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1120 = { sizeof (CertificateValidationCallback2_tE6E262A957066F2E324A9FE910295798E07986C2), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1121 = { sizeof (CertificateSelectionCallback_t4DE34335A1E16424F4D74044D2B62988D1A5D258), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1122 = { sizeof (PrivateKeySelectionCallback_t79D7007C82C157D4C11FB0A6FDE85DC1DC5EE7AD), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1123 = { sizeof (U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0), -1, sizeof(U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1123[16] =
{
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D0_0(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D5_1(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D6_2(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D7_3(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D8_4(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D9_5(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D11_6(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D12_7(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D13_8(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D14_9(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D15_10(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D16_11(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D17_12(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D21_13(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D22_14(),
U3CPrivateImplementationDetailsU3E_tB0A4A72B53DB7D802E4152C9E032E269EA09E0B0_StaticFields::get_offset_of_U24U24fieldU2D23_15(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1124 = { sizeof (U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU243132_tB4B2D02CB1D25DA8A2365FF1F7194778F5865375 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1125 = { sizeof (U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU24256_tECF690BE542BCE69FA380DA73129A32EBBA79EC0 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1126 = { sizeof (U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2420_tC30B3410ED78E77399E9EB0BC02865F70054B6B0 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1127 = { sizeof (U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2432_t81B2756612AE7B8BC584F0547C5AC6ED5C719BAF ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1128 = { sizeof (U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2448_t206F0CAD1CFE1565A495415F94F351EAA0209291 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1129 = { sizeof (U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2464_t7527DA046E72F979D34D3924E0957FA03B3CE1EE ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1130 = { sizeof (U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2412_t34A0555607D56E64995C58450DA7271038B4E338 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1131 = { sizeof (U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2416_t3ED63219EF62A55102C1A217300B96A85574E8CF ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1132 = { sizeof (U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU244_tF876CE6CA7BEDCC97AA68E56F45B1155BB1E9474 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1133 = { sizeof (U3CModuleU3E_t3D66A8F35F2157DE9E925FB938396AEDA1FB0CA9), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1134 = { sizeof (Locale_tB294B91FA78F6E22E1CCE2B05E5FC1AC28325202), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1135 = { sizeof (MonoTODOAttribute_t9D89F1E822F284972E35E1E9E94CFA0817EFB2CB), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1135[1] =
{
MonoTODOAttribute_t9D89F1E822F284972E35E1E9E94CFA0817EFB2CB::get_offset_of_comment_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1136 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1136[5] =
{
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1137 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1137[3] =
{
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1138 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1138[3] =
{
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1139 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1139[3] =
{
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1140 = { sizeof (HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1140[3] =
{
HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747::get_offset_of_caseInsensitive_0(),
HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747::get_offset_of_hashtable_1(),
HybridDictionary_t5AD529BFF21493C38235716C9AD62F1F7623C747::get_offset_of_list_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1141 = { sizeof (ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1141[4] =
{
ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA::get_offset_of_count_0(),
ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA::get_offset_of_version_1(),
ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA::get_offset_of_head_2(),
ListDictionary_tD949561FF8FD1EBEB444214919203DD41A76ECCA::get_offset_of_comparer_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1142 = { sizeof (DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1142[3] =
{
DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973::get_offset_of_key_0(),
DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973::get_offset_of_value_1(),
DictionaryNode_tE865C15924F25A7B21066D345799357693CFE973::get_offset_of_next_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1143 = { sizeof (DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1143[4] =
{
DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601::get_offset_of_dict_0(),
DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601::get_offset_of_isAtStart_1(),
DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601::get_offset_of_current_2(),
DictionaryNodeEnumerator_tF7AA3F261E0E04587E624470DCC081B4CAB4A601::get_offset_of_version_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1144 = { sizeof (NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1144[10] =
{
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_m_ItemsContainer_0(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_m_NullKeyItem_1(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_m_ItemsArray_2(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_m_hashprovider_3(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_m_comparer_4(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_m_defCapacity_5(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_m_readonly_6(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_infoCopy_7(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_keyscoll_8(),
NameObjectCollectionBase_tC2EE4FB130214FAE7365D519959A2A34DE56E070::get_offset_of_equality_comparer_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1145 = { sizeof (_Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1145[2] =
{
_Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7::get_offset_of_key_0(),
_Item_tFD4BAC90D8E7FF5A3713C2052052BAC018E7CEF7::get_offset_of_value_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1146 = { sizeof (_KeysEnumerator_t831ED8844B7FCA44E39D0121A1EC06B3AE76941E), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1146[2] =
{
_KeysEnumerator_t831ED8844B7FCA44E39D0121A1EC06B3AE76941E::get_offset_of_m_collection_0(),
_KeysEnumerator_t831ED8844B7FCA44E39D0121A1EC06B3AE76941E::get_offset_of_m_position_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1147 = { sizeof (KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1147[1] =
{
KeysCollection_t3A1987CE62992069C60E21F2F157579EFBB7FDDB::get_offset_of_m_collection_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1148 = { sizeof (NameValueCollection_tB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1148[2] =
{
NameValueCollection_tB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF::get_offset_of_cachedAllKeys_10(),
NameValueCollection_tB87E7DD2A8341E8E48EEC4D39322C1CE72E103EF::get_offset_of_cachedAll_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1149 = { sizeof (EditorBrowsableAttribute_t89B76DD408DEC1C18C8B0F2A40836D5728A827DD), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1149[1] =
{
EditorBrowsableAttribute_t89B76DD408DEC1C18C8B0F2A40836D5728A827DD::get_offset_of_state_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1150 = { sizeof (EditorBrowsableState_t29045763CB3BEAC19254BB89EEF28ECA6A824E22)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1150[4] =
{
EditorBrowsableState_t29045763CB3BEAC19254BB89EEF28ECA6A824E22::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1151 = { sizeof (TypeConverter_t5801C9F7100E1D849000ED0914E01E4CB2541B71), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1152 = { sizeof (TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27), -1, sizeof(TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1152[2] =
{
TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27_StaticFields::get_offset_of_Default_0(),
TypeConverterAttribute_tC7B95DB483CF95DC3E325F90964995E1939B4E27::get_offset_of_converter_type_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1153 = { sizeof (Win32Exception_t49FE19329E4B4698A554BED1E8C37D0F1A4CC873), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1153[1] =
{
Win32Exception_t49FE19329E4B4698A554BED1E8C37D0F1A4CC873::get_offset_of_native_error_code_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1154 = { sizeof (Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318), -1, sizeof(Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1154[5] =
{
Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_StaticFields::get_offset_of_Frequency_0(),
Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318_StaticFields::get_offset_of_IsHighResolution_1(),
Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318::get_offset_of_elapsed_2(),
Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318::get_offset_of_started_3(),
Stopwatch_tB4BCCFE6FDDC5A433399B407F9CDBD247AE54318::get_offset_of_is_running_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1155 = { sizeof (CompressionMode_t535F84D55EC31A6E5A333E468EC2B8A92E5207B8)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1155[3] =
{
CompressionMode_t535F84D55EC31A6E5A333E468EC2B8A92E5207B8::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1156 = { sizeof (DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1156[8] =
{
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_base_stream_1(),
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_mode_2(),
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_leaveOpen_3(),
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_disposed_4(),
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_feeder_5(),
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_z_stream_6(),
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_io_buffer_7(),
DeflateStream_t3993C952E7EF0747F70E757E7A22EAAE89E8884E::get_offset_of_data_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1157 = { sizeof (UnmanagedReadOrWrite_t2247EF4976B7CD4D3E37AE6D93EB8409AFC01522), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1158 = { sizeof (ReadMethod_tA9A9CDB95BDE8256913BD139B98E2F28DF835363), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1159 = { sizeof (WriteMethod_tBE1B0FCFCA59831616AC20F8BB221961D004B48C), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1160 = { sizeof (AuthenticatedStream_tD1567684CF73B3685DA40392729A8B4B0313E8CB), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1160[2] =
{
AuthenticatedStream_tD1567684CF73B3685DA40392729A8B4B0313E8CB::get_offset_of_innerStream_1(),
AuthenticatedStream_tD1567684CF73B3685DA40392729A8B4B0313E8CB::get_offset_of_leaveStreamOpen_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1161 = { sizeof (AuthenticationLevel_tDD7C55ABAF179BD6273AA3DC6AC59A265B006E17)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1161[4] =
{
AuthenticationLevel_tDD7C55ABAF179BD6273AA3DC6AC59A265B006E17::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1162 = { sizeof (SslPolicyErrors_t821E0247A29EDB8CD8327153A81349E907DBE6E9)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1162[5] =
{
SslPolicyErrors_t821E0247A29EDB8CD8327153A81349E907DBE6E9::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1163 = { sizeof (SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1163[3] =
{
SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02::get_offset_of_ssl_stream_3(),
SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02::get_offset_of_validation_callback_4(),
SslStream_tC58E03397FD48E34D92CD16EF17F480748888B02::get_offset_of_selection_callback_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1164 = { sizeof (U3CBeginAuthenticateAsClientU3Ec__AnonStorey7_t94195F778805EAD801F0807A9742186729FEC5E5), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1164[2] =
{
U3CBeginAuthenticateAsClientU3Ec__AnonStorey7_t94195F778805EAD801F0807A9742186729FEC5E5::get_offset_of_clientCertificates_0(),
U3CBeginAuthenticateAsClientU3Ec__AnonStorey7_t94195F778805EAD801F0807A9742186729FEC5E5::get_offset_of_U3CU3Ef__this_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1165 = { sizeof (U3CBeginAuthenticateAsServerU3Ec__AnonStorey8_tFC744427E22FEF8C086A09215F4DF75A252322B7), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1165[2] =
{
U3CBeginAuthenticateAsServerU3Ec__AnonStorey8_tFC744427E22FEF8C086A09215F4DF75A252322B7::get_offset_of_serverCertificate_0(),
U3CBeginAuthenticateAsServerU3Ec__AnonStorey8_tFC744427E22FEF8C086A09215F4DF75A252322B7::get_offset_of_U3CU3Ef__this_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1166 = { sizeof (AddressFamily_t56E41B784F73C1D53BE91A309AB9E5A35F947876)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1166[32] =
{
AddressFamily_t56E41B784F73C1D53BE91A309AB9E5A35F947876::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1167 = { sizeof (IPv6MulticastOption_t83F754083F4F091E96895956BE1EDED9D2C4B63B), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1168 = { sizeof (LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1168[2] =
{
LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267::get_offset_of_enabled_0(),
LingerOption_t62B714AFE2251DFCF0B64F164C08A8A533EE1267::get_offset_of_seconds_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1169 = { sizeof (MulticastOption_t0111E2D23A0232DB1748487EACD9EF4EDE686E05), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1170 = { sizeof (NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1170[6] =
{
NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E::get_offset_of_access_1(),
NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E::get_offset_of_socket_2(),
NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E::get_offset_of_owns_socket_3(),
NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E::get_offset_of_readable_4(),
NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E::get_offset_of_writeable_5(),
NetworkStream_tD965505D5AD8C4F3E6FA75D9BC78A445B6695B9E::get_offset_of_disposed_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1171 = { sizeof (ProtocolType_t1223B6D594BC5A355A06BC2193B1EE86A1EC3298)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1171[26] =
{
ProtocolType_t1223B6D594BC5A355A06BC2193B1EE86A1EC3298::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1172 = { sizeof (SelectMode_t63DBEB3888C548C3B2F79C56CEFB19D8C93B9963)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1172[4] =
{
SelectMode_t63DBEB3888C548C3B2F79C56CEFB19D8C93B9963::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1173 = { sizeof (Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03), -1, sizeof(Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1173[23] =
{
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_readQ_0(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_writeQ_1(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_islistening_2(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_useoverlappedIO_3(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_MinListenPort_4(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_MaxListenPort_5(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields::get_offset_of_ipv4Supported_6(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields::get_offset_of_ipv6Supported_7(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_linger_timeout_8(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_socket_9(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_address_family_10(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_socket_type_11(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_protocol_type_12(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_blocking_13(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_blocking_thread_14(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_isbound_15(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields::get_offset_of_current_bind_count_16(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_max_bind_count_17(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_connected_18(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_closed_19(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_disposed_20(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03::get_offset_of_seed_endpoint_21(),
Socket_t78B0CF49A51C5330826C9D2F0D0BF7B959FE2C03_StaticFields::get_offset_of_check_socket_policy_22(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1174 = { sizeof (SocketOperation_tA812699D05A43751860066A6FAB3D7C3EC199217)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1174[15] =
{
SocketOperation_tA812699D05A43751860066A6FAB3D7C3EC199217::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1175 = { sizeof (SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1175[25] =
{
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_Sock_0(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_handle_1(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_state_2(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_callback_3(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_waithandle_4(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_delayedException_5(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_EndPoint_6(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_Buffer_7(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_Offset_8(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_Size_9(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_SockFlags_10(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_AcceptSocket_11(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_Addresses_12(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_Port_13(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_Buffers_14(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_ReuseSocket_15(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_acc_socket_16(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_total_17(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_completed_sync_18(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_completed_19(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_blocking_20(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_error_21(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_operation_22(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_ares_23(),
SocketAsyncResult_t446231DAC0849FAA558839CFC440557641F8AEFD::get_offset_of_EndCalled_24(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1176 = { sizeof (Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1176[3] =
{
Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4::get_offset_of_result_0(),
Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4::get_offset_of_requireSocketSecurity_1(),
Worker_tC1AAD83C48E41CA928E5FCA0B2EB2A50E00680A4::get_offset_of_send_so_far_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1177 = { sizeof (SocketAsyncCall_t135502FC1C171E166A4932237AC2514312060105), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1178 = { sizeof (SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1178[15] =
{
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of__bufferList_1(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_curSocket_2(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_Completed_3(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CAcceptSocketU3Ek__BackingField_4(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CBufferU3Ek__BackingField_5(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CBytesTransferredU3Ek__BackingField_6(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CCountU3Ek__BackingField_7(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CDisconnectReuseSocketU3Ek__BackingField_8(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CLastOperationU3Ek__BackingField_9(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3COffsetU3Ek__BackingField_10(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CRemoteEndPointU3Ek__BackingField_11(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CSendPacketsSendSizeU3Ek__BackingField_12(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CSocketErrorU3Ek__BackingField_13(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CSocketFlagsU3Ek__BackingField_14(),
SocketAsyncEventArgs_t816F3F5E4B73481486609F7CD6FFED7ABEC8C84B::get_offset_of_U3CUserTokenU3Ek__BackingField_15(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1179 = { sizeof (SocketAsyncOperation_tBC4E2C28279395EED1128B17804E2637CA216B83)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1179[11] =
{
SocketAsyncOperation_tBC4E2C28279395EED1128B17804E2637CA216B83::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1180 = { sizeof (SocketError_tC34E45C7F26E52F15247953F3FFAC887AE2FF4EF)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1180[48] =
{
SocketError_tC34E45C7F26E52F15247953F3FFAC887AE2FF4EF::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1181 = { sizeof (SocketException_t2FE2818FCEB9CEA13015CFBF6D780D46E395D7ED), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1182 = { sizeof (SocketFlags_t5240370DDBF286FBD7D3DE6DD712965DABC51962)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1182[11] =
{
SocketFlags_t5240370DDBF286FBD7D3DE6DD712965DABC51962::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1183 = { sizeof (SocketOptionLevel_t16A2C4AF3E0DA331C1DD44EA1A5587DDE3FBB0B4)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1183[6] =
{
SocketOptionLevel_t16A2C4AF3E0DA331C1DD44EA1A5587DDE3FBB0B4::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1184 = { sizeof (SocketOptionName_t7EDE8ADE79DE30F68493017CE15235C5B770409B)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1184[44] =
{
SocketOptionName_t7EDE8ADE79DE30F68493017CE15235C5B770409B::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1185 = { sizeof (SocketShutdown_t43233BE07927F1DC6413AC0902E0F26CFF5E33E3)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1185[4] =
{
SocketShutdown_t43233BE07927F1DC6413AC0902E0F26CFF5E33E3::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1186 = { sizeof (SocketType_t1B9521817354AD18AAD4F25B8575AEFE3A1160CD)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1186[7] =
{
SocketType_t1B9521817354AD18AAD4F25B8575AEFE3A1160CD::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1187 = { sizeof (TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1187[11] =
{
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_stream_0(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_active_1(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_client_2(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_disposed_3(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_values_4(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_recv_timeout_5(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_send_timeout_6(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_recv_buffer_size_7(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_send_buffer_size_8(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_linger_state_9(),
TcpClient_tC0F2BB1744837FB736E2C4A97F61C6DFFD36CBF8::get_offset_of_no_delay_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1188 = { sizeof (Properties_t097EA488E9DF1053ABA670D68E0F7F33FC3CD017)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1188[7] =
{
Properties_t097EA488E9DF1053ABA670D68E0F7F33FC3CD017::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1189 = { sizeof (DefaultCertificatePolicy_t20D131A15C57E252C662EF7DC027E17A9DF237DE), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1190 = { sizeof (Dns_t35F3A3DC5D6D1C5ADD6161054D19486B7AF78A1D), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1191 = { sizeof (EndPoint_t025B464C83C18FB6B01BBA3888ECD9C9168F8DB5), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1192 = { sizeof (FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1192[9] =
{
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_uri_6(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_webHeaders_7(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_connectionGroup_8(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_contentLength_9(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_fileAccess_10(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_method_11(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_proxy_12(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_preAuthenticate_13(),
FileWebRequest_t24B2DDC370DB1CC9FAF84E04B007809E6AD0B5C7::get_offset_of_timeout_14(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1193 = { sizeof (FileWebRequestCreator_tD60F349437141E04C9E12D16F8F041FB10891B8C), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1194 = { sizeof (FtpRequestCreator_tCE4465133E262EF54F054235B5AAC7780257A1C5), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1195 = { sizeof (FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A), -1, sizeof(FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1195[11] =
{
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_requestUri_6(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_proxy_7(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_timeout_8(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_rwTimeout_9(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_binary_10(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_usePassive_11(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_method_12(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_locker_13(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_StaticFields::get_offset_of_supportedCommands_14(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A::get_offset_of_callback_15(),
FtpWebRequest_t1E1797BED1A0B0AC7392FEB2839900B2F696CC0A_StaticFields::get_offset_of_U3CU3Ef__amU24cache1C_16(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1196 = { sizeof (GlobalProxySelection_tDFCA7BC6C93E29ADBF707433E1D10EAD2D5DF472), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1197 = { sizeof (HttpRequestCreator_t2790C4BD42A81817740F2591423D195413F750A8), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1198 = { sizeof (HttpRequestHeader_t108500199B65E07728C618542222C53AA8C1064B)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1198[42] =
{
HttpRequestHeader_t108500199B65E07728C618542222C53AA8C1064B::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1199 = { sizeof (HttpResponseHeader_t65CEF936279F28AF8A67629491C15C44B6391C1B)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1199[31] =
{
HttpResponseHeader_t65CEF936279F28AF8A67629491C15C44B6391C1B::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"[email protected]"
] | |
a6e6124829096a0f7238023eb1eec50780cc5512 | 34b3623dbd185b9d8e6bc5af787ff656ebb8f837 | /finalProject/results/test/test_lowRe/spline/spline1/30/U | db5e8281e439602389c6c095031d996fe46735fc | [] | no_license | kenneth-meyer/COE347 | 6426252133cdb94582b49337d44bdc5759d96cda | a4f1e5f3322031690a180d0815cc8272b6f89726 | refs/heads/master | 2023-04-25T04:03:37.617189 | 2021-05-16T02:40:23 | 2021-05-16T02:40:23 | 339,565,109 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,003,727 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "30";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
29540
(
(1.00885 -0.011739 2.74024e-23)
(1.00843 0.00398444 1.34214e-22)
(0.99224 -0.00281013 -1.72769e-22)
(0.973559 -0.040599 5.86894e-23)
(0.997946 -4.39273e-05 2.45506e-23)
(0.963767 -0.0246603 -8.39475e-23)
(1.04464 -0.0728289 1.48466e-22)
(1.0115 -0.0178386 -2.68074e-24)
(1.00169 -0.00164591 3.92923e-24)
(1.00016 -4.15174e-05 1.01546e-24)
(1.01263 -0.0238886 -9.47261e-25)
(0.998044 -0.0139457 -6.41696e-23)
(0.999596 -0.000164431 3.37895e-24)
(0.999974 -9.09762e-06 9.46121e-26)
(1.16585 0.0872039 2.23797e-22)
(0.99491 -0.00163677 2.65136e-23)
(0.999866 -0.000719096 -1.5446e-24)
(1.13044 -0.0166559 -1.2561e-23)
(0.998204 -0.00151322 -8.36472e-24)
(0.99084 -0.000674293 -3.85481e-23)
(0.999275 -0.000231757 -1.14778e-23)
(1.00159 -0.00164212 1.37767e-23)
(0.992166 -0.0029724 1.90945e-22)
(0.998198 -0.000144359 1.07868e-23)
(0.885934 0.116346 6.64429e-23)
(1.00927 0.00315579 7.20082e-22)
(0.999564 -4.95181e-05 7.69934e-24)
(0.94336 0.0987684 -4.39537e-21)
(1.17155 0.0866949 -6.51413e-22)
(0.999265 -0.00765085 -1.21377e-23)
(1.01296 -0.00960723 1.97917e-23)
(1.03296 -0.00687751 -1.50626e-22)
(0.976098 -0.093668 6.04237e-22)
(0.998064 -0.0193075 3.25902e-23)
(0.941253 0.094124 3.52748e-21)
(1.00223 -0.0276671 9.70462e-23)
(1.06854 0.0429771 -2.18221e-22)
(0.976257 -0.0228953 2.28175e-22)
(1.00448 -0.00070022 -5.37882e-23)
(1.00432 -0.000501758 1.02371e-22)
(1.00036 -0.000137643 -3.17464e-24)
(0.990076 -0.025287 -2.25688e-22)
(0.999882 -0.000698943 -1.97635e-26)
(1.01836 -0.0623371 -4.24303e-22)
(1.00003 -4.72074e-06 -1.97129e-25)
(0.999432 -0.00776247 8.97149e-24)
(0.997817 -0.0103584 -1.81875e-23)
(1.00006 -7.13496e-05 5.06389e-25)
(1.0028 -0.00308845 -5.5911e-23)
(1.06817 0.0401581 -8.9323e-23)
(1.09514 -0.0938275 1.14509e-22)
(0.976563 -0.035903 -2.68198e-22)
(1.0329 -0.00604872 5.30086e-23)
(0.964884 -0.0244889 -1.37389e-22)
(0.995034 -0.00167944 -2.32815e-23)
(1.17509 0.0742221 -3.912e-22)
(0.997166 -0.00188799 8.334e-24)
(0.999255 -0.000255378 1.45412e-23)
(0.999668 -0.0182564 -4.63021e-23)
(1.00652 -0.0497471 -1.78206e-22)
(0.999945 -5.95373e-06 2.22037e-25)
(0.998266 -0.00155059 -1.72178e-24)
(1.25665 -0.0184111 -2.0502e-22)
(1.00259 -0.0270631 -5.39019e-23)
(1.06743 0.110251 1.88653e-21)
(0.912887 0.0323213 8.8534e-21)
(0.998697 -0.0229337 -8.90282e-23)
(0.993792 -0.0115427 8.00875e-23)
(0.935674 0.0207013 3.54893e-21)
(1.00038 -0.000129949 2.05367e-24)
(1.01076 0.00378624 -9.81367e-22)
(0.9881 0.0823913 2.41095e-21)
(1.00266 -0.0076498 -2.09295e-23)
(0.906685 0.135334 2.44276e-21)
(0.993267 -0.000528607 1.22354e-22)
(1.10296 -0.0560992 -3.40042e-23)
(1.24292 0.144136 4.51343e-22)
(0.977414 -0.0130258 5.4263e-23)
(0.999959 -1.87587e-05 -6.31015e-25)
(1.00158 -0.040718 -1.72849e-22)
(0.965432 -0.000575324 -9.06896e-23)
(1.02112 0.0397598 5.79834e-22)
(1.00901 -0.012249 -8.29028e-23)
(1 -5.26438e-05 6.40445e-26)
(1.04696 -0.0714125 -2.31578e-22)
(1.16332 -0.183984 -7.77486e-22)
(1.03901 0.0966856 -3.65692e-21)
(0.99958 -0.000162021 -3.06066e-24)
(0.999609 -0.000146573 -8.97028e-25)
(0.946928 -0.0309396 -3.57592e-22)
(0.992986 -0.0438327 3.11044e-22)
(0.977321 -0.0136443 6.13205e-23)
(1.00262 -0.00319089 9.52343e-24)
(1.05303 -0.0118685 -8.31076e-23)
(0.942719 -0.0131641 -2.97391e-22)
(1.04971 0.117249 1.81634e-21)
(0.993571 -0.0567622 5.07016e-22)
(1.0004 -0.000324751 5.10736e-24)
(0.973547 -0.050882 -5.28352e-22)
(1.15981 0.115612 1.3257e-21)
(0.999956 -1.83934e-05 9.22986e-25)
(0.978536 -0.00850453 -3.25383e-22)
(0.999947 -7.29789e-06 -1.14777e-25)
(1.04049 -0.0191056 -4.06755e-22)
(0.97547 -0.03572 1.77986e-22)
(1.03386 0.0117135 9.90367e-22)
(1.00403 0.0776926 3.59151e-21)
(0.999625 -0.000148339 -7.58801e-24)
(0.999996 -5.84632e-05 -1.42042e-26)
(0.988831 -0.0917803 -2.99549e-23)
(0.974634 -0.0923378 -5.43894e-22)
(1.03512 -0.0378833 1.74399e-23)
(1.00001 -1.76954e-06 3.42372e-26)
(0.99902 -0.00517425 -3.13498e-23)
(0.999902 -0.00184814 1.21995e-24)
(0.990961 0.0842997 1.7394e-23)
(1.04312 0.0571146 -1.25187e-21)
(0.990189 -0.00601247 -1.31543e-22)
(1.00002 -5.74572e-05 4.4763e-26)
(1.00293 -0.00757902 -1.62088e-23)
(1.26121 -0.116098 2.83098e-21)
(1.00548 0.0119368 1.58657e-21)
(1.15291 -0.0836284 -9.18539e-22)
(0.910911 0.0395155 -8.3926e-21)
(1.00092 -0.000301653 -1.30176e-23)
(1.15025 -0.0593039 1.3028e-22)
(1.12947 -0.0120919 -8.04582e-23)
(1.01044 -0.0483657 1.36778e-22)
(1.00335 -0.00293201 -5.00143e-23)
(1.00002 -0.000369675 4.94981e-26)
(1.01826 -0.060672 1.49559e-22)
(1.24729 0.136505 1.99416e-22)
(1.00626 0.147861 4.43055e-21)
(1.15224 -0.103092 -2.77606e-22)
(1.0391 -0.018677 3.41601e-22)
(1.01258 -0.00924504 3.76682e-22)
(1.08108 0.192726 3.01227e-22)
(0.977655 -0.000629425 4.76244e-22)
(1.0642 -0.182962 1.93154e-21)
(1.16139 0.109225 -1.01901e-21)
(1.15052 -0.0537038 -1.22811e-22)
(0.952681 -0.00394696 -3.82457e-22)
(0.959875 -0.0341081 1.14452e-22)
(1.00001 -1.59836e-06 -1.47979e-26)
(0.999991 -3.1164e-06 4.90484e-26)
(0.997892 -7.28872e-05 -1.94012e-23)
(0.997979 -0.0101558 3.70624e-23)
(0.981358 -0.0722443 -4.11459e-22)
(1.08253 -0.149566 9.02176e-22)
(1.29629 0.0457103 -6.23715e-22)
(1.02615 -0.0175117 1.87383e-22)
(1.01487 -0.0173242 5.96102e-23)
(1.00036 -0.000526574 7.85837e-24)
(0.99989 -0.000186548 8.86348e-25)
(1.00157 0.0218877 -3.53114e-21)
(1.00045 -0.00128912 9.12119e-25)
(0.99434 -0.00940367 3.57752e-26)
(1.09705 0.195454 -8.50305e-22)
(1.00458 0.0444326 -3.84344e-21)
(1.09847 -0.0913974 -2.50737e-22)
(0.966987 -0.00219293 1.57002e-22)
(0.974393 -0.0398397 4.11476e-22)
(1.17607 0.0801056 1.05883e-22)
(0.999958 -3.86412e-05 2.0019e-25)
(0.99999 -3.0102e-06 -1.82496e-26)
(0.990141 -0.00631858 4.65882e-23)
(0.960838 -0.0334737 -6.09897e-22)
(1.00004 -0.000189567 -4.82491e-25)
(1 -5.5882e-05 2.45213e-26)
(0.994345 -0.00425117 -1.55962e-23)
(1.00003 -0.000358823 -3.85045e-26)
(1.00481 -0.00506357 -2.78125e-23)
(1.09218 0.19937 9.97158e-22)
(0.977972 -0.000332932 -3.92226e-22)
(1.02396 -0.0991427 -1.89589e-22)
(0.995788 -8.20766e-05 7.88547e-23)
(1.00176 -0.00227555 2.92249e-24)
(0.977974 -0.0083541 5.50247e-22)
(0.99927 -0.00516545 -2.87658e-24)
(1.16122 -0.07527 5.83824e-22)
(0.999982 -8.51194e-06 3.0763e-25)
(1.0095 -0.0332173 -7.83594e-23)
(1.04149 0.0987565 1.3058e-21)
(0.994059 -0.0107297 -4.62368e-24)
(1.06091 -0.178043 -1.78232e-21)
(1.03256 0.0488713 -1.10465e-21)
(0.994756 -0.00234487 -1.14348e-22)
(0.984952 -0.0124798 1.4338e-22)
(1.00317 -0.00294569 7.62273e-23)
(0.999336 -0.00713587 -1.8327e-23)
(0.999768 -6.18086e-06 8.79046e-25)
(1.00479 -0.0152423 9.35141e-24)
(0.906063 0.0197343 3.50682e-21)
(1.00097 0.0178171 2.71676e-21)
(0.988152 -0.00506729 3.66667e-24)
(0.99459 -0.00926899 -5.02585e-23)
(0.979942 0.0437081 -3.27541e-21)
(1.01286 0.0310973 4.97605e-22)
(0.943857 -0.0130476 3.607e-22)
(1.00096 -0.000403715 -1.01876e-23)
(1.05148 -0.0920674 2.98997e-22)
(0.971337 -0.0669642 5.43963e-22)
(0.998261 -0.0142427 3.05696e-23)
(1.0007 -0.000887105 -1.62563e-23)
(1.08436 0.197562 4.26048e-22)
(0.994524 -0.00426178 -1.04033e-23)
(1.00562 -0.00454514 -3.13958e-23)
(0.980153 -0.0716368 5.45983e-22)
(0.988666 -0.0937586 7.65342e-23)
(0.99997 -4.31807e-06 7.57041e-26)
(0.977373 0.118638 -3.99029e-21)
(0.999142 -1.93572e-05 -1.90098e-25)
(1 -4.49001e-05 1.7819e-26)
(0.999548 -0.00017269 1.30604e-24)
(0.995307 -0.0443 -1.15539e-22)
(1.24912 0.0110149 5.52884e-22)
(1.01039 -0.0326154 6.42479e-24)
(1.00545 -0.00424321 -2.15079e-23)
(0.998217 -0.000198589 2.6777e-23)
(0.944817 -0.0145617 -6.82641e-23)
(1.00003 -0.000392954 -1.2114e-25)
(1.0004 -0.00131423 9.1815e-26)
(0.99808 -0.000168448 -1.76956e-23)
(1.0248 0.00107159 9.157e-22)
(0.997805 -0.0032688 -5.66352e-24)
(0.999044 -0.00480722 9.30094e-24)
(1.02405 -0.00131642 4.42416e-22)
(1.00011 -0.000320993 7.71269e-25)
(1.00003 -4.08395e-06 5.17687e-26)
(1.00413 -0.000504841 1.08839e-23)
(0.979343 -0.0262246 -2.11486e-22)
(0.980343 -0.000323254 -1.89738e-22)
(0.996043 -0.000312274 -8.39669e-23)
(1.0117 0.00297202 8.10943e-22)
(0.98711 -0.00092592 9.08195e-23)
(1.01511 -0.0167542 -5.89722e-23)
(0.999974 -1.01361e-05 2.66085e-25)
(0.99756 -0.00215651 -3.2018e-23)
(1.00066 -0.00088029 1.75695e-23)
(1.05184 -0.0888483 2.96057e-22)
(1.01411 -0.154396 1.21377e-21)
(0.998857 -0.000103045 1.3999e-23)
(1.00039 -0.000468344 -6.05082e-24)
(0.998964 -0.00469167 -3.16526e-24)
(1.00286 -0.00676799 -4.04088e-23)
(0.991022 -0.000497623 -1.63252e-22)
(0.99996 -3.68156e-05 -1.26147e-26)
(1.16164 -0.17783 -1.75874e-21)
(1.00004 -0.000401815 1.29276e-25)
(1.0245 0.00101693 -6.4472e-22)
(0.997255 -0.00189073 -1.67661e-23)
(1.00012 -0.000311365 3.28462e-25)
(1.03291 0.012163 -6.29332e-22)
(0.967759 -0.0637257 -5.67854e-22)
(1.00021 -3.52449e-05 3.34153e-24)
(1 -1.0537e-05 1.07158e-26)
(0.95256 -0.00282427 -4.35259e-22)
(1.00696 -0.140833 -1.8724e-22)
(0.992846 -0.00674652 -1.238e-23)
(1.00952 -0.0493209 -3.55298e-23)
(1.02687 -0.0181986 -3.0728e-23)
(1.04737 0.0954059 1.62607e-22)
(1.00007 -6.73581e-05 1.40279e-25)
(0.979737 -0.0257099 1.99394e-22)
(1.21022 -0.101576 1.16856e-21)
(0.961025 0.0638935 7.96934e-23)
(0.993994 -0.0104854 3.72186e-23)
(1.0313 0.0472388 1.34467e-21)
(1.10392 -0.0521838 -1.77276e-23)
(0.999899 -0.00203323 -1.44532e-24)
(0.818664 0.0548585 5.27279e-21)
(0.99955 -0.000363513 -8.78864e-24)
(1.0226 -0.101621 -2.42168e-22)
(0.945692 -0.0145736 4.44444e-22)
(1.00187 -0.00215104 -1.61041e-23)
(1.20158 -0.0308593 -3.64504e-22)
(0.992924 -0.000765464 -9.7451e-23)
(1.00877 0.16002 3.07431e-21)
(0.997124 -0.000217753 7.75827e-24)
(0.985349 -0.0134705 -7.51882e-24)
(0.999827 -0.00184726 -7.73138e-24)
(1.13895 0.153213 3.37579e-22)
(0.999818 -0.0144856 8.10648e-24)
(1.04615 0.11815 1.14353e-22)
(0.999576 -3.82803e-05 -3.37031e-24)
(0.995166 -0.00155478 -3.676e-23)
(0.95912 0.144942 -2.04977e-21)
(1.02906 -6.48153e-05 -7.5047e-22)
(1.02386 -0.000939202 5.14396e-22)
(0.975144 -0.0330778 4.98393e-22)
(0.999874 -2.72567e-05 8.90737e-25)
(1.00277 -0.00653542 -4.57308e-24)
(0.999863 -0.000785299 -2.77904e-24)
(1 -4.25436e-05 1.41871e-26)
(1.05394 0.002837 1.97904e-22)
(1.00003 -4.44079e-06 4.78096e-27)
(0.983474 -0.0119042 3.39075e-22)
(1.2044 -0.101728 -1.06568e-21)
(0.883341 0.121541 -5.15974e-21)
(1.00975 0.148345 -6.82141e-21)
(0.971267 -0.0555037 1.74517e-22)
(0.987926 -0.024505 1.25076e-22)
(0.981278 -0.00124907 9.03117e-23)
(1.02798 -0.0341958 7.2814e-23)
(1.00528 -0.0150482 -1.99473e-23)
(0.984842 -0.0130741 -1.98047e-22)
(0.971326 -0.0608589 7.68932e-23)
(1.04554 0.0981318 -2.4456e-21)
(0.999462 0.016183 5.26127e-21)
(0.998932 -0.000125835 7.71882e-24)
(1.00556 0.0785119 -4.94598e-21)
(1.05289 0.00150171 6.49017e-23)
(1.15909 -0.082343 2.61987e-22)
(1.01137 -0.0137266 2.87509e-23)
(1.00073 -0.0133689 -4.03138e-23)
(1.01657 -0.0459718 -9.62522e-23)
(0.995514 -0.00150445 -8.6683e-23)
(0.997776 -0.000547679 -5.64076e-24)
(0.99995 -5.74698e-06 1.1727e-24)
(0.999198 -0.0073083 2.70658e-23)
(1.08434 -0.0502239 9.30758e-24)
(1.13998 0.159219 -5.87516e-22)
(1.00136 -0.00116765 7.56294e-24)
(0.97717 -0.0214843 -2.71211e-22)
(1.01302 -0.0140979 -9.03379e-23)
(0.999968 -1.39147e-05 -1.02163e-25)
(0.97129 -0.0580878 -2.76477e-22)
(0.857467 0.0945034 -2.33997e-21)
(0.994808 -0.00400709 1.28888e-22)
(0.999069 -0.0038423 8.50668e-24)
(1.01188 -0.0135843 -1.78398e-23)
(1.0014 -0.0395414 2.15487e-22)
(1.08908 0.02686 2.39126e-22)
(0.999501 -0.0082974 -4.43416e-24)
(0.999973 -4.47663e-05 6.60332e-25)
(1.00001 -2.49087e-06 1.66655e-26)
(0.997746 -0.000498914 -6.27869e-24)
(0.956963 0.143811 2.96706e-21)
(1.04325 -0.0289099 7.42577e-23)
(1.01797 -0.154338 -3.05439e-22)
(1 -1.05503e-05 8.00416e-28)
(1.00399 -0.143157 1.21631e-22)
(1.07769 -0.00759065 -2.44209e-22)
(0.995685 -0.000137276 -3.95907e-23)
(0.947725 -0.00533588 -5.35931e-22)
(0.99914 -0.00377597 -8.51918e-24)
(0.999634 -0.000166196 -5.54508e-25)
(0.980403 -0.0232602 -5.92574e-23)
(1.00078 -0.000973516 -7.8571e-24)
(1.16711 -0.0737108 -5.23644e-22)
(1.00786 -0.000919444 -2.2744e-22)
(1.2336 0.0983746 -1.91944e-22)
(0.99993 -0.00200696 1.87183e-24)
(1.00352 -0.0119431 6.7038e-24)
(1.00529 0.0105491 -2.1463e-21)
(1.25504 -0.110792 -1.15553e-21)
(1.00036 -0.000495694 -4.61925e-24)
(1.00038 -0.000439215 4.52363e-25)
(0.993812 0.0997086 2.46049e-22)
(0.993833 -0.0447416 -6.17409e-23)
(0.999358 -0.00816882 5.43328e-24)
(1.01177 0.0346414 2.62791e-22)
(0.971805 0.0222734 6.44528e-21)
(1.09436 -0.0981386 -3.96639e-22)
(0.998737 -0.0221408 -2.65005e-23)
(1.24388 0.0141513 -5.48755e-22)
(0.999353 -6.22772e-05 -5.79279e-24)
(0.992676 -0.00352605 3.43561e-23)
(0.997184 -0.00022896 -2.16516e-23)
(1.01441 0.0295657 7.01195e-25)
(0.999989 -0.000645629 1.86155e-25)
(1.00759 -0.00112249 2.32386e-22)
(1.1056 -0.15092 2.193e-23)
(1.0038 0.139407 6.91124e-21)
(0.910037 0.139748 -1.12696e-21)
(0.994915 -0.00234044 4.58073e-24)
(0.992639 -0.00658511 3.70989e-23)
(1.06441 0.113607 -1.51154e-21)
(1.0067 -0.0512886 2.57928e-22)
(0.999951 -6.87492e-06 -1.14395e-24)
(1.28144 0.090481 -3.23361e-22)
(1.02423 0.00156493 -2.75274e-22)
(1.0238 0.00154899 -1.87066e-22)
(0.995012 -0.011428 -5.4591e-23)
(1.01631 -0.00174858 -3.60941e-22)
(0.947885 0.128375 1.01313e-21)
(1.07496 -0.155384 -2.62607e-22)
(0.979864 0.127461 1.07129e-21)
(0.995235 0.126227 -1.80475e-21)
(0.999997 -5.60131e-05 4.47264e-26)
(1.08149 -0.0486889 9.55275e-24)
(1.07743 -0.151155 1.68978e-22)
(0.997703 -0.00329737 1.48446e-23)
(1.00139 -0.00125235 -1.24814e-23)
(0.966429 0.026114 1.54689e-21)
(1.04475 -0.029857 -9.46023e-23)
(1.00024 -6.48386e-05 7.62602e-25)
(0.981988 -0.0499694 -6.19905e-22)
(0.970534 -0.0685912 -2.5561e-22)
(0.995271 -0.00159801 5.16644e-23)
(0.999898 -0.000181142 -1.11166e-24)
(1.05847 0.140647 -2.49436e-22)
(1.04263 0.0549018 2.09279e-21)
(1.00004 -0.000440192 -4.05148e-26)
(1.00348 -0.00316572 9.82669e-24)
(1.0045 -0.00318103 5.32822e-23)
(1.15776 -0.136682 1.22353e-21)
(0.975225 -0.0321935 -4.41545e-22)
(1.00006 -0.00052255 -3.21268e-25)
(0.999988 -2.02726e-06 -2.75338e-26)
(1.00042 -0.000142794 1.21029e-24)
(1.08757 0.0285037 -2.24904e-23)
(0.976281 -0.022088 -2.18621e-22)
(1.00247 0.0456563 1.12608e-21)
(0.954269 -0.0373372 2.80981e-22)
(0.988608 -0.024427 -1.297e-22)
(0.979782 -0.000968201 -3.77718e-22)
(1.01336 0.0334166 -1.29407e-21)
(1.24742 -0.0162526 -5.60692e-23)
(0.998965 -0.000133849 1.4137e-23)
(1.00677 -0.00520638 -5.70032e-23)
(1.00072 -0.000963385 8.90808e-24)
(0.978484 0.140182 -2.77467e-21)
(0.978023 -0.0200882 1.16321e-22)
(1.00093 -0.000245258 -4.26334e-24)
(0.99355 -0.00314703 -4.64543e-23)
(1.15658 -0.0496707 -1.52207e-22)
(0.999574 -0.00891794 -1.18502e-23)
(0.990028 -0.0108021 -2.5889e-23)
(1.0002 -0.000123683 -2.31886e-24)
(1.00021 -4.72476e-05 -1.02569e-25)
(0.853544 0.10099 3.67387e-21)
(0.992976 -0.00114065 -6.075e-23)
(0.99587 -0.0041387 5.29126e-23)
(0.999674 -0.00163651 -6.76072e-24)
(0.999369 -4.75933e-05 -7.95075e-25)
(1.05469 0.0927506 -8.11032e-22)
(1.11054 -0.154509 6.88799e-23)
(0.98604 -0.0364903 7.88048e-23)
(1.00001 -1.92247e-06 -1.73966e-26)
(1 -3.42074e-05 1.2834e-26)
(0.977174 -0.020772 3.07519e-22)
(0.994186 -0.00167794 1.23285e-23)
(0.995548 -0.00191963 -7.07447e-24)
(1.01269 -0.00485125 1.10775e-22)
(1.00505 -0.00216337 1.9166e-23)
(1.00004 -0.014844 -1.46374e-23)
(1.12464 -0.0327714 2.12645e-23)
(0.984158 -0.00379762 -7.6585e-23)
(0.981941 0.124987 -8.70064e-22)
(1.01187 -0.0238518 -1.86694e-23)
(1.00022 -0.000124149 2.57917e-24)
(0.970678 -0.0544105 2.60417e-23)
(0.984842 -0.0322773 -2.71386e-22)
(1.19152 -0.0222196 -1.3239e-22)
(0.997484 -0.00543157 -1.59087e-23)
(0.988685 -0.0430197 -9.63818e-23)
(0.999982 -5.0589e-06 1.69388e-25)
(0.924569 0.101943 -3.53463e-21)
(1.01357 -0.00203675 2.02176e-22)
(1.00007 -0.00021125 -7.84372e-25)
(0.905897 0.0269841 -4.51639e-21)
(0.985139 -0.0366103 1.81921e-22)
(0.999981 -5.87502e-06 2.69103e-26)
(1.00126 -0.00114084 3.68646e-24)
(0.970591 -0.056882 -1.54016e-22)
(1.03382 -0.03652 2.28969e-23)
(1.0456 -0.0139196 2.38473e-22)
(0.999992 -3.3534e-06 3.91857e-26)
(0.992939 -0.0005825 4.85299e-23)
(1.01749 -0.0450649 1.74574e-22)
(0.995402 -0.00146658 7.15357e-23)
(0.999594 -4.40038e-05 -1.82816e-23)
(0.992818 -0.00364169 9.33357e-25)
(0.976305 0.0459703 3.82134e-22)
(0.993689 -0.0112113 -6.69005e-23)
(0.990446 -0.0105892 1.89216e-23)
(1.00177 0.0255902 -1.09514e-21)
(0.997605 -0.00203705 1.67166e-23)
(0.972342 0.142078 -3.58936e-22)
(0.99998 -5.90261e-06 -8.61816e-26)
(0.99039 -0.0246855 5.24603e-23)
(0.980254 -0.0682547 6.2799e-22)
(0.989489 -0.0433766 1.63791e-22)
(1.19346 -0.112775 3.05319e-22)
(0.998938 -0.00502641 2.10306e-23)
(1.00773 -0.0221391 2.48049e-24)
(0.999918 -0.00216137 3.50535e-25)
(0.984973 -0.0190055 -1.51252e-22)
(1.03476 -0.0396702 1.13771e-24)
(0.999969 -1.33103e-05 5.17329e-25)
(1.00002 -1.07687e-06 -2.97723e-26)
(0.994474 -0.000376813 3.28109e-23)
(0.980234 0.0878297 2.47651e-21)
(1.01103 -0.0184534 9.74657e-23)
(1.00226 -0.00321802 -1.54971e-23)
(0.943767 -0.0272383 3.82595e-22)
(1 -9.49481e-06 2.08668e-27)
(1.00086 -0.00106316 -1.4261e-23)
(0.999969 -0.000615504 -2.06104e-25)
(1.01231 -0.0177481 1.13036e-22)
(0.98527 -0.0140638 2.63613e-23)
(0.999663 -0.000258599 2.30031e-24)
(0.994119 -0.0100107 2.5263e-23)
(0.989212 -0.00625825 -2.74522e-23)
(1.0009 -0.000147119 -1.17375e-24)
(0.999979 -6.80551e-06 -5.38755e-26)
(1.22527 -0.071871 -1.10058e-21)
(0.999707 -0.00160953 7.2503e-24)
(1.07455 -0.0121388 1.83408e-22)
(1.02041 0.136011 6.61883e-21)
(1.05898 0.112294 -1.4024e-21)
(1.00014 -0.0187314 -5.49743e-23)
(1.00495 -0.00196186 -6.33478e-24)
(1.01664 -0.00139182 2.2078e-22)
(0.999961 -0.0022099 -3.96954e-25)
(0.997969 -0.00945856 2.62077e-23)
(1 -1.56936e-05 2.03314e-26)
(0.992216 0.126647 -1.32229e-22)
(0.989164 -0.0141962 3.67155e-23)
(1.01244 -0.00447586 -7.90911e-23)
(0.984508 -0.00394434 1.56531e-22)
(1.0031 -0.0117343 8.13582e-25)
(0.997634 -0.00534395 3.4389e-23)
(0.999908 -0.000185632 2.61823e-25)
(1.00002 -1.03669e-06 -1.61118e-25)
(0.99601 -0.00412347 -3.84931e-23)
(1.05305 -0.0135555 -1.2835e-22)
(1.00481 0.0465353 1.73742e-22)
(1.00108 -0.000434698 -1.73283e-23)
(0.974918 -0.05107 -1.37006e-22)
(0.97799 -0.0194807 -5.25826e-23)
(0.993112 -0.000456818 -1.81512e-22)
(1.28777 0.0441988 3.93061e-22)
(0.998855 -0.000878474 -8.38532e-24)
(1.00312 -0.0132653 -1.53474e-23)
(0.995197 -0.0025236 3.58712e-23)
(0.999916 -0.000178963 2.19888e-25)
(0.970543 -0.0594973 1.74114e-22)
(1.00215 0.0391229 -1.75173e-21)
(1.03181 0.0427401 -1.37577e-21)
(0.980248 -0.0130971 -2.53416e-23)
(1.00159 0.0370732 -7.52333e-23)
(1.00007 -0.000198425 1.51053e-24)
(1.00001 -1.38796e-06 4.98367e-26)
(1.27491 0.086669 7.05516e-23)
(1.19967 -0.0241877 2.99635e-22)
(0.907788 0.103626 -1.72197e-22)
(0.994152 -0.0733343 4.80796e-22)
(0.979996 -0.00133713 -1.18158e-22)
(1.15632 -0.0431706 2.27966e-22)
(1.00103 -0.000452926 1.96245e-23)
(0.995018 -0.00339785 2.05691e-23)
(1.0004 -0.000151618 -1.15462e-24)
(0.99065 -0.000637709 -3.97755e-23)
(0.989573 -0.0116193 -5.37285e-23)
(0.999996 -3.06675e-05 -1.18236e-25)
(0.999217 -3.00428e-05 3.30994e-24)
(1.00331 0.136148 -6.28598e-21)
(0.999886 -0.000639114 2.51518e-24)
(0.933259 0.0941274 4.23649e-21)
(1 -1.49227e-05 -1.54664e-26)
(1.2839 -0.0545205 -1.25429e-21)
(1.07438 -0.0143012 -4.01259e-22)
(1.12493 -0.0289156 -2.73088e-23)
(1.00092 -0.000429236 1.17418e-24)
(1.00017 -3.80248e-05 2.05509e-24)
(0.984781 0.0830699 -3.69084e-21)
(1.07763 -0.0100466 8.14242e-22)
(0.979622 -0.069459 -5.80044e-22)
(1.02199 0.0417334 6.31099e-22)
(0.997658 -0.0189257 2.27633e-23)
(0.988268 -0.00477557 -4.04231e-23)
(0.996432 -0.00019618 -2.17269e-23)
(1.14952 0.193352 -2.64477e-21)
(0.978748 -0.0233266 1.90121e-22)
(1.02855 -0.0328158 -5.34777e-23)
(0.994353 -0.00992507 -1.44421e-23)
(1 -9.44955e-06 -3.82469e-28)
(0.998866 -0.000829544 -7.12745e-24)
(1.00529 -0.00547702 3.31117e-23)
(0.98392 -0.00702752 2.01236e-22)
(0.980748 -0.0132143 3.77754e-23)
(0.962076 -0.0341716 -5.97901e-23)
(0.983749 -0.00744972 -1.52288e-22)
(1.01752 0.00271048 1.09752e-22)
(0.998127 -0.000127302 4.43922e-25)
(0.948096 -0.0313638 2.00687e-22)
(0.987686 -0.000813216 -5.60948e-23)
(1.00003 -0.000191624 1.94844e-25)
(0.989243 -0.000653265 -3.8971e-23)
(1.02888 -0.0354963 -7.06028e-23)
(1.01681 0.00290457 -6.06897e-22)
(0.977029 -0.0233924 -4.74865e-23)
(0.999985 -6.88375e-07 -7.80218e-28)
(0.984595 -0.0143555 3.97939e-23)
(1.00173 -0.0135181 4.94092e-24)
(1.00123 -0.0010588 4.73961e-24)
(1.09272 -0.164329 -7.73711e-22)
(1.00178 0.0364078 -4.09349e-21)
(1.0008 -0.00104999 1.32399e-23)
(0.989426 -0.000492968 5.38508e-25)
(1.08607 -0.0957995 1.6558e-23)
(1.02526 0.000223926 9.13896e-22)
(0.990411 0.0309274 -4.07099e-22)
(1.00163 -0.00224063 4.21509e-24)
(0.999954 -0.0195028 1.70982e-23)
(1.11364 0.1379 -4.45262e-22)
(1.01524 0.0261991 -3.19438e-21)
(0.99131 -0.0246502 1.39585e-22)
(1.00423 -0.00318111 -5.96604e-24)
(0.957875 -0.0402163 2.84207e-22)
(0.999998 -4.90547e-06 2.21073e-26)
(0.958324 -0.00171602 -2.01343e-22)
(1.00008 -6.28777e-05 2.85105e-25)
(1.08307 -0.0958562 -8.99642e-22)
(0.999971 -3.15594e-06 -5.71853e-26)
(1.00002 -5.61785e-05 1.58612e-25)
(0.999532 -0.0217891 -2.07158e-23)
(1.26242 -0.01115 5.06629e-22)
(1.03679 0.174469 2.85597e-21)
(1.03191 -0.0368181 -1.00341e-22)
(1.01239 -0.0142149 6.01388e-23)
(0.999999 -3.87778e-06 -5.9228e-27)
(0.99462 -0.00403454 -6.97511e-23)
(1.00008 -1.92478e-05 -2.14013e-25)
(0.997229 -0.00216679 2.39032e-23)
(1.00002 -5.23366e-05 -1.23265e-25)
(1.04585 -0.0120316 -7.42607e-22)
(0.999584 -0.000427819 -9.01831e-24)
(1.05988 0.0568534 1.34728e-21)
(0.999889 -0.000197817 -1.70493e-24)
(0.988692 -0.00466949 -6.80046e-23)
(0.9647 -0.00093135 4.4921e-22)
(0.996248 -0.000269258 -2.79116e-23)
(0.983953 0.045655 3.91784e-21)
(0.984914 -0.000634019 1.09222e-22)
(1.01308 -0.0960612 4.23058e-23)
(0.995145 -0.00356474 1.06596e-22)
(1.02339 -0.00255828 -1.86836e-22)
(0.972727 -0.0516374 6.32327e-22)
(1.01773 -0.00130792 -6.18411e-22)
(1.03141 -0.0688638 -1.81748e-23)
(0.999988 -1.65321e-06 6.9796e-27)
(0.999012 -0.0183957 1.88321e-23)
(0.996489 -0.000258917 3.40815e-24)
(1.00022 -8.35311e-05 1.55514e-24)
(1.00008 -1.61981e-05 3.56783e-25)
(1.15571 0.196499 2.88526e-21)
(0.995695 -0.00192617 5.96124e-23)
(1.02512 0.000982702 1.04678e-21)
(1.0005 -0.0199966 2.10776e-23)
(1.00076 -0.000275624 4.5395e-24)
(1.0216 -0.00798607 -6.75299e-22)
(1.00015 -3.59375e-05 -4.53073e-24)
(0.999979 -3.15436e-06 -7.65938e-27)
(0.958811 -0.00228701 1.54745e-22)
(0.996921 -0.00109971 2.69504e-23)
(1.00003 -5.09755e-05 1.87405e-25)
(1.07195 0.110424 1.00324e-21)
(0.870594 0.0824696 -6.44019e-21)
(0.999814 -0.000209353 4.26154e-24)
(0.966223 -0.00188373 -1.2149e-22)
(1.00002 -1.39103e-06 3.55773e-26)
(0.944173 0.12548 -4.07538e-21)
(1.29253 -0.0567693 -1.66512e-21)
(0.973592 -0.0415593 -5.05213e-22)
(1.00004 -0.000505327 -3.76424e-25)
(1.02758 -0.0316002 1.36052e-22)
(1.02867 -0.0028681 -2.58584e-22)
(1.02976 -0.000121989 7.74075e-23)
(1.0467 -0.0146732 -9.14636e-23)
(0.999677 -0.00172507 -1.08743e-24)
(0.999884 -0.000765675 2.19416e-24)
(0.987579 -0.0140797 -1.17061e-22)
(1 -8.37068e-06 -4.87166e-27)
(1.00001 -1.22216e-06 -9.23357e-27)
(0.978041 -0.0228867 -1.12017e-22)
(0.994901 -0.05617 -2.51468e-22)
(0.963143 -0.0335899 -1.5335e-23)
(0.892462 0.117005 -1.39584e-22)
(1.00018 -2.31656e-05 -1.8986e-24)
(1.00989 -0.0721522 -5.5148e-22)
(1.00656 -0.00488499 -5.85654e-23)
(0.99998 -3.35416e-06 8.79053e-26)
(0.999092 -0.00357781 -1.84318e-23)
(1.00003 -0.00042823 -2.26054e-25)
(0.99595 -0.011611 4.1228e-23)
(1.00004 -9.44299e-06 2.12082e-25)
(1.03315 -0.0678972 -4.3022e-23)
(1.01737 -0.0015952 6.00411e-22)
(0.974165 0.139457 9.48911e-22)
(1.0229 -0.00240984 7.0111e-22)
(0.999754 -0.000205085 3.3535e-24)
(1.00041 -0.000354433 -4.44821e-24)
(1.15419 -0.142701 -1.24776e-21)
(1.02506 0.000741884 -8.4119e-22)
(0.997277 -0.000355276 2.448e-23)
(1.00002 -1.43532e-06 7.58062e-26)
(1.0894 0.094401 -1.59911e-21)
(1.05112 -0.173777 -3.08777e-22)
(0.994461 -0.0718378 -2.09711e-22)
(0.987351 -0.000691881 -2.95189e-23)
(0.999981 -2.03217e-05 1.72366e-25)
(0.999757 -0.000193439 -1.96555e-24)
(1.05446 -0.178436 8.60575e-22)
(0.996262 -0.045151 -6.83225e-23)
(1.03838 0.029828 1.95089e-22)
(0.981272 0.12055 3.62622e-21)
(1.01246 -0.0935508 3.09059e-22)
(0.998884 -7.66665e-05 -4.40328e-24)
(0.999982 -9.53628e-06 -2.00696e-25)
(0.966712 -0.0438588 4.92735e-22)
(0.973312 -0.0878843 -6.63902e-22)
(0.999821 -0.000216783 2.27546e-24)
(1.00833 -0.0215547 3.49868e-23)
(0.991613 -0.0240064 -2.46908e-23)
(0.995916 -0.00206619 2.34974e-23)
(0.998329 0.0305481 -3.06254e-21)
(0.998865 -0.000495533 1.57868e-23)
(1.04596 -0.0529153 -3.43746e-23)
(1.24418 0.150872 -5.95841e-22)
(0.993199 -0.0029671 -6.82693e-23)
(0.905551 0.0976709 -6.27797e-22)
(0.914899 0.0461142 1.92398e-21)
(0.999973 -4.73553e-05 -6.63649e-25)
(0.999977 -0.000672987 -1.90677e-25)
(0.985093 -0.000842688 -6.95252e-23)
(1.0118 -0.00438666 -1.43217e-22)
(0.967603 -0.00174069 2.56083e-22)
(1.0046 -0.00394945 -6.12008e-23)
(0.993442 -0.00297771 6.36296e-23)
(0.999499 -0.000455332 -6.88091e-24)
(0.954067 0.126154 -7.26752e-22)
(1.06033 0.0540968 -2.08805e-21)
(1.00201 -0.00217343 1.08259e-23)
(0.826401 0.0518534 -1.30897e-21)
(1.00001 -1.19657e-06 -5.1161e-26)
(1.02371 0.00615316 -1.48783e-21)
(0.986893 -0.0872934 4.62857e-22)
(1.01201 -0.0724661 2.15491e-22)
(1.00008 -0.000192763 -7.72139e-26)
(0.966092 -0.000951361 2.08323e-22)
(1.02133 0.00559286 8.39397e-22)
(1.01149 -0.00469108 1.1854e-22)
(1.02821 -0.00180201 3.60565e-22)
(0.999605 -3.45174e-05 1.29023e-23)
(0.999579 -0.00045569 8.16675e-24)
(1.02046 -0.0442208 5.16654e-23)
(0.996971 -0.00118505 -7.69891e-23)
(0.988839 -0.0105527 -1.26922e-22)
(0.999203 -0.00324303 1.09147e-24)
(1.08651 0.0360539 9.659e-22)
(0.998752 -0.0191569 -1.28235e-23)
(0.995629 -0.00437872 1.30292e-24)
(0.941109 -0.023007 -5.718e-22)
(0.996405 0.0995968 4.03665e-22)
(1.1084 -0.0495336 8.52551e-23)
(1.0211 -0.00764815 5.41121e-22)
(0.999649 -0.000166834 2.45136e-24)
(0.999551 -0.000298035 1.108e-24)
(0.984334 -0.0187575 3.05018e-22)
(1.00088 -0.00114405 -1.06256e-23)
(0.997718 -0.000627273 -4.3763e-24)
(0.999982 -1.94969e-05 -6.53482e-26)
(0.99971 -0.00175773 2.14469e-25)
(1.02075 0.00515276 -3.26759e-22)
(0.983829 0.0866941 -3.55581e-21)
(0.999887 -1.42629e-05 5.29744e-25)
(1.18475 0.17397 -2.07772e-21)
(0.999996 -3.82639e-05 5.09259e-26)
(0.99714 -0.00256628 3.26169e-23)
(0.999993 -8.76663e-05 7.38429e-26)
(1.00464 -0.00341972 -2.71439e-23)
(1.22531 -0.0793331 8.67566e-22)
(0.999965 -3.97833e-05 5.64082e-26)
(0.999964 -4.26294e-05 3.96956e-25)
(0.953372 -0.0377169 -2.77917e-22)
(1 -8.29276e-06 -1.53134e-27)
(1.0499 -0.0148627 7.62212e-22)
(0.987986 -0.0374848 2.51631e-22)
(0.999979 -0.000591593 2.12097e-25)
(1.08655 0.0706329 -1.22833e-21)
(1 -2.73746e-05 -3.12528e-26)
(0.999649 -3.57493e-05 1.1277e-23)
(0.999922 -3.27854e-05 1.84985e-26)
(0.995786 -0.0043885 -1.98113e-23)
(0.999703 -0.00140126 -3.45042e-24)
(0.99458 -0.000285829 -2.21187e-23)
(0.992939 -0.105705 -5.31798e-23)
(0.999736 -0.00136463 2.30253e-24)
(1.00371 -0.00318087 -2.10906e-23)
(0.999978 -2.29871e-06 -3.2989e-26)
(1.03928 0.170982 -5.39681e-21)
(1.04424 -0.0537294 -9.23277e-23)
(1.11187 -0.0509183 4.85279e-23)
(0.969813 -0.00522065 2.77998e-22)
(0.980375 -0.00377211 -5.08638e-23)
(0.999171 -0.00349959 3.04184e-23)
(1.00257 -0.0024239 2.94259e-23)
(1.04928 0.0702744 5.81624e-22)
(0.984221 -0.0331802 3.69449e-23)
(1.13653 0.114944 5.5706e-22)
(0.962549 -0.0117279 -5.07076e-22)
(0.997039 -0.00247734 -3.07862e-23)
(0.999992 -4.02613e-06 -7.12225e-26)
(0.995034 -0.00253169 -4.32142e-23)
(1.01246 0.16205 1.42196e-21)
(1.07769 0.0818378 -2.88867e-22)
(0.983347 -0.0497132 2.10143e-22)
(0.949838 -0.00498555 1.17974e-22)
(1.04498 0.162062 1.43387e-21)
(0.992587 -0.00052065 5.70691e-23)
(0.983715 -0.0795883 3.65351e-23)
(0.999993 -8.38588e-05 1.37932e-25)
(0.986999 -0.0376045 3.14247e-22)
(0.999269 -0.00020592 -1.63685e-23)
(0.838907 0.0883058 -3.79177e-21)
(0.979651 -0.0648924 -4.80017e-22)
(0.999924 -2.94104e-05 9.80134e-25)
(0.946682 -0.0160883 -3.06912e-23)
(0.984001 -0.0351837 1.77268e-23)
(1.03502 0.0780953 2.14556e-21)
(0.99775 -0.000684669 -4.12466e-23)
(0.98242 -0.0338532 -1.11022e-22)
(0.9978 -0.0096934 -3.66671e-23)
(0.999626 -0.021061 -4.2902e-23)
(0.998895 -0.00050431 -1.07387e-23)
(1.03362 0.0764196 -2.59891e-21)
(1.01124 -0.149575 5.27901e-22)
(0.98453 -0.0149425 -8.85814e-23)
(0.988075 -0.0131009 1.88203e-24)
(0.988786 -0.00441116 -2.76746e-23)
(1.00464 -0.00186077 -2.49399e-23)
(1.04697 0.157532 5.55616e-21)
(0.984542 -0.0121217 3.99913e-23)
(1.0146 0.0397044 1.37869e-21)
(1.00238 -0.00194481 2.23916e-23)
(1.20072 -0.11192 -1.88249e-23)
(0.930135 0.100811 6.40756e-22)
(0.992441 -0.000405803 -1.98119e-22)
(0.9998 -3.76539e-05 2.20606e-24)
(1.05262 0.0956374 6.35806e-22)
(1.00012 0.130373 -5.26263e-21)
(1.01992 -0.0426089 -6.42456e-23)
(1.07503 -0.0495894 -8.75632e-24)
(0.995746 -0.0120362 -4.62856e-23)
(0.970268 -0.00472301 -1.65038e-22)
(1.11014 0.134498 1.76817e-21)
(0.965564 -0.0439676 8.18436e-23)
(0.999979 -1.9516e-05 2.23971e-25)
(0.993565 -0.000100871 -1.01208e-22)
(1.00003 -5.10987e-06 2.15118e-25)
(0.99612 -0.000241811 7.60789e-23)
(0.999979 -2.05152e-05 -3.51232e-25)
(0.998075 -0.0135261 6.32696e-23)
(0.999166 -3.33206e-05 5.83751e-24)
(0.997601 -0.00506642 3.99636e-24)
(1.17017 -0.129579 -2.20665e-22)
(0.999484 -0.000348565 5.88329e-24)
(0.999566 -0.000178799 4.00606e-24)
(0.999369 -0.00533102 4.72962e-24)
(1.02976 0.05261 6.63046e-22)
(0.998257 -0.00164864 -1.20185e-23)
(0.997217 -0.000336062 -2.97722e-23)
(0.997747 -0.00496339 -3.51853e-23)
(1.04944 0.0444188 -1.39394e-21)
(1.00447 -0.00369979 3.95967e-23)
(0.999724 -0.00148402 8.0521e-25)
(1.02069 0.166123 4.77213e-21)
(0.920719 0.0478235 1.35373e-21)
(0.983361 -0.00925804 6.58985e-23)
(0.956483 0.140296 4.21955e-22)
(0.985199 -0.00370793 -1.89018e-22)
(1.01986 0.133075 -7.29781e-21)
(1.00447 -0.00198901 -1.82956e-23)
(1.01173 -0.0482185 -5.94423e-23)
(1.00222 -0.00237199 -3.06309e-23)
(0.99961 -0.000307792 9.05934e-25)
(1.00002 -1.68862e-06 -1.5466e-26)
(1.00228 -0.00340155 5.12097e-23)
(0.990381 -0.00585686 -5.30951e-23)
(0.983213 -0.00836511 2.63061e-22)
(1.01894 0.0391569 1.11423e-21)
(0.979978 -0.000483783 1.29936e-22)
(0.982918 -0.0079884 -1.3298e-22)
(0.99922 -5.87117e-05 -1.44213e-23)
(1.18189 -0.121727 -1.75441e-21)
(0.985026 -0.0304105 -2.48308e-22)
(1.00558 -0.00521913 8.60683e-24)
(0.999985 -8.064e-07 -2.80212e-27)
(1.0308 -0.0353496 9.29294e-23)
(1.22615 0.0926979 -2.1763e-23)
(0.991802 0.101764 -1.18207e-21)
(1.08945 -0.0457023 5.91077e-24)
(0.989114 -0.00422388 -4.64301e-23)
(1.02099 0.020329 2.17717e-21)
(0.999778 -0.00188238 5.80818e-24)
(1.02269 -0.00736229 -3.03226e-23)
(0.984837 -0.00361918 1.34393e-22)
(1.00074 -0.0039685 4.79479e-24)
(0.947621 -0.0160334 2.92821e-22)
(1.00526 -0.0143375 -8.88103e-25)
(1.01542 0.125169 -1.41018e-21)
(0.998292 -9.60059e-05 -2.9874e-23)
(0.999556 -0.000135022 1.59062e-24)
(0.999969 -0.00239596 2.38699e-26)
(0.982302 -0.0758731 5.11595e-22)
(0.999342 -0.00573686 1.85712e-23)
(0.834903 0.067482 2.28455e-21)
(0.817075 0.0185603 -8.23605e-21)
(1.00862 -0.000971189 -6.24258e-23)
(0.999968 -4.16373e-06 -3.38408e-25)
(1.00627 -0.00203958 -5.76724e-23)
(0.999981 -7.7722e-06 -1.6621e-25)
(1.08723 -0.00645775 -1.48625e-22)
(0.999564 -0.000409441 9.58019e-24)
(1.01662 -0.0101591 2.04959e-22)
(0.868979 0.106328 5.45269e-22)
(1.18993 -0.0151998 9.40156e-23)
(1.00002 -2.23345e-06 -7.83057e-26)
(0.993419 -0.000402837 -6.91556e-23)
(0.999997 -9.10166e-05 3.39151e-26)
(1.00779 -0.150272 -2.38449e-23)
(0.968187 -0.000443776 4.06892e-22)
(0.953715 0.0934041 2.40468e-21)
(1.00019 -3.065e-05 1.25158e-24)
(1.00833 -0.00117033 1.72029e-23)
(1.00661 -0.0181551 1.22075e-24)
(1.00023 -8.18624e-05 -1.11116e-24)
(0.998182 -0.000312017 -4.35922e-23)
(0.99976 -9.83652e-06 -8.23079e-25)
(0.995287 -0.00236209 2.5511e-23)
(0.980954 -0.0490685 5.23133e-22)
(0.980658 -0.00374163 -6.20126e-23)
(1.01321 -0.0232656 8.62549e-23)
(1.08605 0.0677304 4.58828e-22)
(0.989343 -0.00434044 9.08193e-23)
(1.00502 -0.00482013 3.54121e-23)
(0.983878 -0.012295 1.28182e-22)
(0.999385 -0.00874047 1.33087e-25)
(0.979654 -0.0228563 -1.36339e-22)
(1.00002 -1.30539e-06 -7.13667e-26)
(1.00004 -1.01398e-05 -1.86904e-25)
(0.998324 -0.00169712 -1.74486e-24)
(1.02287 -0.0138802 3.72972e-22)
(0.997894 -0.0564931 -1.17291e-22)
(0.988784 -0.0158116 2.83122e-23)
(0.997214 -0.00230061 -1.27688e-23)
(1.00205 -0.00023213 -5.8067e-23)
(1.03587 -0.0697724 2.91786e-24)
(1.13673 0.194471 -3.09923e-21)
(0.989692 -0.0041096 -1.07868e-22)
(0.999991 -3.91191e-06 -5.41739e-26)
(0.948515 -0.00459146 7.38255e-22)
(0.976764 0.0825738 -1.8657e-21)
(1.14624 -0.10405 5.78037e-22)
(0.99049 -0.00349039 -5.19719e-23)
(1.1347 0.0093276 5.4242e-23)
(1 -8.99828e-05 1.91978e-26)
(0.99948 -0.0004411 -1.28642e-23)
(0.97557 -0.000671272 -7.8968e-23)
(0.999974 -1.14595e-05 -2.95397e-25)
(0.999659 -2.72427e-05 -4.64479e-24)
(0.99998 -4.13019e-06 9.47187e-26)
(0.828079 0.0735355 4.79624e-21)
(1.00653 -0.00419421 -1.67835e-23)
(1.00275 -0.00244584 2.08449e-23)
(1.00001 -1.78982e-06 7.896e-27)
(1.00001 -2.27689e-06 -1.62727e-26)
(0.999996 -4.73284e-05 -1.6253e-25)
(0.999995 -3.40788e-06 -1.68658e-27)
(0.980816 -0.00106992 9.09131e-23)
(0.997293 0.129763 6.4782e-21)
(0.969293 -0.0147274 1.44662e-22)
(0.999686 -0.0015147 -3.68624e-24)
(0.999878 -2.22331e-05 -2.41066e-24)
(0.998369 -0.0152144 3.84358e-23)
(0.963197 0.059524 -1.06636e-21)
(0.981071 -0.0749393 -5.70333e-22)
(0.977431 0.113562 1.3578e-21)
(1.09576 -0.0418983 1.5161e-24)
(1.00117 0.000489918 5.14469e-22)
(0.999943 -0.00190294 -1.40065e-24)
(0.981704 0.0343238 4.88056e-21)
(0.998339 -0.000298131 2.25302e-23)
(0.992821 -0.00116758 -2.42177e-23)
(1.07789 -0.0509193 3.32781e-23)
(1.01437 -0.0234761 -2.99287e-23)
(1.01494 -0.022814 2.80457e-23)
(1.03291 0.0447099 -2.58785e-22)
(0.963408 -0.0116357 2.52519e-22)
(0.996207 0.0159156 -2.28434e-21)
(1.06155 0.144259 1.78317e-21)
(0.995059 -0.0118745 -6.26927e-23)
(0.984102 -0.0359989 -2.02889e-22)
(1.04188 -0.0519762 1.09448e-22)
(0.975305 -0.000639012 3.67611e-22)
(1 -3.62052e-05 -1.56637e-26)
(0.999309 -7.06946e-05 -9.28937e-24)
(1.00207 -0.00233766 3.90092e-24)
(1.0297 -0.00216146 -1.08751e-21)
(0.995278 -0.00510382 -3.88595e-23)
(0.980712 -0.000551755 2.14159e-22)
(0.99785 -0.00462858 2.50222e-23)
(0.894499 0.130552 -5.90295e-21)
(0.995442 -0.103827 1.06255e-22)
(0.999975 -2.86839e-05 5.76165e-27)
(0.999976 -9.19135e-06 2.89589e-25)
(0.952463 0.0974512 7.20886e-23)
(0.996311 -0.000196996 4.68897e-23)
(1.00611 -0.01865 6.0073e-25)
(0.989713 -0.00221533 3.63444e-23)
(0.998329 -0.000127717 3.92476e-23)
(0.989108 -0.0113509 5.30563e-23)
(0.993065 -0.00726155 -1.37562e-23)
(1.15503 -0.096699 5.58524e-22)
(1.16784 0.0293666 -4.36702e-22)
(1.09377 -0.0385567 -6.1445e-23)
(0.9928 -0.00708392 6.34938e-24)
(0.990027 -0.011356 8.60404e-23)
(1.00006 -0.000216279 -2.91042e-25)
(0.995775 -0.00206698 4.67237e-23)
(1.00123 -0.0132058 1.12093e-23)
(0.994052 -0.00181093 3.55254e-23)
(0.999977 -1.0281e-05 5.04548e-26)
(1.00004 -8.8719e-05 -4.968e-25)
(1.00769 -0.0488128 1.66007e-22)
(0.986035 -0.0173212 -7.6594e-23)
(0.994587 0.02364 -3.89906e-21)
(1.03638 -0.0717806 3.33891e-22)
(0.999869 -0.000660343 -5.06391e-25)
(0.998963 -0.00162227 8.99785e-24)
(0.999777 -1.13571e-05 1.93142e-24)
(1.0206 0.163092 -3.8462e-21)
(1.14111 -0.0982774 2.60392e-22)
(0.999975 -2.74843e-05 -2.38437e-25)
(0.991734 -0.0440066 -2.64144e-22)
(0.996742 -0.00201936 -4.59718e-23)
(0.997722 -0.00472329 -8.90233e-24)
(0.980446 -0.0241196 1.18212e-22)
(0.973258 -0.0134097 -2.6652e-23)
(1.00491 -0.00533342 7.92866e-23)
(1.04443 -0.0111486 -3.72693e-22)
(0.986556 -0.0896317 -3.96667e-22)
(1.00005 -0.000196312 5.39971e-25)
(1.0041 -0.00294565 -3.50056e-23)
(0.989738 -0.00388985 1.47863e-23)
(0.999991 -1.51246e-05 -8.3605e-26)
(0.999954 -5.8778e-06 1.11234e-24)
(1.02419 0.00689471 1.33756e-22)
(1.03523 0.0010167 1.02635e-21)
(1.17491 -0.0644751 3.41289e-22)
(0.954632 -0.00268711 -4.93625e-22)
(0.979032 -0.0662905 2.49883e-22)
(1.00037 -0.000318011 5.97412e-24)
(0.937323 0.146188 8.96899e-22)
(1.00006 -0.000603788 2.49523e-25)
(1.00027 -0.037497 -1.14586e-22)
(0.989122 0.120025 5.69659e-21)
(0.986826 -0.000866943 -2.45617e-22)
(0.973281 -0.0292674 -7.16894e-22)
(1.00001 -1.63033e-07 -1.58421e-26)
(1.00012 -0.000619578 -1.93238e-24)
(0.974143 -0.0315258 -1.19036e-22)
(0.993094 -0.00124834 5.24741e-23)
(1.00097 -0.000349253 1.87695e-23)
(0.972301 -0.00449884 1.13228e-22)
(1.03331 0.0652269 -1.25272e-21)
(1.11021 0.195334 -1.07533e-21)
(1.00047 -0.000157622 1.72236e-24)
(1.00018 -0.000901182 -1.13678e-25)
(1.09192 0.0987727 -2.38359e-21)
(0.990731 -0.00352891 -5.31616e-23)
(0.999991 -1.45879e-05 -1.93905e-26)
(0.999016 -0.00162067 -3.59288e-24)
(0.977249 -0.000626454 -4.73555e-23)
(0.987205 -0.0232828 1.5934e-22)
(0.998083 -0.0232782 1.38936e-22)
(1.00151 -0.0151982 -1.63689e-23)
(1.17863 0.171592 1.90349e-21)
(1.00002 -1.73612e-06 7.78317e-26)
(1.02945 -0.00158433 5.87692e-22)
(1.05152 0.113992 -1.41113e-23)
(1.00003 -7.45282e-05 3.85017e-25)
(1.02153 -0.0297486 7.31441e-23)
(0.999697 -0.000139557 1.384e-24)
(1.02075 -0.127644 -1.26653e-21)
(0.989875 -0.00202199 9.39593e-24)
(0.999545 -4.49709e-05 3.08137e-24)
(1.0146 -0.00213503 5.03078e-22)
(1.00015 -0.000898802 -1.1276e-24)
(1.04794 0.072712 6.3702e-22)
(1.00096 -0.000124249 -3.06932e-24)
(1.01468 -0.0108812 3.03628e-23)
(1.08801 -0.0489467 -1.56174e-23)
(0.877552 0.0771075 7.41827e-21)
(0.998619 0.0476511 6.01808e-23)
(0.950629 -0.00425503 -7.85845e-23)
(0.995282 -0.00489936 1.21086e-23)
(1.00001 -1.16069e-06 4.35239e-26)
(1.23242 -0.0560827 -1.58387e-22)
(0.990719 -0.00175513 1.31293e-22)
(1.06512 0.0385601 -6.35655e-22)
(1.05686 0.176137 2.16344e-21)
(0.972632 -0.00402959 -1.16834e-22)
(1.06881 -0.0707838 -1.2004e-22)
(0.9891 -0.00659248 1.32259e-22)
(0.995993 -0.00193593 -5.25219e-23)
(1.0202 0.0161463 -7.57817e-23)
(0.999877 -3.13929e-06 3.59505e-25)
(0.956508 0.128981 -1.45656e-21)
(1.01795 -0.0145334 3.77837e-23)
(1.00004 -1.30707e-05 -2.37304e-25)
(1.00003 -7.089e-05 -3.30994e-25)
(1.00007 -5.66828e-05 3.83321e-25)
(0.991686 -0.00118885 -1.41459e-22)
(0.988581 -0.00703148 -1.42593e-22)
(1.00053 -0.00253299 -3.6809e-24)
(1.16113 -0.00784571 2.76631e-23)
(1.11066 0.0317999 -5.38938e-22)
(0.955404 -0.00205684 9.93721e-22)
(1.00076 -0.00579593 5.30648e-24)
(1.00005 -8.84944e-05 8.20651e-25)
(0.986668 -0.0175512 5.00255e-23)
(0.999972 -3.62868e-06 -6.87348e-26)
(0.998289 -0.000282627 -1.59358e-23)
(0.994181 -0.0116543 -4.51864e-23)
(0.999961 -0.0055161 -3.41536e-24)
(1.17374 -0.0381101 3.00242e-23)
(1.00355 -0.0084592 -5.64401e-23)
(0.999193 -1.70668e-05 -8.35197e-24)
(0.997731 -0.000823049 2.46848e-23)
(0.990856 -0.0108335 8.92585e-23)
(0.99949 0.0367333 -2.28649e-21)
(0.996988 0.0588461 -5.62141e-21)
(1.02352 -0.0137149 -1.36956e-22)
(0.999997 -4.49956e-05 1.94271e-27)
(0.999684 -0.00013848 1.9047e-24)
(1.03078 0.0700361 3.91254e-22)
(0.999736 -0.000224061 1.03484e-24)
(1.08745 -0.153671 -7.10741e-22)
(0.999882 -1.21264e-05 -1.25639e-24)
(0.988679 -0.0139788 -1.39394e-22)
(0.975144 -0.0891675 3.80244e-22)
(0.999886 -0.000258112 -2.51877e-24)
(0.999868 -2.66126e-05 2.70635e-24)
(0.9844 -0.031281 1.90275e-22)
(1.00103 -0.00419676 -2.03109e-26)
(0.999955 -4.20642e-06 -1.24223e-24)
(0.999245 -0.000741979 1.22578e-23)
(1.08 0.0797106 -1.86016e-22)
(0.978138 -0.0174815 -1.24676e-22)
(0.999979 -4.72905e-05 -2.17365e-26)
(1.03573 0.0017209 -1.36978e-21)
(1.01459 0.121862 1.21166e-21)
(1.01259 0.137835 -8.13523e-22)
(1.00045 -0.00246395 4.23124e-24)
(1.06294 -0.140249 3.49442e-22)
(0.994395 -0.000771484 1.15582e-23)
(0.977647 0.07954 2.67504e-21)
(0.968625 -0.0622866 -2.50473e-22)
(0.96844 -0.0652183 5.59638e-22)
(1.03436 -0.053871 -8.75545e-23)
(0.992116 -0.00116061 1.84587e-24)
(1.01819 -0.0137907 1.02633e-22)
(0.983928 -0.00917361 -4.54529e-22)
(1.01129 0.134421 9.29562e-22)
(1.08768 -0.00381849 3.79186e-22)
(0.999901 -0.000241702 7.68845e-26)
(0.963389 -0.0254876 -2.22634e-22)
(0.941871 -0.0122241 3.2072e-23)
(0.997928 -0.00302891 -1.20691e-23)
(0.999996 -3.86312e-06 7.37013e-27)
(0.999126 -0.00332984 -7.58234e-24)
(1.00071 0.0188998 1.3554e-21)
(0.999894 -0.00025662 1.76905e-24)
(1.04026 -0.052958 -7.21715e-23)
(0.997822 -0.00307547 -7.17992e-24)
(0.999324 -5.42112e-05 1.15052e-23)
(1.00534 -0.00575527 -7.27689e-23)
(1.01359 -0.00147783 5.55041e-23)
(0.999897 -0.000233781 1.7457e-25)
(0.999929 -3.1972e-06 -1.04751e-24)
(1.00281 -0.0253139 -1.44441e-22)
(1.02363 -0.127229 8.05279e-22)
(0.979605 -0.0247534 -2.09104e-22)
(0.967651 -0.0698892 1.22882e-22)
(1.00311 0.0379396 2.25695e-21)
(1.00171 -0.0149356 1.38662e-24)
(0.999846 -0.000195999 1.18185e-24)
(0.983031 -0.0330352 1.46972e-22)
(0.986348 -0.0154819 2.08303e-22)
(1.00729 -0.0118935 -5.20699e-23)
(1.00744 -0.00549747 -1.21317e-22)
(1.00005 -0.000550311 6.18029e-25)
(1.02791 -0.00391708 3.34623e-22)
(1.04382 0.0235231 1.89591e-21)
(1.00941 -0.00100383 1.22878e-22)
(1.01457 -0.0115223 2.90526e-22)
(0.999649 -0.000475845 -1.08764e-24)
(0.991988 -0.00104875 4.10278e-23)
(1.23781 -0.0401946 4.42698e-22)
(1.00074 -0.000317783 -1.38237e-23)
(0.99998 -0.000734705 -5.25462e-25)
(0.995788 -0.0112138 -1.80846e-23)
(0.997696 -0.000764048 1.47698e-23)
(0.999594 -0.000593028 2.39917e-25)
(0.994605 -0.011282 3.44032e-23)
(0.999526 -0.000368408 -3.09989e-24)
(1.14269 0.19767 2.1549e-21)
(0.994829 -0.00342246 -7.79768e-23)
(1.02541 -0.160109 -1.9239e-21)
(0.987191 -0.0171186 1.53133e-22)
(0.993677 -0.00103821 -4.12253e-23)
(1.0062 -0.00235943 -3.46347e-23)
(0.947502 0.13432 3.23938e-21)
(0.969589 -0.00190424 -6.97674e-22)
(0.999933 -0.000175343 1.21379e-24)
(0.98693 0.0299097 2.87869e-22)
(1.03632 0.0299959 -1.30458e-21)
(1.0042 -0.00188884 -8.24609e-23)
(0.996619 -0.000240534 -1.43946e-23)
(1.00409 -0.00170875 9.02278e-23)
(1.169 -0.0657296 -1.90335e-22)
(1.0044 0.0124063 -1.60718e-21)
(1.0002 -2.64551e-05 -1.59675e-24)
(1.00063 -0.0138049 4.9191e-23)
(0.873765 0.109153 -2.34314e-21)
(1.00152 0.0292424 3.44701e-21)
(1.05814 0.170544 1.75836e-21)
(0.974171 -0.0307253 1.95468e-22)
(0.99922 -0.000667436 2.42e-24)
(0.99931 -0.000308406 4.41599e-24)
(0.999978 -4.40675e-05 1.37006e-25)
(0.999283 -0.000728202 -1.22634e-23)
(1.09126 0.177056 -1.37157e-21)
(1.02763 -0.00157986 2.65696e-23)
(1.03346 -0.0521721 1.78606e-22)
(1.00686 -0.0298089 3.14303e-23)
(0.999808 -0.000738913 -2.60738e-24)
(1.15044 -0.0902815 1.73854e-22)
(0.911651 0.015123 -9.7105e-21)
(0.985545 0.101072 2.79335e-22)
(1.02931 -0.00276388 5.0589e-23)
(0.99841 -0.000371514 1.04113e-24)
(0.951889 -0.00464781 3.08075e-22)
(1.00184 -0.0200948 -5.57879e-23)
(0.9996 -0.000472335 1.66564e-25)
(1.00021 -0.0388156 2.64922e-23)
(1.02078 -0.0286109 -5.89444e-23)
(0.983024 -0.00887307 -1.05428e-22)
(0.998002 -7.38177e-05 -4.79778e-23)
(1.0006 -0.00273681 -6.14674e-24)
(0.976169 -0.0965256 9.00384e-22)
(1.01783 -0.123517 -2.54396e-22)
(1.01403 -0.00235444 -4.06051e-22)
(0.986387 -0.0161355 -5.57149e-23)
(1.00754 -0.029735 -2.72418e-23)
(0.983547 -0.00100164 1.15988e-22)
(0.999888 -2.00259e-05 -1.28504e-24)
(0.996203 -0.00385082 2.49063e-23)
(0.999617 -0.000287607 -6.33824e-25)
(1.03893 0.162426 -4.32866e-21)
(1.00003 -8.17133e-05 -4.85188e-25)
(1.00001 -3.21214e-06 1.42892e-26)
(1.02037 -0.0639262 2.88142e-23)
(0.987916 -0.00063505 1.33552e-22)
(0.981631 -0.000977475 -2.38026e-22)
(1.01864 -0.00778172 -5.34039e-23)
(1.00003 -0.000610201 5.05113e-26)
(0.970103 -0.0914905 8.95788e-22)
(1.04901 -0.0137509 -1.75131e-23)
(1.02931 0.0425195 1.11689e-21)
(0.838909 0.0968308 4.04615e-21)
(0.997453 -0.00219772 4.47404e-23)
(1.0612 -0.143379 -2.32085e-22)
(1.01766 -0.0124921 -1.91156e-22)
(0.998893 -0.00211385 2.88499e-24)
(1.16753 -0.00940261 -1.49374e-23)
(0.999668 -0.000242055 -2.72884e-24)
(1.00615 -0.00701571 -1.6256e-23)
(0.999894 -0.000202164 5.08934e-25)
(1.09982 0.139938 -4.06673e-22)
(1.16652 -0.136261 7.08461e-23)
(1.00594 -0.00523902 8.64372e-23)
(1.10724 0.0319317 5.45785e-22)
(1.02289 0.00208942 -1.13158e-21)
(1.00093 -0.00298951 -9.94146e-24)
(1.00355 -0.0124821 -7.39529e-25)
(1.00001 -2.2178e-06 -4.80946e-26)
(0.980659 0.137628 1.77163e-21)
(1 -1.35136e-05 8.46631e-27)
(0.969582 -0.0139635 -2.79705e-22)
(1.00019 -0.000160239 -4.9812e-25)
(1.00116 -0.00432398 -2.0845e-23)
(1.0523 0.0441953 -6.24436e-22)
(1.03511 0.00303133 1.08388e-22)
(0.980913 -0.0849733 9.49255e-22)
(0.974381 -0.0099658 2.23867e-22)
(0.997953 -0.00431035 5.00625e-24)
(0.823571 0.0247958 1.05042e-20)
(0.969951 -0.0724356 -5.3789e-22)
(1.00001 -1.57152e-06 -3.50111e-26)
(0.991211 -0.00756071 -1.11069e-23)
(0.999978 -0.000145093 -5.41757e-26)
(1.00624 -0.0391911 8.9205e-23)
(1.03557 0.0037189 7.79901e-22)
(1.01434 0.0377568 -9.82702e-22)
(1.0005 -0.000498085 -2.05547e-24)
(0.977591 -0.00867376 -3.86454e-22)
(0.99466 -0.0025444 -5.34544e-24)
(1.00753 0.00348683 6.1106e-22)
(1.24127 -0.0233043 1.73453e-22)
(0.979514 -0.00799963 -1.69812e-22)
(0.887882 0.131609 6.27343e-21)
(0.994386 -0.00273058 5.26453e-23)
(1.00004 -6.56353e-06 -2.75729e-25)
(1.10548 -0.197874 1.48264e-21)
(0.871655 0.119452 3.19759e-21)
(1.0031 -0.0127745 1.54881e-23)
(1.02503 0.00014548 -3.78949e-22)
(0.97627 -0.0315279 -4.2575e-24)
(1.08272 0.0349661 2.48745e-22)
(1.00105 -0.000276253 -2.0766e-23)
(1.03988 -0.0289896 1.9748e-22)
(0.93977 -0.0135794 3.50256e-22)
(1.00569 -0.0140879 -3.75634e-24)
(1.02388 -0.0068195 -1.54011e-22)
(1.02214 -0.0635563 -2.0579e-22)
(1.14259 0.11611 2.89714e-22)
(0.984274 -0.009583 -4.97836e-23)
(0.989159 -0.0108063 6.87432e-23)
(0.999566 -0.000609957 3.95748e-24)
(0.999558 -0.000340577 1.04407e-23)
(0.930622 0.0887707 -1.27722e-21)
(0.999997 -3.2464e-05 5.54215e-26)
(0.999197 -0.0145686 -3.99729e-23)
(0.999978 -9.96264e-06 -2.62583e-25)
(0.995454 -0.00236032 -1.50852e-23)
(1.0002 -0.000149307 -1.08658e-24)
(0.996067 -0.00388762 -5.43542e-23)
(1.1026 0.135956 5.30295e-22)
(1 -1.27439e-05 1.81274e-27)
(0.999436 -4.78383e-05 -4.11715e-24)
(1.29159 0.0676221 -2.96332e-23)
(1.04181 -0.169447 -3.43062e-22)
(0.994057 -0.0322379 -1.57108e-22)
(1.00072 -0.00268462 -1.10594e-23)
(0.99973 0.00860451 -8.21703e-21)
(0.992794 -0.0683217 -3.71181e-22)
(1.01678 0.0260918 2.11404e-21)
(0.993108 -0.00279112 -1.18014e-22)
(1.02256 0.0202969 -9.68244e-22)
(1.00604 -0.013128 -5.59767e-23)
(0.999594 -0.000561646 -2.61711e-25)
(1.18982 -0.12101 9.585e-22)
(1.00043 -0.000514519 -2.87301e-24)
(0.91965 0.0989318 9.31952e-21)
(0.98723 -0.0239788 1.27743e-23)
(0.999937 -0.000159242 -1.39801e-24)
(1.00125 -0.000274734 -1.23937e-24)
(1.01251 0.000677426 -6.02842e-22)
(0.993535 -0.000964693 1.17823e-22)
(0.999621 -0.000546517 -5.23e-24)
(0.999931 -0.00016549 3.60116e-26)
(1.00617 -0.114021 7.25665e-22)
(0.998562 -0.000586053 -6.7825e-24)
(0.995056 -0.00809529 6.55989e-23)
(0.968454 -0.0686077 -6.05477e-22)
(1.00001 -2.82612e-06 9.87564e-28)
(0.949586 -0.0173108 -2.4599e-22)
(1.00027 -0.00170709 2.8201e-24)
(1.0038 0.0952097 -1.07122e-21)
(0.99481 -0.00825956 -7.86369e-23)
(1.02496 0.0185123 9.52799e-22)
(1.00319 -0.00783698 3.25606e-23)
(0.998048 -0.00281257 5.39574e-24)
(1.0577 0.107804 1.20758e-21)
(1.01033 -0.0880913 1.42689e-22)
(1.10928 -0.199099 -8.69143e-22)
(0.997828 -0.00440418 -3.50232e-23)
(1.01481 -0.124372 8.29435e-22)
(1.05655 0.114745 7.2835e-22)
(1.05942 0.135806 9.30835e-22)
(0.99182 -0.00104342 2.58899e-23)
(0.999981 -4.29382e-06 -1.80188e-25)
(0.99124 -0.00720558 -5.77334e-23)
(1.00254 -0.00195636 4.58816e-25)
(1.00001 -4.91457e-05 -9.10882e-27)
(1.12759 -0.0202404 -6.16066e-23)
(0.991081 0.0874057 -3.25894e-21)
(1.00674 -0.00450141 4.71923e-23)
(1.00089 -0.000200453 -3.44618e-24)
(1.01896 -0.030699 -2.63229e-24)
(0.948563 -0.01738 -1.38037e-22)
(0.999907 -4.04584e-05 -2.90524e-25)
(1.05827 -0.00722034 9.14081e-22)
(1.03492 -0.0177237 -2.69319e-22)
(1.05479 -0.0102369 7.75561e-22)
(1.00726 -0.00590661 -3.35625e-23)
(1.01482 -0.00955247 -2.16871e-22)
(0.999788 -2.4857e-05 -2.95061e-25)
(1.01395 0.0277654 2.71079e-21)
(1.17815 -0.129201 6.15684e-22)
(1.04512 -0.174278 -3.45403e-22)
(0.999448 -3.37624e-05 -2.45521e-24)
(1.02808 -0.0302586 -1.27666e-22)
(1.04231 0.0225753 -1.97497e-21)
(1.00045 -0.000166493 -9.76684e-25)
(0.945232 -0.0032111 -5.25232e-22)
(1.02745 0.0515508 -4.44816e-22)
(0.996567 -0.0571776 -7.57251e-23)
(0.944689 -0.00155836 3.45036e-22)
(0.940237 -0.012566 -2.99542e-22)
(1.06688 -0.150014 1.09769e-21)
(1.06331 -0.148409 9.22218e-22)
(1.02357 -0.00734042 3.59734e-22)
(1.00214 0.0272653 8.34952e-22)
(1.03129 -0.138927 1.63879e-22)
(1 -3.2436e-05 4.69972e-26)
(1.00069 -0.00413417 1.49847e-24)
(1.1367 -0.0999214 7.44487e-22)
(0.999009 -3.04359e-05 1.51777e-23)
(1.02816 -0.0394391 -5.09522e-24)
(0.999997 -2.90533e-05 -2.82312e-26)
(0.996811 -0.00210497 2.66018e-23)
(1.00214 -0.00030168 6.83228e-23)
(0.999959 -2.04187e-05 -3.67595e-27)
(1.02198 -0.00261871 2.38652e-22)
(0.999717 -0.000243675 -3.36149e-25)
(1.02179 0.00250966 -7.71628e-22)
(0.984639 -0.0295222 1.86392e-22)
(1.00345 -0.0252779 8.72843e-23)
(0.996135 -0.00193714 4.48027e-23)
(0.995059 -0.000318975 -3.48017e-23)
(0.970485 -0.0653224 5.12689e-22)
(0.996662 -0.000175796 2.80787e-23)
(0.999575 -0.00340798 -2.59809e-24)
(1.01063 -0.00418928 3.11401e-23)
(1.03387 -0.00441297 1.12079e-23)
(1.00351 -0.00874829 5.51718e-23)
(0.978955 -0.00794073 4.50917e-24)
(0.998358 -0.000359003 1.39238e-25)
(1.01753 -0.0132313 -1.72898e-22)
(0.994546 -0.000819546 -2.77696e-23)
(0.9887 -0.00668229 7.67239e-23)
(0.943628 -0.0259758 2.80944e-24)
(0.990582 -0.00192208 -1.02793e-22)
(0.99998 -4.23114e-05 1.08242e-25)
(0.991164 -0.00510799 -1.03578e-22)
(0.998761 0.00815045 -4.95324e-21)
(1.00002 -3.74404e-05 -7.61624e-26)
(1.24129 0.0959421 -1.96827e-23)
(1.03876 -0.0910446 8.17547e-23)
(0.899236 0.136403 -3.03868e-22)
(1.02241 -0.00787548 -1.62552e-24)
(0.96756 -0.000837545 -2.2352e-22)
(0.999999 -4.66937e-06 -2.81031e-27)
(1.00095 -0.00115986 6.07929e-24)
(0.97169 -0.0932683 -2.87307e-22)
(0.999982 -3.59651e-06 1.11535e-25)
(0.998495 -0.000681037 1.56057e-23)
(0.999986 -1.38293e-06 -1.26629e-26)
(0.971296 -0.072041 7.39563e-22)
(1.00251 -0.00226289 -1.70429e-23)
(1.00869 -0.111645 -4.60357e-22)
(0.985849 -0.00348874 1.36506e-24)
(0.999929 -6.01592e-06 -1.21724e-24)
(1.02255 0.0736313 2.47606e-21)
(1.01336 0.0629667 1.21361e-21)
(0.978692 -0.0172894 1.59631e-22)
(1.00025 -6.50721e-05 -6.79781e-25)
(0.999905 -8.25058e-05 5.68357e-25)
(0.999999 -2.8939e-05 7.53504e-26)
(0.999965 -2.64624e-06 -2.76629e-25)
(0.935295 0.142711 2.26054e-21)
(0.999265 -0.000283046 4.67609e-25)
(1.00126 -0.0002009 1.83974e-24)
(1.01091 -0.0045531 -4.3253e-23)
(1.00053 -0.000511355 3.79776e-24)
(0.999675 -0.000181167 -1.02063e-24)
(0.941172 -0.0217958 7.55666e-22)
(0.999918 -0.00233348 1.47e-25)
(1.03408 -0.0183749 3.94899e-22)
(1.00792 -0.0229877 4.66229e-24)
(0.99888 -0.00192518 9.15978e-24)
(0.999597 -0.000661993 -1.25922e-24)
(0.983834 -0.000764616 -1.69459e-22)
(0.972945 -0.00778844 -2.2799e-22)
(1.04779 0.0419727 -7.17102e-22)
(1.12365 0.0105361 7.40643e-23)
(0.99991 -3.64337e-05 -3.29575e-25)
(0.992548 -0.00604695 5.43166e-23)
(1.00031 -0.000315874 2.97529e-24)
(1.07913 -0.117987 6.92251e-22)
(1.00006 -0.00569407 3.62201e-24)
(1.06901 0.023963 7.65388e-23)
(1.0034 -0.0290348 5.20068e-23)
(0.815761 0.0623108 -5.78716e-21)
(1.00775 -0.0412316 1.37439e-22)
(0.999196 -0.000648591 2.34712e-24)
(1.02853 -0.00372227 -4.92352e-22)
(0.988858 -0.00734034 5.60816e-23)
(1.00606 0.0960585 -1.22336e-21)
(0.972583 -0.00795034 -2.93767e-22)
(0.993369 -0.00104028 -7.24592e-23)
(0.992356 -0.00106697 -3.08741e-23)
(1.00907 -0.00123346 -4.59248e-24)
(0.998122 -0.003569 -3.31597e-25)
(1.00001 -2.65723e-05 -4.03933e-27)
(0.995328 -0.00352698 -7.48856e-23)
(1.02436 0.0950227 5.51571e-21)
(0.970562 -0.0137166 -2.51806e-22)
(0.998163 -0.000255092 -5.13359e-23)
(0.972409 -0.0134279 -3.9523e-22)
(0.982798 -0.00107221 -4.5794e-23)
(1.0007 0.000748566 -7.21613e-22)
(0.999719 -0.000127156 -1.25867e-24)
(1.03877 0.0927204 -1.95875e-21)
(1.01163 -0.0330464 8.26477e-23)
(0.970556 -0.0623299 1.86044e-23)
(0.999706 -0.000126361 1.84141e-24)
(1.00721 -0.00516639 1.40101e-22)
(1.02477 -0.0118294 -3.51443e-22)
(1.01821 -0.0422431 6.03234e-23)
(1.03454 0.140907 -1.21581e-21)
(0.999738 -0.000211212 -2.86571e-24)
(1.01502 -0.00250667 -4.53708e-22)
(1.02863 -0.000634304 9.92404e-22)
(1.00032 -0.00175866 -3.9535e-24)
(0.999926 -0.000182237 -5.86411e-25)
(0.909056 0.12859 5.44804e-21)
(1.07001 -0.0165362 -5.77455e-23)
(1.00177 -0.0140046 -2.31197e-24)
(1.01654 -0.0108582 6.09002e-23)
(1.03441 -0.0346293 -8.20674e-23)
(1.00008 -0.000164703 -8.44077e-25)
(1.08131 -0.120818 -6.25126e-22)
(0.987548 -0.0135505 6.39392e-23)
(1.02808 -0.155475 -1.38226e-21)
(0.995356 -0.0121005 1.52163e-23)
(1.00348 0.0752672 3.49632e-21)
(1.00317 -0.00817675 -8.05168e-24)
(1.19171 0.114023 6.97123e-22)
(0.999779 -2.16966e-05 -1.36566e-25)
(0.985516 0.105059 -4.44817e-21)
(0.946109 -0.00346001 -1.21174e-22)
(0.996947 -0.000202804 8.17709e-24)
(1.00337 -0.0014257 8.06563e-23)
(1.01485 -0.00484184 -4.28457e-22)
(0.982036 -0.0782858 -2.88435e-23)
(1.08676 -0.160316 7.76432e-22)
(0.994991 -0.000237479 4.26187e-23)
(1.00003 -7.81866e-05 4.5359e-25)
(0.866916 0.0388511 8.35541e-22)
(0.985983 -0.00387211 -2.42762e-22)
(1.00046 -0.000527819 -2.66494e-24)
(1.07978 -0.0894049 7.50519e-22)
(0.973645 -0.00992581 1.33817e-22)
(1.02722 0.137871 -2.24339e-21)
(1.0017 -0.00200157 1.07522e-23)
(0.99016 -0.00206395 7.89364e-23)
(0.999966 -3.52944e-06 1.43833e-25)
(1.14046 -0.000118242 -8.50663e-23)
(1.00455 -0.00447401 4.13141e-23)
(0.974729 -0.0106126 2.53503e-22)
(1.00046 -0.000390416 2.5577e-24)
(0.998012 -0.000145917 1.7591e-23)
(0.981965 -0.000239391 -3.25865e-23)
(1.00003 -3.23125e-06 3.00506e-25)
(0.965241 -0.0234114 2.03436e-22)
(0.999125 -0.000634953 1.00395e-23)
(0.991303 -0.00529399 1.71845e-22)
(0.957263 -0.0392611 2.50048e-22)
(1.00042 0.0155791 -5.08117e-21)
(0.99398 -0.000964017 8.08337e-24)
(1.14951 -0.0338117 1.1933e-22)
(1.02734 -0.0833972 -4.93243e-23)
(0.985193 -0.0287057 -1.12439e-22)
(0.999988 -0.000295167 -2.5783e-26)
(1.00008 -0.000159491 -6.67669e-25)
(0.998053 -0.00401685 -1.03015e-23)
(1.00003 -2.43447e-06 -1.60411e-25)
(0.993318 -0.00118289 3.92422e-23)
(1.23351 -0.0647906 -1.95791e-22)
(0.998868 -0.00184332 5.77217e-24)
(1 -5.00146e-05 -2.77373e-26)
(0.927894 0.00830591 -5.94592e-21)
(1.00281 -0.002576 -2.43136e-23)
(1.0002 -0.0006913 8.08678e-25)
(0.999977 -5.90962e-05 1.70416e-25)
(0.998794 -0.000518141 -9.69253e-24)
(1.03627 0.136792 -1.68475e-21)
(0.961974 -0.0111441 5.44279e-22)
(0.867026 0.0085227 2.81742e-21)
(1.00395 0.0254518 5.68898e-22)
(1.01294 -0.0103851 -4.97564e-23)
(1.01627 0.0719603 -1.95972e-21)
(0.999997 -4.04196e-05 -5.01541e-26)
(0.993464 -0.0153955 -4.01549e-23)
(0.999527 -0.000446113 5.40905e-24)
(0.998589 -0.000541125 -8.45447e-24)
(1.0121 0.0366245 1.39952e-21)
(0.994828 -0.00865454 1.6215e-22)
(0.859717 0.111499 -5.6971e-22)
(1.03121 0.0724007 -4.69367e-21)
(0.964239 -0.0342147 3.32286e-22)
(1.01192 0.063642 -1.94509e-21)
(1.00686 -0.0122967 6.61605e-23)
(0.991889 -0.00715158 1.57995e-22)
(1.00125 -0.000904244 -6.29172e-24)
(1.0375 -0.0885859 -4.74486e-23)
(0.997722 -0.000970564 2.90765e-23)
(0.964863 -0.0215092 -4.4357e-22)
(0.958917 -0.0128983 4.13524e-22)
(0.998272 -0.000215424 -2.85174e-24)
(1.01924 0.0676457 1.25164e-21)
(0.994213 -0.00272665 2.1484e-23)
(1.00008 -6.28576e-05 6.47504e-26)
(0.997544 -0.00164485 9.33304e-24)
(0.999622 -3.99916e-05 4.28379e-25)
(0.976841 -0.00800104 7.80328e-23)
(0.999906 -7.70827e-05 -2.13636e-25)
(0.999292 -0.000683829 2.62015e-24)
(0.99998 -7.84096e-06 -1.52404e-25)
(1.02262 0.0234535 -1.18361e-21)
(1.09818 -0.161692 6.18933e-22)
(1.02057 0.0721602 2.0928e-24)
(1.0184 -0.0150945 -4.48647e-23)
(0.998472 -0.00181144 -1.41313e-23)
(0.988846 -0.0384717 -1.05694e-22)
(0.989227 -0.0147771 1.90086e-22)
(1.02411 -0.000617264 -1.69063e-22)
(0.998234 -9.87094e-05 -4.82821e-24)
(0.999395 -5.50107e-05 3.32447e-24)
(0.951536 -0.0185068 -5.36908e-22)
(0.973244 -0.0301414 2.87521e-22)
(1.0186 -0.0295368 5.26997e-24)
(0.970158 -0.00148388 3.5266e-22)
(0.997395 -0.000164887 1.99542e-23)
(1.03593 -0.0429735 -2.31267e-24)
(1.00525 -0.0176239 -1.72645e-24)
(1.00002 -6.11461e-05 -5.64785e-26)
(1.0408 0.0196345 -6.83537e-22)
(0.999976 -5.66812e-05 -2.02139e-25)
(1.02187 -0.00209578 -6.70567e-22)
(0.999542 -0.000319087 7.11666e-24)
(1.00001 -2.94167e-07 2.55889e-26)
(1.00112 -0.000252713 7.83919e-24)
(0.999622 -0.000517443 2.79008e-24)
(0.9993 -0.000287387 1.01499e-24)
(0.99123 -0.0106085 -1.24633e-24)
(1.09034 0.0608928 -5.57854e-22)
(1.00464 0.00342122 -3.75533e-22)
(0.988183 -0.0110769 1.53627e-22)
(0.992729 -0.00622131 -7.15265e-23)
(1.00165 -0.00187898 3.4172e-25)
(0.996981 -0.000147728 -7.12721e-24)
(0.993895 -0.000438843 7.49904e-24)
(1.00034 -0.00566348 -1.04769e-24)
(0.99972 -0.000230615 2.65718e-24)
(1.0004 -0.000542007 -4.83229e-25)
(1.02521 0.00450028 -6.87941e-22)
(0.99608 -0.010845 -8.18753e-23)
(0.967336 -0.0429059 -9.63672e-23)
(0.991487 -0.0651333 -4.33806e-22)
(0.99972 -0.00958407 -1.87271e-23)
(1.00074 -0.0414676 -1.46833e-22)
(1.01118 -0.0438243 -1.44042e-22)
(0.999011 -5.7952e-05 7.14486e-24)
(1.00303 -0.00279425 -3.87117e-23)
(0.992482 -0.00115121 1.17348e-24)
(1.03363 0.0679616 1.16099e-21)
(0.971795 -0.0703495 -5.65796e-22)
(1.00563 -0.0134272 1.54383e-23)
(1.00477 -0.0175178 8.83181e-24)
(0.978938 -0.0292158 3.30946e-22)
(0.874367 0.0429623 -1.40246e-21)
(0.99423 -0.00440413 9.61118e-24)
(1.0018 -0.0208755 2.27708e-24)
(1.00443 -0.00420448 -1.69679e-23)
(1.02665 -0.00113588 -4.75087e-22)
(1.00228 -0.00207531 -4.14925e-23)
(1.01779 -0.040682 -1.70554e-23)
(1.0208 0.0692966 -1.86219e-21)
(0.999791 -3.53902e-05 -6.52146e-25)
(1.02413 -0.0115092 1.51277e-22)
(0.992552 -0.030665 -6.11457e-23)
(0.999528 -0.0790759 2.3198e-22)
(1.00349 -0.00157595 -2.91097e-23)
(0.99794 -0.00286584 2.3523e-23)
(0.996783 -0.00149029 -4.95577e-23)
(1.01985 -0.00774372 -2.72729e-22)
(0.997898 -0.000436841 -4.32288e-23)
(0.999648 -0.000502999 8.77947e-25)
(1.01252 -0.0322972 4.12852e-23)
(1.00161 -0.00401883 7.35748e-24)
(0.999868 -0.000196555 3.72878e-24)
(1.0414 -0.0299057 -1.39925e-22)
(0.99449 -0.0025451 -2.46432e-23)
(0.998826 -0.000534498 5.40858e-24)
(0.999997 -3.62826e-05 -7.02129e-26)
(1.02361 0.0247023 2.93438e-22)
(0.999977 -4.86151e-05 1.87756e-25)
(0.989979 -0.0382936 7.008e-23)
(1.02666 -0.00164539 3.84023e-22)
(0.993007 -0.0325281 4.29717e-23)
(1.00009 -0.000628474 6.09096e-25)
(1.02343 0.00216844 1.12415e-21)
(1.00561 -0.0662591 4.06994e-22)
(1.01814 0.0290432 6.31642e-22)
(0.999974 -0.000270277 1.91477e-25)
(0.997933 -0.00411139 2.18105e-23)
(1.17232 0.0253508 4.44213e-22)
(1.0001 -7.56443e-05 1.23524e-24)
(1.0028 -0.00288401 2.12725e-23)
(0.997402 -0.00176723 -2.30617e-23)
(1.00561 -0.00219871 -4.05034e-23)
(0.988009 -0.0126646 -4.79403e-23)
(0.978854 -0.00912579 1.17733e-23)
(0.997521 -0.0170083 6.71702e-23)
(0.998451 -0.000329749 5.03215e-23)
(1.00545 -0.00365366 -6.53722e-23)
(1.01027 -0.00104352 -2.00374e-22)
(1.29949 0.0550535 6.27655e-22)
(0.999893 -2.15499e-05 7.73748e-25)
(1.02246 0.00265279 1.5339e-21)
(0.973179 -0.0119654 2.1362e-22)
(0.998238 -0.00347506 2.89847e-23)
(0.995896 -0.000138406 -2.96403e-23)
(1.00023 -5.35604e-05 -1.2304e-24)
(1.00839 -0.0899085 -3.62835e-23)
(1.00005 -1.60453e-06 -3.71362e-25)
(0.993212 0.0159319 5.82698e-21)
(1.08482 0.0939861 1.5616e-21)
(0.999719 -2.03563e-05 -4.28496e-24)
(0.988082 -0.0143385 -5.16158e-23)
(1.00045 -0.00582586 2.13897e-25)
(0.998804 -0.00207946 -7.38445e-25)
(0.9989 -0.0141389 1.49351e-24)
(1.00769 -0.0423035 -8.9917e-23)
(1.0078 0.0176519 1.21574e-22)
(1.16032 0.0820791 -7.42353e-23)
(1.06913 -0.0501875 -4.43857e-24)
(1.00562 -0.00392871 7.73448e-23)
(0.944991 -0.0278526 -1.37189e-22)
(1.02937 -0.0201933 1.52306e-22)
(1.15456 -0.0300005 -1.86738e-23)
(1.18157 -0.0130882 2.58885e-23)
(0.964036 -0.012556 -1.46258e-22)
(1.02148 -0.027388 -3.3215e-23)
(1.07151 0.0775349 2.94635e-22)
(0.994335 -0.00170936 4.61461e-23)
(0.991433 0.0957572 -3.7493e-21)
(0.999474 -0.000370356 8.74021e-25)
(0.99341 -0.000197811 2.57647e-23)
(0.978881 -0.0472749 3.8901e-22)
(0.999947 -0.000101138 -2.51438e-25)
(0.999573 -0.000294516 -8.36111e-24)
(0.999973 -2.70773e-06 1.4863e-25)
(0.99213 0.0934265 1.38555e-21)
(0.993834 -0.000908979 -9.52028e-23)
(1.00015 -0.000351176 2.09449e-24)
(0.991032 -0.00829072 -1.31445e-22)
(1.00122 -0.0196749 1.14703e-23)
(0.999815 -3.40579e-05 7.27753e-25)
(0.992059 -0.000795877 6.64332e-23)
(1.06908 0.136724 -2.32296e-21)
(1.00061 -0.00184157 1.80874e-25)
(1.0065 -0.00706019 1.95118e-24)
(0.992059 -0.0390355 -7.87475e-23)
(0.999836 -0.00291801 -1.58516e-24)
(0.997338 -0.000304155 -9.01266e-24)
(0.999543 -0.000148997 -2.01239e-24)
(0.854879 0.10861 -1.1239e-22)
(1.00012 -2.93267e-05 -3.39386e-24)
(1.00002 -1.90625e-06 3.05556e-25)
(0.999233 -0.00555627 -9.64361e-24)
(0.993299 -0.0149572 1.57906e-22)
(1.2278 0.0384502 -3.55838e-23)
(1.00031 -0.000864571 -8.11399e-24)
(1.03641 -0.0410636 -2.40433e-23)
(1.0329 -0.00399297 1.6855e-22)
(0.999922 -0.000642383 -1.91941e-24)
(1.00139 -0.0042639 6.4677e-24)
(0.943912 -0.00133433 3.35019e-22)
(1.23493 -0.00406847 -1.63638e-22)
(1.02876 -0.0859283 1.25236e-22)
(1.00001 -2.09565e-06 -4.00105e-27)
(1.0002 -0.000653074 1.9352e-24)
(1.06575 -0.0657828 1.99402e-22)
(1.01841 -0.012164 4.46892e-22)
(1.01785 0.0912189 -4.3848e-21)
(1.0254 0.000471362 -9.23503e-22)
(0.976884 -0.00836565 -1.29148e-22)
(1.00001 -1.89023e-06 -4.94112e-27)
(0.997075 -0.0757575 2.97661e-22)
(0.998489 -0.000115474 -1.7433e-23)
(0.993045 -0.00761168 2.09187e-23)
(0.993329 -0.0077842 -5.25306e-23)
(1.01654 0.0302776 -9.43437e-22)
(0.99689 0.0218785 5.51219e-21)
(0.999939 -2.76075e-05 -1.07574e-25)
(1.02097 0.0174374 -1.42087e-21)
(1.0309 0.063917 2.15139e-21)
(0.994267 -0.000890288 8.52261e-23)
(1.04992 -0.073255 -1.233e-22)
(0.992247 -0.0286631 3.04708e-22)
(1.01006 -0.0429577 -1.0766e-23)
(1.00006 -6.11143e-05 -9.69182e-25)
(0.973629 -0.0126996 5.11185e-22)
(0.995564 -0.00768746 2.35804e-23)
(0.999944 -0.00073665 2.97152e-25)
(0.999701 -0.000747263 2.67304e-24)
(0.999112 -7.10071e-05 -1.25904e-23)
(0.998927 -0.000804269 7.09637e-24)
(0.999627 -0.000460986 -3.85464e-24)
(1.02562 0.0976589 -5.11992e-21)
(1.04372 0.153199 1.16469e-22)
(1.1333 0.108838 -1.20989e-22)
(0.999987 -1.64028e-06 -4.90706e-26)
(0.985488 -0.00339914 -1.8429e-22)
(1.16856 -0.0423914 -7.2562e-23)
(1.02863 0.00379957 -5.87578e-22)
(0.98409 0.0198056 -4.09372e-21)
(0.999725 -2.70776e-05 3.69445e-24)
(0.988251 -0.0113677 -1.23202e-22)
(0.988732 -0.00069796 -7.91881e-23)
(1.08353 0.186833 4.48627e-21)
(0.98875 -0.00770127 3.94327e-23)
(0.99542 -0.00996737 1.05998e-22)
(1.06865 -0.0677341 -1.64738e-22)
(1.01646 0.0171633 4.21393e-22)
(1.00017 -0.000383472 5.41023e-25)
(0.999748 -0.00125522 1.42019e-25)
(0.989269 -0.0253153 1.49927e-22)
(1.0056 -0.0679562 -4.3305e-22)
(1.10668 0.0406955 1.8479e-22)
(1.09579 -0.0347422 -4.92303e-23)
(0.99237 -0.0561577 -7.31915e-22)
(0.991965 -0.0302796 1.3836e-22)
(1.27141 0.051336 -3.22281e-22)
(1.01333 -0.0135035 -2.14745e-22)
(0.974105 -0.0386043 -4.75716e-22)
(1.00386 -0.00294502 -9.08957e-24)
(1.23957 -0.0497177 4.26893e-22)
(1.16755 0.0711688 -1.73665e-22)
(0.99981 -0.000393586 4.2018e-24)
(0.999657 -0.000660288 -5.79057e-25)
(1.11809 0.0124601 7.66212e-22)
(1.00012 -2.46244e-05 2.49316e-24)
(1.09392 -0.0452979 -1.5261e-23)
(1.01487 -0.00426617 -4.19116e-23)
(0.999997 -5.01097e-05 7.56471e-26)
(1.12273 0.211316 -2.50303e-21)
(0.994575 -0.00880467 -6.12463e-23)
(0.997466 -0.000199849 -1.08559e-23)
(0.844516 0.0717612 -3.61507e-21)
(0.976819 -0.0147494 -5.18108e-22)
(1.00263 -0.0286606 -1.37164e-23)
(0.978784 -0.0285657 -3.14752e-22)
(0.99947 -0.00933259 1.28171e-23)
(0.991947 0.0394816 2.87362e-21)
(1.00065 -0.000767841 3.12612e-24)
(0.874599 0.00385827 -6.88489e-21)
(0.999927 -0.000139804 -3.77538e-25)
(1.05228 -0.0720427 1.51372e-23)
(0.865223 0.121619 -1.84131e-21)
(1.00371 -0.00155898 -1.01086e-23)
(0.975573 0.0752642 -6.60336e-22)
(0.996727 -0.00138709 -4.46034e-23)
(1 -0.00017535 -6.53229e-26)
(1.0084 -0.0521999 -1.56889e-22)
(0.969124 0.133347 1.8276e-21)
(0.999117 -3.20533e-05 -5.38618e-24)
(0.996215 -0.00157919 -2.77769e-23)
(0.995508 -0.00474397 6.04869e-23)
(0.999442 -0.000240771 3.06304e-24)
(0.988695 -0.0152124 -1.27109e-22)
(0.968085 0.0794077 4.05289e-21)
(1.06791 0.0101462 -8.70674e-22)
(1.00001 -3.97545e-05 -1.83406e-27)
(1.01289 -0.0128174 9.13241e-23)
(0.99789 -0.000629095 3.34436e-23)
(1.01605 -0.0097349 -3.70941e-22)
(0.999507 -0.000345213 -7.17148e-24)
(1.01117 -0.00108851 -2.37708e-23)
(0.998508 -8.45265e-05 2.54914e-23)
(0.999762 -0.00115748 3.81544e-25)
(0.982403 0.0718641 1.98718e-21)
(0.96008 0.118585 5.07475e-21)
(0.984308 0.0635029 -3.88156e-21)
(0.964824 -0.0125305 2.07529e-22)
(1.24424 -0.0334768 -3.52297e-22)
(1.00009 -0.000181479 1.21491e-24)
(0.959398 -0.0121808 -5.49068e-22)
(1.01818 0.0731963 3.54398e-21)
(1.01656 -0.0221911 -1.33748e-22)
(1.00014 -0.000342588 -1.39807e-24)
(1.01668 -0.0976459 -2.21853e-22)
(1.00034 -9.76204e-05 -5.86912e-24)
(0.999941 -2.89148e-05 4.84194e-25)
(0.961936 0.101923 -4.45502e-21)
(1.00007 -6.78883e-05 -1.38842e-25)
(1.00243 -0.00308227 7.63565e-23)
(0.998928 -0.000460646 1.08814e-23)
(0.995695 -0.00968914 1.50453e-23)
(0.987413 0.0530648 4.43299e-22)
(0.965396 0.110458 1.2449e-21)
(0.959396 0.0834672 2.08442e-21)
(1.00683 -0.00667213 2.85492e-23)
(1.00028 -0.000865621 2.94323e-24)
(1.04567 0.0581589 -2.51805e-22)
(1.00401 -0.000226813 6.56537e-23)
(1.03001 -0.0285103 -4.87581e-23)
(0.994733 -0.00102177 -2.55748e-23)
(1.00004 -5.61343e-06 4.49006e-25)
(0.998388 -0.00185144 6.70528e-24)
(0.999982 -3.60043e-06 1.17465e-25)
(0.997453 -0.00165507 7.60102e-24)
(0.999589 -0.000313313 -3.04455e-25)
(0.997111 -0.00579449 -1.6411e-23)
(0.999968 -0.000259207 2.76215e-25)
(1.03575 0.0220487 2.31651e-21)
(1.00118 -0.000301038 1.89648e-24)
(0.991527 -0.090619 6.32753e-22)
(0.995277 -0.00756283 -2.86177e-23)
(0.946628 -0.00502364 3.96156e-22)
(0.990304 -0.00188565 -1.72825e-22)
(0.999572 -0.000138511 9.80183e-25)
(1.02379 0.138708 4.47774e-21)
(0.993723 -0.000179828 -7.98222e-24)
(1.00001 -0.000467914 6.19171e-26)
(0.999984 -3.86789e-05 -4.27288e-26)
(0.88224 0.0949153 5.01037e-21)
(1.00002 -2.58707e-06 -6.56471e-26)
(1.00618 -0.00421228 -1.17743e-22)
(1.04434 -0.0172834 2.62746e-22)
(0.989213 -0.00235874 -1.32416e-22)
(1.04287 0.115215 -1.64696e-21)
(0.997115 -0.0027081 -3.49261e-23)
(0.970813 -0.00176707 -3.08239e-22)
(0.977289 -0.0150676 -6.76069e-23)
(0.999851 -0.00314906 7.19687e-24)
(1.00007 -5.70665e-05 -2.43853e-25)
(1.00035 0.0118923 -3.33816e-21)
(0.9596 0.0931916 1.75888e-21)
(0.999145 -0.000662164 -8.94614e-25)
(0.993843 -0.0293249 -1.51907e-22)
(0.999871 -6.15414e-06 -6.43276e-25)
(0.964267 0.126383 -8.75081e-21)
(0.896316 0.0890521 -4.30794e-21)
(0.99921 -0.00071443 3.75321e-25)
(0.996737 -0.00583624 -7.65932e-25)
(1.00978 -0.00394481 -2.86728e-23)
(1.00202 -0.00526406 -3.22057e-23)
(0.985482 -0.00886693 -1.05714e-22)
(1.00004 -0.000327132 2.4634e-25)
(1.00538 -0.00231529 3.48849e-23)
(0.976768 -0.0140076 2.46622e-22)
(1.0457 -0.0175479 -5.10026e-23)
(1.03675 0.166239 4.41208e-21)
(0.99919 -0.00128988 2.65641e-24)
(1.01375 -0.00475761 -4.25843e-22)
(1.16096 0.0276391 -1.41739e-22)
(1.15001 -0.0400385 -3.92493e-23)
(0.970744 -0.0129888 2.04428e-22)
(1.01493 -0.00890017 3.5708e-22)
(0.9091 0.0845947 -8.62407e-21)
(1.08239 0.0613433 1.06978e-21)
(0.961617 -0.00192997 -2.47254e-22)
(0.962509 0.14409 -5.24061e-21)
(0.999684 -0.00064012 5.41702e-24)
(0.977197 0.0319314 -4.58225e-22)
(0.998034 -0.0148503 3.67028e-23)
(0.996799 0.0628631 7.0969e-21)
(1.05859 -0.00887518 -8.40133e-22)
(0.997222 -0.00279472 1.38247e-23)
(1.03989 -0.0271165 6.77085e-23)
(1.00134 -0.000168435 1.45455e-24)
(1.00901 -0.00372288 1.2484e-22)
(0.946584 -0.0298163 8.38191e-22)
(0.999633 -3.06045e-05 -6.29717e-24)
(0.986007 -0.00606895 2.13229e-22)
(1.004 0.122205 -1.77873e-21)
(0.985864 -0.0166057 -1.44448e-23)
(1.03653 -0.0322827 -1.22379e-22)
(0.999194 -0.000605588 -7.27616e-24)
(1.17932 -0.0780691 8.03589e-22)
(1.08662 0.0589649 1.28821e-21)
(0.995011 -0.00546711 -1.20917e-22)
(1.26972 -0.113357 -2.25276e-21)
(1.0004 -0.000412618 -3.71837e-24)
(0.998148 -0.00373782 -1.48807e-23)
(0.985659 -0.00601344 -2.3247e-22)
(0.998812 -0.000987329 7.04178e-24)
(1.00119 -0.00271775 -8.5878e-24)
(0.994934 -0.000661676 -1.55726e-24)
(0.999727 -0.000115245 -6.06076e-24)
(1.00134 -8.66106e-05 -1.06598e-23)
(0.996323 0.0875309 4.58998e-21)
(1.00142 -0.0040951 1.79373e-24)
(0.990535 -0.000456491 -4.40006e-23)
(0.967015 -0.0417186 2.06692e-22)
(0.982925 -0.011989 -4.35834e-22)
(0.953445 -0.0021833 -4.24637e-23)
(0.990552 -0.105007 3.30965e-22)
(1.00234 -0.00223544 1.26989e-23)
(0.999997 -5.27286e-06 -2.02877e-26)
(0.999999 -0.000182988 1.59417e-25)
(1.0529 0.0889245 -3.63758e-23)
(0.997601 -0.0784176 1.56559e-22)
(1.00004 -1.25831e-05 6.20308e-26)
(1.0896 -0.113617 3.78824e-22)
(1.03324 0.0323862 2.42092e-21)
(0.965617 -0.039862 -1.14147e-22)
(0.991619 -0.00698927 -1.05466e-22)
(1.00007 -1.49306e-05 -3.90046e-25)
(0.998959 -0.000465661 -3.80728e-24)
(0.968853 -0.000786505 -1.10598e-22)
(1.08886 0.0337661 -6.7513e-23)
(0.997985 -0.0171038 -7.50427e-23)
(0.99974 -0.000116008 3.79406e-24)
(0.968918 -0.00161232 6.37122e-22)
(0.990423 -0.0158099 5.10325e-23)
(0.860899 0.0701272 -2.30669e-21)
(1.02934 0.00397629 -9.61777e-24)
(1.04163 -0.0110466 2.54935e-22)
(0.979678 -0.0469536 -2.73828e-22)
(0.999992 -2.77531e-06 -1.48244e-26)
(0.99621 -0.000580099 7.542e-24)
(1.02612 -0.00562421 -2.43746e-22)
(0.999801 -0.000207526 -2.57528e-24)
(1.00002 -1.51688e-06 -7.24199e-26)
(1.05206 0.0341315 -3.19973e-23)
(1.05108 0.00159955 4.48696e-22)
(1.00035 -8.58047e-05 4.21839e-24)
(0.999535 -0.000183825 -7.83167e-24)
(1.01124 -0.0223816 2.98738e-23)
(0.997983 -0.0548491 2.85149e-23)
(1.00597 -0.0066582 2.82011e-23)
(1.00635 -0.012132 1.00496e-24)
(0.991227 -0.000575876 2.36536e-22)
(1.00003 -1.15252e-05 -3.636e-27)
(1.11026 0.188123 6.92253e-22)
(1.00032 -0.000309604 -2.97978e-24)
(0.999778 -0.00303704 -2.9195e-24)
(0.999875 -0.000201974 8.7736e-25)
(0.999882 -5.99471e-06 5.87183e-25)
(0.999919 -0.000128386 -1.55228e-25)
(1.02819 -0.00256316 -4.56986e-22)
(1.00058 -0.0019077 -1.72112e-24)
(0.998467 -0.000630814 3.36561e-25)
(0.994635 -0.00218167 2.3524e-23)
(0.99836 -0.00947158 -1.9239e-23)
(1.01539 -0.0100074 2.2284e-22)
(0.997067 -0.00234903 6.73001e-23)
(0.973589 -0.0112672 -2.3221e-23)
(0.994116 -0.000842124 -1.05795e-23)
(0.985128 0.117817 -9.2016e-22)
(1.0129 0.0936537 3.83238e-21)
(0.999739 -0.000300962 -8.9204e-25)
(0.999214 -0.000583864 -2.62963e-24)
(1.05002 0.000172879 -4.26471e-22)
(0.999565 -0.000641544 -3.76163e-24)
(0.994906 -0.0290932 1.14371e-22)
(1.11383 -0.0196803 1.47169e-22)
(1.2291 0.0201601 6.76212e-24)
(0.999476 -0.00017035 -1.64163e-24)
(1.00988 -0.00127634 1.38336e-22)
(1.01806 -0.0062122 -7.48319e-23)
(1.00081 -0.00290636 2.67341e-24)
(1.1321 0.0136109 -3.77957e-22)
(0.999946 -9.6167e-05 3.3116e-26)
(1.00387 -0.000214389 3.55047e-23)
(1.06643 -0.0730012 2.63128e-22)
(1.00752 -0.00622707 -6.38892e-23)
(0.992186 -0.00704586 -5.7293e-23)
(1.01938 -0.0021321 -4.89778e-22)
(1.00004 -3.78744e-05 3.888e-25)
(1.00328 -0.0161632 -8.38267e-24)
(1.00016 -0.000703539 8.89727e-25)
(0.999975 -6.51351e-05 -1.01239e-24)
(0.999567 -0.00573956 -1.10146e-26)
(0.994588 -0.000980314 -6.31654e-23)
(0.992865 -0.00406569 9.01447e-24)
(0.983855 -0.0159002 1.09862e-22)
(1.11262 -0.0245297 1.87084e-23)
(1.02852 -0.0195394 -1.18839e-22)
(1.00466 -0.000676875 -1.07953e-22)
(0.983339 -0.0713602 3.75381e-22)
(1.01135 -0.0192809 -1.13585e-22)
(1.01115 -0.0230455 -4.29087e-23)
(1.00715 -0.0067723 2.89761e-23)
(1.00004 -6.01084e-06 -1.67017e-25)
(0.97252 0.0653243 2.0035e-21)
(0.99556 -0.00329401 -6.06221e-23)
(0.99824 -0.000329999 4.83331e-23)
(1.10475 -0.0844397 -3.68659e-22)
(0.854324 0.0850597 -1.86448e-21)
(1.00001 -2.06398e-06 1.26836e-26)
(1.17298 -0.00489833 2.83672e-23)
(1 -6.22271e-05 3.85075e-26)
(1.07962 -0.0923533 2.35329e-22)
(0.996532 -0.00170337 2.43321e-23)
(0.989356 -0.0160258 3.85995e-23)
(1.05028 0.0332622 3.72037e-22)
(0.997863 -0.000560101 3.06591e-23)
(0.999996 -0.000704687 1.82472e-25)
(1.18574 0.116054 1.51078e-22)
(1.02349 -0.000843461 1.22378e-22)
(0.99971 -0.000277248 -4.38499e-24)
(1.02174 -0.00650998 -2.64697e-22)
(0.999995 -2.03316e-05 1.05336e-25)
(1.02597 0.0197976 3.11504e-22)
(1.00782 -0.017819 1.64785e-23)
(0.985459 -0.0178018 -9.56531e-23)
(0.999927 -0.00014754 8.31851e-25)
(1.07648 0.0901807 -1.32771e-21)
(1.01336 -0.00505295 3.61603e-22)
(0.988225 -0.000762452 -7.61921e-23)
(1.00002 -6.40519e-05 -4.63067e-26)
(1.0323 0.024892 -8.03339e-22)
(1.03495 0.103224 -2.09298e-22)
(0.99941 -4.11183e-05 3.61394e-24)
(0.999986 -0.000145507 -3.30317e-25)
(0.97987 -0.0176696 -6.85209e-23)
(0.995072 -0.0007073 4.01126e-24)
(1.02887 -0.0409058 -2.29202e-24)
(1.02963 -0.0299145 4.68469e-23)
(0.983998 0.0145584 -5.22176e-21)
(1.00115 0.0255782 1.57071e-21)
(1.00026 -0.000271312 2.4292e-24)
(1.05425 0.166324 -2.53002e-21)
(1.08127 0.0975398 -5.34785e-22)
(0.998503 -0.000343896 -3.30488e-23)
(0.962093 -0.00137444 1.86607e-22)
(0.998065 -0.051518 9.36962e-23)
(0.996361 -0.0239354 3.15104e-23)
(0.991225 -0.0668375 2.60069e-22)
(1.22666 0.0826197 8.704e-23)
(1.00044 -0.000417913 4.23566e-24)
(0.942022 0.0829155 -2.0175e-21)
(1.06776 0.0261707 1.46351e-21)
(1.00658 -0.00558431 -2.82252e-23)
(1.00005 -0.00032965 -7.63202e-26)
(1.00034 -0.000430422 -2.93518e-24)
(1.00001 -2.15203e-06 -2.10614e-26)
(0.999718 -0.000652479 6.94673e-24)
(0.998573 -0.00159459 -1.93413e-23)
(0.915819 0.127089 -2.10619e-21)
(1.00001 -5.20423e-05 -1.14667e-27)
(1.02404 -0.000331837 -4.30774e-23)
(1.01211 -0.0011306 -2.66094e-22)
(0.999884 -0.00011442 -5.98506e-25)
(0.943165 0.137371 -2.6868e-21)
(0.896637 0.109909 -7.16493e-21)
(1.04502 0.0422164 7.83396e-22)
(1.03206 0.0514091 3.29226e-22)
(1.20767 -0.0827993 4.79306e-22)
(1.00129 -0.000983087 7.28672e-24)
(0.999855 -0.000201753 -2.25971e-24)
(0.994102 -0.00292919 -7.73819e-23)
(0.999994 -1.98484e-05 -2.87085e-25)
(0.999432 -0.000222953 3.1505e-24)
(1.03316 -0.164921 6.61806e-22)
(1 -0.000484581 -6.33366e-26)
(0.999961 -0.00883101 -2.07349e-24)
(0.934059 0.122153 9.50089e-22)
(0.993786 -0.0031389 -2.58492e-23)
(0.999989 -1.53922e-05 3.54761e-26)
(0.921447 0.0800433 -5.47199e-21)
(1.00025 -0.000281447 3.80304e-24)
(0.978462 -0.00380768 1.35411e-22)
(0.959224 -0.0403564 -8.77404e-22)
(0.99933 -0.000671884 5.8507e-25)
(0.995191 -0.100486 -2.20753e-22)
(0.999881 -5.4753e-05 2.10599e-24)
(1.16702 0.0630895 1.18996e-22)
(1.00175 -0.00175493 -2.43932e-23)
(0.995767 -0.024766 -8.55518e-23)
(1.00101 -0.000165946 -8.53058e-24)
(0.999677 -0.000777117 2.13518e-24)
(0.999805 -0.000354865 -2.10186e-25)
(0.999888 -9.96462e-05 1.37531e-24)
(1.02083 -0.160142 9.36659e-22)
(0.965265 -0.0336222 -2.83946e-22)
(1.01358 0.00119503 -5.62402e-22)
(1.00162 -0.00382386 -3.09173e-23)
(1.01634 -0.0401916 -4.16708e-24)
(1.07406 0.0810291 -2.35418e-21)
(1.00004 -3.49754e-05 -6.14119e-25)
(0.87062 0.0899486 9.42094e-22)
(0.999823 -0.0027099 7.69997e-24)
(0.936166 -0.00685558 -1.27318e-22)
(1.00117 -0.000897397 4.04371e-24)
(1.00085 -0.000109858 2.20879e-24)
(1.01932 -0.00153131 3.28073e-22)
(1.02156 -0.00585512 -9.1036e-23)
(1 -5.87471e-05 -3.99944e-26)
(0.99803 -0.00383805 1.24536e-23)
(1.00006 -7.13702e-05 -1.54191e-25)
(0.999659 -0.000182021 1.05743e-24)
(1.00044 -0.000359322 -6.38241e-25)
(1.02708 -0.00253319 7.52253e-22)
(1.0187 -0.000623253 -3.94031e-22)
(1.03256 0.104488 1.2497e-21)
(1.00884 -0.0695807 2.78191e-22)
(0.999949 -2.35772e-05 1.96046e-25)
(1.00009 -6.90091e-05 -1.62974e-24)
(1.02489 1.03884e-06 3.35792e-22)
(1.05255 0.178132 -6.36754e-22)
(0.997681 -0.000904165 -3.05677e-23)
(0.996723 -0.00159429 5.80674e-23)
(0.87622 0.067922 1.01739e-21)
(0.998566 -0.000221896 -2.5761e-23)
(0.988444 -0.00058892 6.5015e-23)
(1.00086 -0.00599414 -5.63002e-24)
(1.11035 -0.016593 -1.08548e-22)
(1.01665 -0.0736264 1.11688e-22)
(0.995538 -0.00221498 2.96949e-23)
(1.01149 0.00136152 1.36291e-21)
(1.0007 -0.000754126 5.77973e-24)
(0.999878 -0.000312128 -1.42761e-24)
(1.00086 -5.60874e-05 7.37461e-24)
(1.17319 -0.0800475 -4.84274e-22)
(0.876538 0.122169 1.74294e-21)
(0.989002 0.0394233 -1.89164e-21)
(0.986353 -0.00394004 1.77191e-22)
(0.996637 -0.052207 -8.28546e-23)
(0.996869 -0.00442835 4.21708e-23)
(1.00081 -0.00026743 2.78982e-24)
(1.00002 -3.84808e-05 1.15782e-25)
(1.02398 -0.00169717 -2.72407e-22)
(1.07909 0.0591737 -1.42989e-21)
(1.00001 -4.68483e-05 -1.53595e-27)
(0.996206 -0.00181887 -6.07503e-23)
(0.999989 -1.46842e-05 1.56655e-25)
(1.00008 -0.000174922 -5.57231e-25)
(0.981938 0.0794005 -2.78431e-21)
(0.999998 -2.32767e-06 -1.92693e-27)
(0.98132 -0.0827404 -7.17479e-22)
(0.992467 -0.0699741 1.12898e-22)
(1.01105 -0.118695 2.51724e-22)
(1.02573 -0.00510444 4.40612e-22)
(1 -2.82749e-05 5.42593e-27)
(1.00508 -0.00423549 3.58822e-23)
(0.99719 -0.00564723 4.16583e-23)
(0.993645 0.0827942 4.73047e-21)
(1.08738 -0.0648429 2.9085e-22)
(1.0025 -0.000369807 -1.11037e-23)
(0.983932 -0.0152872 -1.51601e-22)
(1.00033 -0.000404165 -5.35269e-25)
(1.04848 0.167234 3.38107e-21)
(1.00294 0.0229607 1.14658e-21)
(1.00715 -0.0113725 1.27872e-22)
(1.05864 -0.0240262 1.774e-22)
(0.930158 0.133397 3.23748e-21)
(0.965757 -0.041276 -9.51e-23)
(0.975701 -0.0498613 5.04836e-23)
(0.999027 -0.000353691 -5.14042e-24)
(0.996321 -0.000613811 -2.24375e-24)
(0.999819 -0.000772275 4.88631e-26)
(1.03617 -0.0341372 4.31182e-23)
(0.999973 -0.000295578 7.18764e-25)
(1.01882 0.0160487 3.75797e-22)
(1.0015 -0.00130107 -4.62045e-24)
(1.10148 0.0669094 -2.28432e-22)
(0.98485 -0.0278735 2.36759e-22)
(0.999998 -3.89956e-06 1.58379e-26)
(1.03856 -0.0173992 -4.17688e-22)
(0.999919 -0.000136076 1.78254e-25)
(1 -4.03519e-05 3.06928e-26)
(0.999628 -0.000716896 -6.18378e-24)
(0.88548 0.0798545 -7.00027e-21)
(0.904993 0.0696122 5.19255e-21)
(1.0904 0.184207 7.60804e-22)
(1.00003 -2.83867e-05 -3.06168e-25)
(1.15304 0.0847351 -1.95284e-22)
(0.998572 0.00459677 1.16079e-21)
(0.999506 -4.17351e-05 1.36374e-25)
(1.00379 -0.0158527 -4.58298e-24)
(0.995576 -0.00164502 -3.28332e-23)
(1.1245 -0.0100924 1.06138e-22)
(0.964914 0.136355 -1.6611e-21)
(0.984809 -0.00948453 -1.67999e-22)
(1.02732 0.00412538 3.37492e-22)
(0.99898 -0.00452876 1.87814e-23)
(0.957903 -0.0204093 2.73231e-22)
(0.950443 -0.0185516 6.46101e-22)
(0.834814 0.0574753 4.28873e-21)
(0.999698 -2.81388e-05 -1.78227e-24)
(0.971078 0.0749404 2.32118e-21)
(1.02713 -0.00189919 -2.85126e-22)
(1.01809 0.0274411 -7.12843e-22)
(1.00007 -0.000573731 -3.96526e-25)
(1.00011 -9.8435e-05 -4.93516e-25)
(1.00289 -0.00395228 -8.19279e-24)
(0.995393 -0.00333026 6.51749e-23)
(1.03396 -0.0053487 1.40263e-22)
(0.999975 -6.25484e-05 9.30865e-25)
(1.00004 -3.15528e-05 5.29444e-25)
(0.995791 0.0302709 -1.82691e-21)
(1.03312 -0.135477 -1.36064e-22)
(1.00016 -0.000374663 3.78339e-26)
(0.968661 0.0591589 6.96113e-22)
(0.998824 -9.62159e-05 7.31021e-24)
(1.00008 -0.000149538 6.53373e-25)
(1.01054 0.120718 3.02067e-21)
(0.998891 -0.015144 -2.09092e-23)
(0.999351 -0.00326438 1.17914e-24)
(1.21694 -0.0679993 2.54427e-22)
(1.16083 0.0598931 1.75858e-22)
(1.00017 -2.69322e-05 -9.6306e-25)
(0.999937 -0.000122682 -1.42883e-24)
(1.00208 -0.00544711 -1.80991e-23)
(0.997917 -0.000499698 -2.4058e-23)
(0.978394 0.0713222 -1.01811e-21)
(0.887413 0.0873304 2.91796e-21)
(1.09195 0.139187 -8.76459e-22)
(0.851596 0.00845102 3.61124e-21)
(1.22277 0.0539144 -7.3192e-23)
(0.972027 -0.0127288 -1.04126e-22)
(0.926497 0.12901 -9.29512e-22)
(0.999963 -8.18129e-05 3.36792e-25)
(0.998496 -0.00343033 -8.83372e-24)
(1.21782 0.0779395 1.41069e-22)
(0.998388 -0.00352891 9.78143e-24)
(0.999674 -3.21855e-05 -6.11755e-24)
(0.99995 -2.12579e-05 9.95474e-25)
(0.962557 0.0788327 1.22714e-21)
(1.07454 -0.0460058 -2.46133e-23)
(0.999676 -0.000271296 1.37312e-24)
(0.901704 0.0830198 6.72566e-21)
(1.0234 -0.000412854 2.56199e-22)
(1.16579 0.176268 1.48135e-21)
(1.01922 -0.00810974 1.23856e-22)
(0.998614 -0.000236089 3.172e-23)
(0.989358 -0.00984014 -3.86119e-23)
(1.11078 0.0416429 5.75006e-22)
(1.04288 -0.0119066 2.10925e-22)
(0.960724 0.112588 -2.26241e-21)
(0.99324 -0.028604 4.85132e-23)
(0.999609 -0.000251898 3.3735e-24)
(0.983913 0.0756845 -6.12322e-22)
(1.01136 0.1527 5.0744e-21)
(1.00824 -0.0115891 7.79586e-23)
(1.02021 0.0917605 -1.76541e-21)
(0.984748 -0.0342796 1.47456e-22)
(0.995913 -0.000268705 -7.26295e-23)
(0.996071 -0.00977498 -2.98809e-23)
(0.999683 -0.000167327 5.59454e-25)
(0.999932 -7.7858e-05 4.61377e-25)
(0.985086 0.0680699 -1.0386e-21)
(0.966653 -0.0391242 9.80009e-23)
(1.13723 -0.0586027 -4.17343e-23)
(1.00084 -0.00559136 -3.62312e-24)
(1.04236 0.0205622 2.38163e-21)
(0.981602 -0.000471331 6.5199e-23)
(1.00893 -0.0433601 -6.71219e-24)
(0.999643 -0.00328267 5.82925e-24)
(0.999369 -0.0107382 5.28146e-23)
(0.950918 0.0881592 -4.88955e-21)
(0.999602 -0.000270337 9.39015e-25)
(0.991288 -0.00929177 -4.7641e-23)
(0.998506 -0.00154342 1.47814e-23)
(0.955202 0.12044 1.03903e-22)
(0.991232 -0.0144826 -9.03092e-23)
(1.00931 -0.00403663 -7.35102e-23)
(0.996141 -0.00169077 5.16372e-23)
(1.00071 -0.000682871 -1.7802e-23)
(1.03135 0.0155756 -1.55554e-22)
(0.987741 -0.00116127 1.37102e-22)
(0.965581 0.00700103 -4.17699e-21)
(1.2588 0.0761426 4.58452e-23)
(0.852223 0.0662635 -3.01237e-22)
(1.0004 0.010882 2.22464e-21)
(0.960526 -0.0121412 6.77366e-22)
(1.01311 -0.00115107 1.11134e-22)
(0.999131 -0.00139518 6.23241e-24)
(1.0557 -0.0518266 -8.06248e-25)
(1.18721 -0.105371 6.44973e-23)
(0.977121 0.0666193 -3.69808e-21)
(0.953842 0.0832228 1.01704e-21)
(0.914349 0.0784929 -2.26759e-21)
(1.08574 0.173033 1.92074e-21)
(0.987481 0.0589096 -4.52463e-21)
(0.999827 -0.00071273 3.48706e-24)
(0.935349 0.0822553 5.59142e-21)
(0.999986 -3.69914e-05 5.78684e-26)
(1.00004 -3.41387e-05 -1.31634e-25)
(0.97139 -0.0125448 3.79252e-22)
(0.90429 0.122899 -1.6766e-21)
(1.01873 -0.0012525 -1.51918e-22)
(1.07901 0.087759 -2.09933e-21)
(1.00001 -0.000587307 7.59557e-26)
(0.998942 -0.00177124 1.58296e-23)
(1.15402 -0.129493 -8.3605e-22)
(0.990845 -0.0392899 -5.02476e-22)
(0.991093 0.046767 -4.18034e-22)
(0.999661 -0.000121042 3.38271e-24)
(0.996007 -0.000633572 4.83493e-23)
(1.09663 0.188519 -4.76542e-21)
(1.00053 -0.000174079 -5.59076e-24)
(0.997955 -0.00335359 1.70152e-24)
(0.868126 0.0645487 5.07607e-21)
(1.01922 -0.00617513 1.14732e-22)
(1.0048 -0.0621528 3.31579e-23)
(1.15831 -0.189853 1.53059e-21)
(0.999741 -0.000631182 -4.82949e-24)
(1.18047 -0.00738722 2.17468e-23)
(1.29473 0.0750756 -1.23183e-22)
(0.846108 0.082211 5.19397e-21)
(1.23356 0.034106 7.47502e-23)
(1.16093 -0.0325053 -1.95805e-23)
(1.00273 -0.00702217 1.71007e-23)
(0.999884 -4.96197e-05 -8.43616e-25)
(1.02543 -0.0481525 9.03632e-24)
(1.03537 0.0322152 -7.7542e-22)
(1.00734 -0.0183291 -2.63539e-23)
(1.00007 -1.78452e-05 -1.53046e-25)
(1.09941 -0.140827 -8.63692e-22)
(1.01642 0.046514 -5.08419e-22)
(0.999262 -0.000145501 -1.25645e-23)
(0.966041 0.105463 7.14746e-21)
(0.985879 -0.0786348 5.12175e-22)
(0.963024 0.0969944 -1.29929e-21)
(1.04174 -0.0713054 -7.44833e-23)
(0.98845 -0.0106206 1.97941e-22)
(0.928069 0.123497 4.30426e-22)
(0.997309 -0.00177053 1.24446e-23)
(1.19749 -0.0371533 -1.48924e-22)
(0.999803 -0.000337195 3.72476e-25)
(0.999353 -0.000534133 -2.78875e-24)
(0.95658 -0.00238007 -5.16668e-22)
(0.987804 -0.0051397 1.49746e-23)
(0.978654 -0.00428601 1.78133e-22)
(0.995224 -0.00559557 9.79276e-23)
(1.0554 -0.0547565 5.07329e-23)
(1.09394 -0.144043 4.34184e-22)
(0.953797 -0.0217424 -4.11661e-23)
(0.963948 0.120966 -7.23852e-21)
(1.00014 -0.000320674 2.04265e-25)
(1.00038 -0.000379864 -4.93863e-24)
(0.990785 -0.01483 6.4248e-23)
(1.05304 0.00521963 8.17957e-22)
(1.07285 -0.142821 -1.11886e-21)
(0.96449 -0.0224741 7.40735e-23)
(1 -4.21542e-05 -6.36906e-27)
(1.10525 -0.143712 5.45288e-22)
(1.02281 -0.0119496 -6.60884e-22)
(0.999951 -9.20451e-05 -6.26692e-25)
(0.997672 -0.0988379 -1.02862e-22)
(1.27347 -0.0995494 9.23378e-22)
(0.962098 0.0880384 2.10843e-21)
(1.03206 -0.127894 1.51027e-21)
(0.968652 0.128346 2.06749e-21)
(0.993192 -0.00660298 1.00039e-22)
(1.11461 0.00965482 -4.58495e-22)
(1.01553 0.047885 1.77596e-21)
(0.979614 -0.00185205 -5.27345e-24)
(1.11639 0.20734 9.41097e-22)
(0.999323 -0.00411442 3.40358e-24)
(1.13293 0.00492309 -2.49029e-22)
(1.00273 -0.0135315 -2.03495e-24)
(1.02654 -0.00272328 7.73302e-24)
(1.05162 0.0388599 -3.59315e-24)
(1.02338 0.0186859 -7.72212e-22)
(0.985753 -0.015148 -1.19065e-22)
(1.00319 -0.00423315 6.48489e-23)
(0.999772 -0.00281739 -1.69438e-24)
(1.02012 0.0189331 1.11599e-21)
(0.999958 -3.92196e-06 2.59658e-25)
(0.999937 -7.08911e-05 -4.66174e-25)
(0.999483 -0.000186549 -2.87609e-24)
(1.06606 -0.0622479 1.71401e-23)
(1.01602 -0.0229437 -5.21406e-23)
(1.00747 -0.00653696 1.10153e-22)
(0.997683 0.0935768 7.63006e-23)
(1.0838 0.027764 1.46439e-21)
(0.881546 0.108278 5.67972e-21)
(1.00797 0.0897981 -4.84226e-22)
(0.999245 -0.000156796 1.71902e-23)
(0.981069 -0.0041039 -2.48063e-22)
(0.999921 -0.000162264 7.82528e-25)
(0.976201 -0.0305479 3.3861e-22)
(0.999716 -0.00512881 -6.99129e-24)
(1.00279 -0.000346025 3.22201e-23)
(1.00032 -0.000267688 4.55271e-25)
(0.992438 -0.0378492 3.20597e-22)
(1.03184 0.0968612 4.38278e-24)
(0.998934 0.0111793 2.1074e-22)
(0.999858 -2.47196e-05 -1.02774e-24)
(1.00002 -2.02645e-06 8.56579e-26)
(1.16174 -0.0393948 -9.83178e-23)
(0.999997 -6.18032e-05 1.0969e-26)
(0.995503 -0.00455658 -1.66126e-23)
(0.999914 -0.000168069 -1.18615e-24)
(1.08271 0.0149409 -6.88953e-22)
(0.979858 -0.00750668 2.53209e-22)
(1.00122 0.00839155 1.0555e-21)
(0.998439 -0.105101 -4.65918e-23)
(1.00002 -6.77339e-05 7.44593e-26)
(0.992705 -0.00085129 7.83349e-23)
(0.977046 -0.00134776 -1.19053e-22)
(0.994347 -0.0311283 8.24232e-24)
(0.991422 -0.00155135 -1.07221e-22)
(0.967376 -0.00668489 1.5367e-22)
(1.09357 -0.0314653 2.882e-22)
(0.99992 -1.25588e-05 8.19017e-25)
(0.999985 -4.12828e-05 -1.5811e-25)
(1.00104 -0.00126619 -1.78474e-23)
(0.999936 -0.000150911 1.65984e-24)
(1.07209 -0.016695 -2.62263e-22)
(1.22098 0.0201588 1.04474e-22)
(1.0218 -0.0152091 -8.69418e-23)
(0.911647 0.0912444 1.57082e-21)
(1.02209 -0.0125685 4.78937e-23)
(1.0328 -0.155286 7.51365e-22)
(0.939401 -0.0182821 -9.72745e-22)
(0.999791 -0.000386228 2.40676e-24)
(1.01977 -0.00579234 3.34673e-22)
(0.999942 -0.000111532 4.50842e-25)
(0.981602 0.11127 -7.93846e-22)
(1.02877 -0.00136749 -7.97034e-22)
(0.938312 0.126795 6.30331e-21)
(1.00007 -0.000135883 5.05491e-25)
(0.982651 -0.0126414 3.01893e-22)
(0.996595 -0.0015953 -3.01243e-24)
(1.02891 -0.0166001 3.29139e-22)
(1.22645 0.138756 -1.2258e-22)
(1.007 0.13358 -2.11943e-21)
(0.996294 -0.00327096 1.97958e-23)
(1.03813 -0.0316293 -2.13826e-22)
(0.999065 -0.00152864 -1.10238e-23)
(0.995195 -0.0247037 1.94405e-22)
(0.995973 -0.00131476 9.32766e-23)
(0.996961 -0.00138909 -4.22662e-23)
(1.02778 6.50333e-05 -1.546e-22)
(1.00078 -0.000628929 -1.55266e-23)
(1.00042 -0.0207448 -2.4171e-23)
(0.989536 -0.00616649 -3.79603e-23)
(1.16773 0.16161 1.23372e-21)
(1.06247 -0.0219216 1.86742e-22)
(1.00001 -6.063e-06 6.2968e-27)
(0.99957 -0.00038437 -7.37102e-24)
(0.996907 -0.00128918 5.25443e-23)
(0.999705 -1.97717e-05 2.58089e-24)
(1.07957 0.00363063 -4.34259e-22)
(0.999676 -0.000122979 -5.47032e-25)
(1.01325 -0.0577375 2.13368e-22)
(1.08901 0.0228739 1.24666e-21)
(1.00004 -2.73716e-06 2.72471e-25)
(1.06717 0.0780402 -9.06379e-22)
(1.00005 -3.17514e-06 7.315e-25)
(0.99999 -2.44201e-06 1.7826e-27)
(0.973237 -0.0858338 8.9492e-22)
(1.00634 -0.0403558 7.47199e-23)
(1.00009 -6.89951e-05 1.6746e-24)
(0.988329 -0.00781028 -1.20964e-22)
(1.00009 -0.000288115 -5.46256e-25)
(0.920262 0.131139 -1.26567e-21)
(1.00598 -0.00455396 5.41886e-23)
(0.986669 -0.000619936 -5.26721e-24)
(0.972112 0.0164324 1.59344e-21)
(1.02722 0.00340248 -5.4891e-22)
(0.982355 -0.00043671 1.43867e-22)
(1.00011 0.0913534 2.73093e-21)
(0.998655 -0.0011459 1.91091e-23)
(0.999089 -8.01475e-05 1.52002e-23)
(0.998987 -0.000926003 3.866e-24)
(1.05098 -0.0109693 -3.675e-22)
(0.814639 0.0864326 -4.41016e-21)
(0.999298 -0.00140292 4.75445e-24)
(0.99973 -0.00119598 5.13245e-24)
(1 -4.73175e-05 -3.31384e-26)
(1.00382 -0.00341712 9.15614e-25)
(0.999397 -0.000684625 -4.43012e-24)
(1.01072 -0.00133071 -4.95828e-23)
(1.00289 -0.000251701 -4.26742e-23)
(0.988779 -0.00097942 -9.94806e-23)
(0.965785 -0.0253558 -2.86193e-22)
(1.00894 -0.00712128 8.93222e-23)
(1.00624 -0.0097864 7.25986e-23)
(0.990897 -0.00948801 1.02818e-23)
(0.999741 -0.000283036 1.46577e-24)
(1.10786 -0.0865493 3.77477e-22)
(1.02843 0.161584 1.19965e-21)
(0.999139 -0.00131376 -2.69799e-24)
(0.992916 -0.00242235 -1.03218e-22)
(0.99989 -9.27082e-05 6.65411e-25)
(0.99605 0.0844108 1.1059e-21)
(1.03233 -0.0169613 -3.23163e-22)
(1.02871 0.153755 -7.12773e-22)
(1.00022 -5.61257e-05 -2.76122e-25)
(0.999594 -0.000692729 3.45333e-24)
(0.98861 -0.0133148 8.93734e-23)
(0.912343 0.0716349 -2.81291e-21)
(1.03406 0.0106471 1.63564e-23)
(0.984991 -0.00895541 -1.14436e-22)
(0.999938 -6.6703e-05 4.18773e-25)
(1.01528 -0.0106336 -4.05228e-23)
(1.1359 0.000146941 1.47625e-22)
(1.04096 -0.0686187 -2.50738e-22)
(1.06651 0.0450291 -4.64527e-22)
(0.971335 -0.00137586 4.5233e-22)
(1.01388 -0.0175279 -4.1217e-23)
(1.03581 -0.159891 -5.07328e-22)
(1.00621 0.129582 -1.0132e-21)
(0.996908 -0.0239171 3.90778e-23)
(1.03951 0.0539384 1.06702e-22)
(0.998482 -0.00171779 1.17858e-23)
(0.844172 0.100869 -3.35509e-21)
(0.976516 -0.00997077 5.76588e-23)
(0.994426 -0.00186811 1.13967e-23)
(0.944627 0.0881673 3.77307e-21)
(0.975462 -0.0106173 -2.17336e-22)
(1.03253 0.0166843 9.55077e-22)
(1.03616 -0.16972 -2.58285e-22)
(1.0179 0.0173601 -6.58358e-22)
(1.00305 -0.00131618 1.81198e-23)
(1.02259 -0.0111188 -1.22922e-22)
(1.03525 0.0909905 3.64271e-21)
(1.0204 -0.00805733 1.32837e-22)
(0.971036 -0.00486519 9.22686e-23)
(0.995102 -0.000846894 -2.46863e-23)
(0.996722 -0.00698529 6.76542e-23)
(1.01255 -0.0430744 -7.46675e-23)
(1.08558 -0.0676958 -2.86042e-22)
(0.999605 -0.00533248 1.66801e-23)
(0.972687 -0.0371314 -3.62681e-22)
(0.984266 -0.000884407 3.40421e-22)
(1.00106 -0.00293182 -1.61923e-24)
(0.960014 -0.0231744 -2.94108e-22)
(0.94849 -0.0328946 6.03676e-22)
(0.999983 -4.319e-05 -7.13641e-26)
(1.21432 0.0509352 7.05399e-23)
(0.995457 -0.00206084 -4.14701e-23)
(1.25014 0.0729086 -2.10934e-23)
(0.939111 0.136853 3.29177e-21)
(1.04257 0.144356 -3.59505e-21)
(0.967142 -0.00591385 2.36202e-23)
(0.958846 -0.0337063 5.27195e-22)
(1.00023 -0.000638926 1.5848e-24)
(1.01697 -0.100103 1.72576e-22)
(0.999088 -0.0104292 3.83619e-24)
(0.862027 0.0789021 4.13716e-21)
(0.980406 -0.00755503 -2.09193e-22)
(0.983119 -0.000826261 -4.29031e-23)
(1.0412 0.136047 -1.73831e-21)
(1.01863 -0.00586451 -3.71447e-22)
(0.981512 -0.0254516 1.57687e-22)
(1.14739 0.112663 2.47118e-23)
(0.978986 -0.00118621 -1.62159e-24)
(0.999714 -0.00129341 -1.19059e-24)
(0.99402 -0.000338758 -5.58651e-23)
(1.00489 -0.00451322 -2.04199e-23)
(1.00035 -0.00118355 2.5365e-25)
(1.03567 0.149478 1.6973e-21)
(0.998692 -0.0012594 2.73082e-23)
(1.02491 0.00530247 3.70066e-23)
(1.10442 0.198853 -3.33627e-22)
(0.997148 -0.000792119 -6.00895e-23)
(1.01706 0.0409246 -2.2503e-21)
(1.01164 -0.122022 2.70225e-23)
(0.999821 -2.84833e-05 -5.34359e-25)
(1.00335 -0.00404771 6.22016e-23)
(1.12013 -0.0127186 1.04747e-22)
(1.07929 0.17558 -2.8117e-21)
(0.998772 -0.00094745 -1.69763e-24)
(1.06825 -0.0143295 8.65568e-22)
(0.963508 -0.0411796 6.06961e-22)
(1.06108 -0.0199041 -1.17383e-22)
(0.988216 -0.00821071 -1.30813e-22)
(1.03348 0.133036 -1.11947e-22)
(1.0505 -0.0539649 -4.07698e-23)
(1.09069 -0.117445 4.72425e-22)
(0.999766 -0.0106435 -6.31942e-24)
(1.00009 -1.04765e-05 -1.21127e-24)
(0.968949 0.118161 1.64404e-21)
(0.998806 -4.62299e-05 -2.49912e-24)
(1.00846 -0.0538223 -1.27653e-22)
(0.99995 -8.76348e-05 2.9632e-25)
(1.00633 0.023695 7.95074e-22)
(0.99997 -4.32515e-05 1.91007e-25)
(0.992302 -0.0541917 -3.90553e-22)
(1.00545 -0.023711 2.48205e-23)
(1.1099 -0.183084 1.51644e-21)
(1.00034 -0.000912531 -2.59698e-24)
(0.995943 -0.0104511 1.28804e-22)
(1.14773 0.0804176 -1.18329e-22)
(0.998161 -0.00261585 -3.60787e-23)
(1.00046 -0.000103247 8.20021e-24)
(1.00032 -0.000946309 1.8886e-24)
(0.998056 -0.0026714 1.75755e-23)
(1.11429 -0.0328135 -1.27396e-23)
(0.999959 -5.10973e-06 1.42376e-25)
(0.99999 -3.57541e-05 -1.14027e-25)
(0.995753 -0.00140537 -2.51059e-23)
(0.994694 -0.00201456 -3.31086e-23)
(0.989878 -0.0156092 -8.57094e-23)
(1.00382 -0.00171425 -3.75866e-23)
(0.999079 -0.000942464 1.73727e-23)
(1.02957 -0.00803156 -7.9166e-22)
(1.02562 -0.0040129 -1.81371e-22)
(0.99941 -0.00138103 -9.99363e-25)
(1.0005 -0.000182947 4.51384e-24)
(0.999907 -0.000220329 -1.11547e-24)
(0.973195 0.120951 -5.48554e-23)
(0.997934 -0.000908204 3.11159e-23)
(0.996808 -0.0045592 -9.95863e-23)
(1.00887 0.127052 -5.34814e-21)
(0.991238 -0.0101559 -2.63303e-24)
(1.02666 0.129751 -1.20103e-21)
(1.04639 -0.0263132 -2.77625e-22)
(0.972016 0.0607613 -1.13606e-21)
(1.02837 0.0403617 -8.22192e-23)
(1.04828 0.000336543 -1.2917e-22)
(0.999277 -0.000100332 -9.03155e-24)
(1.03038 -0.0503929 8.34542e-23)
(1.03086 -0.00699881 -1.37492e-22)
(1.01815 -0.0214593 -4.35379e-25)
(0.997855 -0.00090307 -1.4398e-24)
(1.0001 -7.56346e-05 -5.26021e-25)
(1.00407 -0.0034342 8.83026e-24)
(0.976979 -0.0369777 -3.07277e-22)
(0.999539 -7.81526e-05 -4.12234e-24)
(0.995853 -0.00128914 -8.44297e-23)
(0.995976 -0.000515571 3.06171e-23)
(0.996313 -0.00949752 -4.6452e-24)
(0.999986 -3.10308e-05 -1.86927e-25)
(0.998424 -0.00157468 -2.39729e-23)
(1.00004 -3.08206e-05 7.45465e-26)
(0.999962 -4.29851e-06 -1.0226e-25)
(1.00043 -0.000111704 -5.91067e-24)
(1.03167 0.0931425 -3.38791e-21)
(1.09789 0.0646702 2.30277e-21)
(0.994364 -0.00061671 1.1204e-22)
(0.998626 -0.000283116 3.26127e-23)
(0.984425 -0.0509711 -2.10445e-22)
(0.989693 -0.0100739 -8.33917e-24)
(1.16436 0.154344 1.02887e-21)
(0.989394 0.0898062 2.45937e-21)
(0.995323 -0.0754258 -3.50559e-22)
(1.00107 -0.00277982 -1.48469e-23)
(1.04728 0.0370614 -6.80278e-22)
(1.04261 -0.0662839 3.06223e-22)
(1.0003 -0.000643198 -2.73535e-24)
(0.954255 -0.0206654 -2.38964e-23)
(1 -3.41919e-06 -3.41916e-27)
(1.02757 0.00224646 -1.10552e-22)
(1.03003 0.0159615 -1.81026e-22)
(0.999684 -0.000323807 -1.0153e-24)
(0.979826 -0.00220288 6.59291e-23)
(1.00011 -9.75844e-05 5.20201e-25)
(0.996462 -0.00691386 7.42833e-23)
(0.996122 -0.000665873 -3.11128e-23)
(1.28559 -0.0781122 4.48312e-22)
(1.02085 -0.0263246 5.43595e-23)
(0.96848 -0.00555013 -1.58838e-23)
(0.99998 -3.94964e-05 -6.05973e-26)
(1.00511 -0.00366854 6.00465e-23)
(1.00086 -0.000317503 5.09478e-24)
(0.981074 -0.00446232 1.61742e-22)
(1.00271 -0.00277199 4.3505e-24)
(0.999381 0.00320396 -4.22561e-22)
(1.00033 -0.00375015 1.2698e-24)
(0.998081 -0.000595233 -3.33812e-23)
(0.982389 -0.000904039 -1.19792e-22)
(1.02603 0.0614227 -7.08347e-22)
(1.00738 0.0663516 2.28485e-21)
(1.05261 0.142067 -1.16067e-21)
(1.09642 -0.0493254 5.54044e-23)
(1.00003 -2.55836e-05 4.18393e-25)
(1.00311 -0.00114573 1.55496e-23)
(0.999696 -0.000711889 -6.64318e-24)
(0.999422 -0.00340689 3.73979e-24)
(0.999535 -0.000417006 -1.24281e-24)
(1.02465 -8.68253e-05 -1.32045e-21)
(1.04346 0.0401087 2.60211e-22)
(0.993904 -0.00292392 5.39263e-23)
(1.09924 -0.154025 1.80838e-22)
(1.02889 0.0911154 5.64009e-22)
(0.997964 -0.00064156 -5.60023e-23)
(0.997277 -0.00251488 -1.64216e-23)
(0.966926 -0.0249547 -1.30569e-22)
(1.28722 -0.0870919 -5.77588e-22)
(0.999533 -6.06691e-05 6.54243e-24)
(1.04173 -0.0095056 1.2786e-22)
(0.992998 -0.00521612 -3.42993e-23)
(1.02499 3.92551e-05 3.03649e-22)
(1.16186 0.0154831 -2.29991e-22)
(0.965916 -0.0212915 7.03298e-22)
(1.00038 -0.00359809 5.29764e-25)
(1.01396 -0.0438405 2.48056e-23)
(1.02722 8.68218e-05 2.28137e-22)
(1.00065 -0.000537184 2.15069e-24)
(0.999966 -1.87636e-05 -3.99248e-26)
(1.26399 0.0592765 2.06583e-23)
(0.999806 -3.14922e-05 -5.9979e-25)
(1.02881 0.13341 1.38862e-21)
(1.1487 0.184258 -1.03039e-21)
(0.942612 -0.0158206 -5.21103e-22)
(1.06771 0.101352 -2.39454e-22)
(1.01848 -0.0114161 -2.59021e-22)
(0.998313 -0.003088 2.67698e-23)
(0.978115 -0.0371525 2.82787e-22)
(1.11675 0.199085 1.29359e-21)
(0.989319 -0.0026415 3.23219e-23)
(1.06821 0.0930713 -2.21985e-21)
(1.06879 -0.046949 -6.59847e-24)
(0.999722 -0.000308331 1.38127e-24)
(1.02896 -0.0274961 -7.21048e-23)
(1.00216 -0.0132582 1.46185e-24)
(1.0632 0.0253751 8.36454e-23)
(1.13168 0.0227691 -2.36129e-22)
(0.999114 -0.00191957 -6.73516e-24)
(1.02801 -0.000517756 -2.28777e-23)
(0.996351 -0.000726859 -4.94758e-23)
(1.0027 -0.00391051 -2.67362e-23)
(1.04204 0.0902125 1.33261e-21)
(0.999365 -0.000517054 -1.38884e-23)
(0.999626 -0.000644472 3.30784e-24)
(0.999933 -7.36682e-05 -2.37918e-25)
(1.01768 -0.0564146 1.19749e-22)
(1.02351 0.0576354 5.65874e-22)
(0.997123 -0.000852657 2.68293e-23)
(0.993733 -0.000371525 -5.0904e-23)
(0.999848 -0.0175774 1.11405e-22)
(1.00819 0.0192392 -5.21466e-22)
(0.92253 0.00790595 1.0912e-21)
(1.00034 -0.000246984 -7.64456e-25)
(1.04906 0.0390168 4.75182e-22)
(1.00407 0.00922368 9.75681e-22)
(0.999706 -0.00029601 3.40865e-25)
(0.957697 -0.0184036 7.28188e-22)
(1.01162 -0.0013845 9.68783e-23)
(1.14271 0.101437 -6.51633e-22)
(0.995239 -0.000888821 -3.91869e-23)
(1.01043 -0.0549105 -8.91912e-24)
(1.01756 0.0681922 -1.83621e-21)
(1.04577 0.0914005 2.05694e-21)
(0.987834 -0.0173484 -6.71078e-23)
(1.02589 0.0699789 -1.10168e-22)
(0.957449 -0.021412 -3.4261e-22)
(1.03915 0.11684 8.49312e-22)
(1.24408 -0.00551671 -2.54478e-22)
(0.95607 -0.00506962 1.03193e-22)
(0.999988 -2.95838e-05 2.02902e-25)
(0.996458 -0.000755267 4.2759e-24)
(1.03861 -0.0135425 -3.55195e-22)
(0.991631 -0.00950269 1.09522e-22)
(1.03196 0.0305165 1.26897e-21)
(0.999998 -2.63118e-06 1.88453e-27)
(1.0183 0.126808 -1.67571e-22)
(0.999261 -0.000110223 -1.31825e-24)
(1.06795 0.0854868 2.0607e-22)
(1.00084 -0.000627675 1.75888e-23)
(0.958706 -0.0316105 4.85748e-22)
(1.06476 0.074938 7.08169e-22)
(1.00003 -2.77761e-05 -4.0293e-25)
(1.00057 -0.00901452 -2.47988e-24)
(0.997332 -0.000627535 -1.03419e-23)
(0.998421 -0.00300464 -2.05751e-23)
(0.976162 -0.00757973 7.4872e-23)
(0.999383 -0.00119659 -3.08447e-24)
(1.03844 -0.0262976 -6.77902e-24)
(1.00325 -0.0631537 -3.14499e-22)
(0.999558 0.00612308 -5.28341e-21)
(1.00046 -7.56185e-05 -5.30291e-24)
(0.995708 -0.0427618 -5.89057e-24)
(1.03877 0.0644035 -8.14273e-22)
(0.995478 -0.00177886 -1.29791e-23)
(1.0527 0.106756 1.35415e-21)
(1.02211 -0.0133909 -5.09939e-22)
(0.998838 -0.0132043 1.82626e-23)
(1.03914 0.0673916 -1.27089e-21)
(1.22881 -0.0125509 4.6765e-22)
(0.957904 -0.00476238 2.7454e-22)
(0.982866 -0.0014981 4.01783e-23)
(1.04719 0.130528 -1.21736e-21)
(1 -3.78657e-05 -7.58509e-28)
(1.00048 -0.000124976 -9.52456e-24)
(1.02588 0.0042108 3.73223e-22)
(0.960565 -0.00474154 -2.5165e-22)
(0.991278 -0.000819599 -8.64884e-23)
(0.999362 -0.000699221 2.24001e-24)
(0.999982 -3.78989e-05 -3.31068e-25)
(0.980815 -0.0260725 1.23187e-22)
(1.05256 0.156484 -1.95193e-21)
(1.01689 -0.0280573 1.34462e-24)
(0.997072 -0.0013882 2.45425e-23)
(0.996066 -0.0004319 -3.83636e-24)
(1.02238 0.0767344 -1.24612e-21)
(0.985825 -0.00924653 1.66483e-22)
(1.02156 0.0639607 -5.16698e-22)
(0.830474 0.0846046 1.52637e-21)
(0.999757 -1.8805e-05 2.17704e-24)
(0.999854 -2.12877e-05 1.33907e-24)
(0.999993 -3.51054e-06 -4.15357e-27)
(0.999972 -3.15769e-05 2.19207e-25)
(1.00003 -0.000201085 -2.46364e-25)
(0.998195 -0.00142917 -4.07826e-24)
(1.06243 -0.0671423 -1.69212e-22)
(1.10349 0.184563 1.92683e-21)
(0.980435 -0.00143295 9.83214e-23)
(1.06742 0.012481 9.86557e-22)
(0.998646 -0.00156265 -8.51698e-24)
(1.01921 -0.000300325 -9.63119e-24)
(0.994849 -0.000909788 3.97846e-23)
(1.00721 -0.0652281 2.23234e-22)
(1.02802 -0.0166981 1.65499e-22)
(1.0304 -0.0633542 -4.35262e-22)
(1.02482 4.88388e-05 -1.17386e-21)
(1.01423 -0.056583 -2.75087e-22)
(1.07497 0.105256 -1.45207e-21)
(0.99342 -0.00676193 -8.11685e-23)
(0.991304 -0.0115754 -4.37983e-24)
(1.11965 -0.00241435 -1.42803e-23)
(1.06145 -0.0238695 4.89246e-23)
(1.08718 -0.0422427 -7.81919e-23)
(1.00021 0.00805413 -1.99438e-21)
(1.02696 0.00206236 -3.85182e-22)
(0.999412 -0.000571392 3.37143e-24)
(1.04097 -0.159495 1.54814e-22)
(0.999687 -0.000302986 2.90294e-24)
(1.06415 0.168891 -2.3419e-21)
(0.875216 0.0201986 -3.79377e-21)
(1.01246 -0.00738896 2.4597e-22)
(0.98137 -0.0017597 7.15231e-23)
(0.997808 -0.000974801 -1.4083e-24)
(0.990757 -0.00808847 2.3144e-22)
(1.00798 0.155981 -4.63865e-21)
(1.11003 -0.176144 1.94885e-22)
(0.998176 -0.00288474 3.82901e-24)
(0.975816 -0.00774124 2.42553e-22)
(0.999246 0.0144233 5.4312e-21)
(1.15634 -0.0129486 3.04474e-23)
(1.00415 -0.00956227 -2.71709e-23)
(1.00021 -0.00910834 -7.37833e-24)
(0.986014 -0.0323418 -7.26857e-23)
(1.04932 0.138564 -2.70061e-21)
(1.08826 -0.088107 -1.41445e-22)
(1.12424 0.132284 6.08707e-23)
(1.24551 0.128648 -4.04615e-22)
(0.972947 -0.0553426 3.39246e-22)
(1.14851 0.106609 -3.02933e-22)
(0.964794 -0.0419203 4.15528e-22)
(0.903386 0.11019 1.32932e-21)
(1.03098 0.0234231 1.27399e-21)
(0.991624 -0.00993266 -2.64258e-24)
(1.0224 -0.00669496 2.23114e-22)
(0.988504 -0.0362883 -7.95127e-23)
(0.996341 -0.00158538 -6.85618e-23)
(0.999837 -0.0013244 1.89954e-25)
(1.02368 0.0601579 -2.26032e-21)
(1.094 0.0713838 -5.49555e-22)
(1.08225 0.0657197 -6.49629e-22)
(1.07446 0.171348 3.85441e-22)
(1.04212 -0.0921528 8.29316e-22)
(0.999381 -0.000585171 1.00513e-25)
(1.02393 0.153679 -2.65393e-23)
(0.999997 -2.59781e-06 8.52183e-28)
(1.01298 -0.0116862 3.29996e-23)
(0.990249 -0.000526028 1.65101e-22)
(1.05007 0.0124765 -5.67977e-22)
(0.99999 -0.000126182 -1.08017e-25)
(1.06452 0.133762 3.10375e-22)
(1.13434 0.139235 -3.5811e-22)
(1.07201 -0.0515732 1.00665e-23)
(0.997973 -0.00351299 -4.44999e-24)
(1.04571 -0.00679754 2.46835e-22)
(1.04431 0.139676 5.11922e-21)
(0.998607 -0.00110166 6.65694e-24)
(0.944279 -0.0223189 -6.96046e-22)
(1.00035 -0.000329868 -1.06013e-24)
(0.999974 -3.12083e-05 -2.35911e-25)
(0.999974 -3.11792e-06 1.88244e-26)
(1.00035 0.0109707 -1.1346e-21)
(1.01062 -0.00679502 1.0673e-22)
(0.997329 0.123406 3.23453e-21)
(0.959645 -0.0044095 2.99122e-22)
(1.00551 -0.0245512 -1.70652e-23)
(0.994489 -0.000513582 4.03808e-24)
(1.11942 -0.0178969 -4.32172e-23)
(0.999179 -0.00186065 1.8548e-23)
(1.00078 0.00734722 -4.17883e-22)
(0.993391 -0.00710243 1.50334e-22)
(0.960955 -0.014377 -4.36122e-22)
(1.00034 -5.94665e-05 -3.56232e-24)
(0.999987 -3.31213e-05 -1.1887e-25)
(1.02692 0.04919 -1.97399e-21)
(1.02605 0.064049 -1.20853e-21)
(1.02705 -0.000825392 3.21639e-22)
(1.10316 -0.185929 -9.42823e-22)
(1.00005 -2.87536e-05 4.42111e-25)
(0.935716 -0.0081752 4.52081e-22)
(0.999948 -0.00269393 -1.2782e-24)
(0.996428 -0.00339358 -6.24056e-23)
(1.00027 0.0035434 -6.26382e-23)
(1.16605 -0.0282245 1.60734e-22)
(1.02081 -0.00112528 -3.90592e-22)
(0.978952 -0.0103379 -6.75735e-23)
(1.11531 0.125129 2.11772e-21)
(0.992874 -0.00536457 -1.78808e-22)
(0.984079 -0.00188234 1.69877e-22)
(1.14436 0.147322 -7.43792e-23)
(0.999674 -0.000152126 -6.13091e-24)
(1.0001 0.0077069 3.39322e-21)
(1.00026 0.007267 -3.894e-21)
(1.00008 -0.000144913 2.56005e-26)
(1.00894 -0.00615034 4.65445e-23)
(1.01513 0.15288 -4.29826e-21)
(0.965576 -0.00247256 -1.04267e-22)
(0.984481 -0.00688745 -5.88065e-23)
(0.99907 -0.000997053 4.3215e-24)
(0.964684 -0.0431354 -5.82436e-22)
(0.982633 -0.00218809 2.35679e-23)
(1.01312 -0.000590033 -5.27109e-23)
(0.967267 -0.0174539 4.53495e-22)
(0.99948 -0.052445 -5.59522e-22)
(0.994886 -0.00379596 -6.50486e-23)
(1.01119 -0.0407589 1.11932e-22)
(1.03086 0.149782 -6.91014e-22)
(0.973299 -0.00926362 1.95515e-22)
(0.999928 -0.00127141 4.18651e-25)
(0.992003 -0.0101413 -6.8995e-23)
(0.985333 -0.0064059 1.03829e-23)
(0.99864 -0.00121456 -1.91949e-23)
(0.999791 -0.00327532 -4.46095e-24)
(0.999424 -0.00144681 -3.99074e-24)
(1.07422 -0.173841 -6.17902e-23)
(0.999193 -0.000806938 -4.96212e-24)
(1.0091 -0.00683774 1.08803e-22)
(1.15563 0.154531 1.65089e-22)
(0.999669 -0.00714083 -4.24249e-24)
(1.13678 -0.173084 1.49033e-22)
(1.00169 -0.00132238 -1.4527e-24)
(1.03599 0.0632872 -1.6895e-23)
(0.999665 -0.000331164 -4.90883e-24)
(1.01763 -0.0222672 6.12038e-23)
(0.979129 -0.0187738 -2.29364e-22)
(0.999757 -4.52997e-05 -2.72573e-25)
(1.00053 -0.00214255 -8.78239e-25)
(1.02131 -0.00137731 -5.15728e-24)
(1.02454 0.000539942 1.38643e-21)
(0.986608 -0.00364053 7.10831e-24)
(1.00882 -0.0243897 2.22454e-24)
(0.977627 -0.0328723 -4.31662e-23)
(0.99998 -2.6319e-06 -2.38228e-25)
(0.999367 -0.0355982 3.00731e-22)
(1.13235 0.120999 5.16575e-22)
(0.999962 -2.97685e-06 -2.05991e-25)
(0.98173 -0.0049678 -2.19491e-22)
(0.998673 -0.00029526 -1.94527e-23)
(0.997973 -0.000979191 2.71095e-24)
(0.960955 -0.0162585 -2.6629e-22)
(0.998735 -0.0013761 1.13021e-25)
(1.17229 0.177903 -7.32919e-22)
(1.00097 -0.00124623 2.47449e-23)
(0.999348 0.0885154 2.03883e-22)
(1.0059 -0.0101184 5.85292e-23)
(0.99355 -0.0303508 1.17138e-22)
(1.04571 0.148279 -4.77871e-22)
(0.99935 -0.00136063 4.24403e-24)
(1.031 0.157916 -2.46977e-21)
(1.00033 -0.000288612 7.94597e-25)
(0.99846 -0.00140873 2.22466e-23)
(0.991589 -0.00160245 8.24703e-23)
(0.999986 -5.66861e-07 1.88725e-26)
(0.99904 -0.000909281 6.9639e-25)
(0.994817 -0.00194726 6.87693e-23)
(0.997717 -0.00112804 1.12989e-23)
(0.982547 -0.00177336 -3.82235e-23)
(0.997529 -0.000156203 -7.8363e-24)
(1.09756 0.174004 4.77413e-21)
(0.978489 -0.018814 3.91684e-22)
(0.944005 -0.0159723 6.88316e-23)
(1.02168 0.0614641 1.34067e-21)
(1.04473 -0.0907065 -1.02815e-21)
(1.08727 0.00434839 6.49123e-22)
(1.04996 0.109816 -2.32344e-21)
(0.993088 -0.00360965 3.75782e-23)
(0.996394 -0.00357772 -3.51851e-23)
(1.01806 -0.00682056 2.45101e-22)
(1.00794 0.12336 1.03128e-21)
(0.993649 -0.00726892 -5.34077e-23)
(1.0139 -0.0548987 2.05013e-22)
(1.04963 0.0496805 -8.63416e-23)
(0.98347 -0.0818709 8.00304e-23)
(0.996276 -0.000383438 1.24631e-23)
(1.00005 -8.15464e-06 8.17587e-25)
(0.999713 -0.00552291 -1.0379e-23)
(0.999875 -0.000299589 1.25113e-24)
(0.999747 -0.00010527 9.63908e-26)
(0.994489 -0.0108195 4.90396e-23)
(0.999897 -1.78161e-05 -3.03916e-24)
(0.999989 -0.00126811 -4.9848e-25)
(0.963178 -0.0322487 -2.98279e-22)
(1.05485 0.0523709 2.35961e-22)
(1.00135 -0.000533484 -1.0891e-23)
(0.98982 -0.00644886 1.70374e-23)
(0.999514 -2.95753e-05 4.09343e-24)
(1.12082 -0.0261904 -1.16671e-24)
(1.01436 -0.0367787 -1.14899e-23)
(0.99734 -0.00210728 -1.47816e-23)
(0.990118 -0.000391059 -1.66452e-22)
(0.999586 -0.00426795 -1.18749e-25)
(1.00962 0.117043 -2.69253e-21)
(0.998726 -0.00145054 1.06336e-23)
(1.00145 -0.00371314 -8.72093e-24)
(1.03277 -0.0180157 -2.84512e-23)
(0.999754 -3.60213e-05 -7.0571e-25)
(1.21593 0.140876 -7.54572e-23)
(1.00142 -4.60364e-05 1.3976e-23)
(1.02774 0.00290649 6.4369e-22)
(0.992108 -0.00645599 6.01626e-23)
(0.998951 -0.00241373 -1.73962e-24)
(0.963453 -0.0399203 -7.56046e-22)
(0.99979 -0.00685581 -6.36341e-24)
(1.01946 -0.0454007 -1.36031e-22)
(0.985422 -0.00161751 -1.14409e-22)
(1.03068 0.0610281 -1.57095e-21)
(0.977871 -0.0248976 -2.26921e-22)
(1.05638 0.0192439 -5.02975e-22)
(0.998542 -0.000305605 2.10202e-23)
(1.08475 0.132948 -1.13783e-21)
(1.04805 0.0471195 8.80393e-22)
(1.15699 0.0970171 1.55836e-22)
(0.986971 -0.00370454 7.09144e-23)
(1.21308 0.125365 3.44505e-22)
(1.00033 -0.00121308 -9.97592e-26)
(0.973795 -0.004739 -6.23226e-22)
(1.2291 0.129329 1.36842e-24)
(1.09137 0.0728477 -4.04812e-22)
(1.00043 -0.0173916 2.4026e-23)
(0.97951 -0.00913721 1.22186e-23)
(1.03761 -0.0126229 1.2862e-23)
(0.978868 -0.0331264 1.35192e-22)
(0.982055 -0.00115875 3.55616e-22)
(0.94587 -0.0222908 6.62023e-22)
(1.14472 0.0938986 1.7708e-21)
(1.00002 -2.0621e-05 1.53674e-25)
(0.990861 -0.011351 -1.74889e-22)
(1.04516 0.0471859 -8.77929e-22)
(0.985799 -0.0507031 -1.01733e-22)
(1.0614 0.0822341 9.37227e-22)
(1.0528 0.0494736 -6.96231e-22)
(0.998404 -0.000844508 -2.53513e-23)
(1.1724 0.051286 2.04641e-22)
(0.973683 -0.0564962 -2.82369e-22)
(1.00044 -2.86757e-05 -1.26925e-23)
(1.00021 0.00575974 2.83127e-21)
(0.979828 -0.00860614 -1.10973e-22)
(1.04085 0.0403281 9.03713e-22)
(1.05969 -0.0648422 5.46947e-23)
(1.03945 0.0382445 -6.02493e-22)
(1.03774 0.145054 2.30392e-21)
(0.999964 -1.5508e-05 7.64118e-26)
(1.01531 -0.0753601 4.03721e-23)
(0.977759 -0.0257242 3.18718e-23)
(1.00656 -0.0132788 7.11232e-23)
(1.06853 0.173121 1.89725e-22)
(1.00057 0.0269457 -5.08524e-22)
(1.01332 0.0432757 -1.04161e-21)
(0.875208 0.0268458 -5.83436e-21)
(1.18519 0.0488822 1.86741e-22)
(1.07308 0.073326 4.69053e-22)
(0.996835 -0.000222348 -5.04189e-23)
(1.12947 0.183062 -6.1975e-22)
(1.05944 0.0927715 2.52986e-21)
(1.275 0.0735736 -1.03855e-22)
(1.00905 -0.0174085 -7.09663e-24)
(1.00033 -0.000225983 -3.12676e-24)
(1.0864 0.0548416 7.58567e-23)
(0.996538 -0.00368779 -6.24143e-23)
(1.02599 -0.00449147 1.13924e-22)
(1.0615 0.0893586 -8.80446e-22)
(1.00005 -0.000209171 3.33779e-25)
(0.99789 -0.0432221 -4.84481e-24)
(1.17235 -0.0304734 -6.80061e-23)
(1.01257 -0.00143929 2.35725e-22)
(0.986376 -0.00162732 2.5087e-23)
(1.01332 -0.00819972 -1.0918e-22)
(1.04266 0.131708 7.30056e-23)
(0.999408 -0.00426665 -9.05681e-24)
(0.998536 -0.024569 1.7829e-23)
(1.10597 -0.0179619 -6.70362e-23)
(0.996841 -0.00572644 3.92459e-23)
(1.03571 0.0363251 -2.71265e-22)
(1.06562 0.0970501 1.58075e-21)
(0.979549 -0.0275122 3.51532e-24)
(0.999735 -0.000599851 -3.31332e-24)
(1.12227 -0.0207281 -1.47401e-22)
(1.00169 -0.0014182 2.20073e-25)
(1.20793 0.109736 5.33291e-22)
(1.21699 0.0686395 -1.2735e-22)
(0.980405 -0.00860688 2.97952e-23)
(1.05619 0.160501 -4.39798e-21)
(1.06327 -0.0602989 1.01967e-22)
(1.03887 0.051674 -2.47185e-21)
(0.996962 -0.00101605 -2.34633e-23)
(0.957099 -0.00543786 -5.66159e-23)
(0.999659 -0.000150882 3.19651e-24)
(1.24287 0.0802531 -1.32288e-23)
(0.988643 0.0212731 3.20565e-21)
(1.20785 0.056617 7.45204e-23)
(1.00188 -0.00150456 -2.24727e-23)
(0.991561 -0.0135954 8.4288e-23)
(1.01007 -0.00427016 -5.87317e-23)
(1.12595 0.120559 -9.48424e-22)
(1.16026 0.0529525 -5.93745e-22)
(1.00348 -0.00271712 6.89195e-23)
(1.00003 -3.73626e-06 3.6841e-26)
(0.998354 -0.00151463 4.88156e-24)
(1.04372 0.0448478 -7.90686e-22)
(0.999902 -1.91817e-05 1.90776e-24)
(1.19842 0.0458428 9.94427e-23)
(1.23231 0.0665899 -1.43535e-23)
(1.01153 -0.00824194 -4.56804e-23)
(1.01191 -0.00952099 1.1159e-22)
(1.2484 0.0634397 5.0427e-24)
(0.973812 -0.0592841 1.68523e-22)
(1.00003 -1.91327e-05 5.45677e-27)
(1.0001 -0.000565771 6.00465e-25)
(1.09389 0.0539348 -6.91887e-22)
(1.02546 0.0726295 -3.07139e-21)
(1.11556 -0.00482003 -8.71181e-23)
(1.2123 0.0421903 6.04152e-23)
(0.976199 -0.0577039 -1.06296e-23)
(1.06595 0.0892767 -6.07717e-22)
(0.885649 0.10178 -2.82166e-21)
(1.03699 0.0383792 1.39376e-21)
(1.02231 0.00852394 1.1144e-21)
(0.99738 -0.00259921 3.98114e-23)
(1.00877 -0.0233851 -7.57918e-24)
(1.00005 -6.34257e-06 -3.20215e-25)
(0.986452 -0.00195262 4.16141e-23)
(1.16838 0.147402 -9.44897e-22)
(1.02475 -0.0464964 8.5729e-24)
(1.00011 -0.000283069 9.05107e-25)
(0.982125 -0.012608 -2.37087e-22)
(0.964528 -0.0196686 -1.51527e-22)
(1.00033 -0.00333519 -2.60705e-25)
(1.04479 0.0523315 -1.9373e-21)
(0.969205 -0.0412708 2.34932e-22)
(0.97852 -0.0097277 1.27688e-22)
(1.00082 -2.60247e-05 -8.75171e-25)
(1.00012 -0.000586286 8.82726e-25)
(0.995771 -0.000566418 -1.23944e-23)
(0.84338 0.0524106 4.90628e-21)
(1.0043 -0.0285566 5.00591e-23)
(0.981632 -0.00464154 5.95095e-23)
(1.00324 0.118297 2.06155e-21)
(0.835616 0.0380454 2.14891e-21)
(1.03557 0.0604712 -1.66347e-22)
(0.958851 -0.00508879 -5.03346e-22)
(1.10206 0.0526326 -1.06862e-21)
(1.03217 0.0344152 -1.84967e-23)
(0.999651 -0.000134883 -1.95026e-24)
(1.11661 0.114133 1.03554e-21)
(1.02557 -0.0378692 6.54975e-25)
(0.976902 -0.0105362 -2.00261e-22)
(1.01726 -0.0291955 9.07776e-24)
(1.04572 0.171317 2.85971e-22)
(0.997412 -0.000333348 -2.05532e-23)
(1.00786 -0.000417339 -9.63605e-23)
(1.23115 0.00392086 -1.26491e-22)
(0.975823 -0.00998374 -8.82363e-23)
(0.996416 -0.0269969 5.41458e-23)
(1.00027 -0.000660818 -6.38772e-25)
(0.981371 -0.024521 -1.25271e-22)
(0.999443 -0.000596234 -3.56901e-24)
(1.03278 -0.0030608 -5.38085e-22)
(0.976756 -0.0014084 -3.10887e-23)
(0.999046 -0.00148398 1.79699e-23)
(1.01567 -0.00801083 -4.71692e-22)
(1.00117 -0.000366177 -1.08476e-23)
(0.994914 -0.000516997 8.38551e-23)
(1.04425 -0.163984 -1.28345e-22)
(1.00726 -0.00166975 1.42971e-23)
(1.09267 0.0217888 -9.88929e-22)
(1.05331 -0.0501706 -3.89973e-23)
(1.00083 -0.00275849 8.88525e-24)
(1.10646 0.0599487 -4.74037e-22)
(0.97738 -0.0349235 2.60789e-22)
(1.0744 0.133609 -2.59157e-22)
(1.266 0.0697947 -3.91163e-25)
(1.01559 -0.00863906 -1.48204e-22)
(1.1164 0.184189 -8.38322e-22)
(0.991085 -0.0512806 1.58472e-22)
(0.999085 -0.000326455 -2.15329e-24)
(1.03497 -0.0166084 -1.38649e-22)
(1.00009 -1.36079e-05 7.60439e-25)
(1.00073 -0.0051765 3.58696e-24)
(0.995892 -0.00321637 -2.06957e-23)
(1.02118 0.0267599 1.01951e-21)
(0.991084 -0.0415997 -3.48024e-22)
(0.933076 0.00353913 2.20882e-21)
(1.00013 -9.99416e-05 -1.23787e-24)
(0.891965 0.0734716 8.95584e-21)
(1.03435 0.0224926 -1.59337e-21)
(1.04447 0.0376424 1.53527e-22)
(0.991843 -0.00644217 2.30625e-23)
(0.995629 -0.0298445 -2.28789e-22)
(1.02303 -0.00020525 -1.93047e-23)
(1.06546 0.0819663 1.34714e-21)
(0.998268 -0.00243564 -4.5831e-24)
(1.13176 0.132897 -2.24179e-21)
(0.999683 -2.39887e-05 3.78387e-24)
(1.12153 0.126639 -1.27078e-21)
(1.00943 -0.000485839 -1.37211e-22)
(1.05546 0.132274 -5.58169e-24)
(0.986301 -0.00784194 1.42251e-22)
(0.962042 -0.0162122 -4.18675e-22)
(1.10361 0.177756 -3.29759e-21)
(0.999696 -0.000265677 4.11278e-24)
(1.04802 0.0344336 8.46309e-22)
(1.03335 0.0364078 2.17496e-21)
(1.02313 0.00102528 -4.3408e-22)
(0.897543 0.00809435 -3.18702e-21)
(1.23216 -0.0215273 -4.14771e-22)
(1.16952 0.0370607 4.00274e-22)
(0.998934 -0.00076278 -6.86229e-24)
(1.00939 0.0870453 2.39857e-23)
(0.999864 -7.26109e-05 2.35536e-24)
(1.02204 -0.00537509 -4.10294e-22)
(1.03156 0.0268516 -7.24422e-22)
(0.99998 -1.91027e-06 1.1875e-25)
(1.0154 -0.0358593 -3.92397e-23)
(1.00101 -0.000879904 -1.16898e-24)
(0.996981 -0.00227194 8.48088e-23)
(0.999803 -4.69319e-05 2.17831e-24)
(1.07229 0.101105 -1.92163e-22)
(0.999923 -0.000703004 -6.65833e-25)
(0.995421 -0.000573681 -7.05457e-23)
(0.999759 -0.000105962 3.14978e-24)
(1.10797 -0.0255528 4.60261e-23)
(1.00158 -4.97895e-05 -3.70103e-23)
(0.997434 -0.0231069 -8.17272e-23)
(0.999988 -3.75328e-05 3.12296e-25)
(1 -2.71235e-05 -3.77363e-27)
(1.17892 0.109946 -2.89322e-22)
(0.99711 -0.00198718 4.64883e-23)
(1.23057 0.158202 -1.65305e-22)
(0.937367 -0.00629945 -1.1506e-22)
(0.999939 -0.00511433 3.08496e-24)
(1.00086 -0.00237081 -2.0378e-23)
(1.1415 0.0826958 -6.56781e-22)
(0.882882 0.0626383 1.16513e-21)
(1.00101 -0.00109323 2.58853e-24)
(0.971965 -0.00163645 1.2543e-22)
(1.00001 -0.000507594 1.52708e-25)
(0.96904 0.142594 2.23752e-22)
(1.00494 -0.00396263 1.20129e-23)
(1.18544 -0.0281677 2.36855e-22)
(0.977807 -0.0392341 -7.00592e-22)
(1.00706 -0.0696092 7.05611e-23)
(0.920991 0.0292879 -5.69142e-21)
(0.967987 -0.0157025 3.41005e-22)
(1.00014 -0.000642082 1.22775e-24)
(0.987517 -0.00136823 -2.01289e-22)
(0.997081 -0.00731798 2.68783e-23)
(1.03285 0.0285116 -2.23605e-21)
(1.01589 0.0701131 1.29746e-21)
(1.0006 -0.0021945 6.66214e-24)
(0.998429 -0.000127906 -4.69441e-24)
(1.00024 -0.000447648 -2.57216e-24)
(0.975557 -0.04229 1.624e-22)
(1.15476 0.0636176 9.34417e-22)
(0.94065 0.0555006 -6.57731e-21)
(0.999899 -0.00132592 4.5911e-25)
(0.999997 -3.41807e-06 -1.46335e-26)
(0.985591 -0.0184868 2.53699e-22)
(1.14138 0.140239 -6.47902e-22)
(0.964157 -0.0205979 3.64853e-22)
(0.999879 -0.000109396 9.25328e-25)
(1.14854 0.0735426 -5.83656e-23)
(1.02078 -0.000580588 3.36591e-22)
(1.01419 -0.000637929 -8.89846e-23)
(1.02443 0.000252427 4.82952e-22)
(0.991156 -0.0139325 -5.86416e-23)
(1.05082 -0.0088115 -2.72749e-22)
(1.03495 0.0049808 -5.04023e-22)
(1.11598 -0.0277379 8.38894e-23)
(0.997822 -0.00082969 -1.22254e-23)
(1.00055 0.0142369 -4.26987e-21)
(1.02772 0.044592 -7.88392e-22)
(0.997666 -0.00225161 -4.13752e-23)
(1.01456 -0.0218286 -2.96524e-23)
(0.999761 -0.00261963 -6.1174e-24)
(0.968318 -0.00205511 -2.67171e-22)
(0.992559 -0.0412833 1.78555e-22)
(1.01523 -0.0298039 -2.74179e-25)
(0.994463 -0.00220722 8.04403e-23)
(0.994797 -0.0149863 2.37547e-23)
(0.996406 -0.00170471 -3.42826e-23)
(1.14808 -0.188903 4.31295e-23)
(1.00034 0.00970182 2.18332e-21)
(0.983875 -0.0483926 3.81994e-22)
(1.20219 0.0954728 -7.04073e-22)
(0.994179 -0.000397201 8.25564e-24)
(1.00019 0.0786595 -9.94662e-22)
(1.12788 0.00327122 2.5343e-23)
(1.01459 -0.0318921 -1.84177e-23)
(1.08052 -0.00259695 -1.89347e-22)
(1.00432 -0.146912 4.1488e-24)
(0.959853 -0.0313261 -5.02621e-22)
(0.966537 -0.037867 2.62037e-22)
(0.926365 0.0746244 -3.69071e-21)
(0.973224 -0.0105763 -3.87663e-22)
(1.21025 0.0827481 -8.8325e-23)
(1.00007 -0.00681347 2.37419e-24)
(0.998469 -0.00328282 1.7363e-23)
(1.00047 -1.50996e-05 -4.59734e-25)
(1.00301 -0.00264253 4.82419e-23)
(0.986211 -0.0070444 3.61314e-24)
(0.999039 -0.042884 -1.49659e-22)
(1.03684 0.0719938 -2.61186e-21)
(1.01317 -0.0124129 -2.29699e-22)
(1.01492 -0.0286265 3.8811e-23)
(1.11685 0.0177939 -1.95162e-22)
(0.987515 -0.00481062 -1.44243e-22)
(0.994967 -0.00943372 -7.74582e-24)
(0.964216 -0.0317306 5.71181e-22)
(1.15307 0.04371 -2.49014e-24)
(1.26849 0.041372 1.45781e-22)
(0.968245 -0.0172868 -2.14568e-22)
(0.965304 0.140659 2.61102e-22)
(1.02283 0.0874574 -1.54537e-21)
(0.904273 0.00367871 4.84167e-21)
(1.15191 0.148352 5.25146e-23)
(0.982707 -0.0348562 -3.67663e-23)
(1.1364 0.102511 1.38581e-22)
(0.999166 -0.000731235 -2.02302e-24)
(0.9998 -0.000166148 -1.08078e-24)
(1.01433 -0.0306418 2.13721e-24)
(0.999238 -0.0367553 -1.22219e-22)
(1.14229 0.18148 1.76465e-21)
(1.28262 0.0660495 -1.40555e-22)
(0.946353 0.00329882 1.54804e-21)
(1.1645 0.0415926 -3.37462e-22)
(0.965437 -0.0134477 4.98578e-23)
(1.06074 -0.0552409 -9.26869e-24)
(1.0135 -0.00761495 1.6367e-22)
(0.999355 -0.0242918 5.70753e-23)
(0.986311 -0.0091296 -4.01072e-23)
(1.02108 -0.00704691 -1.31569e-22)
(0.889878 0.00396366 -6.03141e-21)
(1.11109 -0.0117257 2.86317e-22)
(1.07105 0.0663232 2.64521e-21)
(0.996923 -0.00677763 -4.86018e-23)
(1.21658 0.0116462 9.90564e-23)
(0.998012 -0.000583295 5.00048e-23)
(0.979991 -0.0168673 2.30988e-22)
(1.03155 0.0215694 -1.1621e-22)
(0.999963 -3.75812e-05 -5.84644e-25)
(0.998772 0.00303894 5.65738e-22)
(1.07923 0.0551451 3.30677e-22)
(1.02843 -0.0111607 3.52863e-22)
(1.03035 0.0203466 -1.12924e-21)
(1.05294 0.036724 -1.62618e-21)
(1.15858 0.021084 -7.20465e-23)
(0.993878 -0.00209956 -2.11835e-24)
(0.998376 -0.001433 -1.55165e-23)
(1.01781 0.0862674 6.72748e-22)
(1.06622 -0.0194339 7.41459e-23)
(1.15884 -0.00149834 -3.17315e-22)
(0.995234 -0.000298505 2.16281e-23)
(1.06631 -0.0520227 -1.47058e-24)
(1.0049 -0.00941165 1.59404e-23)
(0.998848 -0.00238138 9.31549e-24)
(1.01574 -0.0277798 -2.58866e-23)
(1.00681 -0.00595614 5.93493e-23)
(0.98766 -0.00288394 1.57022e-22)
(0.978745 -0.0588836 -1.49016e-22)
(0.993951 -0.036385 9.81817e-24)
(1.09442 0.0581239 1.57759e-21)
(0.858934 0.00400618 5.29186e-21)
(0.99841 -0.00166372 4.67392e-24)
(0.983807 0.0525622 -1.38882e-22)
(1.15157 0.0920011 -9.00299e-22)
(1.13784 -0.180229 -6.17645e-22)
(0.999491 0.00463132 7.58799e-21)
(1.12979 0.144583 2.62847e-21)
(0.985112 0.113551 4.40298e-22)
(0.998554 -0.00017308 -1.00998e-23)
(1.01259 -0.0114735 2.58053e-23)
(1.10067 -0.0232282 -1.74126e-22)
(0.997357 -0.00071637 -8.13646e-24)
(1.0001 0.0049498 -9.29972e-22)
(0.9456 0.0776847 3.85848e-21)
(1.01769 -0.0271186 -4.18777e-23)
(0.999965 -1.96404e-05 -5.1842e-25)
(1.00046 0.134572 5.0364e-21)
(1.00002 -4.31778e-05 1.51999e-25)
(0.992294 -0.00665236 -2.49929e-23)
(1.01602 -0.0386808 3.2991e-23)
(0.997673 -0.00105408 -2.21257e-23)
(1.15805 0.00962763 -9.36931e-23)
(0.998656 -0.00148139 8.88868e-24)
(1.22192 -0.0437625 -6.56708e-22)
(0.999846 -0.00112098 -4.41789e-24)
(0.999488 -0.000397729 6.69859e-24)
(1.00612 -0.00558746 -4.28221e-23)
(1.04357 0.0497629 1.06612e-22)
(1.21635 -0.0587713 -4.00658e-22)
(1.00464 -0.0603013 -2.58203e-22)
(1.17799 0.0464579 -2.46247e-22)
(1.01253 -0.0414638 2.04147e-22)
(0.992727 -0.00392413 -7.93866e-23)
(0.991949 -0.00150073 9.48536e-23)
(1.00171 0.0161287 4.59975e-22)
(0.998107 -0.000659668 2.81023e-23)
(0.99295 -0.0399885 -1.64321e-22)
(0.997327 -0.0267397 4.14014e-23)
(1.16577 0.0486923 1.04992e-22)
(1.00574 -0.136343 -1.70032e-22)
(1.06447 0.0177414 -4.39589e-23)
(1.09402 -0.150619 -7.68907e-22)
(1.01599 0.160164 3.65958e-21)
(0.99576 -0.00871012 -5.57487e-23)
(1.22152 0.122523 1.6709e-22)
(0.995663 -0.000237914 5.41486e-23)
(0.993636 -0.0375579 -2.76749e-22)
(1.07533 0.0609209 4.81686e-22)
(1.2171 0.0969463 -1.6616e-22)
(0.99539 -0.034898 2.88263e-22)
(1.003 -0.0113189 -9.11735e-24)
(0.995623 -0.00310855 1.67192e-24)
(0.995124 -0.0360524 -1.41444e-22)
(1.00028 -0.00784953 1.9579e-24)
(1.06779 0.0214092 6.22709e-22)
(0.999987 -2.76905e-05 -1.0372e-25)
(1.20877 -0.0731515 -6.15058e-22)
(0.991193 -0.0538698 3.86928e-22)
(0.995649 -0.000524619 2.7604e-23)
(1.00106 -0.000819563 -4.14855e-24)
(1.08951 -0.0384997 1.13588e-22)
(1.15346 -0.0236275 2.44234e-24)
(0.986505 -0.0353878 1.39566e-22)
(1.00044 -5.66718e-05 -4.0023e-24)
(1.02845 0.0654486 -1.47384e-21)
(0.967438 -0.0359636 -2.13475e-23)
(1.213 0.149884 -3.73111e-22)
(0.967843 -0.0396248 2.61454e-23)
(1.01366 -0.0181352 -4.14581e-23)
(1.21046 0.134767 -3.20617e-22)
(0.989654 -0.0361429 2.89326e-22)
(0.999937 -0.000116032 -2.47462e-25)
(1.00096 -0.00511736 -8.37937e-24)
(1.0835 -0.0417351 -4.96755e-24)
(1.14454 -0.0435482 -2.17327e-22)
(1.12325 0.187515 1.64408e-22)
(0.917673 0.120687 3.67639e-22)
(0.996785 -0.0001673 5.66197e-23)
(0.999899 -0.00112285 1.943e-24)
(0.982067 -0.0629231 1.53437e-22)
(1.26824 -0.0827078 1.07229e-21)
(1.00097 -0.00231491 3.6844e-24)
(1.07916 -0.06601 1.07092e-22)
(1.04288 0.0356898 -1.36273e-22)
(0.999841 -8.77097e-05 -9.39727e-25)
(1.11544 -0.00969117 -5.17136e-22)
(1.08013 0.136491 1.1768e-21)
(1.10892 -0.0334356 6.88431e-23)
(1.02107 0.0124815 -2.60467e-22)
(1.10486 -0.0222424 -3.1119e-23)
(1.04876 -0.00625267 -5.38348e-23)
(1.01279 0.0408554 -1.18197e-21)
(1.00109 -0.00111206 7.26045e-24)
(1.06936 -0.0606294 1.33238e-22)
(1.18985 -0.0968475 -2.6126e-22)
(1.05139 -0.015035 -4.54691e-22)
(1.15479 0.0705216 -1.14592e-22)
(1.11066 0.058226 -1.62919e-21)
(0.988628 -0.0182423 -3.57651e-23)
(0.99976 -0.000259694 5.3608e-24)
(1.00567 -0.00192352 -4.93373e-23)
(1.13876 -0.0528112 -1.14349e-22)
(0.979699 -0.0192799 3.55231e-22)
(1.04109 -0.0140924 2.39254e-22)
(0.937106 -0.0132714 -1.16071e-21)
(1.04995 -0.163271 -1.17819e-23)
(1.00146 -0.00353712 1.19289e-23)
(0.998911 -0.00220879 4.38788e-24)
(1.01157 -0.00910667 -2.03508e-22)
(1.00687 -0.0631098 -8.5617e-23)
(0.999989 -3.36229e-05 -4.08274e-26)
(0.995577 -0.0154498 -8.83198e-23)
(0.98375 -0.0693746 -1.14654e-22)
(1.19085 0.0435399 1.84611e-23)
(0.986656 -0.00947248 -6.13308e-23)
(0.989387 -0.00215393 6.77363e-23)
(0.97745 -0.0435222 -2.01679e-22)
(1.00494 -0.0385807 -1.10757e-22)
(1.00075 0.0152512 7.50072e-22)
(0.975749 -0.0620508 1.61312e-22)
(0.983969 -0.00470086 3.29052e-23)
(1.07144 -0.0448789 3.55145e-23)
(0.946521 -0.0133046 -2.79293e-22)
(1.0171 -0.0376663 5.28432e-23)
(1.13035 -0.0599335 5.63403e-23)
(1.16898 -0.115333 -3.28708e-22)
(0.999823 -0.000458042 1.40776e-25)
(0.998543 -0.0722069 3.51452e-22)
(1.01374 -0.040632 -1.19266e-22)
(0.987764 -0.0352987 -4.4332e-23)
(0.999483 -4.56424e-05 -1.60412e-24)
(1.00672 -0.00989909 -5.34372e-24)
(0.998979 -0.00975156 2.34978e-23)
(1.1131 0.119165 -8.24929e-23)
(1.00079 -0.00167012 -2.824e-24)
(1.00457 -0.00969686 1.77952e-23)
(0.981793 -0.00190979 -1.09389e-22)
(0.999051 -0.000322171 9.82481e-24)
(1.00639 -0.0173872 -1.40062e-23)
(1.28132 -0.0980883 -9.94704e-22)
(1.0065 -0.0107399 1.67104e-23)
(0.998369 -0.000789407 -1.22117e-23)
(1.02221 -0.044557 6.78855e-23)
(1.10945 -0.0410693 -1.5009e-23)
(1.15795 -0.122808 -8.09878e-22)
(0.999029 -0.026068 -9.31424e-23)
(1.00949 -0.0659384 -1.73228e-22)
(0.981516 -0.0646057 4.42579e-23)
(1.05826 -0.0505636 3.67358e-23)
(1.07486 0.0649344 1.97887e-22)
(0.968622 -0.0531538 7.80623e-22)
(1.02285 -0.0461856 -7.3533e-23)
(0.974335 -0.0112831 -3.40952e-22)
(1.14623 -0.128912 4.19265e-22)
(0.997975 -0.0273326 -9.0929e-23)
(1.23384 0.0773353 1.34641e-24)
(1.23825 0.124549 -2.68092e-22)
(1.06348 -0.0570029 -2.03058e-23)
(0.946788 -0.0260711 6.38533e-22)
(1.04871 -0.0494677 -3.68932e-23)
(1.22604 -0.0284516 -1.5676e-22)
(1.20904 0.0652188 3.05514e-23)
(0.986128 -0.0762774 -2.72461e-22)
(0.987778 -0.00320682 -1.36114e-22)
(1.02403 0.00536891 1.31089e-21)
(0.999948 -0.000113802 1.14743e-24)
(0.996842 -0.0285815 1.87502e-22)
(1.10718 -0.0766383 3.65395e-24)
(0.997184 -0.00683625 3.06892e-23)
(1.02537 -0.0330144 5.42825e-23)
(0.820642 0.0712297 -7.79039e-21)
(0.972982 -0.0579973 -7.59424e-23)
(1.01563 -0.0711493 1.19472e-22)
(0.998882 -0.0270174 1.20928e-22)
(0.953805 -0.028367 -6.87955e-22)
(1.20609 0.118766 5.56946e-23)
(1.11066 -0.139392 -4.30791e-22)
(1.06617 0.071169 -1.56562e-21)
(1.11654 -0.172268 4.10026e-22)
(0.994719 -0.0675914 -2.71804e-22)
(0.988202 -0.00269377 -5.8248e-23)
(0.964436 -0.0392765 4.23451e-22)
(1.02746 -0.0484614 5.23969e-23)
(1.05929 -0.166915 -1.21156e-21)
(0.996003 -0.00168124 5.19997e-24)
(0.997773 -0.028294 -6.77567e-23)
(0.996599 -0.0295747 1.6962e-23)
(1.09187 -0.0838458 -2.47604e-22)
(1.00013 -0.000108207 1.27754e-24)
(1.07247 -0.0625231 -1.21464e-22)
(1.10398 -0.172461 1.9371e-22)
(1.00658 -0.00191745 -4.47426e-23)
(1.00858 -0.0179699 -1.66376e-23)
(1.0116 -0.141571 7.98878e-22)
(1.00001 -0.0248615 -3.84167e-23)
(1.03513 -0.0311514 -4.29602e-23)
(1.00272 -0.0576381 2.0943e-22)
(1.08881 -0.14089 6.01019e-22)
(1.06645 -0.0240525 -3.19714e-22)
(1.21887 0.0355668 -3.97129e-23)
(0.989488 -0.0837519 -4.8762e-22)
(1.19544 -0.158897 2.89127e-22)
(0.99987 -0.0257332 -7.09924e-23)
(0.975502 -0.0591661 3.01344e-22)
(1.08368 -0.0866737 -5.51918e-24)
(0.992755 -0.000451812 5.29939e-23)
(0.999457 -0.0010197 -7.68387e-24)
(1.2 0.0537326 -2.54593e-23)
(0.996497 -0.0345412 9.77048e-23)
(1.23177 0.108981 1.92797e-22)
(1.02528 -0.150744 2.09139e-21)
(1.001 -0.000225708 1.34913e-23)
(1.02905 0.0875992 -3.8233e-21)
(1.23943 0.0603854 5.26477e-23)
(0.990759 -0.0277494 -3.34101e-22)
(0.945644 0.118844 7.10206e-21)
(1.02302 0.000527209 -3.53128e-22)
(0.996594 -0.000491852 -1.28065e-24)
(0.997365 -0.0958925 -6.83184e-22)
(1.06853 -0.139065 6.91606e-22)
(0.999994 -3.63746e-06 -2.026e-26)
(1.02717 -0.0788337 5.05433e-23)
(0.999404 -0.000646227 3.80334e-24)
(1.08265 0.0529717 5.30696e-22)
(1.04241 -0.0855379 -4.22933e-22)
(1.06165 -0.0877795 2.29873e-24)
(0.993228 -0.00380693 -1.86405e-23)
(1.20989 0.0918055 6.29805e-22)
(0.992014 -0.00173842 1.80425e-23)
(1.22413 0.0631374 -5.14611e-23)
(1.08499 -0.111441 1.67227e-22)
(0.98498 -0.00627962 -3.278e-23)
(0.992561 -0.000746064 -1.55814e-23)
(1.0434 -0.13089 2.26678e-22)
(1.00382 -0.104228 3.19123e-22)
(1.20424 0.0399884 -8.85747e-23)
(1.06356 -0.0505798 7.07648e-24)
(0.988995 -0.0408195 -2.19439e-22)
(1.02223 -0.0959566 -5.24028e-22)
(1.0297 -0.124033 -1.16915e-21)
(1.12625 0.108797 1.30669e-22)
(1.01766 -0.116919 1.04284e-21)
(1.00262 -0.00211161 1.3907e-23)
(1.02619 -0.0342998 1.62433e-23)
(1.01863 -0.00715521 -1.72814e-22)
(0.975321 -0.0563803 -1.70734e-22)
(0.992765 -0.00148997 -6.51764e-23)
(1.03201 -0.0860113 -4.95044e-23)
(1.07869 -0.140257 5.69482e-22)
(1.00364 0.0591975 -1.48137e-21)
(0.882796 0.00837306 8.18609e-21)
(1.12966 -0.170617 -1.78511e-21)
(1.05028 0.00697564 -6.25147e-22)
(0.999042 -0.012726 1.40779e-23)
(1.00541 -0.00485561 -9.86843e-23)
(0.996715 -0.0334233 2.48506e-23)
(1.01189 -0.0540328 1.38259e-22)
(1.01673 -0.0362662 -2.86253e-23)
(0.982308 -0.0680187 -1.63238e-22)
(1.02127 -0.0121786 2.09195e-23)
(1.06083 -0.0521413 -1.86131e-23)
(0.973099 -0.0607783 2.78939e-23)
(0.989182 -0.0223175 -2.0367e-23)
(1.25533 0.0566537 6.7271e-24)
(1.05092 -0.0511982 1.10411e-22)
(1.17977 -0.106701 -1.82066e-22)
(0.825908 0.00520826 1.9331e-21)
(1.0815 0.0308716 -1.76302e-21)
(0.999886 -0.000284804 -8.31129e-26)
(0.997292 -0.000781865 -5.38732e-24)
(1.01153 0.0444795 5.52513e-22)
(1.16192 0.00388665 4.47574e-22)
(1.05695 0.0462688 -1.4048e-21)
(0.976439 -0.0605428 -7.97159e-23)
(1.02358 0.00115116 1.3922e-21)
(0.991577 -0.087794 -2.7112e-22)
(1.06013 -0.0616147 7.10476e-23)
(1.00022 -0.000462442 2.43787e-24)
(1.00064 -0.00141509 -6.15804e-24)
(0.995546 -0.00061472 5.33889e-23)
(0.999441 -0.0540993 4.61106e-22)
(1.17344 0.0584808 3.02753e-24)
(1.05757 -0.0596466 2.86904e-24)
(1.04611 0.0326973 4.04007e-23)
(0.997148 -0.00110514 -1.56537e-24)
(0.966263 -0.0134097 1.20969e-22)
(1.08986 0.0522921 -8.61123e-22)
(0.99992 -9.0757e-06 -1.84715e-24)
(1.05653 -0.0658281 -1.04532e-22)
(0.998801 -0.00134739 9.419e-24)
(1.0252 -0.0177508 -5.0253e-22)
(1.04102 0.0448911 -8.8953e-22)
(0.985777 -0.00174815 1.20427e-23)
(1.03633 -0.127643 -9.94197e-22)
(1.06975 0.189118 3.33757e-22)
(1.00011 -0.000193306 6.14281e-25)
(0.967535 -0.0371782 -3.83071e-22)
(0.993711 -0.00122227 -1.55666e-23)
(0.998779 -4.16602e-05 -2.29423e-24)
(0.999616 -8.23172e-06 -3.66334e-24)
(1.08143 0.018314 7.41061e-22)
(1.0695 -0.16986 2.77771e-22)
(0.987706 -0.0799411 -7.12443e-22)
(1.14001 0.0891374 5.089e-22)
(1.0001 -1.06159e-05 1.35084e-24)
(1.01241 -0.112683 1.02612e-22)
(0.999472 -3.38443e-05 5.89372e-24)
(0.986761 -0.00776099 -2.46056e-22)
(0.992813 -0.00258216 2.89951e-23)
(1.00039 -0.0999562 4.61053e-22)
(0.958838 -0.0183176 4.33135e-22)
(1.23439 0.0114061 6.81914e-23)
(1.22328 0.112633 -1.11732e-22)
(0.907416 0.116298 6.58174e-22)
(0.998098 -0.00208527 -1.05556e-23)
(1.03548 0.0987339 7.49249e-22)
(1.00075 -0.000676112 8.49347e-24)
(0.964386 -0.0380061 -5.83037e-23)
(0.971704 0.00321024 4.20611e-21)
(1.01443 -0.00846814 -2.17122e-22)
(1.05418 -0.0636263 3.71103e-23)
(0.968598 -0.0274893 1.67277e-22)
(0.980628 -0.0166178 -9.30005e-23)
(1.22115 0.00399477 -1.73121e-22)
(1.02879 -0.00963119 7.73726e-23)
(1.05197 -0.00558444 -6.21968e-22)
(0.988938 -0.000534733 7.91282e-23)
(0.960749 -0.00565509 -1.34269e-22)
(1.02038 -0.00202053 5.11702e-23)
(1.04924 -0.0119141 1.13655e-22)
(1.00051 -0.00118577 6.37386e-24)
(1.00048 -0.00330098 6.56398e-24)
(0.999444 -0.00127575 -6.38192e-24)
(0.987211 -0.00127599 1.39906e-22)
(1.06142 0.0429739 -2.91891e-23)
(1.00003 -2.3032e-05 1.77001e-25)
(1.27537 0.0323957 1.50223e-22)
(0.986044 -0.0101076 -2.92534e-23)
(1.00036 -0.000376852 7.62672e-24)
(1.03681 -0.0833718 2.46505e-22)
(1.08043 0.0124367 8.621e-22)
(1.00305 -0.00376987 -2.42808e-24)
(1.0257 -0.0293524 -4.69056e-23)
(1.20093 0.103695 3.28878e-22)
(0.996548 -0.0689278 -1.37199e-22)
(0.987059 -0.00809819 1.81905e-23)
(1.22342 -0.0526272 1.30333e-21)
(0.999223 -0.00172164 1.3256e-23)
(1.02054 -0.0134598 -7.99881e-23)
(1.07834 0.0435985 -5.15059e-22)
(1.04668 -0.00396891 -9.63874e-22)
(0.999158 -0.00077804 -5.45785e-24)
(0.998834 -0.00114541 -8.80917e-24)
(0.998404 -0.0028707 -6.3453e-25)
(1.0248 -0.000120545 6.77361e-22)
(0.980522 -0.0181519 -1.56921e-22)
(1.02601 -0.0317863 -8.46329e-23)
(1.02176 -0.00104436 1.66725e-24)
(0.998549 -0.00305295 -8.90896e-25)
(1.02187 -0.0108498 -1.42267e-22)
(1.01073 -0.0198855 -2.44376e-24)
(1.01536 -0.053729 5.26756e-23)
(1.18047 0.0613174 -6.12334e-22)
(1.21647 0.027141 -5.14811e-23)
(1.02229 -0.00172431 -1.3024e-22)
(1.0369 -0.0151994 -7.23488e-23)
(0.863817 0.0967083 8.82155e-22)
(1.00001 -1.68598e-05 -3.38692e-26)
(1.00107 0.0138845 -7.90586e-23)
(1.08192 0.0244211 -7.65416e-22)
(1.04026 -0.0116437 -3.42976e-22)
(0.998184 -0.00303039 -2.17608e-23)
(1.00046 -0.00033051 4.67551e-25)
(0.994204 -0.00056287 -4.45488e-24)
(1.17908 -0.0397889 3.14627e-23)
(1.02691 -0.0607395 -7.31287e-23)
(1.02269 -0.00554152 7.63567e-22)
(1.02776 0.00112504 8.08167e-22)
(0.923901 0.0875522 2.14973e-21)
(1.02403 -0.00570174 5.89594e-22)
(0.998051 -0.000979242 -5.93776e-24)
(1.0408 -0.0636178 -3.10536e-22)
(1.02826 0.0599254 2.14486e-21)
(1.03808 -0.0638134 5.73057e-23)
(1.07817 0.18148 -9.57661e-22)
(0.978475 -0.035097 -1.3728e-23)
(1.08142 0.00909276 -1.10718e-22)
(1.02941 -0.0609908 3.81655e-22)
(0.995861 -0.000482232 -2.57231e-23)
(0.991692 -0.0277379 -6.31499e-23)
(1.077 0.00171304 7.77716e-22)
(1.00003 -5.71175e-05 1.61255e-25)
(1.00594 -0.00593818 -7.56282e-23)
(1.00084 -0.0245147 -4.39821e-24)
(0.962278 -0.0393041 3.21241e-23)
(1.15404 0.0502646 -1.94002e-22)
(1.03274 -0.0635806 9.0285e-23)
(0.995296 -0.00205367 1.84195e-23)
(1.07901 0.00685108 -6.09113e-22)
(0.983142 -0.0471785 -1.65289e-22)
(1.01732 -0.0544298 -2.12239e-22)
(1.08357 0.021066 -1.57628e-21)
(1.05416 0.00628683 -6.03445e-22)
(0.965265 -0.0323793 3.13744e-22)
(0.998185 -0.00214805 1.80681e-24)
(0.822454 0.0898461 4.98733e-22)
(0.968024 -0.0408283 -3.08072e-22)
(1.03463 -0.0144949 2.46031e-22)
(0.996006 -0.00846956 1.06313e-22)
(1.05433 -0.00819154 -3.56359e-22)
(1.00054 -0.000139246 2.22652e-24)
(0.955465 -0.0124772 1.87923e-22)
(0.984464 -0.00201456 -8.09386e-23)
(1.03099 -0.0168876 -2.23631e-22)
(0.981614 -0.00576973 2.59491e-22)
(0.971222 -0.0215319 1.67508e-22)
(1.01529 -0.00129385 1.76321e-22)
(1.09744 0.0509733 1.18371e-21)
(1.00008 -0.00106041 -1.13971e-25)
(0.999569 -7.02786e-05 3.57373e-24)
(1.02515 -0.0305741 5.10515e-23)
(1.01361 -0.00933056 -2.52916e-22)
(1.03295 -0.0158962 4.6439e-22)
(0.997625 0.0526539 2.17922e-21)
(0.998731 -0.000183162 7.26261e-24)
(1.14431 -0.0500696 2.35187e-22)
(1.07741 -0.00139929 5.13474e-22)
(0.9891 -0.0124541 1.91045e-22)
(1.03407 -0.0284733 4.90413e-23)
(1.00085 -0.000796242 4.54538e-24)
(1.01174 -0.0518611 -1.7244e-22)
(1.02869 0.00182107 5.44117e-22)
(0.935926 0.116234 -4.76597e-21)
(1.0701 0.070267 1.9441e-22)
(1.00616 -0.0048924 4.11964e-23)
(0.96664 -0.0272727 -2.48894e-24)
(1.00083 -0.00363335 -2.97205e-25)
(0.965485 -0.028876 -1.17214e-22)
(0.987103 -0.0397443 -8.06219e-23)
(1.00093 -0.0236556 -3.23958e-23)
(0.977783 -0.0575618 2.43398e-22)
(1.01609 -0.0335774 -1.14904e-23)
(0.972698 -0.052951 2.67666e-22)
(1.00281 -0.0594038 1.46159e-23)
(1.02427 -0.0495983 2.2555e-25)
(1.17804 -0.0256814 3.50342e-23)
(1.02504 -0.0051506 3.07131e-22)
(0.983049 -0.00232124 -2.95891e-22)
(1.07491 -0.00300989 -3.41238e-22)
(1.00102 -0.0550231 4.52858e-23)
(1.07733 0.0957271 8.3443e-22)
(1.04904 -0.00808007 4.98521e-22)
(1.00107 -0.000139751 1.55058e-23)
(0.964304 -0.0305052 -1.17044e-22)
(0.995528 -0.0103621 1.49133e-23)
(0.994027 -0.00114067 -1.759e-23)
(0.960915 -0.0320854 1.98262e-22)
(1.05863 -0.0200555 9.50181e-23)
(1.0031 -0.00026584 8.12846e-23)
(0.999701 -0.000336491 -6.55767e-27)
(0.980736 -0.00912258 -5.84057e-23)
(0.999525 -9.20318e-05 -4.8026e-24)
(0.999816 -0.00116431 3.89115e-24)
(1.01995 0.0261188 -1.03382e-21)
(1.0459 -0.00848635 -1.84027e-22)
(0.972518 -0.00506206 3.59833e-22)
(0.995797 -0.000683996 3.71674e-23)
(1.07722 0.0720474 -1.87832e-21)
(1.06557 -0.014851 -6.40943e-22)
(1.00129 -0.0189222 2.15091e-23)
(0.999044 -0.00039141 3.4603e-25)
(1.04469 -0.0257461 2.01691e-22)
(1.0156 -0.0151179 3.50935e-23)
(1.02526 0.0534066 6.21291e-22)
(1.03498 0.0874609 9.05933e-22)
(0.992361 -0.00991301 7.29539e-23)
(0.99823 -0.00407851 -4.55393e-24)
(0.978605 -0.00108063 -1.93452e-22)
(0.994139 -0.0919896 -8.71821e-22)
(0.997597 -0.000187132 1.15373e-23)
(1.02532 0.0440937 -3.38048e-22)
(1.16566 -0.122281 1.87042e-22)
(1.05238 -0.0075322 6.74413e-22)
(1.00062 -0.00383898 -5.8276e-24)
(0.985014 -0.0857086 -7.20047e-23)
(0.997964 -0.000193214 -1.07255e-23)
(0.99992 -0.0001531 -2.2487e-25)
(1.00247 -0.0212958 5.66863e-23)
(0.960921 -0.0113439 -5.64265e-22)
(0.99813 -0.000365733 9.23114e-24)
(1.0232 -0.0105884 1.75051e-22)
(0.988894 -0.00231505 -9.269e-23)
(0.995341 -0.0134684 3.45679e-23)
(1.00066 -0.00866231 2.80784e-24)
(1.03538 -0.0294585 -4.91305e-23)
(0.986793 -0.00205343 6.27648e-23)
(1.06462 -0.0173455 1.67123e-22)
(1.02346 0.0682003 1.81534e-21)
(1.02049 -0.0110218 -3.54607e-23)
(1.05348 -0.167709 8.4302e-22)
(1.00173 -0.0224886 -4.67687e-24)
(1.00042 -0.000299638 2.66982e-24)
(1.0406 -0.0157884 -3.34816e-22)
(1.0032 -0.0234688 -7.98481e-23)
(0.974752 -0.0119531 4.60798e-23)
(1.00194 -0.00139752 3.45304e-23)
(0.99815 -0.000426809 1.50796e-23)
(1.06327 0.0224122 1.67579e-22)
(1.02963 0.0175313 -8.95947e-23)
(0.948358 -0.0258426 -2.9394e-22)
(1.01028 0.0375508 -1.86045e-21)
(1.22844 -0.0374617 6.16297e-22)
(1.04706 -0.0056772 4.3496e-22)
(0.986975 -0.00149648 -1.37962e-22)
(0.980876 -0.0615326 -3.14909e-22)
(0.962232 -0.0380833 3.4101e-23)
(0.974437 -0.00494122 4.51561e-22)
(1.01231 -0.0309841 -3.60054e-23)
(1.00199 -0.000573317 -2.6425e-23)
(0.986044 -0.00152056 9.36773e-23)
(1.05748 -0.0221536 4.39896e-23)
(1.09778 -0.175693 -1.51459e-21)
(0.999463 -0.00107189 6.4718e-24)
(0.986022 -0.00749006 -4.5948e-23)
(0.99939 -0.00125591 6.86723e-24)
(0.999651 -0.0122102 4.96965e-23)
(1.02234 0.0124606 -5.58268e-22)
(1.02269 0.00147035 -3.23978e-22)
(1.06806 -0.111365 -3.37747e-23)
(1.01176 -0.00859963 5.57817e-23)
(0.995042 -0.0154369 -7.15583e-23)
(0.990282 -0.00545263 3.93485e-24)
(0.9962 -0.00914249 7.19725e-24)
(0.991911 -0.000684793 2.30675e-24)
(1.00083 -0.000913195 4.50869e-24)
(1.0507 0.0165564 -1.21107e-21)
(0.998883 -0.00118561 3.43475e-25)
(1.19379 0.0589675 4.02375e-22)
(1.08356 -0.143552 -1.14196e-21)
(0.999983 -3.0071e-06 -2.50736e-25)
(0.999661 -0.000699116 5.98645e-24)
(0.967837 -0.0257144 -5.64192e-22)
(0.98461 -0.0210025 -1.15202e-22)
(1.00694 -0.00144965 7.23226e-24)
(0.98692 -0.00854441 -1.51133e-22)
(0.998396 -9.9295e-05 -8.59441e-24)
(1.00005 -6.78764e-06 -5.44864e-25)
(1.02742 -0.00894434 -3.65396e-22)
(1.02033 -0.00146457 3.51065e-22)
(0.971446 -0.00438886 1.22675e-22)
(1.03632 -0.012998 -1.66036e-23)
(1.04 -0.0130962 2.97545e-22)
(0.99199 -0.035797 -3.18646e-23)
(0.997665 -0.0181967 -8.29612e-23)
(1.06208 -0.0176675 -1.34733e-22)
(0.993145 -0.00242449 1.94307e-23)
(1.01947 -0.0285315 5.22391e-23)
(1.1562 0.032734 -1.50494e-22)
(0.996695 -0.000526151 3.07645e-24)
(0.989316 -0.0862388 3.88391e-22)
(0.998372 -0.00249383 -1.2345e-23)
(0.999727 -0.000271653 7.84032e-24)
(1.04314 -0.0269532 2.88801e-22)
(0.965377 -0.0300225 9.96331e-23)
(1.02478 0.00046207 2.76164e-22)
(0.99929 -0.00109923 -4.53961e-24)
(1.01353 -0.0391282 5.12106e-23)
(0.99394 -0.00711239 3.31407e-23)
(0.998957 -0.00639725 -1.53996e-23)
(0.999298 -0.00174465 -5.13972e-24)
(1.27562 -0.0635742 2.86864e-22)
(1.02772 -0.0989877 2.25791e-22)
(0.978895 -0.0362054 -3.08327e-22)
(1.03902 -0.131411 1.06018e-22)
(1.00003 -2.50818e-05 -1.23224e-25)
(0.97974 -0.0141729 9.27785e-23)
(1.17667 -0.11442 1.34843e-21)
(1.00015 0.00508815 2.24234e-21)
(0.999757 -0.000580352 2.65654e-24)
(1.06906 -0.0114901 -4.20019e-22)
(1.02411 -0.00459266 6.185e-22)
(0.972144 -0.0211758 3.01313e-22)
(1.19475 0.0668578 -5.39823e-22)
(0.987511 -0.0823377 3.14597e-22)
(0.997315 -0.000868848 -3.83239e-23)
(1.01359 -0.116316 -6.45794e-22)
(0.999878 -0.0102449 4.34002e-24)
(1.00089 -0.103147 2.12864e-22)
(0.979348 -0.0312596 1.63069e-22)
(1.0135 -0.0216349 -4.7763e-23)
(0.997251 -0.00112022 -6.15215e-24)
(0.993486 -0.00224199 -3.1495e-23)
(0.944677 -0.0117299 -6.45405e-22)
(1.02584 -0.00343125 7.99964e-23)
(1 -1.15054e-05 -3.09249e-26)
(0.968972 -0.00502697 -2.78366e-22)
(0.99638 0.119339 -4.18406e-21)
(1.00614 -0.0223363 5.92576e-24)
(0.999954 -0.00010908 -1.19082e-24)
(0.966535 -0.028405 4.04253e-22)
(1.02124 0.0565557 4.22665e-22)
(1.00013 -0.00105076 -1.67919e-24)
(0.997855 -0.00361436 -1.80783e-23)
(1.00038 -0.00975642 -1.11333e-24)
(0.998282 -0.00281547 1.71111e-23)
(1.01192 0.0916159 1.01598e-21)
(0.92687 0.0424409 -3.0197e-21)
(0.99011 -0.0350726 -2.60823e-22)
(0.99434 -0.00204203 1.1092e-23)
(0.999603 -1.63784e-05 4.33948e-24)
(1.1232 -0.17553 1.14594e-21)
(0.997428 -0.000425814 5.00266e-24)
(0.982131 -0.00162732 1.00715e-22)
(1.00012 0.00421112 -8.09897e-22)
(1.02966 0.0270792 -3.90945e-23)
(0.999489 -0.000101351 1.8904e-25)
(1.04799 -0.0245674 4.94665e-23)
(1.02989 -0.00720068 7.62046e-22)
(1.03205 -0.0045853 7.54288e-22)
(1.01375 -0.00867902 1.28484e-23)
(0.997035 -0.00633177 -4.23685e-23)
(0.967564 -0.0191098 -3.13996e-22)
(0.99169 -0.0113073 5.94854e-23)
(0.982544 -0.0866237 -4.72647e-22)
(1.00671 -0.0162167 5.98464e-23)
(0.968711 -0.00626852 -3.60544e-22)
(0.972881 -0.0217451 7.67137e-23)
(1.00143 -0.00108599 -7.57505e-24)
(1.00551 -0.0164353 -6.68335e-24)
(1.00468 -0.0375246 1.07547e-22)
(0.989181 0.0785001 -4.88302e-22)
(1.00168 -0.0232944 2.44066e-23)
(1.04874 0.0293392 1.532e-21)
(1.05506 -0.0219993 -2.90775e-23)
(1.02093 -0.0056355 -1.1896e-23)
(1.08023 0.037402 -1.553e-21)
(1.01225 0.00593964 2.3771e-22)
(0.995398 -0.000448617 5.39105e-23)
(0.999746 -0.000127791 -1.08518e-24)
(0.994819 -0.000759337 -4.37868e-23)
(1.03317 -0.0333657 8.66767e-23)
(0.999765 -0.000116777 -2.21084e-24)
(0.999259 -0.00188368 -1.11397e-24)
(1.02502 -0.0040581 2.41669e-22)
(1.07733 -0.0435552 -3.59112e-23)
(0.999904 -0.000214579 2.02139e-24)
(0.999505 -8.62617e-05 2.27682e-24)
(1.00077 -0.00218902 4.09875e-24)
(0.96716 -0.0238911 4.2257e-22)
(1.01773 -0.0352649 -1.94319e-23)
(0.978052 -0.0219686 9.5719e-23)
(0.999612 -0.00996991 1.42258e-23)
(0.995985 -0.0467029 8.43452e-25)
(1.0151 -0.0211453 7.62798e-23)
(0.999654 -0.0035405 -2.67568e-24)
(1.01539 -0.0266726 -2.5736e-23)
(1.03887 -0.0862143 -4.89538e-23)
(1.0032 -0.0225301 3.11217e-23)
(0.962226 -0.030282 -3.26716e-23)
(0.985549 -0.000798389 5.95495e-23)
(1.03831 -0.0297607 3.4909e-23)
(1.01111 -0.0393383 -1.44401e-22)
(1.00014 -0.000100252 1.13599e-24)
(0.996538 -0.000673282 -8.74511e-24)
(0.99996 -0.000110811 1.34012e-25)
(1.04519 -0.0658555 1.03896e-22)
(1.02603 -0.00959631 2.8233e-23)
(1.02866 -0.00812422 7.99357e-22)
(1.00238 -0.000363969 2.88546e-23)
(1.00073 -2.30763e-05 -1.55419e-23)
(0.999954 -2.07385e-05 -7.05032e-25)
(1.03564 -0.0262391 -3.44918e-23)
(1.0196 -0.0262865 -6.95704e-24)
(0.999094 -0.0136051 -1.97522e-23)
(0.998505 -0.00279283 1.90946e-23)
(0.988719 -0.00252525 1.14548e-22)
(0.999078 -0.00140886 -1.03086e-23)
(0.999475 -0.000583595 -6.91141e-24)
(1.04832 -0.0548901 9.40592e-23)
(1.05518 0.0856529 6.75539e-22)
(1.02508 -0.00631012 7.93661e-23)
(1.06335 -0.171548 6.12017e-22)
(1.00473 -0.0475021 -1.84559e-22)
(0.957509 0.103826 2.80238e-21)
(1.04126 0.0865377 6.19349e-22)
(0.999877 -1.61531e-05 1.70596e-25)
(1.02293 0.0525059 2.13395e-21)
(0.997731 -0.00201489 -9.28269e-24)
(0.962107 -0.0315412 3.42187e-22)
(1.00008 -0.00848302 -6.27154e-24)
(0.998589 -0.000726383 8.80512e-25)
(1.03111 -0.00599467 -5.32113e-23)
(0.987318 -0.0028131 2.26137e-23)
(1.0287 0.047058 -1.51113e-21)
(1.00012 -0.000291922 -2.21795e-24)
(1.02693 -0.000331628 2.00526e-22)
(1.03023 -0.0179629 1.89109e-22)
(1.02435 0.0484245 1.47179e-21)
(1.02994 0.0344013 -1.73991e-21)
(0.99643 -0.0710951 -2.26356e-22)
(1.02313 -0.00503411 -5.76315e-22)
(0.996695 -0.00361651 5.23015e-23)
(1.00092 -0.000804243 2.38803e-24)
(0.859822 0.117688 2.73712e-21)
(1.03416 -0.0157287 -1.39127e-22)
(1.00086 -0.00347003 6.41529e-24)
(0.989345 -0.0268862 -1.91331e-23)
(1.01436 0.0242654 7.33387e-22)
(0.99613 -0.0316096 -2.71116e-23)
(1.0271 -0.00486624 -3.56368e-22)
(0.999021 -0.000427254 1.06897e-23)
(1.00022 -0.0116759 1.68504e-23)
(1.02991 0.0306375 -5.30805e-22)
(0.968567 -0.016427 -2.93517e-22)
(0.947868 -0.0135468 3.47227e-22)
(1.00247 -0.0220974 -2.50164e-23)
(1.00031 -0.0129241 3.81917e-24)
(1.03665 -0.0615399 1.21196e-22)
(1.1992 -0.0859684 -1.27229e-21)
(1.0336 0.000273604 3.33111e-23)
(1.01027 -0.0311972 -6.69018e-24)
(0.999788 -0.000167687 2.844e-24)
(0.999587 -0.00271772 9.72515e-24)
(1.01434 -0.00393834 1.19472e-23)
(1.04146 -0.0261534 -4.28537e-22)
(0.995208 -0.0281455 -9.58888e-23)
(1.00001 -0.000112877 -2.3612e-26)
(1.01073 0.0396375 1.21865e-21)
(1.0212 -0.0113637 5.00842e-22)
(0.999508 -0.00108847 5.74519e-24)
(0.998774 -0.000197642 1.35345e-23)
(0.99713 -0.00129345 -2.05758e-23)
(0.999811 -0.000133011 -2.04894e-24)
(0.975832 -0.0338081 -3.00584e-22)
(1.00477 -0.000294032 1.06416e-22)
(0.999424 -8.30138e-05 -3.35701e-24)
(1.04951 0.0104302 -1.06665e-22)
(0.999801 -0.00045127 -2.18903e-24)
(0.999987 -1.50578e-05 6.19452e-26)
(0.999391 -0.000444971 -3.78085e-24)
(1.02606 -0.0586488 6.67324e-24)
(0.985978 -0.0011972 -1.62545e-22)
(1.02154 0.0038428 -7.04685e-22)
(1.02697 0.000551294 -1.86909e-22)
(1.01331 -0.0038423 -1.14713e-22)
(0.957762 -0.00372148 -2.22105e-22)
(1.00808 -0.0110969 1.01055e-23)
(1.02928 0.0237437 -4.10932e-22)
(1.0001 -0.000199885 -7.74179e-25)
(0.998666 -0.0105082 -1.28096e-23)
(0.988036 -0.0259631 1.10442e-22)
(1.051 0.0189118 9.43258e-22)
(1.01966 -0.0571258 2.85416e-22)
(0.99967 -0.0041109 2.68314e-24)
(0.997781 -0.00221016 1.37137e-23)
(0.993635 -0.0276141 9.06633e-23)
(0.999506 -0.0126505 -1.33974e-23)
(1.00632 -0.027937 -1.9146e-24)
(0.992105 -0.0269607 -9.05406e-23)
(1.03291 0.0593716 1.56392e-21)
(0.994207 -0.0396581 3.04431e-22)
(0.967687 -0.0268287 1.51682e-22)
(1.00002 -0.00131824 3.69497e-25)
(0.995345 -0.000789952 2.07759e-23)
(1.02452 -0.000234949 8.78424e-22)
(0.997507 -0.00255124 2.11177e-23)
(0.997987 -0.000270099 2.17773e-23)
(0.996787 -0.00128898 3.93917e-23)
(1.03966 -0.0327526 9.3037e-23)
(0.984288 -0.0111257 -2.56524e-22)
(1.00439 -0.0276152 -3.97818e-23)
(1.03386 0.0162255 -1.13507e-21)
(0.999252 -0.0015214 1.17218e-23)
(1.00015 -9.12197e-05 -3.27037e-24)
(1.02648 0.00247228 7.91177e-22)
(0.997056 -0.0475463 -1.06911e-22)
(0.983213 -0.00506821 -9.38274e-23)
(1.02432 0.000836759 -2.89443e-22)
(1.02809 0.000578962 -8.21363e-22)
(0.999597 -0.000500854 1.36196e-24)
(0.998916 -0.00100172 -7.92221e-24)
(0.999749 -5.32509e-05 -1.44547e-24)
(1.02682 0.00149427 -4.30868e-22)
(1.00568 -0.0172053 -3.97159e-24)
(0.985345 -0.00413059 -1.31466e-22)
(1.00026 -0.00021925 -1.35266e-24)
(1.0003 -0.000605922 2.66657e-24)
(1.02874 0.0207456 -1.8256e-22)
(1.00028 -0.0101415 2.75726e-24)
(0.999952 -1.99166e-05 6.9849e-25)
(0.966667 -0.0220875 1.69857e-22)
(1.00084 -0.00927545 -2.09747e-26)
(1.01139 -0.00353113 -1.14674e-24)
(0.963044 -0.00134921 7.22676e-22)
(0.995824 -0.000354931 1.27261e-22)
(1.02653 0.00310506 -3.79144e-22)
(1.01895 -0.0395151 -4.62823e-23)
(1.00184 -0.000224417 -2.55416e-23)
(1.00033 0.0070949 -1.45384e-21)
(0.998707 -0.00026004 -2.73849e-24)
(0.983683 -0.0112483 1.84003e-22)
(0.959515 -0.0193028 -2.47532e-22)
(0.979531 -0.0156284 1.38246e-22)
(0.987078 -0.0164132 7.25916e-24)
(0.980333 -0.0145975 3.33627e-22)
(0.965934 -0.0185304 2.97012e-22)
(0.987217 -0.00247865 9.34717e-23)
(0.959907 -0.03822 -5.8167e-22)
(0.996802 -0.0072581 5.2734e-23)
(1.0001 -0.0121124 -7.14459e-24)
(1.02756 -0.0278432 1.14408e-22)
(1.00688 -0.0169021 -5.1383e-23)
(0.959894 -0.00224761 1.06949e-22)
(1.0011 -0.000382151 1.82774e-24)
(1.01718 0.0232259 -4.37587e-22)
(0.998529 -0.000255237 2.19892e-23)
(1.00096 -0.0103101 7.70434e-24)
(1.00092 -0.0178014 1.02435e-23)
(1.04446 -0.0094563 3.78008e-22)
(0.988294 -0.0342454 -7.42605e-23)
(0.998779 -0.0123582 -7.99508e-24)
(0.998953 -0.011935 -2.98058e-23)
(1.01513 -0.0412271 3.53932e-23)
(0.999863 -0.00821255 3.40738e-24)
(0.993891 -0.0226877 5.1205e-23)
(0.971518 -0.0356077 -5.33989e-22)
(1.2292 0.0482133 -7.67461e-24)
(0.979645 -0.0219252 4.37185e-23)
(0.995226 -0.00190032 -3.2338e-23)
(0.977475 -0.0548661 2.94164e-22)
(0.992694 -0.001038 3.53216e-23)
(0.999041 -0.000461805 8.54921e-24)
(0.968839 -0.0179966 1.50846e-22)
(0.96429 -0.0178748 -4.73068e-22)
(1.02098 -0.041348 -1.58537e-23)
(1.00006 -0.00529312 2.59821e-24)
(0.983287 -0.00163819 3.60303e-24)
(1.0001 -1.39627e-05 -2.32928e-24)
(0.985356 -0.00800499 -1.83128e-22)
(0.999134 -0.000702948 -1.918e-25)
(0.998055 -0.00470269 1.97264e-23)
(0.99856 -0.000679102 -1.60478e-23)
(1.01418 -0.00980093 4.07761e-22)
(1.00051 -0.00808684 1.00538e-24)
(0.989593 -0.0121653 -5.58165e-23)
(0.979671 -0.0322966 -1.93971e-22)
(0.984706 -0.00137437 1.53125e-23)
(0.960104 -0.0299668 3.91542e-22)
(0.999837 -0.0154398 -4.95166e-23)
(0.990487 -0.0121333 -5.27339e-23)
(1.02327 -0.0432097 -3.29656e-23)
(0.9939 -0.00332117 1.68924e-23)
(0.984687 -0.0115118 -7.6088e-24)
(0.954279 -0.012359 3.4574e-23)
(1.00045 -0.00121363 6.15849e-25)
(0.998021 -0.0052621 5.35238e-24)
(1.00027 -0.000237932 3.67116e-25)
(0.869627 0.101415 -5.82555e-21)
(1.00043 -0.0124701 6.5756e-24)
(0.997984 -0.00881223 2.72052e-23)
(1.00071 -0.00153741 -3.66733e-24)
(0.983308 -0.0108207 3.5186e-22)
(1.02222 -0.00128249 6.45243e-22)
(1.01305 -0.00720328 -9.40584e-23)
(1.01508 -0.0518735 -6.83351e-23)
(1.00037 -0.00754338 -4.60094e-24)
(1.01408 -0.00743202 -2.33787e-22)
(1.03201 -0.00553031 -5.57884e-22)
(1.03838 0.153599 -3.88153e-21)
(0.979575 -0.0102847 2.59903e-22)
(1.02114 -0.0306669 3.66375e-23)
(1.00108 -6.86655e-05 -7.921e-24)
(0.998143 -0.00438311 2.013e-23)
(1.00001 -1.00079e-05 3.67545e-26)
(0.995629 -0.0013758 6.42186e-23)
(1.0442 -0.00621619 -5.03616e-22)
(1.02137 -0.00188492 7.87869e-22)
(0.999364 -0.00459417 -1.79874e-23)
(0.994827 -0.0105391 -6.15129e-24)
(1.04124 0.0622957 6.05835e-22)
(0.998309 -0.00379274 3.01838e-23)
(0.999673 -0.000517436 -1.75282e-24)
(1.00076 -0.00964881 -3.31447e-24)
(0.991996 -0.00929961 -3.77795e-23)
(0.999801 -6.28933e-05 3.4529e-25)
(0.963487 -0.00184915 -8.66472e-22)
(0.961069 -0.0181655 9.39288e-22)
(1.00759 -0.0170959 2.5511e-24)
(1.00105 -0.0567507 -3.02244e-22)
(0.980684 0.0627898 4.52964e-22)
(0.982367 -0.0104645 1.41776e-22)
(1.01204 -0.00696865 -1.04245e-22)
(0.999985 -3.46815e-05 3.5322e-25)
(1.02829 -0.00892677 -6.23966e-22)
(1.1873 0.155164 6.87652e-22)
(0.999729 -5.89439e-05 2.82166e-25)
(1.01043 -0.0564141 2.81082e-22)
(1.00014 -0.000282672 1.39374e-24)
(0.982739 -0.0109201 -2.44089e-22)
(0.99852 -0.00146064 -1.29853e-23)
(0.98047 -0.00966843 4.52009e-23)
(0.967239 -0.0200746 2.61118e-22)
(1.00029 0.00637141 -3.53182e-21)
(1.02008 0.0218925 -2.11753e-22)
(0.999945 -0.000908594 -1.14968e-24)
(0.986881 -0.00239165 -8.33745e-23)
(0.957787 -0.0305546 2.0112e-22)
(0.990145 -0.0621064 2.46974e-22)
(0.984859 -0.00806851 9.16693e-23)
(1.02472 -0.0046213 -4.16868e-22)
(0.955923 -0.0134791 -3.67624e-22)
(1.00784 -0.0159101 7.23358e-23)
(0.998731 -0.000577194 1.7383e-23)
(0.990053 -0.0124057 -3.96642e-23)
(0.973755 0.111064 1.20764e-21)
(1.03329 0.00576145 2.34616e-21)
(0.981426 -0.0100893 -1.27059e-22)
(1.00001 -0.000159232 1.05066e-26)
(0.979874 -0.0050743 -1.7113e-22)
(0.979179 -0.00442493 -1.58605e-22)
(1.01326 -0.0207585 -2.87562e-24)
(0.96263 -0.0171018 3.78089e-22)
(0.995356 -0.0308569 7.87548e-23)
(0.995617 -0.00803542 6.48363e-23)
(0.999809 -0.00126514 1.76044e-24)
(0.970496 -0.0276349 1.3497e-22)
(0.966323 -0.0342014 1.48878e-22)
(1.06506 -0.0218093 -2.2667e-22)
(0.977614 -0.0104822 9.9913e-23)
(1.00019 -0.000422397 2.30463e-24)
(0.980748 -0.015874 1.32928e-22)
(0.98581 -0.0144639 4.88275e-23)
(1.01214 0.0869613 9.17617e-22)
(0.985679 -0.00974731 6.36758e-23)
(0.999775 -0.000252978 -5.45804e-24)
(0.980587 -0.00565868 -7.58198e-23)
(0.966672 -0.0167022 -3.74462e-22)
(1.06254 0.0102625 -4.78233e-22)
(1.00083 -0.000356604 4.49849e-24)
(0.99371 -0.00662934 -7.68139e-23)
(0.994314 -0.00105896 -2.91733e-23)
(1.02257 -0.0150012 -1.59087e-22)
(1.00217 -0.0827712 6.28694e-22)
(0.987802 -0.00832444 1.86323e-22)
(0.978884 -0.0214737 -9.38865e-23)
(0.970118 -0.0169565 2.37902e-22)
(0.999876 -0.00339898 5.47569e-24)
(1.03168 0.0140602 9.23526e-23)
(1.00105 -0.00991687 -2.8585e-24)
(1.00085 -0.00249444 9.94006e-24)
(0.984764 -0.00175555 -8.02259e-23)
(0.9916 -0.0369166 -3.48572e-22)
(1.01044 -0.00336983 -1.55649e-22)
(0.97285 -0.0381943 4.40019e-22)
(1.0371 -0.0504312 5.09629e-23)
(1.02695 -0.00968292 5.80035e-22)
(0.985843 -0.00209146 -3.40799e-23)
(1.02639 -0.00331141 -3.82698e-22)
(0.979136 -0.0617901 7.21581e-23)
(0.999641 -0.00281996 -1.14594e-23)
(0.980193 -0.0154036 -9.4552e-24)
(0.990945 -0.0123609 -7.39462e-23)
(1.10642 -0.0298949 4.15546e-23)
(1.02718 0.00105091 1.94058e-22)
(0.995233 -0.0106653 4.01085e-23)
(1.00081 -0.000847967 2.23527e-24)
(1.00599 -0.00181223 1.01528e-22)
(0.98179 -0.0105605 -2.13263e-22)
(1.00074 -0.00254748 9.14455e-24)
(0.990892 -0.015422 4.98036e-23)
(1.00042 -0.00841356 1.02142e-24)
(1.01112 -0.00669967 -8.04591e-23)
(0.977997 -0.0110284 -3.16763e-22)
(0.983366 -0.00203324 2.86094e-23)
(0.990114 -0.00988116 6.53882e-23)
(0.998904 -0.00106104 -1.36349e-23)
(0.993058 -0.00319676 -5.74458e-23)
(0.978963 -0.0151285 2.69704e-22)
(0.997861 -0.00542082 -2.4639e-23)
(1.01026 -0.00637229 -1.0355e-24)
(0.999638 -0.000282204 -5.24555e-24)
(0.975878 -0.00876868 -4.31342e-23)
(0.983832 -0.00825464 -3.74454e-22)
(1.00944 -0.0060745 -4.37414e-23)
(0.976453 -0.00881293 -4.24946e-23)
(1.00533 -0.0219742 9.26196e-24)
(0.999975 -2.32136e-06 -1.08885e-25)
(0.999267 -0.00159401 -1.16134e-23)
(1.00543 -0.00167898 4.13509e-23)
(1.00059 -0.00341231 8.6595e-25)
(1.00069 -0.00065347 -1.01447e-23)
(1.00739 -0.0104805 7.94308e-23)
(0.999986 -1.05347e-06 8.97665e-27)
(1.00008 -0.00324636 -8.8423e-25)
(1.01778 0.148879 -5.81381e-21)
(1.00866 -0.00576877 -6.15645e-23)
(0.957186 -0.00170229 6.33824e-22)
(1.00002 -2.42371e-05 -1.11618e-25)
(0.980829 -0.0101663 6.5733e-23)
(1.02488 -0.0282696 -2.25485e-23)
(0.997758 -0.033049 1.78014e-22)
(1.01477 -0.020288 2.85269e-23)
(1.02055 -0.0126521 -5.7092e-24)
(0.966253 -0.0202796 -1.64371e-22)
(0.980053 -0.00558558 -2.82359e-23)
(1.02376 -0.00512046 -2.84902e-22)
(1.02594 0.0034657 2.1748e-23)
(1.00013 0.00186744 1.34163e-21)
(0.999981 -1.33869e-06 -1.32032e-25)
(1.02371 0.160918 1.33211e-23)
(1.03435 0.0737551 3.43913e-21)
(0.979344 -0.00498282 6.64929e-23)
(0.989079 -0.0129993 -1.47992e-22)
(0.992347 -0.00949848 -3.87733e-23)
(0.981882 -0.00235202 3.99829e-23)
(0.98535 -0.0212657 -3.64446e-23)
(1.00561 -0.00663654 -2.24025e-23)
(0.999691 -4.89039e-05 1.82305e-24)
(0.985124 -0.00187296 5.03579e-23)
(0.981984 -0.0115867 -1.8527e-22)
(1.00017 -0.000631088 -3.9436e-24)
(0.999738 -5.00841e-05 2.66814e-24)
(0.980592 -0.00193152 1.98327e-22)
(0.97475 -0.00388158 6.5156e-23)
(1.12417 0.00540392 -9.13159e-23)
(0.993327 -0.0081391 -3.95554e-23)
(0.985658 -0.00838126 2.09274e-22)
(0.99135 -0.0120687 1.38366e-22)
(0.986192 -0.00219888 -1.84489e-22)
(0.983766 -0.00216171 1.13602e-22)
(1.00056 -0.000200839 1.45087e-24)
(1.03598 -0.0142061 -1.61046e-22)
(0.949229 -0.0269801 2.27383e-24)
(0.988932 -0.00495058 -2.02464e-23)
(1.02039 -0.00607465 -7.67311e-23)
(1.00128 -0.00569433 5.05263e-26)
(0.999502 -0.000221401 5.02927e-24)
(0.993438 -0.00336647 9.85105e-23)
(0.999356 -0.000332543 -3.79844e-24)
(0.99943 -0.000104812 -5.12323e-24)
(0.99524 -0.00921086 -1.91324e-23)
(0.974908 -0.00450132 -2.87828e-22)
(0.997128 -0.0312894 4.15345e-23)
(0.976793 -0.00942284 2.30434e-22)
(0.998647 -0.000539339 -1.3557e-23)
(1.11517 0.00464709 -2.37697e-22)
(1.00011 0.00575335 -1.91116e-21)
(1.00791 -0.00546146 9.37288e-23)
(0.992023 -0.0105849 6.2481e-23)
(1.01377 -0.00422323 1.68882e-22)
(0.982306 -0.00248592 1.06028e-22)
(0.959329 -0.017325 -5.56618e-22)
(1.06208 0.0169936 1.90923e-22)
(0.976696 -0.00495019 -4.44254e-23)
(1.04264 -0.0135877 -2.30697e-22)
(0.992688 -0.00928746 5.00157e-23)
(1.02802 0.0017237 -1.29749e-22)
(1.00726 -0.014035 -4.13225e-24)
(0.981017 -0.00206465 -3.01985e-22)
(0.996581 -0.00333741 5.24968e-23)
(0.994508 -0.0948617 7.64024e-22)
(0.977025 -0.0498645 4.66348e-23)
(1.04732 0.0847778 -1.09269e-21)
(1.01965 -0.013939 1.28358e-22)
(1.00447 -0.00141939 5.09581e-23)
(0.965429 -0.0373258 2.58979e-22)
(0.958055 -0.0295024 2.26237e-22)
(0.987043 -0.00181633 4.62485e-24)
(0.99999 -1.91033e-06 -6.67794e-27)
(0.999941 -0.00010559 8.05465e-25)
(1.02581 -0.0450555 2.11973e-23)
(1.00134 -0.0369184 -5.35785e-23)
(0.955967 -0.0289838 -3.34902e-22)
(0.999439 -0.000281381 7.24533e-24)
(0.999681 -0.00442676 4.45391e-25)
(0.957593 -0.0164097 -1.57531e-22)
(0.999648 -0.000317185 9.7944e-24)
(0.999603 -0.00495041 -5.48995e-24)
(0.969549 -0.0162555 2.1997e-22)
(0.980696 -0.00809492 1.73823e-22)
(0.993957 -0.00679881 4.80365e-24)
(0.99131 -0.00887152 -2.88282e-23)
(0.993638 -0.00760564 7.49323e-23)
(0.993188 -0.00338987 -6.80332e-23)
(0.986829 -0.00658193 -1.49084e-23)
(0.994226 -0.00665905 -2.54387e-23)
(1.01493 0.0212977 3.8636e-22)
(1.01726 -0.0260384 2.7168e-23)
(1.05015 -0.00502299 -5.57908e-22)
(1.06315 0.0127926 2.97426e-22)
(1.01231 0.128043 1.90561e-21)
(1.03288 0.00947444 -2.48071e-22)
(0.948692 -0.0284651 2.6662e-23)
(1.10698 -0.0374459 -7.51212e-23)
(1.01539 -0.000755062 -5.40841e-23)
(1.02173 -0.00053498 -9.5084e-22)
(1.02383 0.000400022 1.95969e-22)
(0.994736 -0.00638303 8.61185e-23)
(0.977283 -0.00506749 1.59992e-22)
(1.00066 -0.00368357 4.69476e-25)
(0.960893 0.129321 6.52043e-21)
(1.00206 -0.00190383 -9.08881e-24)
(1.00182 -0.00201986 1.20329e-23)
(0.98079 -0.00614274 2.04595e-22)
(0.999341 -0.000103729 6.86764e-26)
(1.00022 -0.0158247 1.41501e-23)
(1.07953 -0.0625598 -1.06766e-22)
(1.01147 -0.00711661 8.13758e-23)
(0.978685 -0.0109482 5.25819e-23)
(0.999662 -0.00381698 6.31993e-25)
(1.00813 -0.0279289 -4.77919e-23)
(0.99498 -0.00624162 -5.46399e-24)
(1.00599 -0.00390608 9.54515e-24)
(1.00002 -0.00278273 8.18472e-25)
(0.999776 -0.000116583 4.26333e-24)
(1.00732 -0.0373574 -4.32754e-23)
(0.99927 -0.0047864 8.19753e-24)
(0.984656 -0.0043832 -2.32989e-22)
(0.997433 -0.00233981 -6.32879e-24)
(0.997981 -0.00224018 1.91771e-23)
(1.06938 -0.0571023 1.23354e-22)
(1.00004 -5.6782e-05 1.53068e-26)
(0.998596 -0.0061626 -1.02359e-23)
(1.06563 0.163294 1.93379e-21)
(1.00495 -0.0034132 -6.13017e-23)
(0.999847 -2.15623e-05 -3.03299e-26)
(1.00059 -0.000191921 -4.77923e-25)
(1.00001 -2.51491e-05 -8.76469e-26)
(0.999865 -2.22745e-05 -1.03584e-24)
(0.987245 -0.00887744 -1.59645e-22)
(1.05792 -0.0565792 -1.06877e-22)
(0.968515 -0.0189279 -1.27827e-22)
(0.995462 -0.00545371 4.7581e-24)
(0.996746 -0.000361816 -4.7877e-23)
(0.975497 -0.00466429 1.2166e-22)
(0.999101 -0.000360532 5.6658e-24)
(1.03912 0.0204851 1.22691e-21)
(0.99323 -0.0062731 -9.8698e-23)
(0.995901 -0.0047475 7.73746e-23)
(0.999161 -0.00177573 -2.04124e-23)
(0.960609 -0.0191795 -1.84555e-22)
(1.13612 0.185961 6.43265e-22)
(1.00055 -7.05548e-05 -3.03303e-24)
(0.999512 -0.000238831 2.49618e-24)
(0.995925 -0.00813694 -1.45938e-23)
(0.998378 -0.00261626 -9.82961e-24)
(0.993801 -0.00238772 3.07062e-23)
(0.971375 -0.0159493 2.09756e-22)
(1.01466 -0.00154505 3.29744e-22)
(0.999962 -7.76138e-05 -3.66191e-25)
(0.994673 -0.000707369 8.00432e-23)
(0.999586 -7.53849e-05 -2.97226e-24)
(1.00172 -0.000371987 -1.96741e-23)
(1.04933 0.0223955 1.07683e-21)
(0.973261 -0.00523571 1.92322e-22)
(0.998176 -0.00225817 -1.90285e-23)
(1.00087 -0.000683757 -6.76117e-24)
(0.946624 -0.0235296 -2.06765e-22)
(1.00037 -0.00505193 3.77215e-25)
(1.00002 -1.41234e-05 2.05346e-26)
(1.05345 -0.00420539 3.35688e-23)
(1.00817 -0.00583139 -5.00732e-23)
(0.997257 -0.000945078 3.75586e-23)
(0.994006 0.0797943 -3.85353e-21)
(0.999811 -0.00353407 -2.82385e-24)
(0.9972 -0.00294015 1.24049e-23)
(1.12343 0.195127 1.81788e-22)
(0.99959 -0.00459416 -2.52021e-24)
(1.03456 -0.050278 -5.15128e-23)
(1.02799 0.0572333 1.00344e-22)
(1.00975 -0.00646482 -9.0804e-23)
(0.954047 -0.0163684 -1.96286e-22)
(0.988316 -0.00301171 -5.32977e-23)
(0.995717 -0.00166096 2.42694e-23)
(0.975543 -0.0119067 -6.93621e-23)
(1.0015 -9.45188e-05 1.44104e-23)
(1.00277 0.0184092 -1.82146e-21)
(0.999697 -0.000502189 5.95547e-24)
(0.999259 -0.000391562 -1.37575e-24)
(1.02853 -0.0468934 1.25178e-23)
(0.993584 -0.0023886 -1.47049e-23)
(0.999081 -0.00174556 1.83607e-24)
(1.03146 -0.0486104 6.80255e-24)
(0.996519 -0.00387832 3.64558e-23)
(1.0003 -0.00526244 8.59324e-26)
(1.00104 -0.00324598 -2.55874e-23)
(1.00331 -0.0011022 -8.60876e-25)
(0.99718 -0.00468639 6.37655e-24)
(0.999927 -0.00117028 -1.26931e-24)
(1.00003 -0.00338285 -1.07818e-24)
(0.990463 -0.0101069 -2.69317e-23)
(0.998347 -0.00396356 -1.95697e-23)
(0.972035 -0.00563234 -2.08272e-22)
(1.01613 -0.0212592 8.99473e-23)
(1.00039 -4.98184e-05 -4.36301e-25)
(0.997368 -0.000480444 1.87322e-23)
(0.996868 -0.00337561 -3.6348e-23)
(1.00077 -0.003208 -8.21643e-24)
(0.974392 -0.0126563 -2.8457e-22)
(1.00254 0.128595 2.07032e-21)
(0.999581 -0.00396287 -4.16803e-24)
(0.996383 -0.000422607 -4.23757e-24)
(0.984378 -0.00473668 6.31553e-24)
(1.00404 -0.00132365 -5.44527e-23)
(0.986134 -0.00829672 8.30463e-24)
(0.96638 -0.0231219 -2.27414e-22)
(1.00026 -0.0070305 -7.6642e-24)
(0.996716 -0.00344235 -2.18566e-23)
(1.00326 -0.00380234 -2.75092e-23)
(1.00089 -0.000925947 -1.11743e-23)
(0.997939 -0.000316558 6.64251e-25)
(0.999936 -0.00149808 1.20717e-25)
(1.00374 -0.00272142 1.0914e-23)
(0.987127 -0.00933745 9.34556e-23)
(0.999932 -0.000127253 1.68009e-24)
(0.999899 -4.45872e-05 -7.78363e-25)
(1.10272 -0.0150773 -1.08452e-22)
(0.978566 -0.038239 2.8926e-23)
(0.999185 -0.00149527 -3.13952e-24)
(0.964548 -0.00754359 4.35774e-24)
(1.00294 -0.00353413 3.34096e-24)
(0.962555 -0.0134674 3.79492e-22)
(0.990862 -0.00991296 -2.68699e-23)
(1.01213 -0.000562785 1.47896e-22)
(0.997306 -0.00238101 2.01844e-23)
(1.04047 0.0360575 2.31655e-21)
(0.999698 -0.00476703 9.29184e-24)
(0.997874 -0.00228569 -1.66193e-23)
(1.06515 0.0207588 -4.87249e-22)
(1.00338 -0.00251583 -5.6778e-23)
(0.998018 -0.000399605 -1.85848e-23)
(0.996333 -0.00855183 -6.06294e-23)
(1.05426 0.151408 -1.6669e-23)
(0.99784 -0.000694306 6.27691e-24)
(1.00051 -0.0031581 -1.84327e-24)
(1.08938 0.142865 -8.83701e-22)
(1.02161 0.00178321 1.5606e-23)
(0.992188 -0.0142891 -2.72011e-23)
(0.997358 -0.00273853 -6.64345e-23)
(0.994191 -0.00118382 -2.93051e-23)
(0.99942 -0.00110389 8.56611e-25)
(0.999412 -0.00396502 4.51236e-24)
(1.01516 -0.00761008 1.93974e-22)
(0.986593 -0.0314025 -3.29215e-24)
(0.988113 -0.00326417 3.31207e-23)
(0.998075 -0.00230774 1.23532e-23)
(1.0151 -0.03448 -2.43256e-24)
(1.01081 -0.00374836 5.58638e-23)
(0.999429 -0.00116087 -2.35943e-24)
(0.971994 -0.0142317 5.65972e-23)
(1.00025 -3.18349e-05 6.5678e-24)
(0.950633 -0.0267346 4.44902e-22)
(1.09782 -0.0202495 3.40279e-22)
(1.10735 -0.00910719 -1.92565e-22)
(1.00063 -0.000515542 6.73927e-24)
(0.99634 -0.00310323 -6.16922e-23)
(0.992393 -0.00161026 -1.42029e-22)
(0.997955 -0.000382481 3.14062e-23)
(1.00018 -0.000596461 1.43049e-24)
(0.997644 -0.00237441 1.85061e-23)
(1.0607 0.0293882 2.37284e-22)
(0.951263 -0.0346793 1.049e-22)
(0.999759 -0.000127652 -2.90723e-26)
(1.15548 0.1038 1.38528e-22)
(0.98245 -0.00538596 -2.47177e-23)
(0.99911 -0.00441815 -1.75144e-23)
(1.00027 -0.00308811 -2.83045e-25)
(1.0583 -0.0477134 -6.10679e-24)
(1.00308 -0.00230675 -9.60795e-25)
(0.99963 -0.000434107 -1.0364e-24)
(1.08772 -0.0351392 -1.90705e-23)
(1.05352 -0.047524 9.3144e-24)
(1.00001 -0.000278863 -3.05351e-27)
(0.961883 -0.00685278 -2.85317e-22)
(0.999971 -0.00290454 -5.18971e-25)
(0.997529 -0.00242038 -2.54496e-23)
(0.993095 -0.00142171 1.23131e-23)
(1.05472 -0.0606976 1.12582e-22)
(0.963678 -0.0170222 4.83682e-23)
(0.984939 -0.0727424 2.21598e-22)
(0.999695 -6.17916e-05 2.64268e-24)
(0.993598 -0.000474958 8.61385e-23)
(1.00428 -0.00844129 -2.364e-23)
(1.04834 0.00677376 -6.54486e-22)
(0.993572 -0.0035561 7.26996e-24)
(1.00185 -0.000111766 -3.25354e-23)
(0.978667 -0.0132692 1.95193e-23)
(1.0819 -0.0378872 5.16308e-23)
(1.01119 -0.000545824 1.11014e-22)
(0.99986 -6.65142e-05 4.82879e-25)
(1.02474 0.000124945 1.00998e-21)
(0.966928 -0.0183608 -1.70368e-22)
(0.998328 -0.000175569 -1.98751e-23)
(0.969555 -0.0064197 7.89994e-23)
(0.948367 -0.0147803 6.90624e-23)
(0.998104 -0.000478226 -1.05392e-24)
(1.04843 0.00350635 2.84886e-22)
(0.997013 -0.0423987 2.48956e-22)
(1.01907 -0.0252436 -7.35032e-23)
(1.01975 -0.000612091 7.5717e-22)
(0.98526 -0.00717134 9.09359e-23)
(1.02666 -0.0268324 -7.96461e-23)
(0.999348 -0.000128163 3.37077e-24)
(0.999989 -2.6353e-05 9.82909e-26)
(1.00354 -0.00733573 -4.8077e-23)
(0.965308 -0.0177454 1.0507e-22)
(1.03926 0.0283462 2.04102e-21)
(0.996433 -0.00888299 8.40607e-23)
(1.11145 -0.00248634 1.28353e-23)
(1.04909 -0.0470232 9.34638e-24)
(0.963283 -0.0374255 4.01034e-23)
(0.982159 -0.00580712 -1.54058e-22)
(1.05342 0.0822253 -7.57719e-22)
(0.996767 -0.000460286 5.21683e-23)
(0.99876 -0.000618196 -7.19607e-24)
(0.998038 -0.000464086 -5.09234e-23)
(1.07627 -0.0401572 -1.76371e-23)
(0.965572 -0.0264881 1.5595e-22)
(0.992569 -0.0509362 2.01473e-22)
(0.955861 -0.0154012 2.20394e-22)
(1.02605 0.0400998 -4.15095e-22)
(1.0004 -2.5252e-05 2.72274e-24)
(1.00014 -0.000138502 1.4055e-24)
(0.976867 -0.033878 -1.02902e-22)
(1.00687 -0.0103607 2.38241e-23)
(0.968224 -0.00683755 2.11748e-22)
(1.09516 -0.0278069 -6.3626e-23)
(1.00023 -0.00322249 -3.78863e-25)
(0.99939 -0.000116098 6.10179e-24)
(1.07076 -0.0417169 3.10379e-23)
(1.00094 -0.000869349 3.79385e-25)
(0.997286 -0.00639138 -2.77196e-23)
(0.997971 -0.00504893 5.20001e-23)
(0.987242 -0.00653773 -2.37164e-23)
(0.972448 -0.00125899 -3.63535e-22)
(1.11597 0.177232 7.17402e-22)
(0.961795 -0.00260646 6.74996e-23)
(0.992231 -0.001788 5.93393e-24)
(1.01983 -0.0122383 2.81471e-22)
(1.00027 -0.000204117 -5.96117e-25)
(0.997869 -0.000763379 1.5946e-23)
(1.00137 -0.000464912 -1.08999e-23)
(1.02248 -0.00279863 -4.38058e-22)
(1.00074 -0.00336497 3.15235e-25)
(1.00113 -0.00526941 4.49483e-24)
(0.999818 -0.00169246 -1.39758e-24)
(1.04864 -0.086613 -3.34147e-22)
(0.997474 -0.000285432 -2.16334e-23)
(0.999898 -0.00122012 -1.38359e-24)
(0.99464 -0.0226583 3.49743e-23)
(0.992955 -0.00154532 -9.13134e-24)
(1.00102 -0.00341021 -4.33793e-24)
(0.962167 -0.0180744 -9.50712e-22)
(1.05118 -0.0644593 -4.34546e-22)
(1.00002 -0.00012946 -5.1547e-26)
(0.997807 -0.00209251 -3.02353e-24)
(0.997305 -0.00104272 8.40307e-24)
(0.998479 -0.000238362 -1.94294e-23)
(1.00012 0.00215085 -4.71763e-22)
(0.993469 -0.00378241 2.91554e-23)
(0.997391 -0.000568967 1.91219e-24)
(1.07568 0.165421 1.0789e-22)
(0.99168 -0.00868607 9.80665e-23)
(1.02436 0.0783116 -2.21118e-21)
(0.990652 -0.0262058 1.99053e-22)
(0.979959 -0.0108115 -5.1508e-23)
(0.997765 -0.00190925 -3.26352e-23)
(1.0023 -0.00179454 1.07835e-23)
(1.00096 0.0116991 2.75855e-22)
(0.998797 -0.00012697 1.15921e-24)
(1.07275 -0.117553 1.00214e-21)
(0.988356 -0.0169059 2.45223e-22)
(1.06015 0.00569927 -6.67836e-22)
(1.00003 -0.000127647 1.45528e-25)
(0.953408 -0.017413 5.01037e-22)
(0.979088 -0.01149 3.26337e-22)
(0.971851 -0.023078 -1.01021e-22)
(0.99352 -0.00615772 1.10094e-22)
(1.00002 -3.75004e-05 1.57673e-25)
(0.997367 -0.00663474 -1.83575e-24)
(1.03426 -0.0269102 -8.95355e-23)
(1.067 0.178757 -2.00684e-21)
(1.00077 -0.00230856 6.24147e-24)
(1.02543 -0.0103316 2.26113e-22)
(1.02831 0.0686535 -1.21924e-22)
(0.998209 -0.00193855 3.38615e-23)
(1.00003 -5.91288e-05 -6.23044e-26)
(0.987368 -0.0019136 -1.06566e-22)
(0.969178 -0.0543529 -2.15244e-23)
(1.00077 -4.91634e-05 -7.11583e-24)
(1.00002 -0.00161976 2.28155e-25)
(1.01299 -0.00231427 -1.88856e-22)
(0.996158 -0.00791705 -7.33462e-23)
(0.991433 -0.00810333 -9.96559e-23)
(0.977007 -0.0117602 -2.6801e-22)
(0.999945 -0.000805302 3.54213e-25)
(1.0479 -0.0386503 -5.72171e-23)
(0.997946 -0.000772002 1.52038e-23)
(0.95662 -0.0361415 4.05682e-22)
(0.996718 -0.000625053 -6.84069e-23)
(0.998271 -0.00231893 -2.99287e-24)
(1.00317 -0.00250435 -2.62709e-23)
(1.09773 0.16751 1.30845e-22)
(1.00249 -0.00514244 4.22675e-23)
(0.981318 -0.00907949 1.90484e-23)
(1.06074 0.0212461 1.56529e-22)
(1.00603 -0.0159718 -7.61535e-24)
(1.04898 0.0158998 -1.45922e-21)
(0.993343 -0.00569184 8.52368e-23)
(1.00003 -0.00143053 1.48187e-25)
(0.993746 -0.0020223 -2.70327e-24)
(0.998378 -0.000203762 2.18278e-23)
(0.981174 -0.0178259 4.58544e-22)
(0.999022 -0.000119652 1.85374e-23)
(0.999902 -0.00156157 -2.17254e-24)
(0.999235 -0.00300381 2.17861e-24)
(0.999706 -0.000152953 -3.89862e-24)
(0.99849 -0.00266779 -5.05413e-24)
(0.999017 -0.00101781 -1.97795e-23)
(1.00993 -0.00349758 1.18217e-22)
(1.05096 0.00889021 3.27071e-22)
(1 -0.000769041 3.67401e-25)
(0.999373 -0.00149457 -6.90086e-24)
(0.968487 -0.00756775 1.00819e-22)
(1.00055 -3.55454e-05 6.15672e-25)
(0.985279 -0.0113348 4.17401e-23)
(0.985591 -0.0122595 2.61902e-22)
(0.951097 -0.0254799 -3.15376e-22)
(0.999851 -0.000881648 4.00747e-25)
(0.985963 -0.0131791 -1.17646e-22)
(1.0003 -0.000224853 2.60667e-24)
(0.898466 0.096199 -2.33409e-21)
(0.998126 -0.000541459 3.84469e-23)
(1.00827 -0.0035259 6.1173e-23)
(0.981259 -0.00808478 -1.0467e-22)
(0.981262 -0.00711526 -4.692e-23)
(0.999048 -0.000221876 4.89513e-24)
(0.981329 -0.0061815 -2.22406e-22)
(0.999642 -6.13781e-05 9.21265e-25)
(0.986444 -0.0141364 -1.34071e-22)
(0.965425 -0.00772861 3.29242e-22)
(0.976063 -0.0126135 3.98608e-22)
(1.00119 -0.000150941 1.21659e-23)
(1.0018 -0.0041348 4.07598e-24)
(0.97805 -0.0535181 1.30764e-22)
(0.827824 0.0414705 -5.93569e-21)
(0.998095 -0.000782997 -5.26412e-23)
(1.06016 0.00166816 6.88063e-22)
(0.999059 -0.000255784 -5.22205e-24)
(0.997292 -0.00120859 3.90442e-23)
(1.02397 -0.0190767 1.55541e-22)
(1.00006 -8.79437e-06 -4.01311e-26)
(0.972572 -0.0149895 7.6798e-23)
(0.998167 -0.00249117 1.29483e-24)
(0.962784 -0.00709102 -1.28438e-22)
(1.00882 -0.00300236 6.02011e-23)
(1.00212 -0.00205254 1.37676e-23)
(0.930953 0.142414 -1.72117e-21)
(0.987628 -0.0160035 -1.07161e-22)
(0.999461 -0.000929016 5.95517e-25)
(0.952246 -0.0151931 3.17653e-22)
(1.02445 -0.000667849 -5.53933e-22)
(1.0249 -0.00020153 -1.00608e-21)
(1.00051 -0.000115966 6.07019e-25)
(0.986999 -0.0150703 -3.1366e-22)
(0.962542 -0.0152656 1.64775e-22)
(0.996496 -0.00306121 3.79897e-23)
(1.00048 -0.0350983 -4.99019e-23)
(1.01625 -0.0196546 2.54219e-23)
(0.996642 -0.000700731 4.69495e-23)
(1.05147 0.102706 -1.18187e-21)
(0.963025 -0.00798031 4.05346e-22)
(1.00755 -0.010953 -1.50844e-22)
(0.975081 -0.00286383 -9.5001e-23)
(0.977505 -0.00930815 -1.24091e-22)
(0.96166 -0.00594454 9.49948e-23)
(1.01915 -0.0110457 -7.11161e-23)
(1.00005 -0.000834425 -6.8869e-25)
(1.02675 -0.0115985 -1.63712e-22)
(0.999654 -0.000423773 -1.99399e-24)
(1.08638 0.166891 1.12952e-21)
(1.00023 -0.00488999 -4.63485e-25)
(1.11225 0.0190041 -1.71838e-22)
(1.01908 -0.0126312 -3.39468e-22)
(1.00189 -0.00127589 3.76739e-24)
(0.999498 -0.00099041 -1.8816e-25)
(0.974853 -0.0133377 1.21847e-22)
(1.0588 0.100339 -7.64056e-22)
(0.957318 -0.00646482 -1.54308e-22)
(0.999908 -4.36808e-06 1.81055e-25)
(1.00719 -0.0157441 -4.49619e-23)
(1.00383 -0.00984506 1.11543e-23)
(0.999979 -2.58721e-05 4.63796e-25)
(0.99995 -4.58681e-05 -2.3775e-25)
(0.999673 -0.000462885 4.7462e-26)
(0.998806 -0.000167565 -1.04995e-23)
(0.967127 -0.00805845 1.43041e-22)
(1.03037 0.141647 3.16528e-21)
(0.99643 -0.00279591 2.41321e-23)
(1.16404 0.140681 2.15867e-21)
(0.999095 -0.000262568 -3.49467e-24)
(1.12856 0.175812 2.06835e-21)
(0.973734 -0.014102 -4.71522e-22)
(1.00155 -0.00108271 -5.6374e-24)
(1.00001 -0.00149354 -6.64569e-25)
(1.00052 -8.38432e-05 1.23322e-24)
(0.950476 -0.0139223 2.3846e-23)
(0.948897 -0.0245768 1.12198e-22)
(0.948723 -0.0125397 2.02949e-23)
(0.961254 -0.0295417 1.34408e-22)
(1.00064 -0.000143592 2.95273e-24)
(0.989975 -0.0224479 -2.34867e-22)
(1.03358 -0.0317157 2.20015e-23)
(1.00139 -0.00099398 3.27818e-24)
(0.990331 -0.0407007 5.77012e-22)
(1.0042 -0.00150239 3.68233e-23)
(0.998625 -0.00283816 2.51848e-23)
(1.05924 0.0788954 1.41553e-21)
(0.974807 -0.00930174 -2.05572e-22)
(1.00005 -0.00155257 1.9379e-25)
(1.00132 -0.00327113 6.30373e-24)
(1.00597 -0.0466238 -4.32075e-23)
(0.960265 -0.00728246 7.92608e-23)
(1.0479 0.0526353 1.30706e-21)
(0.980163 -0.0304391 -3.98147e-22)
(1.02218 -0.00024263 -2.95023e-23)
(1.02026 -0.000294087 -1.11565e-21)
(1.00901 -0.000230139 -1.98318e-24)
(1.01813 -0.00031146 8.16705e-24)
(1.01596 -0.000421319 1.88222e-22)
(1.01367 -0.00029137 2.18546e-22)
(1.01073 -0.000269191 -1.04764e-23)
(1.02343 0.000229847 1.50471e-22)
(1.02484 -2.04765e-05 0)
(1.0246 9.29735e-05 -4.10748e-22)
(1.02373 -0.00017764 4.30299e-22)
(0.954121 -0.00544654 1.75263e-22)
(0.999405 -0.00042851 2.54258e-24)
(0.991754 -0.0146755 7.76157e-24)
(1.01263 -0.000277261 6.92421e-23)
(0.963337 -0.0298127 -5.81415e-22)
(0.9993 -0.000112093 -5.84839e-24)
(0.954404 -0.0358426 -9.89007e-23)
(1.234 0.0266924 -1.25406e-22)
(0.999925 -0.000124106 -6.1311e-25)
(0.997913 -0.00205743 1.42342e-24)
(0.999984 -4.18804e-06 4.84245e-28)
(0.943587 -0.0210779 -1.16701e-22)
(1.03653 0.0691453 -1.18642e-22)
(0.998964 -0.000835402 7.14434e-24)
(0.997236 -0.00129676 -3.14114e-23)
(0.999885 -0.000345036 -1.18042e-25)
(1.00007 -1.0691e-05 -3.38361e-25)
(0.958586 -0.00775275 -1.8514e-22)
(1.11366 -0.0409064 -4.22767e-24)
(1.05793 0.051726 2.10051e-21)
(0.999031 -0.000153298 1.43282e-23)
(0.999274 -0.000616044 -3.97864e-24)
(0.953294 -0.0262407 -4.56065e-22)
(0.991655 -0.0108323 -1.15185e-22)
(0.981237 -0.0170639 -4.42347e-22)
(0.999305 -0.000138969 2.84812e-24)
(1.00201 0.0296142 -2.30648e-22)
(0.999441 -0.000478314 -5.1464e-24)
(1.00005 -0.00300586 5.22778e-25)
(0.955985 -0.0194987 -2.05572e-22)
(0.965712 -0.00857068 4.66043e-22)
(0.98627 -0.000717331 -1.10752e-22)
(0.993753 -0.0518637 -2.35235e-22)
(1.03407 -0.0615014 -5.06423e-23)
(1.00041 -9.23363e-05 7.21953e-24)
(0.999341 -0.00129574 -6.83123e-24)
(0.95872 -0.0163778 1.8448e-22)
(0.999308 -0.000360742 3.35569e-24)
(1.00097 -0.00219389 -3.84246e-24)
(0.991507 -0.00113578 8.58369e-23)
(0.997865 -0.00188668 3.48856e-23)
(0.999892 -0.00011131 -7.51918e-25)
(1.00107 -0.0212357 -1.26845e-23)
(1.02078 0.000782994 1.01309e-21)
(1.00002 -0.000105054 -9.41642e-26)
(1.14135 0.173903 4.76178e-22)
(0.985203 -0.00223512 4.06367e-23)
(1.04724 -0.00101755 -3.40826e-22)
(1.00317 -0.0208931 5.56541e-25)
(0.993051 -0.000884086 1.58471e-22)
(0.960447 -0.0172606 4.09501e-22)
(0.999313 -0.000607069 1.30609e-24)
(0.961081 -0.00327965 8.22352e-23)
(0.998648 -0.0029666 -5.2716e-24)
(0.955259 -0.0164014 -3.18861e-22)
(0.965357 -0.0360661 -5.27959e-22)
(0.98962 -0.013273 2.65112e-23)
(0.998468 -0.0024315 -4.18487e-24)
(0.999491 -0.0234762 9.75974e-24)
(1.00252 -0.0197399 1.5265e-23)
(1.01579 -0.0322839 1.44083e-23)
(0.985358 -0.0482298 5.38032e-22)
(0.998367 -0.00226553 3.32465e-23)
(0.999797 -5.41593e-05 1.24997e-25)
(0.995329 -0.00176681 3.56174e-23)
(1.00007 -0.000796254 4.45858e-25)
(0.998277 -0.00268183 -1.44941e-23)
(0.998784 -0.000238585 6.51397e-24)
(1.0018 -0.00044353 3.83254e-24)
(0.979237 -0.0342211 4.12233e-22)
(1.00042 -6.6653e-05 2.84014e-24)
(0.986281 -0.00255296 -1.66004e-23)
(1.07495 -0.00594336 5.58739e-23)
(0.999646 -7.61965e-05 -1.53996e-24)
(0.998586 -0.00259562 -7.12454e-24)
(0.998676 -0.00067252 -5.72958e-24)
(0.999749 -0.000234646 3.56864e-24)
(0.987344 -0.00725717 1.74893e-22)
(1.00049 -0.000458908 2.47227e-24)
(0.994498 -0.00291769 5.6539e-23)
(1.00198 -0.0186188 1.07873e-23)
(0.99999 -0.00257952 -6.51846e-25)
(1.00114 -0.000824975 4.80191e-24)
(1.00245 -0.0541034 1.00948e-22)
(1.10168 -0.19074 -4.50864e-22)
(0.995187 -0.00060866 -3.73304e-23)
(1.02541 -3.84417e-05 2.97853e-22)
(1.05409 0.0466434 1.46825e-22)
(0.984137 -0.0086333 2.61413e-22)
(0.999108 -0.000296373 1.20501e-23)
(0.978419 -0.00528608 1.39551e-23)
(0.961281 -0.00412284 1.53376e-22)
(1.00092 -0.000997583 1.77328e-24)
(0.999671 -6.88195e-05 4.01974e-24)
(0.984543 -0.00238986 1.7787e-22)
(1.0476 -0.0109809 5.15745e-22)
(0.989122 -0.0177679 -2.49284e-23)
(0.995594 -0.00931759 -7.09626e-23)
(0.998952 -0.00109918 9.32407e-24)
(1.03699 -0.0270915 3.12711e-23)
(1.00081 -0.0185086 6.02523e-25)
(0.975671 -0.00526572 5.95343e-23)
(1.00004 -2.62972e-05 -1.00386e-25)
(0.969791 -0.00712316 -5.36191e-22)
(0.978121 -0.042535 3.53253e-22)
(1.00013 -0.000823813 -1.18915e-24)
(1.01891 -0.0273093 4.10397e-24)
(1.00087 -0.00213661 1.44486e-24)
(0.997363 -0.00199307 9.11741e-24)
(0.99993 -0.000840703 1.47562e-24)
(0.983858 -0.00255679 -2.58433e-22)
(0.999986 -0.000802666 -2.93418e-25)
(0.999801 -0.000134531 4.6697e-24)
(0.961118 -0.0374777 -3.21642e-22)
(0.998973 -0.00204409 -5.83715e-25)
(0.999595 -0.000376921 6.20628e-24)
(0.949707 -0.0149382 -4.46769e-23)
(1.00174 -0.000267217 -2.42955e-23)
(1.081 -0.0446111 2.06819e-23)
(0.987696 -0.0054921 2.59536e-23)
(1.06045 0.104584 -9.24008e-22)
(0.995019 -0.0021839 1.03527e-22)
(0.955477 -0.00687729 4.37383e-22)
(1.00042 -0.000478456 5.1047e-24)
(0.957008 -0.0154291 1.32454e-22)
(1.00103 -0.000752748 9.19869e-24)
(0.998593 -0.00980684 -6.02902e-24)
(0.991798 -0.0122596 9.76245e-23)
(1.03082 0.0187037 2.21946e-21)
(1.00107 -0.00237972 5.85079e-24)
(0.9783 -0.0403584 4.54657e-22)
(0.999598 -6.34844e-05 -2.04875e-25)
(1.04369 0.0333723 -8.64644e-22)
(0.971036 -0.00671857 -4.77756e-22)
(0.973451 -0.00591419 -1.35796e-22)
(0.988979 0.107281 4.21015e-21)
(1.02198 0.000661703 4.42699e-22)
(0.972305 -0.00637014 -4.06533e-23)
(0.974595 -0.00557134 2.39779e-22)
(0.986648 -0.00138525 7.25094e-23)
(1.00018 0.008367 4.52334e-21)
(0.998218 -0.00331892 -6.89832e-24)
(0.99933 -0.000146092 -4.14578e-24)
(0.977467 -0.00562776 3.36445e-22)
(1.00018 -0.000769573 4.7447e-25)
(0.947013 -0.0110454 9.365e-23)
(0.989282 -0.0049172 2.02234e-22)
(0.995782 -0.00178886 -7.65509e-25)
(0.990219 -0.00427318 -8.65647e-23)
(1.04972 -0.0398325 5.14988e-23)
(0.983145 -0.00273483 9.56779e-23)
(0.999366 -0.0118665 -4.41173e-23)
(0.995096 -0.0233557 4.93228e-23)
(0.985947 -0.0207422 6.23476e-23)
(0.996861 -0.000486948 -6.19425e-23)
(0.997395 -0.00104854 2.61977e-23)
(1.13254 0.04681 -1.37233e-21)
(0.997411 -0.000884665 1.89974e-23)
(0.98112 -0.00252917 1.66858e-22)
(0.998943 -0.00116112 7.70314e-24)
(1.00013 0.00359083 2.13522e-21)
(0.999898 -0.000115786 4.4936e-25)
(0.991123 -0.00374135 2.34953e-23)
(0.999939 -0.000674203 1.81648e-24)
(0.999998 -3.42878e-06 6.01297e-27)
(0.992113 -0.0114965 -7.61342e-23)
(1.02379 -0.0582084 4.08498e-23)
(0.994682 -0.00290643 -2.20478e-23)
(1.04507 -0.00355437 -5.02916e-22)
(1.00026 -0.000786612 3.34769e-24)
(0.999637 -0.000384726 2.56043e-24)
(0.999337 -0.00161518 4.81637e-24)
(1.00087 -0.00202302 -8.85308e-24)
(0.999619 -8.38e-05 5.57454e-24)
(0.953549 -0.00733307 6.27862e-22)
(1.01551 0.0229065 -8.50834e-22)
(1.00092 -0.000687316 2.61518e-24)
(0.956803 -0.00819736 -1.08104e-22)
(0.968192 -0.071659 4.41696e-22)
(1.00061 -7.84e-05 5.61991e-24)
(1.07193 -0.0105061 1.18055e-22)
(1.00004 -2.39187e-05 -6.95394e-25)
(1.00392 -0.0111517 6.34444e-23)
(1.00839 -0.00312549 -1.52858e-22)
(0.999614 -0.000393463 5.92048e-24)
(1.00064 -0.00133087 3.3311e-24)
(0.996406 -0.000535691 -3.69832e-23)
(1.00007 -8.15466e-06 -3.03834e-25)
(1.00023 -0.0231548 7.99228e-24)
(0.998312 -0.00179767 -9.62661e-24)
(0.999414 -0.000122156 -1.48789e-24)
(1.00028 -1.83687e-05 -7.12567e-25)
(0.999099 -0.000426688 -2.26841e-24)
(0.964226 -0.00909708 -1.55134e-22)
(1.01102 -0.0133053 3.5354e-24)
(1.02474 -0.00572793 -7.71066e-22)
(0.998649 -0.00072438 -9.05833e-24)
(0.999464 -0.000497033 2.84909e-24)
(0.995853 -0.0233027 -3.19348e-23)
(0.992429 -0.0107732 5.49924e-23)
(0.998752 -0.000271217 -3.6718e-24)
(0.95214 -0.00586814 -1.68573e-22)
(1.00004 -0.00076499 -2.51536e-25)
(0.999453 -0.000110999 8.80562e-24)
(1.00005 -2.48314e-05 1.35346e-25)
(0.944428 -0.0197882 -1.70593e-22)
(0.982409 -0.00291664 -2.45471e-22)
(0.997438 -0.000732249 -1.78628e-23)
(1.04966 -0.0031192 -4.4975e-22)
(0.997505 -0.000448439 -1.16924e-23)
(0.996029 -0.0124138 7.00333e-23)
(0.993148 -0.0355471 1.1293e-22)
(1.00012 -0.00075203 2.04031e-25)
(0.986547 -0.033299 2.72275e-22)
(0.999773 -0.00106564 5.49697e-24)
(1.05985 0.00980365 7.9552e-22)
(1.0005 -3.21081e-05 3.46351e-24)
(0.992734 -0.0100943 -7.8517e-23)
(0.997469 -0.000587715 -4.71451e-23)
(1.02526 -0.000190601 -2.74768e-22)
(0.997547 -0.000313737 5.98115e-24)
(1.02066 0.0854831 -3.63316e-22)
(0.998047 -0.000286412 -7.09881e-24)
(0.999843 -2.68474e-05 6.40401e-25)
(0.99589 -0.0140318 -2.17659e-23)
(1.00001 -0.000151829 2.19539e-26)
(0.99685 -0.00652562 -2.90942e-23)
(1.02814 0.0179178 -4.04635e-22)
(1.00005 -0.000730294 6.22155e-25)
(1.03004 0.0556932 -3.36381e-22)
(0.993039 -0.00946631 -9.62345e-24)
(1.17357 0.11225 -1.00341e-21)
(1.00005 -2.857e-05 -4.45748e-25)
(1.00879 -0.0167132 -2.34321e-23)
(0.998371 -0.0255093 5.10386e-23)
(0.999752 -6.37197e-05 3.42151e-24)
(1.00464 -0.0224597 -2.71624e-23)
(1.06958 -0.183007 -8.12339e-22)
(0.999614 -6.75667e-05 3.31778e-25)
(0.995889 -0.0326787 3.27297e-23)
(0.969794 -0.0178361 -2.90665e-22)
(0.981419 -0.0156196 7.81536e-23)
(1.00052 -0.00111846 -1.06709e-23)
(1.10191 -0.0305081 -1.76025e-22)
(1.00052 -0.00133138 -8.40739e-24)
(0.998331 -0.0032309 -2.27742e-23)
(0.999677 -0.0135123 4.02492e-23)
(1.02428 -0.000143381 -3.68612e-22)
(1.00001 -1.76233e-05 -6.00604e-26)
(1.17498 0.133063 2.77719e-22)
(1.00057 -0.0012994 5.397e-24)
(1.00078 -0.00157585 -7.15324e-25)
(0.993925 -0.000608568 -1.32951e-22)
(1.00192 -0.00188846 2.64331e-24)
(0.993336 -0.00886999 -3.54536e-23)
(0.998291 -0.00199573 2.68905e-24)
(0.988055 -0.00125805 1.79044e-22)
(0.985165 -0.00987146 1.39748e-22)
(1.00009 -0.00031685 -5.47997e-25)
(1.04778 0.0100165 -1.89727e-22)
(0.994248 -0.00465648 -4.98585e-23)
(1.00163 -0.000403464 2.29332e-23)
(0.958314 -0.00675352 1.00757e-22)
(0.945294 -0.00942762 -1.59233e-22)
(0.999354 -0.00168957 4.1349e-24)
(1.03068 0.0117098 -2.90889e-22)
(1.00025 -1.59449e-05 4.9283e-24)
(1.0449 -0.0463548 9.52054e-24)
(1.00012 0.00305984 2.29152e-21)
(1.00011 -0.00948438 9.34234e-24)
(0.998166 -0.000786698 2.14788e-23)
(0.983698 -0.00511638 -3.48912e-23)
(0.989078 -0.00106984 4.18624e-23)
(0.996192 -0.0101512 -5.15167e-23)
(0.96428 -0.0355062 -3.2419e-22)
(0.986537 -0.00996283 1.00698e-22)
(1.00075 -0.000575906 4.71803e-24)
(0.987686 -0.00875228 -3.91964e-23)
(0.997271 -0.00710157 -7.20067e-24)
(0.998186 -0.00457389 -1.63152e-23)
(0.996556 -0.00830874 -6.18053e-24)
(1.00096 -0.000748792 -1.7134e-23)
(0.990034 -0.000883449 -3.02301e-23)
(0.960401 -0.0153927 6.15687e-22)
(1.00018 -0.000812904 1.17289e-24)
(0.993628 -0.00830309 6.94938e-23)
(1.00021 -0.000551501 1.83095e-24)
(1.00751 -0.000205256 0)
(1.00215 -0.00178448 -1.50888e-23)
(1.00016 -0.000545229 9.07449e-25)
(0.982946 -0.00543597 5.42985e-23)
(0.985073 -0.00445608 3.01052e-22)
(0.999399 -0.000305846 2.4964e-25)
(0.998176 -0.000667266 -2.07129e-23)
(1.06551 -0.0427493 -9.07278e-24)
(0.952225 -0.0354631 2.75118e-22)
(0.994477 -0.00681475 1.28518e-22)
(0.989261 -0.00722291 -1.53455e-23)
(1.00004 -0.000273971 2.25258e-26)
(0.998651 -0.00020023 -8.72724e-24)
(1.03137 -0.0337879 1.33241e-22)
(1.0007 -0.00144824 3.22661e-24)
(1.22006 -0.0114545 -2.9257e-22)
(0.98572 -0.0041922 1.175e-22)
(0.999656 -0.000399228 5.17023e-24)
(1.20721 0.0257037 2.13254e-23)
(0.968797 -0.0388745 -2.32027e-23)
(0.999556 -8.27125e-05 1.0103e-24)
(1 -8.48095e-05 -1.42041e-26)
(0.999539 -0.001007 -8.3808e-24)
(0.987552 -0.00348329 1.34983e-22)
(1.03829 -0.0483717 -4.06308e-23)
(0.990689 -0.00588576 -6.01033e-24)
(0.997457 -0.00620444 -2.33681e-23)
(1.02101 0.00432945 -1.3098e-22)
(0.94137 -0.00812043 7.2376e-22)
(1.00002 -0.000290274 8.22033e-27)
(1.27735 -0.0754156 2.27039e-22)
(0.999767 -7.64074e-05 1.23892e-25)
(0.992012 -0.00493451 1.22865e-22)
(0.999478 -0.000258721 -2.21217e-24)
(0.998191 -0.000552596 -2.52448e-23)
(1.00057 -0.000128876 -1.72003e-25)
(0.993922 -0.00776766 9.08181e-23)
(0.98864 -0.00305606 3.82081e-24)
(1.01831 0.0217718 5.04578e-22)
(0.989631 -0.00268256 -8.28705e-24)
(0.999891 -0.000585571 -1.76475e-24)
(0.999217 -0.00640318 -9.54412e-24)
(0.95523 -0.00580718 2.62022e-23)
(0.999983 -4.27419e-06 -1.561e-25)
(1.06591 -0.0457227 6.63789e-24)
(0.998385 -0.000257075 -4.15052e-23)
(0.990536 -0.00235233 3.61272e-23)
(0.999079 -0.000461275 -3.83948e-24)
(0.999574 -0.000199732 -5.69105e-24)
(1.00046 -0.0108324 3.71199e-24)
(0.994205 -0.00727277 -8.41153e-23)
(1.00057 -0.00122071 -7.03497e-24)
(0.993127 -0.00403425 -6.26971e-23)
(1.06292 0.0308198 8.41488e-22)
(1.01321 -0.0302386 5.56067e-24)
(1.00001 -2.48847e-05 -5.04379e-27)
(0.964648 -0.0269624 -2.78595e-22)
(1.00416 -0.0566505 -4.26588e-23)
(1.03913 -0.0108057 -6.81305e-22)
(0.991852 -0.00191039 4.20331e-23)
(0.999375 -0.00062171 -7.41146e-24)
(1.00481 -0.00898779 2.48315e-23)
(0.986454 -0.00865247 -4.70723e-24)
(0.971053 -0.0167995 -2.09315e-22)
(0.993792 -0.00353813 -3.43194e-23)
(0.999947 -0.000161864 4.52975e-25)
(0.992602 -0.00165763 9.94971e-23)
(0.999696 -0.000475794 -4.91857e-24)
(0.994201 -0.00237979 4.77279e-23)
(1.00046 -0.00108466 3.38909e-24)
(1.04048 -0.008779 -1.77487e-22)
(0.997525 -0.0258 -3.42075e-23)
(1.01465 -0.0382128 -4.16388e-24)
(1.00055 -0.000433216 2.12507e-24)
(0.998282 -0.00210026 1.60934e-23)
(0.994107 -0.00331336 -1.4323e-23)
(1.01949 -0.036972 -8.82239e-24)
(1.00004 -0.000300626 -3.8388e-26)
(0.99998 -2.4909e-05 -2.54082e-25)
(0.990268 -0.0268919 2.02071e-22)
(1.12788 -0.00195217 -1.93157e-22)
(0.993294 -0.00148454 -9.99264e-23)
(0.999635 -8.75742e-05 -2.98465e-24)
(0.998109 -0.00490738 -2.97504e-23)
(1.01317 -0.0509361 -1.42833e-22)
(0.999722 -0.000514117 2.86686e-24)
(0.998274 -0.00425917 -8.83743e-24)
(1.00011 -0.000535593 4.75019e-25)
(0.999339 -0.000632348 6.60728e-24)
(1.00016 -0.00731115 5.46639e-24)
(0.995079 -0.00187769 4.6049e-23)
(0.999624 -0.000746769 -7.30657e-25)
(1.08683 0.0206516 2.32714e-22)
(1.03965 0.0426253 -3.60385e-22)
(0.962652 -0.00965036 -2.21355e-22)
(0.993898 -0.00126908 1.45947e-22)
(0.994945 -0.00270938 -7.73758e-23)
(0.993629 -0.000661542 -2.86607e-23)
(1.11659 -0.0433564 -1.41595e-23)
(1.09274 -0.0247916 6.84397e-24)
(0.99332 -0.000716962 2.59611e-23)
(0.999814 -0.000413979 -4.45791e-24)
(1.00109 -0.00553358 2.01964e-24)
(0.953912 -0.00435675 -3.52685e-23)
(0.998421 -0.00368881 -3.30662e-23)
(0.998695 -0.0115936 -1.29791e-23)
(1.00011 -0.000264816 -3.20654e-25)
(0.999995 -0.000280391 1.78794e-25)
(1.01116 -0.0123598 9.33662e-23)
(1.00001 -8.38831e-05 8.91462e-27)
(0.999771 -2.88197e-05 1.18245e-25)
(0.994467 -0.001101 5.0591e-23)
(1.01734 -0.0339386 9.16747e-24)
(1.00529 -0.000320763 1.06252e-22)
(1.00004 -2.64506e-05 3.20926e-26)
(0.998381 -0.00195211 -1.78717e-23)
(1.00015 -0.000576072 1.53624e-25)
(1.00006 -0.000255908 -2.26126e-25)
(0.999546 -0.0010537 6.97643e-24)
(0.988321 -0.0396954 -1.83938e-22)
(1.00075 -0.000833426 -3.66794e-24)
(0.996552 -0.0648012 4.64024e-23)
(0.994991 -0.000952046 1.70388e-23)
(0.995219 -0.0063765 7.11241e-23)
(1.00021 -0.000583722 -3.26002e-24)
(1.00404 -0.00913144 4.47191e-23)
(0.976142 -0.0412423 -3.08245e-22)
(0.973235 -0.0637232 4.97039e-22)
(0.959191 -0.0291548 -3.0052e-22)
(1.00066 -0.0115579 -1.63973e-24)
(0.995446 -0.00596399 3.3601e-23)
(0.996157 -0.0279185 -1.32162e-22)
(1.04065 0.0494744 2.03499e-21)
(1.00067 -0.000172492 -3.34115e-24)
(0.999685 -7.21286e-05 -3.45264e-24)
(0.995693 -0.00221284 -6.22314e-23)
(1.00229 0.00912349 -1.36651e-21)
(0.999568 -0.00315707 2.32787e-24)
(1.00046 -0.00102391 -3.4056e-24)
(1.05052 0.133763 -2.28327e-22)
(1.00603 -0.0592478 -2.44525e-23)
(0.970611 -0.0890723 -8.72054e-22)
(0.999764 -6.59914e-05 -8.39192e-25)
(0.995669 -0.00557366 -3.05004e-23)
(0.999339 -0.00663461 -1.05892e-23)
(0.998574 -0.00319031 -2.04844e-24)
(0.994774 -0.00271853 9.60385e-23)
(0.999544 -0.000217557 3.53272e-24)
(0.962019 -0.0143884 -4.24394e-22)
(1.00113 -0.000181665 -1.70754e-23)
(0.999708 -6.504e-05 5.32974e-24)
(0.995475 -0.00083041 1.5279e-23)
(0.999766 -0.000213769 -3.46603e-24)
(0.975453 -0.00189637 3.27972e-22)
(0.998342 -0.0679297 -1.01916e-22)
(0.946564 -0.0210407 -2.08365e-23)
(1.20128 0.159673 1.41782e-21)
(0.995885 -0.00521002 -9.67223e-23)
(0.999827 -0.001562 -5.2667e-25)
(0.99634 -0.00181858 2.71426e-23)
(0.995917 -0.00072034 -3.80102e-23)
(1.00024 -0.000198286 1.06742e-24)
(0.998466 -0.000733166 1.18365e-23)
(1.00834 -0.0618283 2.55668e-22)
(0.990424 -0.0371208 2.05624e-23)
(0.99609 -0.00486846 1.4117e-23)
(0.998562 -0.00168226 1.35548e-23)
(1.08471 0.042664 1.05394e-21)
(0.999385 -0.000332026 1.23512e-23)
(1.09874 -0.0869794 5.72546e-22)
(1.00028 -0.00347779 -8.8428e-25)
(1.00007 -4.21777e-06 3.63083e-25)
(0.995073 -0.00376274 2.05177e-23)
(0.997979 -0.000841367 -1.13893e-24)
(1.01261 0.0238729 -1.38381e-21)
(1.20835 0.0112907 -6.71528e-23)
(1.01743 -0.00778735 -1.55297e-22)
(0.998845 -0.000178735 3.75638e-24)
(1.00011 -1.39723e-05 8.85144e-25)
(0.946117 -0.012005 3.48307e-22)
(0.997064 -0.000296372 -9.07778e-25)
(0.943699 -0.00763434 5.37972e-23)
(1.00008 -0.000275743 7.05733e-25)
(1.00082 -0.00799585 1.12783e-25)
(1.06823 0.0637904 -3.82826e-21)
(0.998718 -0.00275758 -1.34687e-23)
(0.996292 -0.00455145 4.5615e-23)
(0.997749 -0.00387163 2.12408e-24)
(1.00133 -0.00279316 5.11325e-24)
(1.058 0.0435068 8.16236e-22)
(0.94238 -0.0183412 -1.19953e-22)
(1.001 -0.0085584 6.37112e-25)
(1.00091 -0.00315217 2.503e-23)
(0.999641 -0.00091438 -5.56845e-24)
(1.00045 -0.000301526 -2.11571e-24)
(0.986272 -0.0586835 -3.04316e-22)
(1.01099 -0.0643683 1.52953e-23)
(0.999465 -0.000281442 -4.31461e-24)
(0.986919 -0.00733062 1.61564e-22)
(1.21712 -0.0263541 -6.27824e-22)
(1.00001 -0.000305671 1.84959e-26)
(0.996512 -0.00426516 1.59984e-25)
(1.00127 -0.00379315 -1.14889e-23)
(0.999209 -0.00164383 5.41781e-24)
(0.980394 -0.0214836 9.5356e-23)
(0.996666 -0.00397454 4.19643e-23)
(1.00003 -0.000287882 9.01204e-26)
(0.999297 -0.00444159 1.43124e-23)
(0.996836 -0.00371423 -2.24904e-23)
(0.957155 -0.0286301 1.78167e-22)
(1.0004 -0.00027356 1.52411e-24)
(0.996904 -0.00148984 3.01483e-23)
(0.999064 -0.000161371 4.21294e-24)
(0.999943 -0.000177743 4.16849e-25)
(1.27744 0.0136438 5.54341e-22)
(0.997745 -0.00245374 1.2748e-23)
(0.978541 -0.0139743 -1.58714e-22)
(1.00065 -0.000103443 -6.54654e-24)
(0.955074 -0.0280349 3.85803e-22)
(0.997 -0.00347109 2.71968e-23)
(1.00036 -0.000248619 -7.52117e-25)
(1.00033 -0.000791004 2.60778e-24)
(1.01387 -0.0669102 -2.41216e-22)
(0.994832 -0.0419009 2.47314e-22)
(0.992076 -0.0137723 6.02602e-23)
(1.00067 -0.00746384 -9.92588e-26)
(0.99 -0.0499676 7.06661e-23)
(0.940307 -0.00906178 -7.71618e-22)
(1.02058 0.00923171 -1.2554e-21)
(0.995025 -0.0052378 9.57979e-23)
(0.996817 -0.000652069 1.66047e-23)
(0.940329 -0.0169321 1.79926e-23)
(1.09985 0.103316 -1.41867e-21)
(0.99716 -0.00324366 -3.62641e-24)
(0.999996 -0.0031342 6.48384e-25)
(1.00003 -1.41826e-05 -1.26832e-25)
(1.24798 0.109862 -1.57892e-22)
(0.991801 -0.0614375 -6.53712e-22)
(1.25972 0.0396051 2.69233e-22)
(1.01579 -0.0143916 -2.7821e-25)
(0.999783 -8.7557e-05 7.54559e-25)
(1.00118 -0.00318028 -7.8852e-25)
(0.999778 -7.78097e-05 -5.79395e-25)
(1.00005 -0.000270487 9.41073e-26)
(0.99739 -0.00121256 3.63341e-23)
(1.0012 -0.00915892 -2.37504e-24)
(1.00034 -0.0709699 -4.35705e-22)
(1.04604 0.0614018 1.48353e-21)
(1.00016 -0.00011047 1.51784e-24)
(1.0002 -1.31107e-05 -5.19323e-26)
(1.21311 -0.0409829 4.0052e-22)
(0.942676 -0.00852808 -3.34987e-22)
(0.997317 -0.00302671 3.63465e-23)
(1.00205 -0.00296727 3.58204e-23)
(0.99908 -0.00216732 -4.72809e-24)
(0.976591 -0.0111783 -3.17023e-23)
(1.01702 -0.0694489 1.89507e-22)
(0.945908 -0.024959 7.24906e-22)
(0.953477 -0.015283 -7.00808e-22)
(0.997136 -0.00542979 -5.32119e-24)
(0.966283 -0.0318341 -6.09247e-22)
(0.991255 -0.0349062 -5.76876e-23)
(0.997467 -0.00282173 -4.3582e-26)
(1.08624 -0.174437 9.46985e-22)
(0.979859 -0.00970669 -1.55407e-22)
(0.948289 -0.0113154 -1.48016e-22)
(1.01081 -0.0118116 2.31287e-23)
(0.99938 -0.000157213 4.383e-24)
(1.00066 -0.00311329 4.17617e-24)
(0.993899 -0.00256679 -7.45577e-23)
(1.02664 -0.00437011 -1.41612e-22)
(1.02382 -0.0306583 -8.81611e-23)
(1.05448 0.018435 -1.04113e-21)
(1.00805 -0.0249077 1.15564e-24)
(0.99761 -0.00263266 -6.77792e-23)
(0.999143 -0.000300676 -4.36266e-25)
(0.973796 -0.02136 -5.41084e-22)
(0.999992 -8.05231e-06 1.14888e-25)
(0.949989 -0.0127499 -4.38747e-22)
(1.00002 -0.000142483 8.90831e-27)
(1.06235 0.0400393 6.8708e-23)
(0.999493 -0.000488657 4.39482e-25)
(1.12283 0.11451 -1.5831e-21)
(0.999534 -0.000238472 -2.54838e-24)
(0.999267 -5.85097e-05 -5.07105e-24)
(0.999582 -0.000335544 -2.14598e-24)
(0.999496 -0.000120953 -3.19165e-24)
(0.999018 -0.00179565 -2.12803e-24)
(0.999138 -0.000362542 6.93197e-24)
(0.99942 -0.00014341 2.76449e-25)
(1.02032 -0.0719635 4.04223e-22)
(0.999459 -0.000131596 -4.04357e-24)
(1.02639 -0.0163181 -1.20328e-22)
(0.997371 -0.00476686 1.43397e-24)
(0.999591 -9.19722e-05 2.29179e-24)
(1.10997 0.0112394 1.01039e-22)
(1.00008 -0.000261222 -5.72638e-25)
(0.999338 -0.000171261 1.74597e-24)
(1.00002 -1.54812e-05 -6.17849e-26)
(0.997266 -0.00510006 -2.57227e-25)
(0.999995 -2.53509e-06 -2.94541e-28)
(1.00024 -0.000420024 1.76171e-24)
(1.01074 0.030234 3.65364e-22)
(0.997505 -0.00444059 -5.28315e-25)
(1.20831 -0.0552296 -9.62924e-22)
(1.00018 -1.14217e-05 -1.19528e-24)
(0.998874 -0.00125169 -1.76528e-23)
(1.03386 -0.01355 6.9265e-23)
(1.00086 -0.000403737 -6.02251e-24)
(0.998845 -0.00108339 2.60163e-23)
(0.997633 -0.00414936 -6.32125e-24)
(0.999718 -0.000462112 -3.13388e-24)
(1 -0.000145817 -1.0189e-25)
(1.00022 -2.93051e-05 7.99843e-25)
(0.99982 -0.000171218 -2.6391e-24)
(0.999562 -0.000101118 2.28832e-24)
(0.99953 -0.000110711 -5.20559e-24)
(1.00959 0.0333185 9.77677e-22)
(0.999733 -7.02903e-05 3.6928e-25)
(1.01173 0.0270537 -1.22936e-21)
(0.999743 -0.000498319 -4.70668e-24)
(0.951722 -0.0140648 1.29483e-22)
(0.967313 -0.0336028 -1.66284e-22)
(0.979387 -0.0163372 -3.57274e-22)
(0.995287 -0.000215444 -5.63297e-23)
(0.993506 -0.0422516 5.25523e-23)
(1.01435 -0.0264068 3.67825e-23)
(1.02089 0.00155782 -1.87953e-21)
(1.04163 -0.0182287 2.82443e-22)
(0.988855 -0.0259859 -2.77812e-22)
(1.19102 0.16975 -5.49132e-22)
(0.999007 -0.00107591 -7.11778e-25)
(0.997931 -0.00105161 -7.81683e-24)
(0.999319 -0.00182433 -4.01822e-25)
(1.20144 -0.0686001 4.02578e-22)
(1.00041 -0.00305681 -1.12781e-24)
(1.00002 -0.0049192 -5.23555e-24)
(1.0027 -0.074104 -6.16778e-22)
(1.00003 -0.000132633 1.7502e-25)
(1.02262 -0.000488738 2.64095e-22)
(1.20288 0.0786515 -6.22657e-22)
(0.999828 -0.00380949 -1.4521e-24)
(0.986372 -0.0194845 -2.12683e-22)
(1.00003 -1.57844e-05 3.93898e-25)
(1.0001 -0.000240751 1.01471e-24)
(1.0103 -0.00051804 -2.77152e-22)
(0.999666 -9.37961e-05 -3.88479e-25)
(1.00024 -0.000215332 -1.72953e-24)
(1.05083 -0.0018079 9.21137e-22)
(0.999389 -0.00156368 5.65649e-24)
(1.0122 -0.0128285 7.27955e-23)
(0.99995 -5.93279e-05 4.6337e-25)
(1.00012 -7.67209e-06 -9.27693e-25)
(1.00058 -9.28761e-05 -7.73258e-25)
(1.00029 -0.000205359 6.59897e-25)
(1.00038 -0.000272871 2.05947e-24)
(0.999993 -7.31691e-06 -2.57407e-26)
(0.968427 -0.0353078 1.83023e-22)
(1.19741 -0.0948031 5.03431e-22)
(1.27737 -0.00463606 -1.15854e-21)
(0.999947 -1.24912e-06 -4.77512e-25)
(1.00005 -0.000478849 4.91066e-25)
(1.00877 -0.0460715 2.53929e-23)
(1.00001 -0.000265252 -1.21657e-26)
(0.999689 -8.5208e-05 -1.82748e-24)
(0.99964 -0.000102944 -3.95884e-24)
(1.00013 -9.10017e-05 2.73621e-25)
(0.999712 -7.75166e-05 -1.62106e-24)
(0.958772 -0.037597 -1.71712e-22)
(1.00002 -0.000150453 -8.07503e-26)
(1.27559 -0.0230096 4.40436e-22)
(1.00019 -0.0029843 6.40715e-25)
(1.19289 -0.0806539 -9.49833e-23)
(1.0518 -0.157725 6.85206e-22)
(0.97342 -0.0668507 -5.06699e-22)
(1.01326 0.020895 -5.56833e-22)
(0.998163 -0.000911841 1.70761e-23)
(0.994567 -0.0274389 3.4225e-23)
(0.99903 -0.00233732 7.30355e-24)
(1.04311 -0.154633 -1.28326e-22)
(0.998315 -0.000405806 -1.0103e-23)
(1.00003 -2.25479e-05 2.17876e-26)
(0.953479 -0.0195827 3.92818e-22)
(0.991568 -0.0261542 -1.08977e-22)
(1.03501 -0.150845 -5.92712e-22)
(1.00531 -0.0772459 1.33546e-22)
(1.00021 -0.000408988 -1.20142e-25)
(0.99532 -0.00065797 1.87973e-23)
(0.985921 -0.0343536 -2.58559e-22)
(1.00002 -0.000559051 3.07592e-26)
(1.00027 -0.000553824 3.66169e-24)
(1.00007 -0.000237296 3.43092e-25)
(1.01746 0.061488 2.72832e-21)
(1.02751 -0.1468 1.41399e-22)
(1.00078 -0.0019693 7.74773e-24)
(0.993054 -0.0268771 1.81593e-23)
(1.02055 -0.142647 9.09812e-23)
(1.00003 -0.000140432 -2.84088e-25)
(1.00014 -8.24169e-05 3.072e-25)
(1.01411 -0.138234 1.22636e-22)
(1.00844 -0.133587 -7.15763e-22)
(0.999761 -2.69596e-05 2.33844e-24)
(1.00007 -0.000251413 -4.75405e-25)
(1.00016 0.00690385 3.27049e-21)
(0.942234 -0.00591394 4.52573e-22)
(0.999696 -0.000425714 -8.30903e-25)
(0.991658 -0.114802 -7.26117e-22)
(0.99518 -0.119405 -3.44201e-23)
(1.00005 -0.010939 -8.14759e-24)
(1.00337 -0.128778 -5.24792e-22)
(1.0086 -0.0329301 9.63356e-23)
(0.999072 -0.124113 1.02203e-21)
(1.18403 -0.091263 -3.81221e-22)
(1.0185 -0.0380565 -3.06392e-23)
(0.999456 -0.00133697 5.0632e-24)
(1.00001 -0.000166969 4.07322e-26)
(0.988089 -0.110239 -4.19536e-22)
(0.959566 -0.00799813 -1.03976e-22)
(0.999823 -0.000160303 4.77254e-24)
(0.999677 -0.000389479 -1.4282e-24)
(0.999968 -6.43981e-05 -2.4372e-25)
(1.0456 -0.000791187 2.73893e-22)
(1.06154 -0.160418 -9.54662e-22)
(1.27248 -0.0417853 -7.25605e-22)
(0.999128 -0.000923323 -1.88307e-23)
(1.17446 -0.100629 -3.39379e-22)
(1.00026 -0.000186537 -1.01909e-25)
(0.987638 -0.0252406 3.3158e-23)
(1.0024 -0.00740762 1.28607e-23)
(1.03485 0.0282311 4.47119e-22)
(1.02174 -0.0101131 2.7811e-23)
(1.02047 -0.0102741 -4.35996e-22)
(0.939913 -0.00628648 1.41223e-22)
(0.999422 -0.000538498 -5.6704e-24)
(0.99989 -0.000127171 4.11453e-25)
(0.99999 -1.19112e-05 -8.20969e-26)
(0.99809 -0.000911931 -2.42894e-23)
(0.954667 -0.00765664 -3.86809e-22)
(1.00001 -5.67759e-06 -3.3526e-26)
(0.999847 -0.00410182 1.6168e-24)
(1.01011 -0.0118415 9.24315e-23)
(0.981902 -0.0167589 2.93993e-22)
(1.00002 -3.48863e-05 -2.40101e-25)
(0.999871 -0.00441596 6.90524e-24)
(1.00016 -9.06872e-05 3.02905e-24)
(0.969255 0.113242 -1.44939e-21)
(0.980461 -0.018954 -3.12643e-22)
(1.00024 -3.85978e-05 -6.17771e-24)
(0.999912 -0.000916989 1.59005e-24)
(1.0262 0.0859115 1.05542e-21)
(1.16412 -0.108734 8.01952e-22)
(0.998212 -0.000441126 3.25545e-23)
(1.00007 -9.6479e-05 -1.06201e-25)
(1.00012 -0.00025717 -9.90602e-25)
(1.00818 -0.0804418 3.09708e-22)
(1.26688 -0.0604608 -5.83512e-23)
(0.981198 -0.0227143 -1.126e-22)
(1.1002 -0.0343862 -1.01659e-22)
(1.01504 0.0600319 2.66103e-21)
(0.963938 -0.00820215 6.93563e-23)
(1.00089 -0.0516308 5.59243e-23)
(0.956547 -0.00719738 -3.48579e-22)
(1.01455 -0.0078463 3.7111e-23)
(1.25951 -0.0778413 -3.16988e-22)
(0.946607 -0.009777 2.03718e-22)
(0.998561 -0.000779602 -5.49109e-24)
(0.998591 -0.000319109 -2.72391e-23)
(0.99999 -1.11804e-05 -2.54578e-26)
(1.06368 0.0683582 3.01693e-21)
(1.01122 -0.0305369 -3.91412e-23)
(0.999236 -0.00079062 -7.57275e-24)
(0.998064 -0.000717987 2.43935e-23)
(0.999649 -0.000562014 -3.70796e-24)
(0.999517 -0.00114087 -8.6968e-24)
(1.00926 -0.0112496 -2.85521e-24)
(1.00014 -0.00167011 -1.45205e-24)
(1.00748 0.0752505 -5.25778e-21)
(1.15379 -0.11603 3.84024e-22)
(1.02305 -0.009866 -6.16038e-22)
(0.957884 -0.00847064 1.37605e-22)
(0.984357 -0.00122276 -9.98788e-23)
(1.07227 0.0587003 -1.54578e-21)
(0.961214 -0.0229837 1.39688e-22)
(0.999673 -0.000881008 -6.22427e-24)
(0.999826 -0.000379269 2.11842e-24)
(1.00003 -1.58131e-05 -2.84495e-25)
(0.992359 -0.000828236 -2.40396e-24)
(1.00014 -0.000265133 8.78508e-25)
(0.970125 -0.0404966 -3.76708e-22)
(1.00223 -0.0068793 1.12354e-23)
(1.00004 -5.27377e-05 3.74643e-25)
(1.03535 0.128987 1.0732e-21)
(1.25019 -0.0944651 -3.91022e-22)
(0.9999 -0.00143889 1.72108e-24)
(0.974523 -0.0732548 6.32533e-22)
(1.00039 -9.88235e-05 -3.17742e-24)
(1.00847 -0.0106396 -5.10113e-23)
(1.00021 -0.000382769 -2.40665e-24)
(0.998731 -0.000671192 6.65005e-24)
(0.999976 -8.02897e-05 1.38435e-25)
(1.00133 -0.00181346 7.5162e-24)
(1.00001 -0.000145153 7.54338e-28)
(1.00556 -0.00015499 2.43172e-24)
(1.00113 0.00674556 -1.12923e-22)
(1.00004 -0.00013007 4.48913e-26)
(0.994921 0.0927247 -2.96915e-23)
(1.00002 -2.51351e-05 1.42272e-25)
(1.23939 -0.109267 3.97378e-22)
(1.00195 -0.00642168 -2.45627e-24)
(1.00051 -0.000430593 -6.49528e-24)
(1.14322 -0.122196 -3.67473e-22)
(0.99529 -0.0512203 -1.37738e-22)
(1.00096 -6.31524e-05 -2.27002e-23)
(0.999727 -0.000139805 2.65297e-24)
(1.00174 -0.00601099 6.62273e-24)
(1.02422 -0.0742946 -1.39386e-22)
(0.987234 -0.00489262 1.06702e-22)
(0.953289 -0.00621148 -7.18799e-23)
(1.0012 -7.74506e-05 3.27871e-23)
(1.1043 -0.165758 8.68321e-22)
(1.00045 -0.000451458 -1.85597e-24)
(1.01151 -0.0836629 3.22685e-22)
(1.1317 -0.127421 1.26857e-21)
(1.00013 -7.48989e-05 9.2898e-26)
(0.973818 -0.0700278 -2.90303e-22)
(0.952919 -0.0274068 -1.46885e-22)
(1.18154 0.0682738 5.79458e-22)
(0.998808 -0.000620034 1.69151e-23)
(0.998258 -0.000392402 -5.3666e-23)
(1.21664 -0.133322 -1.07891e-21)
(1.22827 -0.122082 -9.24692e-22)
(1.00453 -0.000153079 -1.32781e-24)
(0.982097 -0.0239312 1.6991e-22)
(1.04649 -0.0502773 7.78098e-24)
(1.04663 0.0302765 -7.90474e-22)
(0.998825 -0.000249115 -2.56624e-24)
(1.00157 -0.0055667 1.53115e-23)
(1.12058 -0.130862 -9.317e-23)
(0.994509 -0.0384328 9.88781e-23)
(0.999868 -0.000184982 -2.44018e-24)
(0.960874 -0.0211131 5.73414e-23)
(1.10943 -0.132979 5.52847e-22)
(0.999437 -0.000632451 1.06438e-24)
(1.0124 -0.0204932 -4.63809e-23)
(0.999576 -0.000974764 1.99776e-24)
(0.999887 -2.94296e-06 -4.72491e-25)
(1.01517 -0.0869858 -3.76955e-23)
(0.961211 -0.00752929 3.87302e-22)
(1.20437 -0.143328 4.35765e-22)
(0.967964 -0.00819954 2.93769e-22)
(0.99993 -3.87531e-05 1.79262e-25)
(0.996233 -0.00135111 9.71087e-24)
(0.978241 -0.00144373 1.05892e-23)
(1.00001 -1.54255e-05 1.06541e-25)
(1.02835 -0.0766089 -7.66102e-23)
(1.19142 -0.151713 1.1117e-21)
(1.099 -0.13464 -1.46806e-21)
(1.02978 0.0383635 2.05342e-21)
(1.08895 -0.135123 3.59012e-22)
(1.03278 -0.0787522 5.42153e-23)
(1.01477 -0.000341078 -2.05885e-22)
(1.02125 -0.000267351 4.92561e-22)
(1.02414 0.000166266 -5.32403e-22)
(0.998335 -0.00882774 -2.33216e-23)
(1.03791 -0.0807194 -6.35691e-23)
(1.04324 -0.0822696 1.05386e-22)
(1.04904 -0.0834491 2.73293e-22)
(0.999786 -0.00162769 4.43779e-24)
(1.05526 -0.0840805 -3.11215e-22)
(0.999905 -0.00169459 -1.84355e-24)
(1.17854 -0.158763 -2.68897e-22)
(1.00772 -0.0100814 1.51018e-22)
(1.11643 -0.165288 -1.14658e-21)
(1.06521 0.0266484 -1.45941e-21)
(1.01389 -0.0200988 -1.2041e-23)
(1.02828 -0.165065 6.45234e-23)
(0.975256 -0.0765856 1.12663e-23)
(0.963472 -0.0286362 4.46705e-22)
(1.00022 -0.000139356 -7.98609e-25)
(1.00003 -2.15051e-05 -3.72128e-25)
(0.985539 -0.00755443 1.11614e-22)
(1.00199 0.00473734 1.37907e-21)
(0.99625 -0.00710481 -3.07466e-23)
(1.0054 -0.0272356 -3.56311e-23)
(0.999942 -0.000145146 -1.43359e-24)
(1.00005 -3.43553e-06 4.45528e-25)
(0.972255 -0.0158156 -8.89633e-23)
(1.01224 -0.0385579 -1.75805e-23)
(1.15062 -0.169862 -4.3972e-22)
(1.00334 -8.08891e-05 6.62932e-24)
(1.07898 -0.135042 -7.84092e-23)
(0.998465 -0.0348656 -2.7656e-22)
(1.01941 -0.0902178 -4.88854e-22)
(1.01655 -0.0141999 1.6167e-22)
(1.00016 -0.000120995 -4.63765e-25)
(1.00015 -0.000291024 -2.24851e-24)
(1.16504 -0.164884 5.94846e-22)
(0.974141 0.106482 4.20601e-21)
(0.989252 0.123885 -2.16435e-21)
(1.00033 -0.000662569 -1.426e-24)
(0.987977 -0.0180454 1.88807e-22)
(1.00027 -0.000459654 -8.49433e-25)
(0.993743 -0.00632564 4.68955e-23)
(1.06162 -0.0842888 -7.12396e-23)
(1.0068 -0.0218147 -1.16741e-24)
(1 -6.88053e-05 5.27065e-27)
(0.989437 -0.034157 -3.17668e-23)
(0.952433 -0.025264 5.25481e-23)
(1.0244 -0.00945527 -2.18917e-22)
(1.06965 -0.134028 -1.23131e-21)
(0.99972 -0.00015253 7.74108e-24)
(0.981087 -0.0270404 -1.06677e-22)
(0.999019 -0.000499868 -1.35869e-23)
(0.977563 -0.0413634 -3.50284e-22)
(1.00151 -0.0175587 1.75923e-23)
(0.999662 -0.000843762 6.54163e-24)
(0.977731 -0.0116467 3.46178e-22)
(0.976032 -0.0801022 1.32678e-22)
(1.10305 0.123323 2.91738e-21)
(1.06043 -0.132085 -3.34904e-22)
(0.992006 -0.00889592 -1.04709e-22)
(0.999871 -1.33591e-05 2.07991e-24)
(0.999511 -0.000538279 -3.89957e-24)
(0.999184 -0.000855267 3.19029e-24)
(0.999845 -3.29067e-05 5.53654e-25)
(1.00003 -7.25702e-05 5.83183e-26)
(1.02403 -0.0932949 4.99132e-22)
(0.999997 -8.61158e-06 -1.3342e-26)
(1 -2.35811e-05 -2.18665e-27)
(0.987453 -0.00223623 -5.23842e-23)
(1.05232 -0.12951 9.78007e-22)
(0.99908 -0.000393424 -1.59617e-23)
(1.05632 0.127659 1.13769e-21)
(0.996614 -0.00316976 1.06974e-23)
(1.04481 -0.126889 -3.45237e-22)
(0.976486 -0.00597816 1.47453e-22)
(1.04159 -0.00657103 -3.16379e-22)
(1.03276 0.013646 -2.63498e-23)
(1.02914 -0.0963118 6.7289e-22)
(0.965149 -0.00925405 5.71508e-23)
(1.03221 -0.0147988 -7.01494e-23)
(1.03796 -0.12408 1.96662e-22)
(1.00012 -0.000241502 3.4785e-25)
(0.976799 -0.0840373 7.22407e-22)
(1.00113 -0.0036795 9.46913e-24)
(0.999192 -7.8528e-05 1.83889e-24)
(0.980238 -0.00466705 -1.94463e-22)
(1.19569 0.0906202 3.50164e-22)
(0.998722 -0.00112551 -2.34646e-23)
(1.03443 -0.0987123 7.07169e-22)
(0.990465 -0.0115892 9.46232e-23)
(1.00174 -0.0124768 7.77875e-25)
(1.00022 -0.000755026 -3.78005e-24)
(1.03155 -0.120792 -2.65555e-22)
(1.00011 -0.000181091 -1.05458e-24)
(1.00725 -0.0274947 4.6237e-23)
(1.00004 -6.55998e-05 -1.07299e-25)
(0.963552 -0.0134927 -2.47835e-22)
(0.999957 -0.000122037 -9.27158e-25)
(1.02553 -0.117386 5.56518e-22)
(1.04821 0.125999 -7.48554e-22)
(1.00924 0.0423209 1.04256e-21)
(0.999691 -0.000813955 4.91944e-24)
(0.999136 -0.00042654 -1.68645e-24)
(0.979714 -0.0114004 -1.26978e-22)
(0.995923 -0.00179795 -4.48793e-23)
(0.999779 -0.00020675 2.09229e-24)
(1.00244 -7.48469e-05 2.14768e-23)
(1.00001 -2.41431e-05 9.53073e-26)
(1.00302 0.0133287 6.64996e-22)
(0.993252 -0.0163422 -1.06106e-22)
(1.00003 -1.73197e-05 6.87334e-26)
(1.04008 -0.101006 4.20227e-22)
(0.999871 -0.00015314 1.00611e-24)
(0.999242 -0.000363833 -1.58641e-23)
(0.962144 -0.00443204 2.89768e-22)
(0.97904 -0.092454 2.23664e-22)
(1.01981 -0.113753 1.01631e-21)
(0.963562 -0.0152383 4.81861e-22)
(1.04295 -0.00715939 6.64985e-22)
(1.05412 0.0159673 1.81419e-21)
(1.07583 0.0531646 1.44098e-21)
(0.99997 -4.00874e-05 9.11811e-26)
(0.998679 -0.00133141 2.0822e-24)
(1.03791 -0.0680381 -2.56396e-22)
(0.999913 -9.58717e-05 -7.26262e-25)
(0.999817 -4.00427e-06 1.56797e-24)
(0.944994 -0.00808915 6.6126e-23)
(1.00195 -5.66697e-05 -4.21775e-23)
(1.00013 -1.58739e-05 1.35314e-24)
(1.04609 -0.103131 -2.16094e-22)
(1.02711 -0.0291386 3.85573e-24)
(0.997804 -0.001128 -2.04412e-24)
(0.962714 -0.00297067 4.10733e-22)
(0.981657 -0.009551 5.43448e-23)
(0.977612 -0.0881527 5.91732e-23)
(1.01467 -0.110067 -2.55924e-22)
(0.966584 -0.0087183 -5.44006e-22)
(0.999724 -0.000686433 1.07062e-24)
(1.14908 0.0604877 -6.13994e-22)
(1.00827 0.0358018 9.08233e-22)
(0.987407 -0.00617268 -5.64947e-23)
(1.05312 -0.10534 6.59197e-22)
(1.00373 -0.0269277 -1.14602e-23)
(0.999868 -0.000340828 1.42013e-24)
(0.973693 -0.00415332 4.51941e-22)
(1.10505 -0.0726696 -2.00675e-22)
(0.995849 -0.00905882 1.22333e-23)
(0.956823 -0.00329748 1.26997e-22)
(0.99651 -0.000567131 1.06777e-23)
(0.999327 -0.00381344 -4.76261e-24)
(1.00053 -0.0007059 1.92633e-25)
(0.997997 -0.00212767 -2.97151e-23)
(1.0001 -0.000175657 2.23402e-24)
(1.03052 -0.0158162 3.0409e-22)
(0.999998 -1.04703e-05 -2.28929e-27)
(1.00618 -0.102099 7.81212e-22)
(1.00016 -0.000100398 2.46318e-25)
(1.00141 0.0138108 8.07648e-22)
(0.999926 -0.000770414 -8.84578e-25)
(1.01006 -0.106103 -2.51494e-22)
(1.00001 -0.000138022 -1.05365e-27)
(1.02251 0.00029466 5.55281e-22)
(1.02136 0.00036062 -1.48236e-21)
(1.09746 -0.0767411 -1.9144e-22)
(0.950265 -0.0244149 -1.49942e-22)
(0.976764 -0.0124604 3.15615e-23)
(0.973405 -0.01487 2.66708e-22)
(1.00005 -0.000123567 -7.21003e-26)
(1.11264 -0.0682938 -1.17915e-22)
(1.01339 -0.0889809 6.04154e-23)
(1.00266 -0.0980731 6.64859e-22)
(0.998696 -0.00021439 -2.0213e-23)
(0.996089 -0.00760052 1.38531e-23)
(1.0005 -0.000331483 -4.98959e-24)
(0.984084 -0.0101355 3.69746e-22)
(1.06069 -0.106751 -4.42695e-22)
(1.02474 -0.00152722 -2.40744e-22)
(1.00005 -6.94379e-05 -4.79293e-25)
(0.999836 -8.05992e-05 7.48905e-25)
(1.00007 -8.96264e-05 3.08921e-25)
(1.00006 -0.00168013 -1.49276e-25)
(1.00987 -0.0387047 -7.04643e-23)
(0.99494 -0.0618043 -2.85604e-22)
(0.999948 -4.5255e-05 -2.78336e-25)
(0.96885 -0.0253125 1.16424e-22)
(1.00062 -3.9385e-05 1.28025e-23)
(0.98613 -0.0304932 5.53188e-23)
(0.999881 -0.000273877 0)
(0.999474 -0.0942123 9.87087e-23)
(1.09008 -0.0795597 1.95629e-22)
(1.02312 -0.00119384 -7.77608e-22)
(0.9952 -0.00219565 -3.70801e-23)
(0.999983 -2.28654e-05 -2.12602e-25)
(1.00019 -0.000533709 -2.10523e-24)
(0.999985 -8.28351e-07 5.94773e-26)
(1.02574 -0.00891802 -3.5736e-22)
(0.993864 -0.0864423 -9.44336e-22)
(1.00013 -8.28678e-05 -2.19331e-25)
(0.99998 -2.3028e-05 -9.38282e-26)
(1.00004 -0.000122522 -2.92681e-26)
(0.998069 -0.00310762 3.86144e-23)
(0.980583 -0.0107359 5.14541e-23)
(0.999293 -0.000389639 -7.81448e-24)
(1.0001 -0.00142151 -2.37125e-25)
(0.967662 -0.0218204 -2.28993e-22)
(1.0003 -0.000771808 -1.72722e-24)
(0.996485 -0.0903193 -5.54294e-22)
(0.999782 -0.000106558 -1.76745e-24)
(1.00175 -5.35116e-05 1.96706e-24)
(1.00001 -1.46252e-05 3.46418e-26)
(0.999802 -0.00137438 -2.66704e-25)
(0.998349 -0.00129044 -1.95825e-23)
(1.08242 -0.0815872 1.8843e-22)
(1.14751 -0.021664 -4.74931e-23)
(0.999773 -0.000534011 3.80687e-24)
(0.998849 -0.00618063 2.89702e-23)
(0.97575 -0.0132774 -4.70676e-22)
(1.06808 -0.0841383 4.11838e-22)
(0.999341 -0.000359496 -2.71656e-24)
(1.00015 -0.000741866 -1.5044e-24)
(1.12107 0.0783125 2.17014e-21)
(1.00004 -7.02979e-05 -1.47455e-25)
(1.07145 0.183247 -1.69876e-22)
(0.999489 -0.00123547 6.89345e-24)
(0.948065 -0.0234317 -3.6869e-22)
(0.999481 -0.000549503 1.03285e-23)
(0.999507 -0.0114488 1.23496e-23)
(0.991662 -0.0826216 5.72538e-22)
(1.00126 0.0201783 8.76506e-22)
(1.1579 0.0394149 4.63951e-22)
(0.973907 -0.0204704 6.37763e-23)
(1.01904 -0.035581 1.32268e-23)
(0.96929 -0.00771364 -6.43196e-23)
(1.07515 -0.0835595 -3.25102e-22)
(0.985795 -0.0199694 2.97247e-23)
(0.998811 -0.00127735 2.84371e-25)
(1.08479 -0.105977 9.34512e-22)
(0.99991 -0.00019801 -3.24047e-25)
(1.09937 0.043422 -1.32552e-21)
(0.997079 -0.00119295 5.4852e-23)
(0.987493 -0.00686223 -1.32728e-22)
(1.00011 -6.80726e-05 -6.30565e-25)
(1.14398 -0.0313875 2.30669e-23)
(1.03892 0.0224575 -9.22565e-22)
(1.12043 -0.0966166 1.08587e-22)
(0.993559 -0.00586494 -1.88295e-23)
(1.02082 -0.00500427 2.51209e-23)
(1.00131 -0.00343956 2.39792e-24)
(0.974543 -0.0140127 2.11428e-22)
(0.96252 -0.027947 -1.81209e-22)
(0.955532 -0.0353827 2.44929e-22)
(0.985655 -0.0027215 3.25496e-23)
(1.00005 -6.44773e-05 5.71045e-25)
(0.999961 -0.000117036 5.85465e-25)
(1.11114 -0.100048 -3.85213e-22)
(1.00004 -5.83603e-05 -3.91705e-25)
(0.999293 -0.000335657 -7.41312e-24)
(0.998573 -0.00247997 2.05106e-23)
(0.99995 -0.000147416 2.06575e-27)
(1.15029 -0.011596 -6.68741e-23)
(1.07619 -0.107218 4.34314e-22)
(1.10178 -0.102552 6.47172e-23)
(1.09358 -0.106035 -4.19126e-22)
(0.988144 -0.0754199 1.01562e-22)
(0.999982 -2.56965e-05 -1.41739e-25)
(1.0321 0.0384947 -9.2406e-22)
(1.02189 -0.00478618 3.42078e-22)
(1.00358 0.0187351 8.6355e-22)
(1.06831 -0.106809 6.93255e-23)
(0.997345 -0.0352885 -9.91703e-23)
(0.989772 -0.0789436 -1.15061e-23)
(1.03962 0.047165 6.15828e-22)
(0.983979 -0.0215294 1.89976e-23)
(1.00317 -0.000378687 -7.34739e-23)
(0.998464 -0.00231906 2.10187e-23)
(0.999426 -0.000304971 -1.04659e-23)
(1.00002 -9.51935e-05 -1.12011e-25)
(1.00211 -0.0098787 1.02204e-23)
(0.983512 -0.010242 -2.95745e-22)
(0.999777 -0.0002367 7.51075e-24)
(0.986094 -0.000538328 1.88121e-22)
(1.00745 -0.0472352 -1.11679e-22)
(1.02281 -0.027337 1.39748e-22)
(0.99998 -2.88125e-05 -2.46076e-25)
(1.00055 -0.00356158 -1.71265e-24)
(0.999388 -0.0171545 -4.1104e-23)
(1.00006 -8.79131e-05 7.14408e-26)
(1.13921 -0.0404044 -1.35199e-22)
(0.975203 -0.00346052 1.68943e-23)
(1.02292 -0.0044815 -3.03664e-22)
(1.00001 -7.59766e-05 1.11417e-26)
(0.991712 -0.00829752 -2.36353e-23)
(0.99439 -0.0023727 6.91177e-24)
(0.999719 -0.000328103 -1.4789e-24)
(1.01971 -0.00516012 -2.95702e-22)
(0.999975 -4.01097e-05 5.04932e-25)
(0.999906 -0.00010536 -1.09534e-24)
(1.00004 -6.2829e-05 -8.79062e-26)
(0.996537 -0.002903 -8.3994e-23)
(0.98037 -0.0586507 -5.21264e-22)
(0.997898 -0.0127992 7.9311e-23)
(1.00009 -0.000723628 3.73522e-25)
(0.984459 -0.0105435 -1.10196e-22)
(1.00127 -4.11489e-05 -2.34532e-23)
(1.09369 0.0187512 -2.3944e-22)
(1.00003 -1.95254e-05 5.82943e-25)
(0.99837 -0.00215686 -7.38446e-24)
(0.999015 -0.000822007 -2.0857e-23)
(1.027 -0.00825023 -7.22316e-23)
(0.999977 -3.59165e-05 -4.07809e-25)
(0.999767 -4.79954e-05 -3.05145e-24)
(1.03232 -0.0305851 8.5893e-23)
(1.02386 -0.00408231 7.6924e-22)
(0.998469 -0.000839763 -9.76202e-24)
(1.00004 -1.12351e-05 1.01863e-25)
(0.999965 -3.48208e-05 1.33362e-25)
(1.00166 -0.000103107 5.38528e-23)
(1.00025 -0.000185515 -7.16807e-25)
(0.999625 -0.00662619 -1.94342e-24)
(1.14813 -0.0786221 3.08542e-22)
(0.997936 -0.00195235 -1.80404e-23)
(0.958146 -0.00943794 2.64375e-23)
(1.11949 0.00240119 1.00151e-22)
(0.982533 -0.0114776 1.10309e-22)
(1.13902 -0.0865819 2.99286e-22)
(0.98166 -0.00309969 -1.5171e-22)
(0.999979 -3.22423e-05 -1.00254e-25)
(1.01536 -0.0195428 -2.10173e-22)
(1.12993 -0.0923916 2.36748e-22)
(1.03542 -0.0121195 3.60642e-22)
(1.00002 -9.90279e-05 6.5605e-26)
(0.943465 -0.0063639 -1.13161e-22)
(0.987687 -0.0332854 1.85805e-22)
(0.999905 -0.000112688 3.37419e-25)
(1.13348 -0.0489004 3.50306e-23)
(0.996464 -0.00799886 -3.83493e-23)
(1.00003 -0.000701926 -3.41221e-25)
(1.00014 -0.000526412 -4.12972e-25)
(1.00029 0.0056376 -1.1101e-21)
(0.997891 -0.00178108 -2.14892e-23)
(0.999501 -0.000258929 1.8342e-24)
(1.09349 0.125916 -1.03124e-21)
(0.998876 -0.000966194 -1.12968e-24)
(1.00024 -0.000537152 -4.11927e-24)
(0.996184 -0.000467881 -4.08203e-23)
(1.00053 -0.00696601 1.74662e-25)
(0.986447 -0.0386397 -2.68781e-22)
(1.00634 -0.0364895 -7.45193e-23)
(0.97765 -0.101475 1.2009e-22)
(1.12982 0.198722 1.35963e-21)
(1.00007 -0.000131741 -2.99273e-25)
(0.975488 -0.00935965 1.11556e-22)
(1.00209 -0.00164755 -1.41383e-23)
(1.02043 -0.0398547 4.83039e-23)
(0.999984 -2.44485e-06 -6.13139e-26)
(1.01166 -0.000275315 -7.48756e-23)
(0.999758 -0.000276184 -2.5018e-24)
(1.11993 -0.0628349 7.35225e-23)
(1.14327 0.0698776 -1.68738e-21)
(0.981569 -0.00856307 1.12363e-22)
(1.16295 -0.0608548 1.3199e-23)
(0.999006 -0.00223839 -7.22191e-24)
(0.995466 -0.00366914 -3.31647e-23)
(1.00003 -4.75722e-05 -4.61012e-25)
(1.12717 -0.0564829 -4.50511e-23)
(1.0134 -0.00323807 -1.14487e-22)
(0.987597 -0.00169357 8.37598e-23)
(0.999901 -4.03714e-05 9.2752e-25)
(1.00009 -0.0001646 -1.09238e-24)
(0.977925 -0.00976691 6.9845e-23)
(1.00001 -7.91803e-05 -1.09099e-27)
(1.11609 -0.192061 1.14239e-21)
(1.15557 -0.069947 -9.00209e-22)
(0.981531 -0.00759744 -2.56899e-23)
(1.0013 -0.0126697 -2.23993e-24)
(0.981559 -0.0066533 1.64275e-22)
(1.03192 0.085927 3.63911e-21)
(1.06498 0.128686 -2.69711e-22)
(1.16915 -0.0502881 -8.4939e-23)
(1.01263 -0.0169622 -6.70304e-23)
(1.00001 -8.755e-05 -5.92975e-27)
(0.999968 -3.8579e-05 -1.28384e-26)
(0.998697 -0.00263868 -4.07596e-25)
(0.999367 -0.00302354 1.17447e-24)
(1.00004 -2.15212e-05 -3.79702e-25)
(1.02472 -0.00359472 2.99968e-22)
(0.999372 -0.000134222 -5.55074e-24)
(1.00003 -5.30908e-05 -3.04975e-25)
(0.999974 -8.86848e-05 1.71526e-25)
(1.04928 0.0201045 -1.04709e-21)
(0.999973 -5.10533e-06 -1.5831e-25)
(1.00007 -0.00012346 -4.41682e-25)
(0.999699 -0.000357775 -2.6261e-24)
(0.975534 -0.00248601 -2.3874e-22)
(1.00002 -3.13366e-05 -2.55129e-25)
(1.02461 -0.000431273 7.33088e-22)
(1.00091 -3.00733e-05 1.69061e-23)
(1.00001 -2.89642e-06 -6.6387e-27)
(0.999973 -3.87367e-05 2.58374e-25)
(1.00009 -0.000515921 -1.635e-24)
(1 -2.51573e-05 4.29977e-27)
(1.06949 0.14011 1.98468e-21)
(1.00015 -0.000110081 -2.52353e-24)
(1.02261 -0.0416415 2.48026e-23)
(0.941112 -0.00681457 -3.13119e-22)
(1.00007 -9.10963e-06 -4.82951e-25)
(1.00032 -2.26212e-05 -2.65937e-24)
(0.999282 -7.27594e-05 6.55084e-24)
(0.999448 -0.000452654 8.39971e-24)
(0.999933 -0.000134781 -8.827e-25)
(0.999792 -0.000229948 -1.09836e-24)
(0.999986 -2.23756e-05 5.09562e-26)
(0.952171 -0.0173735 1.98314e-23)
(1.02819 -0.00747917 -6.70942e-22)
(1.00663 -0.00159084 -9.40636e-23)
(0.99985 -0.000404757 3.89094e-24)
(1.00087 -0.00171228 9.39966e-24)
(1.00002 -3.36824e-05 2.03618e-25)
(0.994749 -0.000327575 1.75814e-23)
(0.999061 -0.00207318 -1.05618e-23)
(1.02578 0.09243 -8.03426e-22)
(1.02549 -0.00302199 2.53431e-23)
(0.999982 -6.75421e-06 3.32118e-25)
(1.01439 -0.00338372 2.59668e-24)
(0.939562 -0.0114203 -7.213e-22)
(0.999828 -0.000179472 -1.10364e-24)
(0.985692 -0.0116971 -4.08053e-22)
(0.999564 -0.000216715 5.11714e-24)
(0.997342 -0.0302554 -1.07534e-22)
(0.95338 -0.0350322 -7.74334e-22)
(1.01238 -0.00316167 5.03468e-23)
(0.99877 -0.00116844 2.56422e-24)
(0.999292 -0.000185728 5.20343e-24)
(1.19281 0.161393 -2.6704e-22)
(0.986034 -0.0126123 1.05843e-22)
(1.23743 0.158722 1.23289e-22)
(1.0768 0.0363882 -4.59899e-23)
(1.00004 -2.40231e-06 -2.58366e-27)
(0.984671 -0.0655658 -6.41022e-22)
(0.943783 -0.0184399 5.97439e-22)
(1.00058 -0.00500838 1.73541e-25)
(0.945831 -0.0198125 1.2746e-22)
(0.994084 -0.000663686 -1.74475e-23)
(1.00004 -2.93003e-05 -4.94334e-25)
(1.13667 0.0785356 -7.45185e-22)
(1.00605 -0.00149701 9.93622e-24)
(0.995358 -0.0111346 7.82014e-24)
(0.986479 -0.0135403 2.63946e-22)
(0.999953 -0.000155399 -2.73499e-25)
(0.99988 -0.000148889 -2.31294e-25)
(1.01481 -0.0153223 3.62765e-23)
(1.00718 -0.0244797 2.42107e-24)
(1.00065 -0.0263047 1.48105e-22)
(0.998064 -0.000351313 8.9738e-24)
(1.01254 -0.0019936 7.50435e-23)
(1.01056 -0.00289109 -2.69393e-23)
(1.00018 -9.98743e-05 -1.79957e-24)
(1.00003 -3.87858e-05 -1.97531e-25)
(0.999793 -8.81639e-05 2.02688e-26)
(1.0038 -0.0013627 -3.32113e-23)
(0.990418 -0.005298 -6.08488e-23)
(1.01113 -0.0112427 -3.4593e-23)
(1.02663 0.00465992 1.04096e-22)
(1.00971 -0.00273939 2.41478e-23)
(1.00065 -2.06125e-05 3.96581e-25)
(1.02615 -0.00237557 -5.17863e-22)
(1.01892 -0.00247183 4.20841e-22)
(1.00024 -0.000139603 -7.93993e-25)
(1.00018 -0.000110642 2.77828e-27)
(1.01145 -0.00301298 -9.79071e-23)
(0.999997 -9.4834e-06 5.3112e-27)
(0.999867 -0.000820583 1.96331e-24)
(0.999595 -0.000200101 3.71689e-25)
(1.00023 -1.4821e-05 4.02431e-24)
(1.02934 -0.00656117 -6.52317e-22)
(0.97629 -0.00540073 5.32194e-23)
(1.00552 -0.00135939 1.35463e-22)
(1.00006 -8.20531e-05 7.26724e-26)
(0.988965 -0.0171065 7.39265e-23)
(0.985687 -0.0687457 1.83526e-22)
(0.986979 -0.0144569 2.22989e-22)
(0.973629 -0.0363289 -2.76161e-22)
(0.970552 -0.00726094 4.47963e-22)
(0.999972 -1.33169e-05 3.91727e-25)
(0.999624 -0.000609894 -9.35404e-25)
(1.00003 -0.000120359 6.59859e-26)
(1.00004 -5.06249e-06 2.10695e-26)
(1.00013 0.00284452 2.9508e-22)
(1.07802 0.0303252 -2.17182e-22)
(0.986846 -0.0720545 4.34052e-22)
(0.999979 -2.78986e-05 -3.5477e-25)
(1.08739 0.0402253 -1.60999e-21)
(0.999812 -4.85988e-05 -1.0456e-24)
(0.997448 -0.00096989 -1.22659e-23)
(1.00016 -0.000131205 1.57316e-24)
(1.00004 -1.26025e-06 -1.93105e-25)
(1.00195 -0.00163759 -1.24397e-23)
(1.00006 -2.44603e-05 -2.02295e-25)
(1.00135 -0.00517648 -1.85116e-24)
(0.995857 -0.014979 9.57143e-23)
(1.00012 -0.000198995 -2.76634e-25)
(0.957081 -0.0135601 -4.35078e-22)
(0.999909 -0.000276524 -1.53537e-24)
(1.03398 -0.000755639 3.56024e-22)
(0.999898 -0.000331302 1.98852e-25)
(1.00019 -6.11576e-06 -2.8758e-25)
(0.999674 -0.000437396 -2.40659e-24)
(0.993008 -0.00869848 -1.88386e-23)
(1.00012 -7.52931e-05 1.23546e-24)
(0.999982 -2.21722e-05 1.4651e-25)
(1.00052 -1.68829e-05 9.7306e-24)
(0.985567 -0.00234732 9.68687e-23)
(1.00003 -0.000109131 3.23491e-26)
(0.990079 -0.0129574 8.93055e-23)
(0.999441 -6.66147e-05 -9.68552e-25)
(0.978987 -0.00539373 1.06192e-22)
(0.969627 -0.0270333 1.34239e-22)
(0.968193 -0.0235644 -4.3967e-22)
(1.01673 -0.0134908 -1.79484e-22)
(0.986631 -0.00264395 1.27296e-23)
(1.14577 -0.0629116 -3.50177e-23)
(0.996934 -0.000418896 2.40936e-23)
(0.983791 -0.062507 3.03358e-23)
(1.00011 -0.000234039 4.56354e-25)
(1.0003 -0.000265858 2.60244e-24)
(1.00003 -5.12036e-05 8.07004e-28)
(1.02757 -0.000984846 2.14037e-22)
(0.986247 -0.028785 3.02893e-22)
(1.00173 -0.0100367 1.18152e-25)
(0.96002 -0.00633045 -1.93699e-22)
(0.999702 -0.000558637 4.85876e-24)
(1.0006 -0.000155015 -1.85891e-24)
(1.00294 0.0109523 1.14747e-21)
(0.975863 -0.0112373 1.20023e-22)
(1.00003 -0.000263016 -2.38173e-25)
(0.992674 -0.0144236 -3.64549e-24)
(1.00008 -0.000232156 -3.19857e-25)
(0.997037 -0.00315197 -2.80556e-23)
(0.995574 -0.000737516 -1.7341e-24)
(0.999959 -0.000128759 6.13047e-25)
(1.07061 -0.163923 -1.044e-21)
(1.03038 -0.00542483 -2.80534e-22)
(0.999973 -7.19377e-05 -3.10684e-25)
(0.897524 0.123509 -5.18794e-21)
(0.999745 -7.25792e-05 -4.10583e-24)
(0.972774 -0.0226912 4.98602e-22)
(1.00012 -1.94013e-05 -1.41293e-24)
(0.999823 -0.00107232 6.09146e-25)
(0.997468 -0.000813849 2.66708e-25)
(1.00002 -8.99471e-05 7.16919e-26)
(1.00005 -1.03343e-05 -3.02204e-25)
(0.971817 -0.00690324 3.24269e-22)
(0.98757 -0.0153553 -1.66998e-22)
(1.00042 -1.3429e-05 9.74413e-24)
(1.0849 0.00503863 -2.87097e-22)
(1.00002 -0.000165475 8.41173e-27)
(0.999516 -0.00039729 -2.60882e-24)
(0.999628 -0.000324107 4.93444e-24)
(1.14709 0.0415476 1.74313e-22)
(0.999985 -2.17149e-05 -7.21475e-27)
(1.01357 -0.0271979 3.2615e-23)
(0.979581 -0.0494879 -2.52449e-22)
(1.04306 -0.0087293 -5.81966e-22)
(1.00002 -0.000115941 -1.18205e-25)
(0.99744 -0.00113186 -3.30518e-23)
(0.998438 -0.000274786 2.93526e-23)
(0.974812 -0.0200895 2.60233e-22)
(0.99999 -3.00415e-05 -2.6461e-25)
(0.999994 -1.63196e-05 -4.69029e-26)
(1.00499 -0.00124763 4.49529e-24)
(1.07847 0.0244047 -3.67921e-22)
(1.00025 -0.00158176 4.72657e-24)
(0.999623 -0.000346242 -4.36959e-24)
(0.988235 -0.0162502 -1.86405e-22)
(0.969691 0.0835543 6.85738e-23)
(0.97295 -0.00649543 8.31235e-23)
(0.999993 -1.29535e-05 -7.68761e-26)
(1.00015 -0.000129584 -4.75698e-25)
(0.999881 -0.000139695 -1.24783e-24)
(0.999698 -0.000166681 -5.67151e-25)
(0.98466 -0.00856671 -9.70884e-23)
(0.99974 -0.000139597 -4.12176e-24)
(1.00107 0.00363805 2.31647e-22)
(1.00503 -0.000149941 -1.33967e-22)
(0.999996 -1.77335e-05 -1.67689e-26)
(0.981555 -0.0026555 -7.59207e-23)
(0.999986 -3.98346e-07 -1.80579e-27)
(1.10064 0.0356718 -6.66632e-22)
(0.997564 -0.000391786 1.37205e-23)
(1.07413 0.128865 -3.17297e-22)
(0.998204 -0.000728548 1.63187e-23)
(0.997495 -0.000666639 2.02777e-23)
(0.997527 -0.000526567 3.08723e-23)
(1.00009 -0.00131036 1.04057e-24)
(1.15008 0.0312155 4.22888e-22)
(1.00004 -2.37613e-05 6.93156e-25)
(0.99992 -0.000588333 -7.43101e-26)
(0.999567 -0.000543897 -7.42998e-24)
(1.00414 -0.00105884 -3.97595e-23)
(0.99984 -0.00044134 -2.36189e-24)
(0.996887 -0.000579068 4.04953e-24)
(1.00006 -0.000228856 -2.1803e-25)
(1.00034 -1.26556e-05 -1.56237e-25)
(1.00195 0.0796017 3.04748e-21)
(0.999866 -1.62209e-05 -1.15025e-24)
(1.00452 -0.00116142 -6.36809e-23)
(0.999994 -2.40377e-06 1.46192e-27)
(0.999925 -0.000211601 -4.39552e-25)
(0.974128 -0.00606255 6.25826e-23)
(1.03124 -0.00413389 2.43772e-22)
(0.998611 -1.84991e-05 -3.13178e-23)
(1.00005 -2.63126e-05 4.00019e-26)
(1.01931 0.000907176 1.03877e-21)
(1.00006 -0.00029702 1.55054e-25)
(1.01615 -0.0258336 9.8725e-23)
(1.00003 -0.000182262 -2.28059e-26)
(0.999608 -9.58889e-05 -1.16598e-24)
(0.999661 -7.97387e-05 -8.16891e-25)
(0.999951 -5.14411e-05 6.896e-25)
(0.995161 -0.0405507 -2.8945e-22)
(0.97524 -0.00573047 -3.59798e-22)
(1.00073 0.00598307 1.98819e-22)
(0.992221 -0.000726915 -1.50206e-22)
(0.978116 -0.0603739 -9.35513e-23)
(1.02315 -0.0363498 1.15107e-24)
(0.998926 -0.00170266 -2.92945e-23)
(1.00001 -2.23792e-06 1.01198e-27)
(0.998095 -0.000239175 1.7291e-23)
(1 -3.81619e-05 -3.67866e-26)
(1.00541 0.00347112 -7.60219e-22)
(1.15191 0.0203896 1.48039e-23)
(0.999983 -2.46015e-05 1.22388e-25)
(1.02046 0.0113129 -2.78047e-22)
(1.02505 -0.0434133 -1.73716e-23)
(0.997992 -0.000709867 -3.36699e-23)
(1.13175 0.096771 1.81577e-23)
(1.00013 -7.9914e-06 -1.71533e-25)
(1.04347 -0.016135 -5.98809e-22)
(0.994499 -0.00623601 4.49063e-23)
(1.02647 -0.000253131 3.2314e-22)
(0.999674 -0.000545473 2.39222e-24)
(0.999982 -0.0011677 8.58088e-25)
(0.999035 -0.000283998 4.10981e-24)
(0.9685 -0.0285727 -4.17422e-22)
(1.00027 -0.000587819 -1.49318e-24)
(1.00001 -0.00025489 2.94402e-26)
(1 -3.21323e-06 -5.47524e-28)
(0.998216 -0.000613144 6.09492e-24)
(0.941767 -0.0170409 6.1574e-22)
(0.9996 -0.000353405 -6.29469e-24)
(1.00027 -8.06736e-06 0)
(1.00372 -0.000996238 -4.02229e-23)
(0.999286 -0.000155272 8.88018e-24)
(1.00003 -1.94751e-05 -5.24694e-25)
(0.999889 -0.000135718 9.09813e-25)
(1.0265 0.000509488 7.18254e-23)
(1.00001 -7.16079e-05 -1.00575e-26)
(1.12863 -0.163885 -6.64575e-22)
(1.1521 -0.00095938 7.5005e-23)
(0.999074 -0.000195453 -3.88218e-24)
(0.999741 -0.000472913 2.2905e-24)
(0.999777 -9.67023e-05 -1.98466e-24)
(0.9982 -0.000849304 1.18967e-23)
(0.99799 -0.000516203 2.97233e-23)
(1.01917 -0.010306 -2.56917e-22)
(0.978043 -0.00572695 -2.19217e-22)
(0.969456 -0.000398348 -8.01796e-23)
(0.998233 -0.000502156 3.38455e-24)
(1.03192 -0.00273161 1.21337e-22)
(0.999897 -0.000123625 -6.33766e-26)
(0.999725 -7.9868e-05 3.75537e-24)
(0.999641 -0.000361433 -1.47925e-24)
(1.00704 -0.00953194 2.98029e-23)
(0.997878 -0.00377433 -1.0722e-24)
(1.00002 -2.99719e-05 -1.83987e-25)
(0.999954 -5.77084e-05 -2.46246e-25)
(0.999982 -2.76306e-05 2.62997e-26)
(0.999987 -9.17689e-07 9.76365e-27)
(0.979087 -0.0144655 -1.15841e-22)
(1.1524 0.00964133 3.10875e-22)
(1.00004 -2.16319e-05 2.36516e-25)
(0.9771 -0.00606585 -6.7607e-23)
(1.03788 0.0853387 -2.30483e-21)
(1.00336 -0.000929231 4.00898e-23)
(1.00017 -0.0015988 8.44812e-25)
(1.00003 -3.33492e-05 4.66602e-26)
(1.06643 -0.0554167 -5.40622e-23)
(1.00386 0.00226962 -1.93694e-24)
(1.00002 -2.68778e-05 -1.94542e-25)
(0.99981 -6.4089e-05 2.45544e-25)
(0.999985 -5.08849e-06 -2.79201e-27)
(1.01389 0.0180818 -1.95865e-21)
(1.00021 -6.96203e-06 4.58776e-25)
(1.05947 0.0857358 -3.86292e-22)
(1.08383 0.127592 1.03903e-21)
(0.999993 -1.39847e-05 1.25555e-25)
(0.999991 -1.15088e-05 7.73991e-26)
(1.11377 0.108731 9.4132e-22)
(0.999995 -1.76638e-05 -1.01984e-26)
(1.04893 0.026827 -8.01043e-23)
(1 -9.52849e-06 1.91174e-26)
(0.99968 -9.63533e-05 2.68339e-24)
(1.07493 0.042226 -1.3591e-21)
(0.999051 -0.000857307 -1.33545e-23)
(0.999241 -0.0111381 -3.90534e-23)
(0.851684 0.0569587 2.25619e-21)
(0.999703 -8.77124e-05 -1.31947e-24)
(0.995633 -0.00362284 -3.03028e-23)
(1.07578 -0.0605748 4.41073e-23)
(0.999981 -3.09555e-05 3.71643e-25)
(0.999793 -0.000106448 1.1239e-24)
(0.965504 -0.0101138 -1.86366e-22)
(0.999655 -0.000105802 2.13568e-24)
(1.00003 -1.75768e-05 -2.94159e-26)
(0.999579 -0.000104895 -4.2269e-24)
(1.00102 -3.29233e-05 9.08037e-24)
(1.00001 -6.49707e-05 -1.35697e-26)
(1.00003 -3.70367e-05 1.43796e-25)
(1.00111 0.00516256 -3.99263e-21)
(0.999988 -1.36603e-06 2.90009e-28)
(1.00002 -6.49769e-07 9.70047e-26)
(0.999918 -4.76969e-05 4.96576e-25)
(0.989676 -0.0138355 -1.95724e-22)
(0.99995 -0.000170685 -4.93127e-25)
(0.999954 -5.38432e-05 -1.71568e-25)
(1.01544 0.0184207 4.8272e-22)
(0.999977 -7.27558e-05 -1.58627e-25)
(0.950263 -0.0161351 8.72433e-23)
(1.00004 -7.77503e-05 -2.15164e-25)
(0.98539 -0.0974039 -1.70952e-22)
(0.984918 -0.00250284 -2.04637e-22)
(0.984596 -0.00651385 5.3203e-23)
(0.999768 -0.00050786 -4.10252e-24)
(1.00218 -0.00285114 -1.46462e-23)
(0.999991 -1.81977e-06 1.93694e-27)
(1.00017 -5.18276e-06 1.65703e-24)
(0.984248 -0.00266813 1.13505e-22)
(0.999482 -0.000136413 1.30881e-24)
(0.999717 -0.000437558 5.06134e-24)
(1.02633 0.00133131 6.48335e-22)
(0.999956 -0.000141494 1.22384e-25)
(0.999517 -0.000125304 2.218e-24)
(0.976521 -0.00437537 5.62581e-22)
(0.998083 -0.00326251 -1.08968e-23)
(0.986654 -0.00699271 1.86289e-22)
(0.999979 -3.45119e-05 2.75242e-25)
(0.999549 -0.000114735 5.61712e-24)
(0.999977 -3.85159e-05 -5.90653e-26)
(1.00008 -5.85096e-06 -2.22418e-25)
(0.999993 -2.11347e-06 1.15659e-28)
(0.999937 -1.32682e-05 -1.60049e-24)
(1.00009 -5.68405e-05 -4.51322e-25)
(1.00002 -3.88851e-05 1.31785e-25)
(1.00074 -0.000193549 -1.57854e-24)
(0.999975 -4.28201e-05 -1.47938e-25)
(1.08274 -0.000763157 -1.34823e-22)
(0.999317 -9.70161e-05 -1.17177e-25)
(0.999701 -3.90396e-05 -2.60024e-25)
(0.998054 -0.000845437 1.84409e-23)
(0.994732 -0.00666615 -8.68265e-23)
(1.00003 -6.54573e-05 -7.97638e-26)
(0.999516 -0.000507246 1.52155e-24)
(1.03241 -0.00123116 -8.97853e-22)
(0.999404 -0.000162016 -1.76785e-24)
(0.986017 -0.00281724 1.46872e-23)
(1.00083 -0.000218401 2.72296e-24)
(0.999444 -0.000148459 2.04987e-24)
(0.999913 -0.000102586 1.11482e-25)
(1.00147 -0.000366461 -1.34067e-23)
(1.00004 -5.02648e-05 -4.53546e-25)
(0.999752 -0.000552043 -7.77016e-25)
(1.00002 -0.000136769 -3.51637e-27)
(0.983555 -0.00285178 -3.41953e-24)
(0.999978 -7.67306e-05 -3.14223e-27)
(1.01766 -0.0205597 4.02699e-23)
(1.00114 -3.58897e-05 4.31136e-24)
(1.00005 -5.55676e-05 2.34936e-25)
(1.0001 -0.000788229 2.67075e-25)
(0.999363 -0.000176379 -3.00864e-24)
(1.01984 -0.00710015 3.579e-22)
(0.998977 -0.00251899 9.73336e-24)
(1.07833 0.0186249 -2.07764e-22)
(1.00007 -4.81329e-06 2.48785e-25)
(1.00066 0.00234389 5.88124e-22)
(0.999985 -2.5281e-05 1.39277e-25)
(1.01626 0.00381951 -7.87559e-23)
(1.00004 -4.54428e-05 -6.0832e-25)
(0.995805 -0.0075012 -1.08769e-23)
(0.985137 -0.0154061 6.70115e-23)
(1.00002 -2.80952e-05 -1.98719e-25)
(1.00014 -3.88781e-06 3.93393e-26)
(0.998872 -0.000150188 6.15467e-24)
(0.999261 -0.000654279 -5.83499e-25)
(0.999818 -0.000141419 -1.98092e-24)
(0.99984 -3.91171e-05 -1.19239e-25)
(0.996182 -0.00123163 -1.1638e-23)
(0.99957 -0.000514116 5.45909e-24)
(0.99995 -2.53514e-05 -5.43769e-25)
(0.991867 -0.0127537 -4.30457e-23)
(0.999919 -9.33815e-05 -2.23175e-25)
(1.00003 -4.10612e-05 -2.23472e-25)
(0.999852 -3.4793e-05 2.66498e-25)
(0.999849 -8.70443e-05 -2.33944e-24)
(0.999986 -6.34504e-06 8.93216e-26)
(1.02816 0.0224065 4.30179e-23)
(1.03899 0.0340274 -1.69268e-21)
(0.98283 -0.0030386 1.24974e-22)
(1.00985 -0.000255815 2.5072e-22)
(0.99932 -0.000191872 -1.29071e-24)
(0.992172 -0.0119657 3.70946e-23)
(1.01997 0.000426138 -3.90093e-22)
(1.1072 -0.0449933 -4.60885e-23)
(0.999158 -0.000332422 -4.06664e-24)
(0.986671 -0.0296573 -4.71037e-22)
(1.02853 0.0255147 2.82138e-22)
(1.00006 -0.000119743 -3.50867e-25)
(1.03335 -0.0835199 -8.09276e-23)
(0.999697 -0.000402187 1.21145e-24)
(0.980762 -0.00287827 -7.38146e-23)
(1.03693 0.0254575 5.17437e-22)
(1.00009 -5.73489e-05 -3.215e-25)
(1.00142 -0.00172876 2.20949e-23)
(0.999996 -2.29189e-06 -1.91448e-28)
(0.980946 -0.014415 -3.64264e-23)
(0.962334 -0.00532131 2.52347e-22)
(0.999764 -0.000227582 5.89149e-25)
(1.0104 -0.00593334 5.41806e-23)
(0.999477 -0.00117797 -2.72978e-25)
(1.00784 -0.108367 5.69204e-22)
(1.0096 -0.00566066 3.42815e-23)
(0.982093 -0.00322152 7.50407e-23)
(1.00239 -0.0238363 -3.66744e-24)
(0.995775 -0.00308081 -3.86679e-23)
(1.1228 0.103407 -1.89171e-21)
(1.00001 -4.42291e-05 1.36501e-26)
(0.99961 -0.000418488 -4.65638e-24)
(1.1306 -0.191559 7.22859e-22)
(1.00001 -4.47363e-06 8.52889e-27)
(1.00001 -2.06701e-06 -2.04782e-28)
(1.00011 -3.45449e-06 2.19118e-26)
(0.999088 -0.000134868 -2.25077e-23)
(0.998855 -0.000219225 1.01207e-23)
(0.999829 -3.0346e-05 -2.25576e-24)
(1.01129 -0.00620597 2.04196e-22)
(0.999984 -3.53211e-06 2.27164e-26)
(0.999796 -0.00149833 -3.22679e-25)
(0.995371 -0.00822941 -5.22465e-23)
(0.997858 -0.00240552 4.42625e-23)
(1.21585 0.106546 -7.81243e-23)
(0.999164 -0.000273221 -8.60163e-24)
(1.00435 -0.0088338 -1.77685e-23)
(1.00096 -0.00374534 -2.56789e-24)
(1.00001 -1.35172e-05 -1.16803e-25)
(0.999996 -0.000307431 8.33961e-26)
(0.992479 -0.0112219 -4.03427e-23)
(1.00006 -0.000191276 -3.30878e-25)
(1.02761 0.0195093 1.03685e-21)
(1.01219 -0.00645464 -1.49177e-22)
(0.999155 -0.000394356 2.82858e-24)
(1.00005 -0.000119473 4.08252e-26)
(1.00007 -0.000100989 -2.02513e-25)
(1.01418 -0.00684618 -3.92803e-23)
(0.965581 -0.0194769 -5.66097e-22)
(1.00883 -0.00536305 -4.33492e-23)
(0.9957 -0.000775508 3.04542e-23)
(0.999457 -0.000528654 -1.31516e-24)
(1.00003 -6.94115e-05 1.37625e-25)
(1.0007 0.00473778 1.61274e-21)
(0.999845 -0.000385119 -4.64812e-25)
(1.00003 -6.35652e-05 3.49223e-25)
(1.01861 -0.00523596 -5.65166e-23)
(1.01746 -0.00715882 2.042e-23)
(1.00059 -1.85186e-05 -1.14611e-23)
(0.993417 -0.00132866 6.12995e-23)
(1.07754 0.013036 -1.33251e-21)
(0.999964 -0.000106329 -4.03195e-25)
(0.992778 -0.0105119 6.237e-23)
(1.00892 -0.00258854 3.00209e-23)
(1.00543 -0.0123057 5.32387e-24)
(0.994845 -0.0329937 -1.72095e-23)
(1.01317 -0.00665904 -4.96062e-23)
(0.993068 -0.00986311 -1.10521e-23)
(1.02739 -0.00355687 4.80042e-22)
(0.999882 -6.52916e-05 -8.4626e-25)
(0.950132 -0.00629591 -4.36782e-23)
(0.9983 -0.00122551 1.73027e-23)
(1.00011 -5.54978e-05 -2.27659e-24)
(1.00009 -2.92445e-06 8.34958e-27)
(1.00002 -2.71137e-05 1.85445e-26)
(0.999992 -1.27103e-05 7.69391e-26)
(1.00035 -2.35697e-05 8.55372e-24)
(1.00001 -1.28207e-05 4.29668e-26)
(0.999884 -2.40419e-05 2.31771e-24)
(1.00019 0.00109737 -1.91171e-21)
(1.00001 -0.000132263 -2.346e-27)
(0.999934 -3.84897e-05 -1.30156e-24)
(0.999999 -2.35972e-06 -1.5044e-27)
(0.995114 -0.0144417 5.96472e-23)
(0.997177 -0.00760014 -3.1539e-23)
(1.00003 -0.00011803 2.07451e-25)
(1.03266 0.000361766 -3.93957e-22)
(0.990297 -0.0232231 1.43161e-22)
(0.999985 -2.71095e-05 9.22686e-28)
(1.00002 -1.42138e-05 -4.44419e-27)
(1.04864 0.0138322 9.84922e-22)
(1.00026 0.00418921 -5.03389e-22)
(1.00012 -6.08155e-05 2.75642e-24)
(0.999934 -3.16977e-05 -5.03732e-25)
(0.970673 -0.000360958 2.56306e-22)
(0.993359 -0.00924427 -1.56603e-23)
(0.966842 -0.000465628 -1.1048e-22)
(0.973975 -0.000255026 -7.38378e-23)
(0.997931 -0.0319775 -1.40009e-22)
(0.964009 -0.00037211 -5.90939e-22)
(0.998619 -0.0337519 4.30043e-24)
(0.981529 -0.0149315 -1.22802e-22)
(0.97691 -0.000303422 1.72797e-22)
(1.00002 -1.6441e-05 -6.52028e-26)
(0.959374 -0.000476856 -6.2949e-23)
(1.02451 -0.00126392 -8.3517e-22)
(1.01795 -0.025128 1.06669e-22)
(0.956065 -0.000448787 1.90733e-22)
(1.00002 -1.51349e-05 -1.49783e-25)
(0.962038 -0.0102253 -1.44918e-24)
(1.00007 -2.23221e-06 -2.47605e-24)
(0.951551 -0.0277441 3.75426e-22)
(0.985012 -0.0104054 -4.23487e-23)
(0.952299 -0.000561675 -1.23154e-22)
(1.07618 0.00774836 -6.6319e-22)
(1.00013 -6.68075e-05 -1.86596e-24)
(0.989723 -0.000564518 -1.95575e-23)
(1.02367 0.0654097 1.41563e-21)
(1.00001 -1.13e-05 5.38921e-26)
(0.948077 -0.000637398 2.55278e-23)
(0.999999 -0.000336367 5.42201e-26)
(0.993473 -0.00259193 -3.77815e-23)
(1.00015 -7.34264e-05 -1.35765e-24)
(0.95706 -0.0173934 7.30723e-23)
(1 -3.56618e-05 4.1883e-28)
(0.993643 -0.00866002 5.02183e-23)
(0.99901 -0.000739049 9.71707e-24)
(0.999949 -6.37175e-05 -1.14906e-25)
(1.00056 -0.000675424 2.04052e-24)
(1.029 0.125687 -1.39074e-21)
(0.999988 -2.46009e-05 7.47689e-26)
(0.976575 -0.0390733 -1.72728e-22)
(1.00132 -0.000332262 2.61488e-23)
(0.987205 -0.00342366 1.01399e-23)
(0.999998 -8.62962e-06 1.56595e-26)
(1.00947 0.0614958 2.07531e-21)
(1.00016 -8.05939e-05 -1.43161e-24)
(1.0029 -0.00196442 -2.67473e-23)
(0.993796 -0.0007182 8.41973e-23)
(0.999433 -0.000436076 6.00896e-24)
(0.997849 -0.00105102 1.31887e-23)
(1.00002 -8.63118e-05 -9.35471e-26)
(0.999978 -4.18269e-07 5.26792e-26)
(0.940916 -0.000557851 -2.97051e-23)
(1.00809 -0.00506921 1.08085e-22)
(1.01566 0.00130264 -8.21218e-22)
(0.999974 -6.1812e-07 3.81512e-25)
(1.02119 0.0084473 6.68626e-22)
(1.00005 -0.00023305 1.09083e-25)
(0.999969 -9.07179e-07 -8.72996e-26)
(1.0003 -1.02655e-05 1.13124e-24)
(0.974276 -0.0286703 9.75217e-23)
(1.00006 -1.97305e-06 4.91383e-26)
(1.00215 -0.10956 -6.78759e-22)
(0.955317 -0.0143856 4.522e-22)
(0.999986 -4.8052e-06 8.4662e-27)
(0.979604 -0.000187073 -9.46063e-23)
(1.06141 0.014502 -8.08284e-22)
(1.05797 -0.111959 -1.06712e-21)
(1.00004 -2.91732e-05 2.08209e-25)
(1.00003 -2.13188e-05 8.73308e-26)
(1.24551 -0.114574 3.80942e-22)
(0.999978 -1.53463e-05 -7.9707e-26)
(1.00024 -7.48081e-06 -9.06647e-24)
(0.999899 -5.37026e-05 2.47547e-24)
(0.993928 -0.00811058 -1.01384e-22)
(1.00264 -0.00181039 -4.69553e-24)
(1.00239 -0.00166386 -1.11359e-24)
(1.0051 -0.00312399 -4.78101e-23)
(0.993584 -0.00135926 -3.70496e-23)
(1.00424 -0.00270546 7.35453e-24)
(1 -2.48762e-06 -1.39631e-27)
(0.999826 -0.00019233 3.3373e-24)
(1.07444 0.00279709 -1.32374e-21)
(1.00464 -0.00291346 6.34592e-23)
(0.999626 -5.65873e-05 -9.4211e-25)
(1.0032 -0.00213445 -1.89092e-23)
(1.003 -0.00727195 -6.49077e-24)
(0.999959 -4.21843e-05 -1.15658e-25)
(0.999977 -8.48012e-05 1.53413e-25)
(0.993512 -0.000763366 -2.76496e-24)
(1.00386 -0.00249712 1.956e-23)
(1.06077 0.0265865 -8.17555e-23)
(0.99991 -1.72169e-05 -6.36794e-25)
(0.994472 -0.00711512 -7.38588e-23)
(1.00115 -0.00104255 -4.22202e-24)
(1.02878 0.0289232 2.1973e-23)
(1.0056 -0.00335205 -2.24115e-23)
(1.02747 0.0744451 7.82164e-23)
(1.00009 -0.00025561 8.54838e-27)
(0.999982 -2.53313e-07 1.29744e-26)
(1.02765 -0.0451914 -2.4603e-23)
(0.996767 -0.00311447 -2.4429e-23)
(0.981169 -0.000251352 -1.88549e-22)
(1.02624 -0.000952018 3.86413e-22)
(1.00001 -1.10529e-05 -6.26115e-27)
(0.994205 -0.00759417 3.66892e-24)
(0.996156 -0.00145692 -5.41966e-24)
(1.00004 -1.90586e-05 -1.18705e-25)
(0.993346 -0.062581 6.0369e-22)
(0.99998 -6.94604e-05 -1.33614e-25)
(0.999793 -0.000214146 -2.90166e-24)
(1.00352 -0.00231289 4.38222e-23)
(1.00101 0.00213426 -7.3025e-22)
(0.99491 -0.0207108 -9.46268e-23)
(1.00738 -0.00477574 -4.46737e-23)
(1.00001 -1.33122e-05 3.05235e-26)
(1.00006 -6.02796e-05 9.32524e-25)
(0.999941 -0.00013745 2.6128e-25)
(0.999957 -5.22522e-05 4.17621e-25)
(0.999636 -0.00304026 1.90037e-24)
(1.00004 -2.09372e-05 -4.47996e-26)
(0.999922 -0.000201505 7.19003e-25)
(0.935917 -0.000857906 -5.15783e-23)
(0.977774 -0.0510236 6.63858e-23)
(1.00144 -0.0009063 -1.90743e-23)
(1.00614 -0.00358197 2.46163e-25)
(0.982698 -0.000216487 -1.16003e-22)
(0.99995 -2.53831e-06 -1.98237e-25)
(1.07231 -0.00166271 4.70642e-23)
(1.02596 0.00219147 -7.13659e-22)
(1.0016 -0.000984561 -3.26804e-24)
(1.00196 -0.00117275 -1.61002e-23)
(1.00177 -0.00107765 2.28782e-23)
(0.999831 -0.0130337 -3.20809e-23)
(1.00005 -7.49109e-06 -8.29361e-26)
(1.01399 0.0139673 -1.94706e-22)
(1.00003 -1.55823e-05 -2.5922e-25)
(0.994009 -0.00620514 -2.38424e-23)
(1.00002 -2.40368e-05 4.08979e-25)
(1.00006 -6.31508e-05 9.94337e-26)
(1.00004 -1.72245e-05 -3.05714e-25)
(0.999987 -4.84634e-06 -5.33032e-26)
(1.0013 -0.000829024 8.69538e-24)
(0.999936 -3.45776e-05 7.54211e-25)
(0.951334 -0.001177 1.1037e-22)
(1.00001 -2.37763e-05 -2.06021e-26)
(1.05033 -0.0264916 2.41143e-23)
(1.00309 -0.00334014 0)
(1.00002 -1.52393e-05 1.47157e-25)
(1.04752 0.00509285 7.60573e-23)
(1.00001 -3.57835e-06 4.77328e-27)
(1.06033 0.0185772 1.4503e-21)
(1.00003 -1.40739e-05 -1.96769e-26)
(0.997883 -0.000131899 -1.95666e-23)
(1.13135 0.150755 5.61904e-22)
(0.999984 -2.26817e-07 8.17187e-26)
(0.962817 -0.00385802 -2.87342e-22)
(0.995452 -0.00622904 -5.24767e-23)
(0.999739 -2.52803e-05 -5.96329e-24)
(0.949206 -0.00124272 1.51049e-22)
(0.995671 -0.00582519 2.68758e-23)
(1.00106 -0.000693164 -1.5079e-23)
(1.00118 -0.000757584 3.0714e-24)
(0.999995 -2.18094e-06 1.17111e-27)
(0.999705 -0.000588498 -2.12572e-24)
(1.03048 0.0130931 -2.70214e-22)
(0.99965 -0.000592694 2.75827e-24)
(1.00056 -0.0104272 -7.17435e-24)
(1.00112 -0.000965013 3.50831e-25)
(1.03049 -0.0469355 5.85826e-23)
(1.06983 -0.00589154 -3.05595e-22)
(0.995882 -0.00544977 7.09158e-23)
(0.972414 -0.0349201 4.92189e-22)
(0.996087 -0.00509556 2.88492e-23)
(0.999962 -1.6913e-05 -3.95992e-25)
(1.00012 -3.88192e-06 1.24731e-24)
(0.99993 -1.21739e-05 7.68505e-25)
(1.00029 -0.000242216 -1.01563e-24)
(1.00003 -2.36737e-05 -8.75548e-26)
(1.03359 -0.0486519 1.50099e-23)
(0.999988 -4.18321e-05 -1.8908e-25)
(0.999977 -0.00791057 1.17896e-23)
(1.00003 -4.77598e-05 -1.4694e-25)
(1.00342 -0.00360886 2.65761e-23)
(0.98625 -0.0187302 6.23496e-23)
(1.00051 -0.00266353 6.32668e-24)
(0.999834 -0.00042009 1.15611e-25)
(1.00303 -0.000857153 -1.13589e-23)
(1.00001 -1.15989e-05 -8.25911e-26)
(1.00078 -0.000525193 1.10635e-23)
(0.999983 -5.1297e-05 -4.96334e-26)
(1.03075 -0.0310509 8.44934e-24)
(0.954044 -0.0184876 -1.01037e-22)
(0.99628 -0.00476215 -7.58973e-23)
(0.999898 -0.00366421 -1.15983e-24)
(0.999377 -0.00495658 -8.20184e-24)
(0.999922 -4.72606e-05 1.59935e-25)
(0.999987 -5.98127e-06 -1.57899e-25)
(1.03273 0.00202147 1.13655e-21)
(1.00142 -0.0357599 1.21604e-22)
(0.999945 -2.53494e-06 5.59541e-25)
(1.00009 -5.07482e-05 -7.94149e-25)
(0.996987 -0.00363733 7.27503e-24)
(1.00003 -0.000249973 2.91396e-25)
(1.00002 -3.02395e-05 2.26222e-25)
(0.997729 -0.00258074 6.4889e-24)
(0.996489 -0.00446371 5.864e-23)
(0.999606 -0.000182084 -5.40695e-24)
(0.999973 -1.35119e-06 -2.69124e-25)
(0.996824 -0.00389036 -2.94499e-23)
(1.01613 -0.00905232 6.95841e-23)
(1.01671 -0.0313879 2.55061e-23)
(1.00008 -5.20215e-05 -1.36752e-25)
(0.996663 -0.0041781 -1.33553e-23)
(1.12658 0.0138907 -2.73779e-22)
(1.00248 -0.0375899 -3.70517e-23)
(0.999771 -5.7983e-05 -1.19287e-24)
(0.997145 -0.00340045 -3.39974e-23)
(1.00504 0.0546135 -1.14458e-21)
(0.997301 -0.00317673 -9.63948e-24)
(1.00071 -0.000485343 1.38623e-24)
(0.99997 -1.66127e-06 2.16117e-25)
(1.03688 -0.0287866 9.64234e-23)
(1.00864 -0.000438054 -4.9786e-23)
(0.997451 -0.00296413 -6.16822e-24)
(1.06693 -0.00966479 -1.10452e-22)
(1.00096 -0.000632949 9.30901e-26)
(0.997593 -0.00276676 3.55124e-23)
(0.999929 -4.26396e-05 2.72364e-25)
(1.00087 -0.000577759 -2.58567e-24)
(0.981978 -0.0160508 -2.55569e-22)
(0.99235 -0.00870771 1.07225e-23)
(1.00325 -0.0167367 3.65342e-24)
(0.950237 -0.000599038 -1.21647e-22)
(0.999874 -6.58295e-05 8.48084e-25)
(0.999989 -2.33874e-05 -4.74179e-26)
(1.00706 0.0552993 -6.49211e-22)
(1 -2.2893e-06 -1.24646e-29)
(0.999995 -1.53395e-05 -3.09554e-26)
(1 -8.49571e-06 -2.34625e-27)
(0.975216 -0.0291897 3.42484e-22)
(0.939669 -0.0013288 -6.46507e-22)
(0.999987 -2.12998e-05 -5.1224e-26)
(0.998317 -0.00137391 -2.49701e-24)
(1.00008 -2.57049e-06 1.43795e-24)
(0.999765 -9.60281e-05 -1.03837e-24)
(0.999941 -0.00162478 2.32367e-24)
(1.00064 -0.000444823 -1.77346e-26)
(1.08241 -0.060308 -1.36086e-22)
(0.999495 -0.000947054 5.11974e-24)
(0.999419 -0.0285654 7.19601e-23)
(1.00005 -1.68265e-06 -1.06358e-24)
(0.999468 -9.57651e-05 2.12595e-24)
(0.998498 -0.000783166 2.88329e-23)
(1.00038 -1.17727e-05 -1.46367e-23)
(1.00057 -0.000398733 6.33511e-24)
(0.99994 -1.38857e-05 8.48395e-25)
(0.999972 -7.64131e-07 -3.86193e-26)
(0.99994 -3.45678e-05 -5.25667e-25)
(1 -2.56458e-06 -4.24004e-29)
(1.00046 -0.000273246 -1.53077e-24)
(1.04723 0.00825574 1.736e-22)
(1.02462 0.0419738 -1.91551e-21)
(0.997773 -0.0040427 4.20295e-23)
(1 -8.55079e-06 3.87711e-27)
(0.944181 -0.0105279 -8.01253e-23)
(1.00042 -0.000248851 -9.82345e-25)
(0.999997 -1.65506e-05 1.92578e-26)
(1.00006 -9.21538e-05 2.95385e-25)
(0.994105 -0.00255409 2.74967e-23)
(1.01524 -0.00699403 2.90702e-22)
(0.959209 -0.00966166 -2.42502e-22)
(0.999737 -0.00764637 -1.01067e-24)
(1.04046 0.0235317 3.17727e-23)
(1.00038 -0.000226733 -4.14031e-24)
(0.99996 -9.63302e-07 -2.63342e-25)
(0.999994 -1.19799e-05 -5.84283e-26)
(1.04378 0.0840077 -5.99841e-23)
(0.944257 -0.00417288 2.32873e-22)
(1.01761 0.00104438 1.66111e-21)
(0.994213 -0.00311069 6.14766e-23)
(1.00003 -0.000156872 9.38954e-26)
(1.00058 -0.00145255 -3.88137e-24)
(1.17945 0.139574 -1.48236e-21)
(1.01836 0.000475731 -1.62788e-21)
(1.00699 -0.0128702 2.63606e-23)
(0.999945 -1.21053e-05 -4.95384e-26)
(0.999999 -9.53828e-06 7.41633e-27)
(0.938535 -0.000739952 3.28215e-22)
(0.997529 -0.00463899 3.73087e-23)
(0.999749 -8.39396e-05 -1.33479e-24)
(0.999949 -2.83112e-05 -3.99752e-25)
(1.00009 0.000661386 1.74839e-21)
(0.999829 -0.000480923 -1.30282e-24)
(0.993556 -0.00208643 3.38309e-23)
(1.00001 -2.31666e-05 -6.26242e-27)
(1.00034 -0.000205844 2.65875e-24)
(0.999206 -0.000221201 -1.06694e-23)
(0.997289 -0.00530697 -3.29599e-23)
(0.999922 -3.9653e-05 1.35232e-24)
(0.979938 -0.00651427 -1.09764e-22)
(0.97958 -0.0201187 -7.5038e-23)
(1.00001 -0.000839599 2.23105e-25)
(0.997406 -0.00498806 1.80892e-23)
(0.997655 -0.0043271 -6.56611e-23)
(1.00002 -1.04996e-05 1.48138e-26)
(0.979107 -0.0130897 1.47041e-22)
(1.0003 -0.000187163 -7.83847e-26)
(0.999989 -3.98879e-05 4.63364e-27)
(1.18652 0.0561521 -1.27963e-22)
(0.964292 -0.00668569 -1.32446e-22)
(0.995029 -0.00773374 -1.37923e-23)
(0.971531 -0.0271515 -1.01374e-22)
(1.02688 -0.139066 -3.79415e-22)
(0.899369 0.0754036 -8.71376e-21)
(1.04749 -0.00920258 -2.32505e-22)
(0.997671 -0.0012103 -2.05093e-23)
(1.0083 -0.0153951 2.75289e-23)
(0.937219 -0.00160197 -2.21976e-22)
(1.02538 -0.0270445 -1.58452e-22)
(1.00006 -4.6661e-05 2.6393e-25)
(1.06388 -0.0130057 2.84449e-22)
(1.00027 -0.000170191 -2.24102e-24)
(1.0002 -7.44736e-05 -3.49832e-25)
(0.999983 -5.61282e-07 -5.17864e-26)
(1.00006 -0.000280642 -2.47966e-25)
(1.01245 -0.00869279 -2.26678e-22)
(0.999983 -2.66469e-07 8.41568e-26)
(1.00002 -2.76666e-05 3.35571e-25)
(1.08077 -0.00578713 4.14891e-22)
(0.995808 -0.00153858 -1.99097e-23)
(1.02886 0.0325275 9.68722e-22)
(0.999953 -2.50489e-05 7.51552e-25)
(0.993472 -0.0344112 -1.26407e-22)
(0.999974 -5.32747e-06 2.02838e-25)
(1.00436 -0.010881 1.51726e-23)
(1.00003 -3.0816e-05 2.99303e-25)
(0.980379 -0.0206185 -1.07737e-22)
(0.999962 -0.000100623 1.85176e-25)
(1.02873 0.0363482 -8.15674e-22)
(1.0606 -0.0158428 1.57357e-22)
(0.999987 -5.21469e-06 1.31125e-25)
(1.06336 -0.0475077 -9.67016e-24)
(1.00013 0.00251812 3.77979e-21)
(1.00216 -0.00128209 1.50946e-23)
(1.0574 -0.0181724 -4.19625e-24)
(0.999957 -8.37028e-06 2.98949e-25)
(1.00004 -7.25617e-05 3.9039e-25)
(1.00001 -4.05728e-06 8.27854e-26)
(0.97578 -0.00363692 -1.53155e-22)
(1.06074 -0.0462183 1.86958e-23)
(0.999992 -1.07238e-05 -6.96922e-26)
(1.03169 -0.0266059 -2.44441e-23)
(1.05408 -0.0200455 -1.6431e-22)
(1.02074 -0.150707 -1.38137e-21)
(1.00002 -2.47802e-05 -4.02554e-25)
(1.0559 -0.0463085 -1.76552e-23)
(1 -7.56214e-06 2.47949e-27)
(1.00354 -0.00768429 5.09289e-23)
(1.00118 -0.00231361 -2.11628e-24)
(1.00003 -1.2663e-05 -3.61773e-25)
(1.00002 -9.41115e-06 6.51401e-26)
(0.999984 -4.96384e-07 -1.00023e-25)
(1.05137 -0.0460563 2.22465e-23)
(0.999775 -4.04307e-05 4.13553e-24)
(0.999799 -7.9678e-05 -7.08695e-25)
(0.999717 -5.59369e-05 -6.96507e-24)
(0.99054 -0.0164074 -5.52723e-23)
(0.983154 -0.00982342 3.89506e-23)
(0.940593 -0.0103157 1.13867e-21)
(0.999999 -7.73976e-06 -1.41344e-26)
(1.04748 0.00200433 7.85373e-23)
(1.00245 -0.00465017 -4.49565e-23)
(0.999985 -1.67726e-07 -1.6832e-26)
(1.00003 -3.42529e-05 -2.56195e-25)
(1.00003 -1.75867e-05 0)
(0.964954 -0.0108332 2.65433e-22)
(1.02657 0.0142513 -1.32007e-21)
(0.984079 -0.000166557 -1.07555e-22)
(1.00131 -0.00250691 2.34598e-23)
(1.00015 -0.00276328 -1.05186e-24)
(1.00246 -0.000621703 -4.89658e-26)
(0.950107 -0.0347352 -3.18885e-22)
(1.01575 0.0646181 -1.08913e-21)
(0.999991 -3.1981e-05 1.17584e-25)
(0.999989 -1.15163e-05 3.94167e-26)
(1.00001 -9.11328e-06 -8.71332e-26)
(0.999952 -1.26583e-06 -4.44835e-26)
(1.00297 0.0921127 -3.46498e-21)
(0.959061 -0.00603878 1.87074e-22)
(1.00001 -1.09079e-05 2.62288e-26)
(1.00115 -0.00351222 5.76688e-24)
(1.04035 -0.0478259 2.47083e-23)
(0.999964 -6.24448e-06 -4.10486e-25)
(1.00221 -0.00432812 2.77002e-23)
(1 -3.39619e-05 7.22776e-28)
(0.99997 -1.7192e-05 -5.23475e-25)
(0.999798 -9.72344e-05 -6.44201e-25)
(0.998747 -0.0743285 -1.40608e-22)
(0.999991 -2.85376e-05 5.82938e-26)
(1.00051 -0.000996042 3.77187e-24)
(1.01452 0.000585553 0)
(0.99998 -1.48619e-05 -2.98979e-26)
(1.00107 -0.00213414 -1.88545e-23)
(1.0326 0.00370251 -1.33881e-21)
(1.00001 -8.11497e-06 -2.43978e-26)
(1.00162 -0.00344896 1.26272e-23)
(1.00271 -0.00500563 -8.13918e-24)
(1.00046 -0.00091229 7.20701e-24)
(1.05078 -0.0216772 1.47072e-22)
(1.00341 -0.00669574 1.80223e-23)
(0.999964 -3.03738e-05 -3.23981e-25)
(0.999972 -6.23589e-06 6.88072e-26)
(0.999282 -0.00197019 -2.80623e-24)
(1.01354 -0.145716 -5.6747e-22)
(1.00052 -0.000300576 -1.46193e-24)
(1.0039 -0.0102529 1.51108e-23)
(1.00057 -0.00108672 1.19272e-23)
(1.0067 -0.00382517 -3.52833e-23)
(0.998525 -0.00914702 8.31478e-24)
(1.00063 -0.00118363 5.14211e-24)
(0.999982 -1.51985e-05 1.10533e-26)
(1.00085 -0.00152795 1.58151e-23)
(1.00096 -0.00196782 6.26243e-24)
(1.00722 -0.00203718 -6.18723e-23)
(1.00024 -0.000603457 2.46485e-24)
(0.998374 -0.000903686 2.64837e-23)
(1.003 -0.00538987 3.41747e-23)
(1.00147 -0.00319022 -1.99374e-23)
(1.00198 -0.00401891 -9.89717e-24)
(1.00179 -0.0037268 -3.78793e-24)
(1.04747 -0.0229416 -1.16479e-22)
(0.97337 -0.0271995 -3.81674e-23)
(0.999975 -1.37579e-05 3.48019e-25)
(0.99992 -8.76978e-05 1.47938e-24)
(1.00077 -0.00140442 -3.27693e-24)
(0.999985 -3.93557e-07 -3.72807e-26)
(1.00003 -0.000239999 -1.93954e-25)
(1.04433 -0.0237992 1.49578e-22)
(1.00381 -0.00716033 -1.18653e-23)
(0.999811 -1.72185e-05 -1.18733e-24)
(1.00806 -0.0165781 -2.26288e-23)
(0.96129 -0.02008 -2.44053e-22)
(0.999891 -5.31882e-06 9.34262e-25)
(0.999341 -0.0035304 -4.70776e-24)
(1.0315 -0.00879522 -1.81788e-23)
(0.987857 -0.0581674 -4.38176e-22)
(0.99997 -6.03672e-06 -3.75329e-26)
(0.945758 0.0519383 3.08508e-21)
(1.01148 0.0464413 -1.81068e-21)
(1.00025 -0.000124841 1.14467e-24)
(1.00001 -2.18061e-06 -6.06403e-28)
(1.04129 -0.0243675 7.79619e-23)
(0.999152 -0.000241767 1.10644e-23)
(1.0007 -0.00128969 -3.25907e-24)
(1.01664 0.000686991 1.04684e-22)
(0.999992 -2.53811e-05 2.43658e-26)
(0.999938 -1.36591e-06 1.30762e-24)
(0.999965 -7.43702e-05 4.91774e-25)
(0.999983 -6.59982e-06 -2.5636e-27)
(0.999964 -5.95435e-05 3.05901e-25)
(0.99999 -2.67576e-05 5.50086e-27)
(1.00463 -0.00816341 1.50113e-23)
(0.982225 -0.00947975 2.25925e-22)
(1.00001 -1.25927e-05 3.17848e-26)
(1.00002 -4.54288e-05 -8.04595e-26)
(1.00376 -0.00388838 -9.12902e-24)
(1 -2.26564e-06 1.26858e-29)
(1.00419 -0.0076503 2.68887e-23)
(1.00024 -0.000367537 2.28885e-24)
(0.999815 -5.69052e-05 -7.32674e-25)
(1.04716 -0.0455232 -1.25519e-23)
(1.0384 -0.0246333 -1.22761e-22)
(1.05896 0.00364277 5.68302e-22)
(0.999982 -4.9954e-06 5.78417e-26)
(1.00008 -0.00237428 3.50188e-25)
(1.00003 -3.7988e-05 7.37551e-26)
(1.00042 -0.000838648 -1.78514e-24)
(1.00011 -0.00255946 1.70108e-25)
(1.00001 -9.78921e-06 1.07647e-26)
(1.00026 -0.000404692 1.67927e-25)
(1.00393 -0.00827546 -2.34581e-23)
(1.00021 -0.000336301 -2.98109e-24)
(1.00003 -0.000172733 -1.1089e-25)
(0.959631 -0.0241149 4.3745e-23)
(1.00122 -0.00131564 -1.60968e-23)
(1.00001 -0.013909 3.81918e-24)
(1.12748 0.0446505 8.92272e-22)
(1.06348 -0.00187771 4.67086e-22)
(1.00014 -0.000993924 2.98287e-25)
(0.999976 -4.59035e-06 -7.80679e-27)
(1.00001 -2.38621e-06 9.86425e-28)
(1.00339 0.0520458 7.25045e-22)
(1.02929 -0.0261641 9.73022e-23)
(1.00083 -0.000735712 -7.44155e-24)
(1.00008 -0.000471842 -3.14561e-25)
(1.02539 0.00304959 4.03334e-22)
(1.00019 -0.000307658 4.7066e-25)
(1.00001 -3.36977e-06 7.75715e-27)
(1.00002 -4.88486e-07 2.68361e-26)
(1.08394 -0.0350019 7.16858e-23)
(1.00002 -2.83401e-07 -7.59767e-28)
(1.00095 -0.00270033 1.50469e-23)
(0.999855 -0.000353982 3.48187e-25)
(1.10046 -0.0417951 -3.18909e-23)
(1.00004 -4.65287e-05 6.62963e-25)
(1.0003 -0.000536569 2.17845e-24)
(0.956448 0.0519785 7.46303e-22)
(1.07846 -0.0374958 1.58429e-22)
(1.00037 -0.000766857 7.77199e-25)
(1.01747 0.00992208 -4.12394e-22)
(1.01614 0.0362679 1.71885e-21)
(0.999921 -0.003947 -5.8174e-25)
(1 -1.3786e-05 3.56275e-27)
(0.981141 -0.0218658 2.08552e-22)
(1.05894 0.00754477 5.59011e-22)
(1.00001 -1.14463e-05 -6.82107e-28)
(1.00001 -9.96114e-06 -4.80217e-27)
(1.07302 -0.0394533 -6.92891e-23)
(1.00006 -0.00219097 -1.04119e-25)
(1.00001 -1.93136e-06 0)
(0.999936 -0.000616987 9.25512e-26)
(1.00004 -5.14594e-05 3.75582e-25)
(0.988433 -0.0418212 3.21144e-22)
(1.0312 -0.0519809 -1.46285e-22)
(1.00004 -4.20545e-05 3.74554e-26)
(0.973482 -0.00112197 -4.24288e-23)
(1.00004 -1.16661e-06 6.19744e-27)
(1.00019 -0.000984574 1.16005e-24)
(0.999919 -1.72078e-06 1.73586e-24)
(0.991479 -0.0130721 -9.57383e-24)
(1.00318 0.0159209 4.24751e-22)
(1.00001 -7.80199e-07 3.24473e-27)
(1.00089 -0.00767982 -1.76627e-25)
(1.00033 -0.000586151 -1.01983e-24)
(1.00005 -5.68973e-05 -8.28651e-26)
(1.08892 -0.0996106 2.73104e-22)
(1.03568 -0.0246883 2.89121e-22)
(0.999997 -0.00137656 1.38361e-25)
(1.02506 -0.000131601 9.59315e-22)
(1.00001 -1.68661e-06 -7.10408e-27)
(1.00024 0.00287124 1.78417e-21)
(1.00257 0.00416607 -1.84982e-21)
(1.09879 -0.0163633 1.03602e-22)
(0.996797 -0.00296164 7.10409e-23)
(1.00824 -0.000212897 1.14721e-22)
(1.00001 -1.41498e-06 -1.33625e-27)
(1.00017 -0.000280595 3.11046e-25)
(1.00005 -0.00202762 4.41546e-26)
(1.00107 -0.00821964 -4.02946e-25)
(1.00002 -0.000641764 1.01702e-25)
(0.96412 -0.0161026 -1.4764e-22)
(0.954562 -0.0259767 -4.19504e-23)
(0.997607 -0.000263258 -3.52216e-24)
(0.999871 -6.0336e-05 1.21577e-24)
(0.997554 -0.00197106 -7.17609e-24)
(1.06777 -0.040793 5.63216e-23)
(1.00649 0.00171366 6.63482e-22)
(1.00003 -9.07471e-07 7.19257e-25)
(1.08958 -0.0317604 -7.18584e-23)
(0.988595 -0.0502205 1.82717e-22)
(1.00001 -6.43373e-07 -2.05387e-26)
(1.00007 -0.000433001 1.20445e-24)
(1.00005 -6.13547e-05 -5.64442e-25)
(0.999993 -6.46892e-06 -5.18803e-27)
(0.999427 -0.00315283 -1.24885e-24)
(1.00034 -0.000351605 -1.9443e-24)
(1.00145 -0.00271467 2.67458e-24)
(1.00015 -0.00147533 -3.80322e-25)
(0.999984 -2.3772e-06 7.32537e-26)
(0.999948 -0.00424872 -3.18992e-24)
(0.999924 -4.30369e-05 -9.52107e-25)
(1.00001 -8.04654e-07 5.86335e-26)
(1.01027 0.000759346 2.47457e-24)
(1.00012 0.00152373 -1.18681e-21)
(1.00914 0.00149909 9.34667e-22)
(1.00001 -3.40859e-06 5.30661e-26)
(1.00006 -0.000395411 8.13708e-26)
(1.00003 -1.38722e-05 7.23381e-26)
(1.00022 0.00224714 2.49871e-22)
(0.999966 -2.98487e-05 6.49285e-26)
(1.00019 -8.7036e-05 3.06902e-24)
(0.84367 0.0435304 -3.98251e-21)
(1.00012 -0.000173996 7.5853e-25)
(1.0001 0.00121183 -4.01642e-22)
(1.00003 -6.4142e-07 2.39186e-25)
(0.999896 -2.49903e-06 -1.53745e-24)
(0.999983 -0.00457189 4.07607e-25)
(1.00525 0.000738156 9.18068e-22)
(1.0001 0.000928409 -9.35728e-24)
(1.00406 -0.00465368 2.83285e-23)
(0.999578 -0.00367766 1.26056e-24)
(1.00006 -3.50851e-05 -5.51778e-25)
(1.00785 0.000859179 -2.44985e-21)
(1.00001 -8.5113e-06 -1.34377e-26)
(0.949291 -0.00249155 -3.46605e-23)
(1.00015 -0.000255987 2.01164e-24)
(1.00013 -0.000233314 1.32289e-24)
(1.00512 -0.0086936 8.52481e-24)
(0.99266 0.00137405 1.26821e-21)
(1.00002 -3.90232e-07 9.42707e-26)
(1.14327 -0.0915575 2.15608e-22)
(1.00001 -1.57692e-06 -2.68696e-27)
(1.00009 0.00038764 -1.26709e-21)
(1.00001 -6.2574e-07 3.16903e-27)
(1.00001 -9.65189e-07 -3.17687e-27)
(1.00002 -1.9557e-07 -5.02751e-27)
(1.00001 -9.52308e-07 3.90172e-27)
(0.999988 -5.17751e-06 -8.18345e-27)
(1.00001 -6.90021e-07 0)
(1.00001 -4.29842e-07 -3.27523e-29)
(0.999983 -8.17252e-06 -1.47614e-25)
(1.00331 -0.00577384 -3.19464e-23)
(1.10339 -0.0108427 6.61303e-23)
(0.999817 -0.000232065 -9.43475e-25)
(1.00004 -1.8664e-05 -1.64261e-25)
(1.00095 -0.00165979 -7.63141e-24)
(1.02357 0.00477558 2.80252e-22)
(1.00076 -0.0111262 8.94187e-26)
(0.976098 -0.0285442 -4.21701e-22)
(1.00029 -0.000442197 -7.44566e-26)
(1.00017 -0.000411019 -2.60202e-24)
(0.999982 -4.83133e-05 -6.42447e-26)
(1.00003 -1.53344e-05 2.90727e-25)
(1.00004 -1.69078e-05 2.08383e-25)
(0.999958 -4.8729e-05 5.1729e-25)
(0.988395 -0.0024681 4.8005e-23)
(1.00012 -0.00154285 3.47549e-25)
(0.999975 -4.37227e-06 1.54638e-25)
(1.00115 -0.0013836 5.00327e-24)
(1.00466 -0.0101388 -1.51721e-23)
(0.999624 -0.000182878 4.4485e-24)
(1.00037 -0.000641452 -3.02187e-24)
(0.999742 -9.36285e-05 2.06817e-24)
(0.999993 -5.76692e-06 -5.15487e-26)
(0.984493 -0.000628374 -4.20817e-22)
(1.00767 -0.0135899 -8.62762e-24)
(1.03223 0.00547871 -5.67809e-22)
(1.00005 -0.000360498 -2.05006e-25)
(1.00013 -0.000191136 -4.09838e-25)
(0.999866 -3.11169e-06 -5.6627e-25)
(0.999943 -1.33735e-06 -6.15341e-25)
(1.00099 -0.0118676 8.70201e-24)
(1.00139 0.0709428 -3.07841e-21)
(1.00003 -1.25103e-05 4.25786e-25)
(0.993234 -0.00259416 3.90001e-23)
(1.13558 0.12751 1.72262e-21)
(1.00002 -1.28949e-05 -1.06766e-25)
(0.999994 -1.4177e-05 5.4057e-26)
(1.00007 -0.000118854 -3.44052e-26)
(0.994042 -0.00592697 3.83468e-23)
(1.0001 -0.000158237 5.81305e-26)
(1.00018 -0.000121748 3.14816e-25)
(1.00001 -7.80884e-06 7.56756e-26)
(1.00007 -7.73777e-05 -1.61792e-25)
(0.981992 -0.0230752 -1.00628e-22)
(0.999902 -4.90556e-05 -1.36505e-24)
(0.999942 -1.14791e-05 9.29115e-25)
(0.999986 -2.40827e-05 -1.02207e-25)
(0.981762 0.107034 -1.99383e-23)
(1.00127 -0.008795 3.80684e-25)
(1.00006 -4.27967e-05 -1.3589e-25)
(1.00074 -0.0071701 -3.64474e-25)
(1.00012 -0.00135938 -3.98944e-25)
(1.10758 -0.00466916 1.98768e-22)
(1.00001 -0.00121423 -3.51401e-25)
(0.985297 -0.000170116 1.65046e-22)
(0.957553 -0.0145287 -2.47623e-23)
(1.00005 -2.04593e-05 1.51867e-25)
(0.964052 -0.014354 -2.12351e-22)
(0.999983 -2.96196e-06 1.48255e-25)
(0.999824 -7.80499e-06 -2.34928e-24)
(0.999903 -0.00475166 -1.65929e-24)
(0.948134 0.0175243 4.83833e-21)
(1.00008 -0.000130699 1.17094e-24)
(1.02369 0.0459514 -1.5774e-21)
(0.993835 -0.0164121 5.97803e-23)
(1.02043 -0.00671397 -1.56629e-22)
(1.00003 -0.000107066 1.46536e-25)
(0.999831 -3.65929e-06 3.13926e-24)
(1.00003 -9.28364e-06 1.02456e-25)
(1.117 0.0744933 1.71836e-22)
(0.999994 -6.71279e-06 4.50642e-26)
(0.991185 -0.0232612 -3.82574e-23)
(1.04621 -0.0628266 1.91453e-23)
(1.00009 -0.000143791 -2.10162e-25)
(0.99855 -0.0108802 -4.37771e-23)
(0.995689 -0.00343158 6.79403e-23)
(1.04961 0.0818648 2.09686e-21)
(1 -7.71334e-06 -6.34662e-27)
(1.00178 -0.00573491 -1.21085e-23)
(1.00049 -6.36742e-05 7.32912e-24)
(1.05395 -0.0255483 -5.52694e-23)
(0.984532 -0.0749873 4.00885e-22)
(1.00924 -0.0161594 -4.74115e-23)
(1.00221 -0.00659407 -5.09969e-24)
(1.04393 -0.00464716 6.79031e-22)
(0.933157 0.0761439 -1.8214e-21)
(0.999984 -3.43071e-06 3.07999e-26)
(1.00197 -0.00614652 2.94857e-25)
(1.00247 -0.00709625 -8.76617e-24)
(0.966374 -0.0354294 3.27587e-22)
(1.00008 -5.18127e-05 -2.1271e-25)
(0.981052 -0.047811 -5.38023e-22)
(1.00149 -0.00940595 4.93939e-25)
(1.00254 -0.0190122 -1.99169e-23)
(1.00001 -9.53774e-06 8.45213e-27)
(1.09397 -0.0211848 -1.10897e-22)
(1.02461 0.0039241 1.06255e-21)
(1.00387 -0.00487804 5.11093e-23)
(1.0009 -0.0123361 -1.74375e-23)
(0.999107 -0.000203236 3.80473e-24)
(0.999786 -5.21857e-06 -4.71264e-24)
(1.00002 -8.62606e-06 7.04655e-26)
(1.01983 -0.0114382 -1.35039e-24)
(1.00001 -3.15026e-06 -5.08737e-26)
(0.950761 -0.0117981 4.71455e-22)
(1.00007 -8.50025e-05 2.38182e-25)
(1.00003 -9.72007e-05 -1.62401e-25)
(0.999996 -1.54409e-05 5.73253e-27)
(1 -2.55268e-05 6.57302e-27)
(1.00069 -4.3859e-05 5.19246e-25)
(0.963935 -0.0107224 -4.20946e-22)
(0.999998 -1.64908e-05 -3.61335e-26)
(0.999798 -0.000191871 -2.01175e-24)
(0.947509 -0.00885669 1.16556e-22)
(0.992366 -0.00833329 1.83569e-23)
(1.03988 0.0320765 -7.55744e-22)
(0.974924 -0.0192665 -3.20154e-22)
(0.987627 -0.00758499 -8.50132e-23)
(1.0446 -0.00199901 -2.78642e-22)
(1.02484 0.00027968 -6.28283e-22)
(1.00001 -7.81816e-05 -4.42919e-26)
(0.999969 -8.75869e-05 2.968e-25)
(1.00002 -8.82932e-05 -8.63331e-26)
(1.0001 -4.98892e-05 1.99963e-25)
(0.947924 -0.0210089 -3.03212e-22)
(1.00002 -1.65791e-05 -1.70651e-26)
(1.00011 -5.44995e-05 2.02159e-24)
(1.00006 -1.7904e-06 -4.18264e-27)
(1.00002 -1.19713e-05 -1.85225e-26)
(1.0306 -0.0592632 -1.32246e-22)
(1.00071 -0.00016024 6.53814e-24)
(1.17652 0.0393843 -4.8382e-23)
(1.00001 -3.09193e-06 -5.48893e-27)
(0.994982 -0.0068065 1.71454e-23)
(1.00021 -0.00107754 1.19846e-24)
(0.99963 -0.000248483 3.65446e-24)
(0.999993 -1.09438e-05 -1.03862e-27)
(1.00001 -2.15839e-05 -5.1764e-27)
(1.00157 -0.00532557 -4.62577e-24)
(0.973533 -0.0537956 -5.80883e-22)
(0.999731 -5.44121e-06 9.24984e-25)
(1.03145 -0.0280329 4.7122e-23)
(1.1113 0.00207417 4.11269e-22)
(1.00004 -0.000463184 -1.06424e-25)
(1.00002 -1.25048e-05 1.3615e-25)
(1.00014 -2.65125e-05 -1.56573e-24)
(0.999981 -1.57553e-05 2.64513e-26)
(0.994762 -0.00584227 6.58921e-23)
(0.966394 -0.0102162 1.40504e-22)
(0.986279 -0.0493388 -5.46887e-22)
(1.00184 -0.000693718 -3.488e-23)
(1.0097 -0.0854733 6.32601e-22)
(1.01299 -0.0290737 5.67922e-24)
(0.994298 -0.00030507 2.21552e-23)
(1.00068 0.00349588 1.22079e-21)
(0.990757 -0.0428258 6.46722e-23)
(0.998464 -0.00200543 -1.23261e-23)
(1.00002 -3.30403e-06 -2.72179e-26)
(0.978757 -0.00340597 -1.49193e-22)
(1.00244 -0.0101085 -1.1035e-23)
(1.00143 -0.00978456 5.60549e-25)
(0.999973 -5.61363e-05 -2.9358e-25)
(0.999926 -8.52597e-05 -1.15514e-24)
(1.03161 0.00730165 8.6908e-22)
(1.01058 0.010307 -6.23435e-22)
(1.06054 -0.110147 3.8577e-22)
(1.02803 0.0043955 7.88241e-22)
(0.999843 -3.18685e-06 -1.61206e-24)
(0.999382 -0.000934474 -1.683e-24)
(1.28397 0.0336015 -2.43065e-22)
(1.00013 -5.96815e-05 -1.65557e-24)
(1.00203 -0.0179423 -1.92674e-23)
(0.980723 -0.00708308 -4.26709e-23)
(0.999989 -2.17791e-05 -7.64253e-26)
(0.999668 -6.07516e-06 -3.8893e-25)
(1.01977 -0.00118701 -5.18718e-22)
(1.00315 -0.0201303 -6.04381e-24)
(1.00391 -0.0220847 -6.01957e-24)
(1.00387 -0.0212819 5.99041e-24)
(0.998008 -0.00166057 -3.91535e-23)
(0.999891 -0.000361835 -1.88308e-25)
(0.999954 -0.000134189 -5.67199e-25)
(0.954096 -0.0314337 -8.93641e-23)
(1.00001 -2.43579e-05 1.38768e-26)
(0.995432 -0.0128751 7.31054e-23)
(0.963881 -0.018819 5.79764e-22)
(1.01207 0.02211 4.7583e-22)
(1.00001 -7.44965e-06 -4.11195e-28)
(1.00006 -3.75204e-06 8.64449e-25)
(1 -1.27399e-05 -1.41988e-27)
(0.999991 -2.3765e-05 -1.19193e-26)
(0.999987 -1.96885e-05 6.51137e-26)
(1.01179 -0.0122732 -6.26378e-23)
(1.00014 -2.01141e-05 -2.17883e-24)
(0.999967 -5.73629e-05 -6.41983e-26)
(1.00014 -6.55968e-05 4.71786e-25)
(0.961893 -0.0238446 -3.8805e-22)
(1.02265 0.00486814 -1.39775e-22)
(1.06368 0.0525701 -5.84555e-22)
(1.00001 -7.07e-05 -2.42647e-26)
(1.00001 -3.76914e-06 1.38159e-26)
(1.00002 -2.51056e-06 3.04019e-26)
(1.00001 -2.21066e-05 5.21067e-27)
(1.00276 -0.0140858 -2.78961e-25)
(0.99239 -0.0153408 -5.04479e-23)
(1.00021 0.00166435 -1.85024e-21)
(0.977309 -0.00665114 -8.83122e-23)
(0.971283 -0.000674579 6.23189e-23)
(0.999795 -7.0732e-05 -4.65313e-25)
(1.00001 -2.96825e-06 9.98978e-27)
(0.944523 -0.00548275 2.20209e-22)
(0.999935 -2.3803e-05 1.61729e-24)
(0.999996 -1.9756e-05 1.07599e-25)
(1.00002 -2.16794e-06 1.27315e-25)
(1.00923 0.0097596 -5.85006e-22)
(0.999588 -9.09239e-06 2.85741e-24)
(1.09738 0.0986866 1.28068e-21)
(0.996721 -0.00270963 -4.41406e-23)
(1.00837 -0.00837518 -1.15776e-22)
(1.03046 0.166008 -2.2566e-21)
(1.04181 -0.0611958 -4.56662e-24)
(1.00001 -2.53819e-06 1.72575e-26)
(0.998635 -0.00173261 -5.21703e-24)
(0.998551 -0.0018644 -9.34174e-24)
(0.999984 -2.83824e-05 -1.18813e-25)
(0.999679 -0.00036673 7.9298e-25)
(1.05538 0.0790394 -6.50643e-22)
(1 -7.4723e-06 4.89371e-27)
(0.999488 -0.00146442 -5.16512e-24)
(0.999175 -0.00219396 6.79036e-24)
(0.999926 -6.35163e-05 -2.48159e-24)
(1.03782 0.0585434 -1.42866e-21)
(1.00016 -7.20081e-05 1.71484e-24)
(0.998713 -0.0016088 -3.94324e-24)
(0.998836 -0.00279488 6.01524e-24)
(1.00001 -6.4023e-05 2.56851e-26)
(0.9994 -0.00184427 4.38205e-25)
(0.999516 -0.00135404 3.28214e-24)
(0.999881 -0.000881834 8.54019e-25)
(0.999543 -0.00125152 1.53415e-24)
(1.06236 0.00580729 7.20099e-22)
(0.999459 -0.00158187 -1.22437e-24)
(0.99943 -0.00170829 -2.76142e-24)
(1.00017 -7.89168e-05 5.21472e-25)
(0.989786 -0.0150006 -4.29579e-23)
(0.999131 -0.00236407 -1.33025e-24)
(0.998774 -0.00300557 -5.00869e-24)
(0.986467 -0.000131728 -1.59225e-22)
(0.999618 -0.00098778 -3.59853e-24)
(1.02107 -0.0557123 -1.46948e-22)
(0.998644 -0.00347421 -1.12736e-23)
(0.99871 -0.00323236 -3.50081e-24)
(0.955309 -0.0184554 1.6983e-22)
(1.03026 -0.0101065 4.1866e-23)
(0.941993 -0.0108681 -5.38758e-22)
(0.992021 -0.00341808 -5.57945e-23)
(1.00002 -7.65629e-06 -1.47366e-25)
(0.999569 -0.00115647 6.71599e-24)
(0.998511 -0.00400696 5.53034e-24)
(0.998578 -0.00373303 -2.26864e-23)
(0.991646 -0.0036588 6.25149e-23)
(1.00002 -2.65553e-06 -1.35685e-25)
(1.00395 -0.0116596 -3.99411e-23)
(1.00002 -1.37908e-05 -2.88066e-25)
(1.00001 -6.32486e-06 7.51536e-26)
(1.02396 -0.0108508 -1.22432e-22)
(1.00003 -1.93351e-05 1.914e-25)
(1.10966 0.174113 1.58704e-23)
(0.999594 -0.00106815 2.99355e-24)
(1.03926 -0.0094292 9.43083e-22)
(0.998116 -0.00154862 2.93672e-23)
(0.999712 -0.000889658 -1.6509e-25)
(0.998468 -0.00430723 -4.3205e-24)
(1.01278 0.0192637 1.82572e-22)
(0.999492 -8.44346e-06 -1.3145e-23)
(1.0192 0.0579389 6.80399e-22)
(0.961592 -0.0219888 -4.89509e-23)
(0.966335 -0.0306654 8.34983e-22)
(0.987943 -0.00577958 -1.66036e-23)
(0.999728 -0.000822027 1.73664e-25)
(0.998788 -0.0014939 -1.1449e-23)
(1.00001 -6.88493e-06 -1.91902e-26)
(1.00001 -5.77305e-05 3.48726e-26)
(1.03776 -0.0593969 2.1103e-23)
(0.999983 -1.59215e-05 -8.02262e-26)
(0.999636 -0.000132835 1.29221e-24)
(0.999085 -0.00254686 -8.89581e-25)
(1.01995 -0.0345577 3.21714e-24)
(0.965273 0.0127695 -1.25037e-21)
(0.999994 -7.45439e-06 -1.2833e-26)
(0.967936 -0.020823 3.77892e-22)
(1.00001 -3.12576e-06 7.89483e-27)
(0.976212 -0.00323058 1.23416e-23)
(0.998375 -0.00462057 3.81996e-23)
(1.00002 -1.07769e-05 3.22121e-27)
(1.00002 -7.962e-06 -5.54584e-26)
(0.967617 -0.012602 3.21072e-22)
(1.00002 -3.3076e-06 4.20371e-26)
(1.0113 0.0251786 3.33528e-23)
(0.942966 -0.0100737 1.73466e-22)
(0.999743 -0.000757809 -1.75658e-24)
(0.999368 -0.00198996 8.00461e-24)
(0.990402 -0.00452467 1.35126e-22)
(0.990835 -0.00420667 -9.5349e-23)
(0.978874 -0.0205046 -1.40385e-23)
(0.998857 -0.00138745 1.26069e-23)
(0.999759 -0.000696683 -1.34854e-24)
(0.954135 -0.0142999 1.74103e-22)
(1.00001 -4.35862e-05 3.20642e-26)
(0.998314 -0.00495152 4.26958e-24)
(0.999853 -0.000486433 -1.26256e-24)
(0.991245 -0.0039274 1.37761e-22)
(0.999921 -6.46926e-05 2.52862e-24)
(0.999981 -3.54125e-05 3.77983e-25)
(0.999717 -0.000369729 -1.8084e-24)
(0.993881 -0.00548206 4.1658e-23)
(0.998927 -0.00129047 6.08403e-24)
(0.97183 -0.000325489 2.29707e-23)
(0.999909 -0.000365033 -9.97064e-25)
(0.9998 -0.000542137 -2.53903e-24)
(0.952498 -0.0329381 5.59121e-22)
(0.989979 -0.00486574 7.88538e-23)
(1.00001 -1.74848e-05 5.79253e-26)
(0.990575 -0.0131864 6.51257e-23)
(0.999383 -1.04334e-05 1.57513e-24)
(0.999773 -0.000640378 -2.1103e-24)
(0.999965 -4.95317e-06 4.07392e-25)
(0.998993 -0.00119808 -2.19275e-23)
(1.00233 -0.0523758 1.56012e-23)
(0.999975 -1.22149e-05 -2.89431e-25)
(1.00242 -0.0105141 1.64164e-23)
(1.21648 -0.00328565 -6.24693e-23)
(0.999995 -1.32168e-05 -6.72785e-26)
(0.999786 -0.000589177 -4.25881e-24)
(1.00004 -0.000143169 1.32476e-25)
(1.00001 -4.84036e-05 -7.05154e-26)
(0.963199 -0.00557918 -3.57487e-22)
(0.818183 0.00955906 2.1289e-21)
(1.0006 -0.000691644 -6.48992e-24)
(1.00002 -3.87824e-06 1.1486e-26)
(0.99955 -0.000465601 3.21967e-24)
(1.00001 -2.23968e-05 9.92735e-26)
(1.00002 -4.99384e-06 -3.09919e-25)
(0.999947 -0.000187452 5.07277e-25)
(1.15633 0.141048 -2.02366e-21)
(1.00001 -6.56015e-06 -6.49215e-26)
(0.999054 -0.00111142 2.05471e-24)
(0.999736 -0.000339471 -2.06812e-24)
(0.997783 -0.00582655 2.55472e-23)
(0.999862 -0.000446533 -5.13028e-25)
(0.999319 -0.000757203 -4.57391e-24)
(0.9969 -0.00252235 2.89133e-23)
(1.00002 -1.26902e-05 -1.83283e-25)
(0.999272 -0.000819789 -9.41746e-24)
(0.999957 -0.000189046 6.25722e-25)
(1.00155 -0.000336633 -1.24162e-23)
(1.00024 -0.000169169 -8.41829e-25)
(0.999754 -0.000311679 -2.40285e-24)
(1.03787 -0.0113063 3.15915e-22)
(0.997713 -0.00625727 -6.70584e-24)
(0.989493 -0.00520897 -1.10651e-22)
(0.999113 -0.00103049 6.37321e-24)
(0.999725 -0.000541554 -2.53597e-24)
(0.994956 -0.00200315 -4.83445e-23)
(1.01793 -0.0317008 1.18931e-23)
(0.999941 -2.84857e-06 2.96042e-25)
(0.999986 -1.35467e-05 -5.44011e-26)
(1.04045 -0.00736231 -1.48802e-23)
(0.999833 -0.00015726 -5.66263e-25)
(0.998243 -0.00531229 -4.18852e-23)
(0.91366 0.104657 3.60038e-21)
(1.00001 -3.91709e-05 2.21226e-26)
(0.999244 -1.41701e-05 -3.96046e-24)
(0.999467 -0.000654379 3.0336e-24)
(0.999169 -0.000955279 1.97964e-24)
(1.00002 -3.66658e-06 -4.7923e-26)
(0.99987 -0.000409784 -1.88326e-25)
(1.00824 -0.0101401 -1.23183e-22)
(0.997676 -0.000286065 4.81916e-24)
(1.02873 0.000577686 -2.17505e-22)
(0.955505 -0.0205073 -5.67824e-23)
(1.00001 -9.55323e-06 -8.37355e-26)
(0.999538 -0.00055822 -5.94151e-24)
(1.00002 -8.80142e-06 3.47433e-26)
(0.95777 -0.0355066 -1.812e-22)
(1.00002 -4.5249e-06 -1.30498e-25)
(1.00001 -5.42983e-06 -2.05462e-26)
(1.00901 -0.0107008 1.40435e-22)
(1.00982 -0.0112994 -1.90913e-22)
(1.00001 -3.51737e-05 3.43284e-27)
(0.997628 -0.00668448 -1.18439e-23)
(0.999182 -0.00142619 -5.98581e-24)
(1.02736 -0.0569876 1.52312e-22)
(1.00209 -0.00140231 -2.57467e-23)
(1.02264 -0.000966076 -2.31229e-23)
(0.999221 -0.0008852 -3.33716e-24)
(0.999504 -0.000604703 -2.20886e-24)
(0.995221 -0.00392413 -2.43642e-23)
(0.999924 -0.000279811 7.88632e-25)
(0.992105 -0.00775938 -8.51083e-23)
(0.999772 -0.000286032 -1.95692e-25)
(1.0086 -0.00881399 2.36461e-22)
(1.02209 0.00129426 -2.0187e-22)
(0.998751 -0.000391967 -5.43862e-24)
(0.999914 -0.000334358 1.57359e-24)
(0.994972 -0.00418466 1.51358e-23)
(0.994703 -0.0044636 -3.75334e-24)
(1.00002 -2.24173e-05 8.0574e-26)
(0.997548 -0.00715057 -2.24675e-23)
(1.00002 -6.09195e-06 -9.5674e-28)
(0.999919 -0.000306056 7.56385e-26)
(1.00002 -5.91463e-06 -3.6251e-26)
(1.00002 -8.98757e-06 6.00702e-26)
(1.00001 -4.15175e-06 5.11735e-27)
(1.19536 -0.00850918 -6.09569e-23)
(0.971346 -0.0637766 -5.13699e-22)
(1.00238 -0.00291019 -1.16803e-23)
(0.999092 -1.54916e-05 1.24038e-23)
(1.0005 -0.000394165 -6.41451e-25)
(0.999937 -0.000213932 -9.26374e-25)
(1.01086 0.0117092 2.85753e-22)
(0.999839 -0.000176022 2.03317e-25)
(0.999928 -0.000256135 8.66838e-25)
(0.996494 -0.0538172 5.08004e-23)
(0.999961 -4.73731e-05 -2.57933e-25)
(1.20188 0.0321364 -1.29219e-22)
(1.09208 -0.171733 3.17043e-22)
(0.99418 -0.00514512 2.40929e-23)
(0.999309 -0.00147373 -1.23249e-23)
(1.02223 0.00407046 1.26211e-21)
(0.968636 -0.0376679 -3.90671e-23)
(0.999933 -0.000234497 -9.66134e-25)
(1 -6.75113e-06 -5.88417e-28)
(1.00002 -9.86571e-06 -2.04298e-26)
(1 -6.63754e-06 -4.36985e-28)
(1.0225 0.0500538 6.14089e-22)
(1.00003 -1.12759e-05 -3.00832e-27)
(0.994729 -0.0159315 7.02639e-23)
(0.994449 -0.00478205 2.74966e-23)
(1.00002 -2.21375e-05 -6.68581e-26)
(1.0609 0.0754235 -2.1754e-21)
(1.00006 -3.16045e-05 -2.75755e-25)
(1.00003 -6.6429e-06 -4.65691e-25)
(1.00399 -0.0548399 1.77814e-22)
(0.999815 -0.000152103 -1.83574e-24)
(0.99288 -0.0168433 1.41718e-22)
(1 -5.83557e-06 -1.39291e-27)
(1.02474 -0.00688787 -1.71602e-22)
(1.00003 -8.54187e-06 4.5162e-26)
(0.99747 -0.00764717 -1.99102e-23)
(1.00111 -0.00119939 -1.24391e-23)
(1.00012 -0.000126024 -7.96724e-25)
(0.988126 -0.0015661 2.54611e-22)
(0.99998 -9.43956e-05 -2.50078e-25)
(0.998976 -0.000727103 -4.32841e-24)
(0.999796 -1.88791e-05 2.07906e-25)
(0.999994 -5.8743e-06 -3.6647e-26)
(0.996398 -0.0149823 -8.84168e-23)
(0.99709 -0.000383289 1.32056e-23)
(0.977404 -0.0319366 2.22157e-22)
(0.998908 -1.63866e-05 -8.07666e-24)
(0.99641 -0.00147871 4.8525e-23)
(1.00018 -8.85935e-05 5.17437e-26)
(1.00079 -0.000180371 1.98377e-24)
(0.999959 -0.000172352 7.12858e-25)
(1.00201 -0.000466077 1.59722e-23)
(0.999961 -4.38487e-05 -7.67088e-25)
(0.99931 -0.000238746 -8.93741e-24)
(1.00002 -5.13428e-06 -3.08159e-26)
(1.06158 0.159207 -1.53586e-22)
(1.01257 0.0135952 8.18321e-22)
(0.999358 -8.67689e-05 1.65789e-24)
(0.996877 -0.0083735 -5.99415e-24)
(0.999864 -0.000219737 -9.86602e-26)
(1.01864 -0.0532186 4.98484e-23)
(1.00002 -7.9177e-06 -1.96687e-26)
(0.997135 -0.0364479 7.60788e-23)
(0.999788 -0.000262081 -3.33144e-24)
(0.955869 -0.0174257 -3.64835e-23)
(1.00001 -4.63009e-06 -9.31715e-28)
(1.02095 0.0540936 -1.65307e-21)
(0.999968 -3.12265e-05 -2.60445e-25)
(0.997287 -0.00138742 -2.08025e-23)
(0.996777 -0.00894871 6.29718e-23)
(1.00913 -0.00330813 1.96677e-23)
(0.996652 -0.0198557 -7.73188e-23)
(0.996602 -0.00181683 8.9542e-23)
(0.994518 -0.00327535 8.82542e-23)
(0.999998 -6.7993e-06 -1.09252e-26)
(1.00002 -3.94567e-06 1.05273e-25)
(0.995308 -0.00268477 4.14993e-24)
(1.00001 -6.67089e-06 7.84153e-26)
(1.08111 -0.0727156 -2.13187e-22)
(1.00002 -6.98535e-06 -3.06581e-26)
(0.99668 -0.00956224 -6.39286e-23)
(0.997437 -0.00129744 2.82819e-23)
(0.998335 -0.000464647 -4.19314e-25)
(0.976567 -0.00225657 2.46159e-22)
(1.00217 -0.0261919 4.08484e-23)
(1.01028 0.028189 1.38178e-21)
(0.99641 -0.00193747 -1.54097e-23)
(0.995058 -0.00287076 -4.34221e-23)
(0.994795 -0.00307174 -6.00274e-23)
(0.996785 -0.00169825 3.22357e-23)
(0.997693 -0.000358993 -4.04816e-23)
(0.995547 -0.00251407 2.71924e-23)
(0.994227 -0.00348726 2.9107e-23)
(1.00005 -0.000246899 5.2855e-26)
(0.995779 -0.00235232 8.08228e-23)
(0.996 -0.00220229 -2.42358e-23)
(0.999829 -0.000139278 6.38472e-25)
(0.999961 -0.000157062 -1.19252e-26)
(0.993925 -0.00372189 3.33421e-23)
(0.982437 -0.00897046 -2.27504e-22)
(0.998688 -1.98227e-05 7.69185e-24)
(0.992465 -0.00726262 -6.17269e-23)
(1.0508 0.147407 8.65791e-22)
(0.999989 -4.97928e-06 6.26168e-26)
(0.993624 -0.0039894 -1.32498e-23)
(0.999966 -0.000130123 -2.21718e-25)
(0.999993 -4.94768e-06 4.35697e-26)
(1.00002 -5.16181e-05 -5.96735e-26)
(1.08233 0.0489631 -9.51742e-22)
(1.10789 0.147233 2.12517e-21)
(1.00006 -3.90136e-05 -1.16606e-24)
(0.99943 -0.000708173 -4.14269e-24)
(0.982204 -0.00366012 -5.26648e-23)
(0.999963 -0.000142995 -1.45169e-25)
(0.993266 -0.0042319 5.72855e-23)
(1.01278 -0.00831058 2.11355e-23)
(0.999781 -5.99929e-05 8.30896e-25)
(0.999909 -9.21234e-05 9.01876e-25)
(0.997974 -0.00112207 -1.36421e-23)
(0.996211 -0.00206586 -5.7138e-23)
(0.996963 -0.00158754 -5.09501e-23)
(1.00001 -1.07226e-05 1.48095e-28)
(0.992922 -0.00450605 -7.44899e-23)
(1.00001 -2.10844e-05 -4.9406e-26)
(0.999804 -0.0002376 -2.99014e-24)
(1.00002 -5.17234e-06 2.88238e-25)
(1.00001 -7.96486e-06 1.52723e-26)
(0.999291 -1.70345e-05 9.29185e-24)
(1.00001 -6.49527e-06 4.60242e-26)
(0.998092 -0.00104592 8.52677e-24)
(0.992571 -0.00485319 3.83399e-23)
(0.997129 -0.00148356 5.43112e-23)
(1.00002 -2.34535e-05 1.06869e-25)
(0.997849 -0.00120212 2.37104e-23)
(1.00002 -1.22308e-05 -2.19462e-26)
(1.00192 0.00278497 7.65807e-22)
(0.970231 -0.0447048 1.98943e-22)
(1.10896 0.0156625 -5.16928e-22)
(1.00005 -0.000131468 1.43236e-25)
(0.999908 -4.85522e-05 4.50761e-25)
(1.03874 -0.0385666 5.12572e-23)
(0.999968 -0.000118376 -2.26949e-25)
(0.999997 -7.73408e-06 2.13543e-26)
(0.998835 -0.000664534 1.88782e-25)
(1.00002 -1.26026e-05 1.83191e-26)
(0.998201 -0.000974741 1.27813e-23)
(1.04121 0.00472664 -6.61563e-22)
(0.994238 -0.00135452 -4.67637e-23)
(0.993339 -0.00163347 -5.37078e-23)
(0.990924 -0.000937539 4.51104e-23)
(1.00378 0.0703225 -3.45241e-21)
(0.992168 -0.00513027 -5.95422e-23)
(0.990523 -0.00102622 -3.28375e-23)
(0.998595 -0.000829392 3.2371e-23)
(0.998974 -0.000982234 5.53278e-24)
(0.994514 -0.00126502 -3.55447e-23)
(0.974009 -0.0621816 -2.44427e-22)
(0.993647 -0.00154143 1.3906e-22)
(0.993949 -0.00144473 7.26042e-24)
(0.993012 -0.00174294 1.0407e-22)
(0.994778 -0.0011794 1.77337e-23)
(0.995274 -0.00103038 2.99045e-23)
(0.996585 -0.0102154 2.75763e-23)
(0.998975 -0.000570402 -2.1396e-23)
(0.998443 -2.61124e-05 3.73796e-23)
(0.99503 -0.00110102 9.00425e-23)
(0.95141 0.0782324 -5.31602e-21)
(0.999984 -7.00992e-05 -3.36079e-25)
(0.998909 -0.000614289 1.0861e-23)
(0.99995 -0.000120188 -6.3154e-25)
(0.992667 -0.00186714 -1.14908e-22)
(0.989623 -0.00122402 3.69704e-24)
(0.995596 -0.0144548 5.91937e-26)
(1.0028 -0.00212458 -2.94835e-23)
(0.988641 -0.0014454 -1.05661e-22)
(0.991926 -0.00213542 1.07817e-22)
(0.992302 -0.00199995 1.71073e-22)
(0.989136 -0.00133247 1.05024e-22)
(0.99997 -0.000107592 1.06861e-25)
(0.990079 -0.0011307 2.7297e-23)
(0.999244 -0.000421733 -2.31829e-24)
(0.999983 -7.24424e-06 -5.66945e-26)
(0.987596 -0.000167532 -1.04925e-22)
(0.99904 -0.000531986 1.116e-23)
(0.995949 -0.000841456 -2.98968e-23)
(0.998505 -0.000891856 -1.40249e-23)
(0.978509 -0.0632924 1.99696e-22)
(0.995508 -0.000964318 4.52023e-23)
(0.996846 -0.000749923 1.60879e-23)
(1.00003 -7.86057e-06 1.73152e-25)
(0.999218 -0.000250906 2.71716e-24)
(1.00924 0.0312354 -1.03081e-21)
(0.995733 -0.000901897 -6.72822e-23)
(0.996674 -0.000804303 -3.52186e-23)
(1.00101 -0.0220126 2.1935e-23)
(0.999995 -1.02563e-05 -2.43628e-26)
(0.991774 -0.00543463 1.50915e-22)
(0.999999 -0.000109284 2.25957e-26)
(0.998679 -0.000770612 4.39977e-24)
(0.99135 -0.00578404 -8.50788e-23)
(1.01935 0.0602886 -2.45013e-21)
(1.00001 -1.21451e-05 -2.39073e-26)
(0.99151 -0.002252 -3.43836e-23)
(1.00752 -0.00960153 -7.71866e-23)
(0.996155 -0.000782671 -4.72738e-23)
(1.00096 -0.00256764 1.49385e-24)
(0.999156 -0.000458124 8.66472e-24)
(1.00008 -0.000218528 3.67523e-25)
(0.9965 -0.0109035 1.09512e-22)
(0.995648 -0.0206412 -1.7586e-23)
(1.00001 -9.3221e-06 -2.8684e-27)
(0.986322 -0.0109706 2.21575e-22)
(0.982365 -0.00623537 2.17475e-22)
(0.882097 0.0543579 -9.9031e-22)
(0.999985 -6.34354e-05 3.38701e-26)
(0.89036 0.065582 -5.78434e-22)
(1.00025 -0.000154827 1.66582e-25)
(0.978733 -0.0243159 5.15593e-23)
(0.990857 -0.00614361 -9.65783e-24)
(1.00186 -0.00176621 2.63651e-23)
(0.999099 -0.000494036 3.55719e-25)
(0.992709 -0.033621 1.44688e-22)
(0.999983 -5.72652e-06 -1.53925e-25)
(0.999983 -8.54909e-05 -1.09469e-25)
(0.991078 -0.00240428 7.59413e-23)
(0.994776 -0.0056005 -3.68452e-23)
(1.01551 0.00739157 8.09266e-22)
(0.99843 -0.000429429 -7.04939e-24)
(1.00005 -1.66614e-05 -1.14059e-26)
(0.99821 -0.00110459 2.44086e-23)
(1.04384 -0.014561 6.52598e-22)
(0.999879 -0.000179641 9.77926e-25)
(1.00026 -0.00015431 2.34878e-24)
(0.99876 -0.000715379 -6.08962e-24)
(0.962395 -0.0086359 -5.59864e-22)
(0.990632 -0.00258768 2.90084e-23)
(1.00029 -0.000169504 -1.64777e-24)
(0.990441 -0.00656648 3.85886e-23)
(1.06404 0.049816 -1.12756e-21)
(0.998164 -2.76709e-05 1.93796e-24)
(1.00001 -8.95227e-06 9.41699e-27)
(0.933716 -0.00993326 -3.77509e-22)
(0.842933 0.00397232 4.67984e-22)
(1.00019 -0.000504311 8.9141e-25)
(1 -1.35746e-05 6.46297e-27)
(1.00001 -4.26231e-06 -7.85286e-26)
(0.996436 -0.0116273 5.56235e-23)
(1.00002 -1.13591e-05 1.46547e-25)
(1.00006 -0.000112228 2.68825e-25)
(0.99936 -0.000386949 -2.0308e-24)
(1.04786 -0.00273978 7.9329e-22)
(0.990002 -0.00704853 2.31003e-22)
(1.00002 -1.45995e-05 -6.586e-26)
(0.990194 -0.00275282 -5.82029e-23)
(0.999557 -9.58267e-06 -4.02997e-24)
(0.99852 -0.000397561 2.34433e-23)
(1.00001 -2.14564e-05 -1.2443e-25)
(0.950344 -0.0106371 2.56292e-23)
(1.02108 -0.00983907 4.16185e-22)
(1 -1.16952e-05 -8.25068e-28)
(1.00036 -0.000204888 -3.15819e-25)
(1.00003 -7.11308e-06 2.55159e-25)
(0.999896 -0.000140511 -1.28401e-25)
(0.999983 -7.72618e-05 1.08418e-25)
(0.934386 -0.012692 -5.21068e-22)
(0.998606 -0.000368476 2.40197e-24)
(0.999143 -0.000119592 -5.50729e-24)
(1.00002 -8.15525e-05 4.67851e-28)
(0.9994 -0.000355005 -5.34222e-24)
(1.00032 -0.000186213 2.07213e-24)
(0.989738 -0.00294052 -7.23632e-23)
(0.998688 -0.00034076 3.7711e-24)
(1.00003 -5.21425e-06 -5.76772e-26)
(0.999986 -5.74312e-05 1.60712e-25)
(0.999441 -0.000327784 -2.12771e-24)
(1 -1.57063e-05 -2.28636e-27)
(0.999986 -5.17974e-05 3.09257e-25)
(1.03426 -0.0124044 -2.85273e-22)
(0.999888 -0.000154063 7.08914e-25)
(0.989541 -0.00751246 1.81514e-23)
(1 -6.8165e-06 -1.20048e-26)
(0.989251 -0.00313155 -1.03572e-22)
(1.00001 -5.78459e-06 8.00897e-27)
(0.988768 -0.00334774 -2.45e-22)
(0.999852 -0.000240267 8.79868e-25)
(0.99993 -8.84373e-05 4.86093e-25)
(1.00003 -9.80748e-06 1.12369e-26)
(0.999576 -0.000236504 -1.90419e-24)
(0.99913 -0.000178064 -3.32137e-24)
(1 -1.15291e-05 -2.81272e-27)
(1.02063 0.0317339 -5.97012e-22)
(0.999912 -0.000116789 -4.81091e-25)
(0.999513 -0.000279196 -1.88441e-24)
(0.999761 -8.5411e-05 -9.13e-25)
(0.998765 -0.000314858 -2.3951e-24)
(1.00001 -2.15803e-05 -5.13064e-26)
(0.923181 0.0220569 -5.45872e-22)
(0.987031 -0.000209369 -2.68583e-23)
(1 -5.10521e-06 5.52372e-28)
(0.935185 -0.0153146 9.79044e-23)
(1.04517 -0.0880569 2.52386e-22)
(0.999546 -0.000257369 1.79819e-24)
(0.998758 -0.00123522 -2.084e-23)
(1.00002 -1.35456e-05 1.85056e-25)
(1.0004 -0.000225168 1.00226e-24)
(0.998837 -0.000289489 -1.13112e-23)
(0.999904 -0.00012818 7.6488e-25)
(0.99644 -0.0124044 -1.11759e-22)
(0.989044 -0.00560196 -4.8858e-23)
(0.989033 -0.00799568 -1.26982e-23)
(1.00636 -0.00137997 3.27568e-23)
(0.999311 -0.000416127 -3.98303e-24)
(1 -2.13784e-05 2.0112e-26)
(0.995775 -0.0037672 8.51691e-23)
(0.999975 -9.36073e-05 -3.18165e-25)
(0.959852 -0.00895209 -1.16598e-22)
(0.999478 -0.000302139 9.21782e-25)
(0.988521 -0.00851346 1.89917e-23)
(0.996104 -0.000991915 2.86784e-23)
(0.986734 -0.00299901 -1.48495e-22)
(0.997718 -0.00128621 -4.66645e-23)
(0.988242 -0.00357467 1.75691e-23)
(1.00045 -0.000247103 1.97804e-24)
(1 -4.48152e-06 2.82714e-27)
(0.999918 -0.000106349 -1.38539e-24)
(0.988638 -0.000134779 -2.47512e-23)
(1.00002 -2.14322e-05 -8.5381e-26)
(0.997833 -3.36294e-05 2.32444e-23)
(1.00001 -7.02926e-06 -3.63005e-26)
(1.0014 -0.000304028 -1.64429e-23)
(0.938312 -0.0230027 3.68491e-22)
(0.996402 -0.0140647 -3.71223e-23)
(0.996444 -0.0132062 -2.45117e-23)
(1 -1.80263e-05 1.28549e-26)
(1.02233 -0.00961884 9.012e-23)
(0.939614 -0.025299 2.8594e-22)
(1.0058 -0.00127532 -6.70089e-23)
(1.00173 -0.0302014 -4.55496e-23)
(0.941075 -0.0276017 -7.00895e-25)
(0.999949 -7.28404e-05 2.90885e-25)
(1.00003 -1.19643e-05 -2.40849e-26)
(0.999986 -1.22677e-05 1.49172e-25)
(0.942606 -0.0297152 -2.8113e-22)
(0.933111 -0.00727739 4.24795e-22)
(0.966065 -0.0461766 5.88475e-22)
(0.999996 -1.33272e-05 -7.09988e-26)
(1.00004 -0.000111235 -2.17197e-25)
(0.987692 -0.00381552 -3.00292e-23)
(0.94432 -0.031761 2.68314e-22)
(1.00052 -0.000363199 3.13947e-25)
(1.25317 0.0472375 -7.81671e-23)
(0.999925 -9.68669e-05 -7.2028e-25)
(1.27153 0.0232391 -3.56285e-22)
(0.946087 -0.0336108 -7.1827e-22)
(0.988008 -0.00906553 5.85109e-23)
(0.959811 -0.0438905 2.54639e-22)
(0.947953 -0.0354823 5.16462e-24)
(1.00431 -0.0104137 -1.39726e-23)
(0.999606 -0.000217071 -6.38424e-24)
(1.00001 -5.49469e-06 2.38087e-26)
(0.999987 -4.14723e-06 2.11004e-27)
(0.95375 -0.0400588 1.16198e-22)
(1.00002 -6.8956e-06 1.44288e-25)
(0.997589 -3.74436e-05 -1.42829e-23)
(1.02364 -0.00622522 1.34758e-22)
(0.987118 -0.00409791 -8.89417e-23)
(0.978369 -0.00198314 -1.58179e-22)
(1.00027 0.00488952 -1.12962e-21)
(0.965328 -0.0116864 -2.81691e-22)
(0.960412 -0.00164688 1.48492e-22)
(0.997957 -0.00247638 1.77558e-23)
(0.999957 -5.97214e-05 -3.76988e-25)
(1.0058 -0.0573668 -3.39013e-22)
(0.999992 -9.71261e-06 3.32844e-26)
(1.00008 -0.000122099 -1.31054e-24)
(0.998412 -0.000958871 2.46205e-23)
(0.987469 -0.00965408 2.00712e-22)
(0.999988 -1.21807e-05 -9.03521e-26)
(0.999953 -6.59798e-05 -1.13509e-24)
(0.999633 -0.000199485 4.58412e-24)
(0.999992 -3.60636e-05 1.21308e-26)
(1.00023 -0.000715991 -6.65407e-25)
(1.00011 -0.000162381 -3.21447e-26)
(0.948047 -0.00677103 1.33349e-22)
(1.00004 -1.45441e-05 -4.4413e-25)
(1.0001 -0.000489488 1.3864e-24)
(0.986902 -0.0102872 8.2343e-23)
(0.999999 -2.28958e-05 4.59312e-26)
(0.999263 -0.000449161 -1.06433e-23)
(1.00007 -0.000110969 4.96682e-25)
(1.00055 -0.000363664 8.46214e-25)
(0.99732 -4.23479e-05 1.73384e-23)
(0.999945 -8.02304e-05 -5.4061e-25)
(0.936232 0.132605 -6.5325e-21)
(0.999842 -0.000277171 -2.75875e-24)
(1.00006 -5.47124e-05 1.35919e-26)
(1.00002 -1.80364e-05 -2.22898e-25)
(0.923897 0.119153 -4.55141e-21)
(0.986491 -0.00430059 -1.80799e-22)
(0.999199 -0.0001092 8.75184e-25)
(0.984567 -0.0051624 -2.43448e-23)
(0.99996 -5.41235e-05 -5.7701e-26)
(0.999629 -0.000116138 6.51561e-24)
(0.999823 -0.0001048 -1.30532e-25)
(0.983142 -0.0058534 -5.85176e-24)
(1.01011 0.00754445 8.15583e-22)
(0.985879 -0.00456129 7.58843e-23)
(0.999985 -1.93437e-06 -7.94862e-26)
(0.9589 0.00307691 2.10461e-21)
(0.985231 -0.00485153 7.26604e-23)
(1.00078 -0.00186355 -4.88189e-24)
(0.999985 -2.84666e-06 -5.37111e-26)
(1 -5.92626e-06 -2.23286e-27)
(0.983867 -0.00548931 1.71613e-22)
(1.23903 0.114965 2.83768e-22)
(1.00789 -0.0598798 1.17232e-22)
(1.00013 -0.000178363 -1.46526e-24)
(0.999991 -0.000104526 -2.28819e-25)
(1.00663 -0.00628637 -2.3997e-23)
(0.999783 -0.000126369 -2.17095e-26)
(1.0005 -0.000271545 2.03296e-24)
(0.99999 -1.01541e-05 -2.59108e-26)
(1.00001 -9.66606e-06 -7.76833e-27)
(0.999992 -4.02006e-05 -5.83161e-26)
(1.00001 -1.62891e-05 -2.74625e-26)
(1 -3.20518e-05 -9.13853e-27)
(1.02364 -0.00928327 9.04354e-22)
(1.00068 -0.00044384 -4.98823e-24)
(1.00527 -0.00113828 -1.6347e-23)
(1.00076 -0.000482539 -5.90722e-24)
(1.00002 -2.09672e-05 7.43208e-26)
(1.01704 0.00877406 3.6726e-23)
(1.00002 -1.97163e-05 -1.46791e-25)
(1.00222 0.0108925 -1.18458e-21)
(1.00009 -0.000134341 4.66145e-25)
(1.00062 -0.000400438 -2.85174e-24)
(0.999995 -1.21464e-05 1.04862e-25)
(1.08296 0.0885691 3.30555e-21)
(0.999707 -0.00017919 -4.29884e-24)
(1.00899 0.0401707 -1.21905e-21)
(0.998303 -0.0658134 -1.68583e-22)
(0.996873 -4.43809e-05 4.08047e-23)
(1.00002 -1.60508e-05 6.7732e-26)
(0.999766 -0.000138218 2.40914e-24)
(1.00013 -0.000218542 7.06307e-25)
(1.00001 -4.96698e-06 3.53839e-26)
(1.01036 -0.062366 -2.63894e-22)
(0.999997 -1.86788e-05 -6.07001e-27)
(0.979783 -0.0135335 -1.55723e-22)
(0.999748 -0.000150853 -4.27059e-24)
(1.00436 -0.000992508 6.19582e-23)
(0.999986 -4.11467e-06 4.16481e-26)
(1.00007 -7.87009e-05 -2.68749e-25)
(0.977182 -0.052273 -3.52457e-22)
(1.14394 -0.194519 -1.35043e-21)
(0.981886 -0.00398005 1.61312e-22)
(1.00397 -0.000902791 3.51307e-23)
(0.989578 -0.000100721 -1.40498e-22)
(1.00001 -8.32072e-06 -6.50931e-27)
(0.999814 -7.24175e-05 -1.61668e-24)
(0.969705 -0.00266459 -7.91139e-23)
(0.999992 -4.47249e-05 -1.02259e-25)
(1.00083 -0.000525562 -3.26295e-24)
(0.987493 -0.00799949 -9.38925e-23)
(1.0001 -0.000147754 -2.48176e-25)
(0.999964 -4.91577e-05 7.98098e-25)
(1.00003 -0.000100928 -2.89459e-25)
(0.996538 -5.15181e-05 -4.96146e-23)
(0.999728 -0.000164667 -9.47859e-25)
(0.975992 -0.0550102 -2.18357e-22)
(1.01981 -0.00992351 6.8759e-23)
(0.938823 -0.00429364 -2.62879e-22)
(0.953633 -0.0132499 -4.80319e-22)
(0.999989 -1.55874e-06 4.11135e-30)
(1.00018 -0.000287956 8.00007e-25)
(0.999928 -0.0113577 7.18411e-24)
(0.999685 -0.000195331 7.73024e-24)
(1.0002 -0.000315486 1.12346e-24)
(0.999988 -1.0464e-05 -2.26599e-26)
(0.999096 -0.00942615 -1.79534e-23)
(0.964575 -0.0282052 3.52214e-22)
(0.991191 -0.00123525 -1.36083e-22)
(0.968789 0.0698034 2.80151e-21)
(1 -0.000120364 -3.32303e-26)
(1.01317 -0.0648595 3.85743e-22)
(0.999799 -0.00011557 7.56199e-24)
(1.00356 -0.000860251 -2.41267e-23)
(1.00023 -0.00034457 1.3011e-24)
(1.00001 -1.98526e-05 -9.85324e-26)
(0.996187 -5.41492e-05 7.47621e-24)
(1.00002 -6.98084e-06 -1.34309e-25)
(1.00001 -0.000241619 2.56806e-26)
(1.00002 -1.71023e-05 1.92943e-25)
(1.00003 -3.23699e-05 -2.50632e-25)
(1.00015 -0.000239759 -2.73942e-24)
(1.00017 -0.000262893 -1.60672e-24)
(0.996492 -0.000864033 -4.20266e-23)
(0.968442 -0.00287952 4.62818e-22)
(1.01647 -0.050736 7.55653e-23)
(1.00001 -4.53992e-06 -5.90662e-26)
(1.00005 -0.000176995 -1.8135e-25)
(0.999996 -5.26731e-05 -3.04051e-26)
(1.06471 0.0648827 -1.69928e-21)
(1.00195 -0.0447064 -1.05519e-23)
(0.999995 -8.47266e-06 -8.50429e-27)
(1.01612 -0.0672597 1.07925e-22)
(1.00114 -0.000691608 1.14505e-23)
(0.999993 -3.2283e-05 3.2312e-26)
(1.00026 -0.000378641 -2.2685e-24)
(1.00104 -0.000951767 2.34821e-24)
(1.00103 -0.000632314 8.35025e-24)
(1 -1.2426e-05 -6.47158e-27)
(1.02682 -0.00371012 -2.67652e-22)
(0.979229 -0.00336038 -4.12502e-24)
(0.995575 -5.41476e-05 -3.07447e-23)
(0.999972 -1.21403e-05 -3.68005e-25)
(1.01699 -0.0434344 -1.08832e-22)
(1.00003 -9.17495e-05 1.38975e-25)
(0.999996 -0.00012632 -4.22762e-26)
(1.00001 -1.10378e-05 2.16542e-26)
(1.00014 -0.000119043 -6.50668e-25)
(0.999829 -5.13845e-05 1.04885e-24)
(0.999892 -1.07762e-05 -9.27342e-25)
(1 -1.44738e-05 -7.70633e-27)
(0.995046 -0.00986037 3.93952e-23)
(1.00005 -1.1306e-05 3.20748e-25)
(0.999842 -0.000102725 1.89312e-24)
(0.970101 -0.000728836 -1.53267e-22)
(1.00478 -0.00107818 -2.78207e-23)
(1.00093 -0.000577793 -1.36302e-24)
(0.977874 -0.00673186 -1.04414e-23)
(0.999829 -0.000112572 5.06275e-24)
(1.01017 -0.00256945 3.84039e-23)
(1.00005 -1.75075e-05 1.91087e-25)
(1.00126 -0.000756209 1.51024e-25)
(0.999997 -6.79609e-06 -1.39556e-26)
(1.00009 -4.56325e-05 1.26201e-24)
(0.995173 -0.00881079 -3.75027e-23)
(0.999894 -6.40743e-05 1.34256e-24)
(1.01924 -0.0697722 -5.05885e-22)
(1.03271 -0.0137161 1.63644e-23)
(0.999652 -5.13105e-05 1.44709e-24)
(0.99513 -6.484e-05 -1.58856e-23)
(1.00139 -0.000826735 -8.32711e-24)
(0.999996 -2.73311e-05 1.61712e-26)
(0.999997 -1.43951e-05 7.20814e-26)
(1.00002 -3.0528e-06 1.21945e-25)
(0.972053 -0.00229967 2.34881e-23)
(1.00002 -6.13516e-06 -7.34533e-26)
(0.999965 -9.14378e-05 -1.34913e-25)
(0.999854 -9.36917e-05 2.77421e-25)
(1.00007 -5.13489e-05 -1.09809e-24)
(0.999994 -1.01147e-05 1.44425e-26)
(0.999837 -7.06144e-06 -1.07897e-24)
(1.00001 -7.38034e-05 2.41433e-26)
(0.988136 -0.000154721 -1.96728e-22)
(1.00321 -0.00079732 9.46698e-25)
(0.999966 -9.65254e-05 3.47851e-25)
(1.00154 -0.000900279 2.23144e-23)
(0.996591 -0.062819 2.70712e-22)
(0.999996 -9.40264e-06 1.68398e-26)
(1.00021 -0.0688675 3.95894e-22)
(1.00004 -0.000669406 -1.5145e-25)
(1.00007 -0.000108069 -1.42829e-25)
(1.20458 0.151469 -2.291e-22)
(0.999993 -2.87978e-05 -2.1021e-25)
(1.01294 -0.00290138 -7.63795e-23)
(0.999885 -7.05079e-05 3.04702e-24)
(0.999929 -0.000193047 -8.13175e-25)
(1.00259 -0.000274083 -1.19006e-23)
(0.99997 -5.87324e-05 -6.20454e-26)
(1.00459 -0.006475 5.23826e-23)
(0.999876 -7.75331e-05 1.22615e-24)
(1.20231 0.0702709 2.61582e-24)
(0.994668 -6.07408e-05 -9.11893e-23)
(0.999865 -8.52968e-05 -4.41681e-25)
(1.00002 -3.89321e-06 -5.07421e-26)
(0.999988 -1.7479e-05 -8.36705e-26)
(0.990392 -9.78705e-05 -8.10417e-23)
(1.20433 -0.158426 -2.52715e-22)
(1.00028 -0.000415027 -4.86242e-25)
(1.00002 -1.86877e-05 -1.79889e-25)
(0.9514 -0.00231968 5.03134e-22)
(0.925976 0.112871 -1.42697e-21)
(1.1673 -0.171409 -4.50222e-22)
(1.00006 -0.000179763 -3.40721e-25)
(0.999993 -2.56148e-05 -5.23037e-26)
(0.964348 -0.00357036 -4.21119e-22)
(0.999995 -6.80819e-06 -9.0719e-27)
(1.02493 -0.00881363 1.07684e-22)
(1.00013 -0.000136206 -1.16953e-25)
(1.00001 -4.55156e-05 -1.27172e-26)
(1.01104 -0.00269251 1.96682e-23)
(1.0003 -0.000503656 -6.86812e-24)
(1.00001 -2.04897e-05 -1.00078e-27)
(1 -2.23401e-05 5.31874e-29)
(0.999653 -0.000296429 -8.02022e-24)
(1.07557 -0.0569269 -6.36045e-24)
(1.00001 -6.67393e-05 3.873e-26)
(1.00007 -4.70481e-05 2.79656e-25)
(0.999925 -5.07835e-05 -1.30716e-24)
(1.00002 -6.04191e-06 4.8983e-26)
(0.999903 -5.81429e-05 -1.73286e-24)
(1.02112 0.0103319 3.71539e-22)
(1.01394 -0.00302557 3.51605e-22)
(0.999985 -1.05319e-05 2.41573e-26)
(1.00002 -1.00109e-05 -2.68205e-26)
(1.06888 0.0601729 1.72851e-21)
(1.00171 -0.00098028 -2.67784e-23)
(0.993859 -9.14689e-05 1.01689e-22)
(0.999989 -4.72546e-06 -8.36292e-26)
(1.00935 -0.00243307 -9.82457e-23)
(0.999987 -1.05916e-05 -9.55595e-26)
(1.02023 -0.00476647 2.09992e-22)
(1.00001 -4.09375e-05 -1.24436e-26)
(0.99991 -5.27156e-05 3.60335e-25)
(1.00001 -6.04259e-05 -6.68589e-26)
(0.999929 -6.66844e-05 1.03892e-24)
(1.03323 0.0405352 9.60373e-22)
(1.02664 -0.0109681 6.29412e-22)
(0.999983 -3.17348e-05 5.7089e-26)
(0.991113 -0.000982941 4.47214e-23)
(1.04734 -0.0681068 4.58559e-23)
(1.08539 -0.00123421 -6.78744e-22)
(1.00189 -0.00106764 2.14426e-23)
(1.00001 -3.30196e-05 -8.7911e-27)
(0.999842 -4.61889e-05 -9.44865e-26)
(1.00231 -0.00152625 -1.58721e-23)
(0.995719 -0.0380589 -1.31481e-22)
(1.01194 -0.00281628 1.15266e-22)
(0.993253 -9.84116e-05 -6.95506e-24)
(0.947179 -0.00758294 -1.42241e-23)
(0.999994 -5.09964e-06 4.69511e-27)
(1.00795 0.0337536 -1.59499e-21)
(1.00001 -3.67945e-05 -6.49412e-27)
(0.99326 0.0634738 3.4414e-21)
(1.00004 -4.39576e-05 -2.59988e-25)
(0.999859 -0.000371349 -1.97107e-25)
(1.0213 -0.00458902 -2.16046e-22)
(1.00001 -1.66688e-05 1.20937e-26)
(0.993916 -0.012469 2.17836e-23)
(1.00033 -0.00055192 3.659e-24)
(0.992604 -0.000100077 4.25431e-23)
(0.999829 -0.000240312 -1.13816e-24)
(0.999854 -4.17103e-05 2.2754e-24)
(1.00001 -5.45802e-05 2.5121e-27)
(0.997458 -4.03811e-05 2.1513e-23)
(0.997068 -0.0224615 -7.04424e-23)
(0.967129 -0.00308957 1.03328e-22)
(1.00008 -0.00044813 -1.39961e-24)
(1.00007 -0.000410183 -3.00042e-25)
(1.00068 -0.00296208 1.01934e-25)
(0.999866 -3.73671e-05 2.27403e-25)
(0.999966 -2.31695e-05 1.33461e-25)
(0.999946 -0.000132204 1.65048e-25)
(1.00046 -0.000860788 -1.92426e-25)
(0.991925 -9.87281e-05 7.93884e-23)
(1.00051 -0.000937656 -7.34934e-24)
(0.999931 -4.59303e-05 1.23214e-24)
(1.00093 -0.00391005 8.07e-24)
(0.999932 -0.0013804 -1.73442e-24)
(1.00237 -0.0718487 3.9849e-22)
(1.00255 -0.00166269 -1.18493e-23)
(1.00003 -1.08289e-05 -1.41874e-25)
(0.999729 -9.20205e-05 -4.89399e-24)
(1.12358 0.0476867 -8.63172e-22)
(1.00023 -0.00285965 4.45221e-25)
(1.02234 -0.00434462 -2.53249e-22)
(0.991196 -0.000120968 -9.34401e-23)
(1.00825 -0.0309785 -3.61727e-23)
(0.99998 -1.35133e-05 -1.69983e-25)
(0.985925 -0.0106217 1.06157e-23)
(1.01415 -0.00119324 -4.64798e-22)
(1.0001 -2.79562e-05 1.40559e-24)
(0.999951 -3.0433e-05 3.15639e-25)
(0.937108 -0.0203936 -1.95151e-22)
(0.966324 -0.00570972 1.61051e-22)
(1.00281 -0.0018055 2.49221e-23)
(1 -2.41244e-05 -1.02481e-26)
(0.999895 -2.68404e-05 1.70493e-24)
(0.999986 -6.69741e-05 2.26913e-25)
(0.999876 -3.36693e-05 2.47048e-24)
(0.999996 -3.43268e-05 3.647e-26)
(1.00451 -0.00616503 4.70023e-23)
(1.0262 -0.0082296 -2.6519e-22)
(1.21456 -0.018235 8.63288e-22)
(0.999937 -4.1416e-05 6.61766e-25)
(0.999976 -0.000208678 1.04369e-25)
(0.999989 -8.85013e-06 -1.55838e-25)
(0.999994 -3.42176e-05 5.0481e-26)
(0.999996 -7.69395e-06 9.65484e-27)
(0.999995 -1.12459e-05 -3.03407e-26)
(1.0233 -0.00402074 -2.03968e-22)
(1.00056 -0.00102315 -6.16179e-24)
(1.00009 -9.52076e-05 9.25774e-25)
(1.00005 -1.34226e-05 1.11761e-24)
(1.00037 -0.000723479 -2.09274e-24)
(0.999942 -3.74846e-05 -1.24812e-24)
(1.07878 0.0473276 4.9813e-22)
(1.00006 -0.00037463 -6.34274e-26)
(0.999984 -4.61037e-05 6.67434e-26)
(1.00309 -0.00196088 3.06084e-23)
(1.11571 -0.186676 1.63053e-22)
(1.00006 -3.4645e-05 7.99402e-25)
(0.98976 -0.017939 -7.17729e-23)
(0.999955 -2.73517e-05 8.87771e-25)
(1.00167 -0.0104397 -5.21452e-25)
(0.999947 -3.37031e-05 -1.3651e-24)
(1.0993 -0.0271707 -2.11659e-22)
(1.00036 -0.000602961 -2.08337e-24)
(0.99689 -0.00321521 1.38951e-23)
(0.978616 -0.104056 1.06973e-22)
(0.999988 -4.93843e-05 -1.38847e-25)
(1.02282 0.122778 2.3961e-21)
(0.999982 -1.38789e-05 9.12351e-26)
(0.918231 0.0166296 6.17893e-21)
(0.999999 -2.14999e-05 -4.82596e-26)
(0.99026 -0.0146291 6.95625e-23)
(0.999886 -2.98796e-05 2.11524e-24)
(0.999992 -2.24152e-05 -6.2817e-26)
(0.998848 -0.000444897 9.46462e-24)
(0.999987 -6.05998e-05 1.90214e-25)
(1.00009 -2.6105e-05 5.14186e-25)
(1.00041 -0.000789862 -1.49481e-24)
(0.955768 -0.0415169 -1.24331e-24)
(1 -2.08457e-05 5.51236e-28)
(1.00002 -1.11842e-05 -2.79151e-26)
(1.00237 0.0132391 8.31652e-22)
(0.994991 -0.00710586 -8.42477e-23)
(1.00001 -1.90296e-05 -2.54296e-26)
(1.00208 -0.00116758 -2.93709e-23)
(0.998647 -4.2709e-05 1.3796e-23)
(0.999993 -3.81694e-05 5.92354e-26)
(1.00062 -0.00111576 -4.0881e-24)
(0.99976 -0.000458281 -3.48962e-25)
(0.996029 -0.00144332 1.28959e-23)
(0.999988 -5.47931e-05 -4.55328e-25)
(0.999999 -2.57873e-05 2.50927e-26)
(1.00002 -1.92269e-05 1.517e-25)
(1.00002 -4.57533e-05 9.29553e-26)
(1.00002 -2.1537e-05 -2.38897e-25)
(0.999903 -2.39609e-05 2.92921e-25)
(1.00002 -5.49626e-05 8.2952e-27)
(0.999984 -3.03793e-05 1.76656e-26)
(0.999959 -2.45051e-05 5.49725e-25)
(0.977495 -0.0020931 -7.50194e-23)
(0.999994 -2.72692e-05 8.55021e-26)
(0.999985 -7.38838e-05 4.59742e-26)
(1.02187 0.149443 5.72326e-21)
(1.00488 -0.0749152 3.7068e-22)
(0.999976 -1.15965e-05 -1.22709e-25)
(0.999993 -8.96959e-06 -6.7132e-26)
(1.02308 0.0135303 2.46507e-22)
(0.949531 -0.033202 -3.21996e-22)
(1.00033 -5.52742e-05 2.56937e-25)
(0.99999 -4.42855e-06 1.29693e-26)
(1.02417 -0.00359426 -7.37257e-22)
(1.20395 0.0181668 2.30223e-24)
(0.999918 -1.90093e-05 6.99724e-25)
(1.01899 -0.0134516 -6.49413e-24)
(0.982634 -0.00377407 5.6376e-23)
(0.999978 -6.83058e-06 1.44985e-26)
(1 -2.26148e-05 -1.88274e-26)
(1.02288 -0.0720144 -1.12984e-22)
(1.01951 -0.0332566 -1.70064e-23)
(1.04834 -0.153863 5.87526e-23)
(0.965788 -0.00335655 2.95352e-23)
(1.00002 -5.03238e-05 2.18656e-25)
(0.999994 -3.05879e-05 3.12193e-26)
(0.999686 -0.000110453 -2.95153e-24)
(0.999996 -4.25731e-05 7.9357e-26)
(1.04867 0.0620508 -2.21408e-21)
(1.00004 -0.000146058 -2.18922e-26)
(1.04012 -0.150536 6.62598e-22)
(1.00069 -0.00121558 -1.13065e-24)
(1.00005 -5.37145e-05 -4.08484e-25)
(0.999969 -2.0745e-05 6.52338e-26)
(0.985403 -0.0107829 -1.178e-22)
(1.00003 -9.5479e-06 6.8507e-27)
(0.999911 -2.1373e-05 5.7628e-25)
(0.999874 -0.000607174 -1.37914e-24)
(0.999984 -8.99698e-05 1.54035e-26)
(1.03222 -0.146589 4.33179e-22)
(1.09951 -0.0576494 7.10768e-23)
(1.0034 -0.00212756 -2.59808e-23)
(1.02492 -0.142556 -5.72701e-22)
(1.21109 -0.032755 1.47325e-22)
(1.05775 -0.156248 -4.68766e-22)
(1.00009 -3.53025e-05 -1.36764e-26)
(1.01835 -0.138541 3.29183e-23)
(1.01256 -0.134429 2.4732e-22)
(1.03111 -0.0148458 -1.43441e-23)
(1.06142 0.0967785 -6.06917e-22)
(1.02738 -0.00753117 9.77748e-22)
(0.972406 -0.0277229 -1.01458e-22)
(1.00066 -0.000212895 7.60082e-24)
(0.999974 -0.000103026 -1.75419e-25)
(1.00728 -0.129897 7.83264e-22)
(1.00001 -1.48373e-05 -1.13201e-25)
(0.999787 -5.24067e-05 -1.21153e-24)
(0.999985 -8.16186e-05 -7.19923e-26)
(0.998595 -0.00143261 1.3093e-23)
(0.999958 -1.04259e-05 -3.50538e-26)
(1.00263 -0.125343 -4.01673e-22)
(1.01914 -0.00487892 4.66527e-22)
(1.01921 0.0112146 -1.07863e-21)
(0.998419 -0.120586 2.55573e-24)
(1.00007 -4.27232e-05 1.09043e-24)
(0.994618 -0.115963 3.3438e-22)
(1.0041 -0.00248355 2.00519e-23)
(0.992445 -0.0134205 -6.1172e-23)
(0.99997 -0.000124623 3.86186e-25)
(0.999954 -1.16434e-05 8.15768e-27)
(1.12179 0.173038 -2.27658e-21)
(0.999925 -1.68733e-05 -1.51886e-24)
(1.00119 -0.00122067 2.13715e-23)
(1.00758 -0.0780141 5.72308e-23)
(1.02497 -0.00308745 -1.82069e-23)
(0.991169 -0.111451 5.64915e-23)
(0.999978 -1.27951e-05 -1.39734e-26)
(0.999931 -1.50378e-05 6.21152e-25)
(1.08089 -0.170767 -3.40591e-22)
(0.999962 -9.02726e-06 1.26792e-25)
(1.00085 -0.00144101 -1.04963e-23)
(1.01678 -0.0188881 -1.20658e-22)
(1.00374 -0.0023048 -6.09664e-23)
(0.999983 -3.39493e-05 -2.14825e-25)
(0.99995 -1.31479e-05 -6.48584e-25)
(1.00077 -0.00132405 -6.61257e-25)
(0.999968 -0.000136952 4.20859e-25)
(0.999988 -1.88122e-05 -8.20984e-26)
(0.999988 -0.000109501 -5.83459e-26)
(0.999974 -1.9433e-05 6.24327e-25)
(0.999963 -0.000181121 -4.17676e-25)
(0.957665 -0.0380439 -1.72707e-22)
(0.999991 -9.4551e-06 -8.41263e-26)
(0.999974 -1.65522e-05 3.78575e-26)
(0.999883 -0.000122379 4.93237e-25)
(0.999971 -1.86502e-05 1.74981e-25)
(0.999972 -0.000113395 -1.52527e-25)
(1.20717 -0.0467103 6.28421e-23)
(0.999941 -1.66816e-05 4.33662e-25)
(0.997804 -0.00907163 1.95664e-24)
(0.99999 -3.69306e-06 -2.80673e-26)
(0.999965 -7.97319e-06 -6.00538e-26)
(0.999944 -0.000205552 4.28822e-25)
(0.999964 -0.000165326 -7.19994e-25)
(1.02566 -0.00250941 2.68076e-22)
(0.987389 0.0756303 -2.55707e-22)
(1.00259 0.0156847 -2.36882e-21)
(1.00327 -0.00448727 -6.7593e-23)
(0.999991 -4.96889e-05 -4.35203e-26)
(0.999975 -0.000419322 5.3622e-25)
(1.00001 -3.15682e-05 1.18231e-26)
(1.02557 0.0561605 -1.17799e-21)
(0.998423 -0.00127496 4.38519e-23)
(1.00001 -3.23913e-05 6.72371e-26)
(1.00002 -1.13009e-05 1.64956e-25)
(0.999966 -0.000150663 -4.51276e-27)
(0.999976 -1.47117e-05 -3.64038e-27)
(0.949265 -0.0071202 -2.68509e-22)
(0.951007 0.116924 -2.23507e-21)
(1.20139 -0.0600019 4.59723e-22)
(0.999132 -0.00200894 1.16089e-23)
(0.999989 -9.8203e-06 1.5823e-25)
(1.00157 0.0173785 -4.20602e-22)
(0.999972 -2.17222e-05 -2.04669e-25)
(0.999941 -0.000225168 8.26204e-25)
(0.994244 -0.00636913 2.78537e-23)
(1.02852 -0.00670423 -4.0206e-24)
(1.1344 0.171165 7.02407e-23)
(1.00008 -4.63391e-05 5.76612e-25)
(0.999946 -1.49215e-05 -5.59541e-25)
(1.00329 -0.0649893 9.55189e-23)
(0.999981 -1.18084e-05 -9.718e-26)
(1.0045 -0.00269674 -1.17075e-23)
(0.997329 -0.000207888 -3.64017e-23)
(0.999825 -1.53747e-05 1.69843e-24)
(0.996355 -0.00136388 1.20832e-23)
(0.999983 -1.03027e-05 1.43358e-26)
(0.987672 -0.0314241 1.6565e-22)
(0.999716 -0.000391453 1.70114e-24)
(0.999967 -9.94103e-06 -5.339e-25)
(1.00117 -0.00218957 2.37273e-23)
(0.99997 -1.14753e-05 -8.47853e-25)
(1.00096 -0.00186055 -3.8705e-24)
(0.999662 -0.00035339 2.43955e-24)
(1.07127 0.16154 3.04079e-22)
(0.995223 -0.00583989 -8.20797e-23)
(0.999993 -4.24805e-05 -2.07694e-26)
(1.19405 -0.0723432 -3.66303e-22)
(0.99997 -8.6908e-06 -1.58728e-25)
(1.07257 0.0549728 -2.83684e-23)
(1.00001 -4.0189e-05 -7.83939e-26)
(0.94458 -0.0173205 -1.8141e-22)
(1.01075 -0.0811472 -4.69918e-22)
(0.999967 -2.72727e-05 3.27478e-25)
(0.999961 -1.25416e-05 4.19424e-25)
(0.959516 -0.01055 -1.76272e-23)
(0.999984 -8.84373e-06 -1.11783e-26)
(1.00001 -2.60648e-05 -3.56625e-27)
(0.999997 -2.5845e-05 1.09006e-25)
(0.999863 -0.000147188 1.66403e-25)
(0.999933 -0.000269099 -1.27622e-24)
(0.990794 -0.000155932 9.32333e-23)
(1.00094 -0.00156578 4.71339e-24)
(0.999999 -2.42901e-05 -1.53479e-26)
(1.0013 -0.0023726 -2.81279e-23)
(1.02624 -0.00185683 1.83287e-22)
(1.00493 -0.00288595 -3.23227e-23)
(0.927605 0.0349068 4.18467e-21)
(1.00403 -0.081227 3.5464e-22)
(0.973926 -0.0155209 9.48183e-23)
(1.1763 -0.0187439 -1.26199e-22)
(0.965756 -0.00629295 -1.93207e-22)
(0.999937 -0.000246188 9.80322e-26)
(0.999585 -0.000123989 -4.14995e-24)
(1.00016 -0.00109054 -9.44885e-25)
(0.963839 -0.00497543 -2.81286e-23)
(1.1675 0.133642 -1.48345e-21)
(1.18563 -0.0834417 5.48402e-22)
(0.999972 -7.62957e-06 -3.73957e-25)
(1.00011 -6.86056e-05 -9.26973e-25)
(1.1767 -0.0933788 -6.55871e-23)
(0.971622 -0.0174649 3.35483e-23)
(1.00593 -0.015334 -1.05254e-23)
(0.999929 -0.000293966 3.46459e-25)
(1.00087 -0.00181196 -6.33013e-24)
(1.00106 -0.00201914 1.1687e-23)
(1.01104 0.00531882 1.65687e-22)
(1.09643 0.0465446 -6.72837e-22)
(0.992271 -9.80589e-05 -6.24898e-24)
(1.16692 -0.101993 2.98379e-22)
(0.99999 -6.09843e-05 -2.77408e-25)
(0.999963 -2.60366e-05 -6.86866e-25)
(0.997713 -3.45538e-05 -9.79649e-24)
(1.03613 0.157854 6.03514e-21)
(1.02959 -0.00571183 8.76546e-22)
(0.999984 -1.5372e-05 -9.21646e-26)
(1.01422 -0.0843086 -2.65508e-22)
(0.999461 -0.000810091 -8.12814e-24)
(0.999935 -0.000565492 2.18943e-24)
(1.00012 -0.000212441 -1.19838e-24)
(0.938803 -0.00855259 3.03057e-22)
(0.961428 -0.028385 -2.69106e-22)
(0.998662 -0.00241299 -2.76244e-23)
(0.99992 -0.000350629 -7.51121e-25)
(0.999989 -7.41147e-05 -2.6266e-26)
(1.09014 0.134705 1.48028e-21)
(0.991567 -0.000103968 3.97982e-23)
(1.03263 -0.0290272 -3.65555e-23)
(1.02624 0.000866672 -2.84549e-22)
(1.00541 -0.00309391 6.19209e-23)
(0.999523 -0.000145253 -3.76612e-24)
(1.0061 0.115905 1.03994e-21)
(1.15691 -0.109664 -1.44e-21)
(0.990633 -0.0137149 -6.0889e-23)
(1.01008 -0.00556801 1.63577e-23)
(1.00929 -0.00528424 8.81297e-24)
(0.999987 -1.00235e-05 -6.10735e-26)
(1.03393 -0.0656244 -1.34048e-22)
(1.00027 -0.000489948 6.1969e-24)
(1.00301 -0.00314887 1.80639e-23)
(0.999975 -6.60886e-06 -9.56591e-26)
(0.970908 -0.00246656 2.7931e-22)
(1.00001 -6.77049e-06 1.30961e-26)
(0.999989 -1.66501e-05 5.3461e-26)
(1.01816 -0.0874054 2.82782e-22)
(1.02684 -0.0742399 1.49382e-22)
(0.999545 -0.000495885 -4.003e-24)
(0.993062 -0.0140161 -5.33222e-23)
(0.970507 -0.020959 3.05228e-24)
(0.999956 -3.23643e-05 7.64086e-25)
(0.999925 -0.000321122 -4.68552e-25)
(0.999994 -9.15275e-06 9.66116e-27)
(1.00006 -2.75476e-05 -3.0313e-25)
(0.924706 0.0680556 5.13607e-21)
(1.24478 0.0881543 5.27672e-23)
(0.9984 -0.0011456 1.11565e-23)
(1.01091 -0.00580665 -1.06484e-22)
(1.02627 -0.036786 -3.89192e-24)
(0.999989 -4.44204e-05 8.80637e-26)
(0.974195 -0.0652122 -3.13024e-22)
(1.14693 -0.116196 5.16205e-22)
(1.0311 -0.0764385 -4.62169e-24)
(1.00007 -3.05828e-05 1.03206e-24)
(1.03581 -0.0782666 9.07548e-23)
(0.976977 -0.024327 9.40902e-23)
(1.04101 -0.0800438 -3.38402e-24)
(1.04642 -0.0812869 -2.94634e-22)
(1.05223 -0.0820456 9.19294e-23)
(0.999953 -1.56143e-05 -4.12266e-25)
(0.999118 -0.000235866 9.02433e-25)
(1.13611 -0.121635 -6.49449e-22)
(1.00019 -6.46463e-05 1.17324e-24)
(0.999986 -7.17695e-06 5.4391e-26)
(1.06617 -0.159484 1.19769e-21)
(0.999967 -5.40322e-05 1.60503e-25)
(0.999977 -5.69856e-06 -4.96466e-26)
(0.999877 -0.000430055 2.38313e-25)
(1.09384 -0.132146 8.03562e-22)
(1.11058 -0.162209 4.64739e-23)
(0.998461 -0.00210721 -5.25095e-24)
(0.999947 -3.93031e-05 -8.7095e-26)
(1.08406 -0.132241 4.39573e-23)
(1.02707 -0.0255769 2.29198e-22)
(1.12521 -0.126118 -5.51497e-22)
(0.999984 -4.7851e-06 1.42194e-25)
(1.11426 -0.128806 -4.76877e-22)
(1.10392 -0.130908 7.88123e-22)
(1.04223 0.0688295 3.05282e-22)
(0.999978 -4.89509e-06 -1.98072e-25)
(0.98537 -0.0832886 -2.69959e-22)
(0.999884 -0.000394613 -2.6521e-25)
(1.00854 -0.00500144 -4.01008e-23)
(1.03049 -0.0045524 -6.02668e-22)
(0.999869 -0.000468511 6.36098e-25)
(1.01197 -0.0286806 -3.54081e-24)
(1.05233 0.0152945 -2.39534e-23)
(1.02631 0.000144993 -1.39487e-22)
(1.00144 -0.00256859 -5.26202e-24)
(0.999818 -0.00052335 5.18854e-24)
(1.01181 -0.00607734 -4.40672e-24)
(0.992681 -0.00890189 -1.93423e-23)
(1.0584 -0.082388 4.33281e-22)
(1.09222 0.164032 -1.37975e-21)
(1.00023 -0.00102506 -4.75312e-24)
(1.00003 -1.04585e-05 2.53698e-25)
(1.07574 0.049417 -1.1129e-21)
(0.955415 -0.0269081 -6.1409e-23)
(0.96831 -0.0148978 -2.42688e-22)
(1.00012 -0.000351685 6.60791e-25)
(1.07457 -0.132071 3.47309e-22)
(1.02276 -0.00189241 -2.71272e-22)
(1.01815 -0.0197505 1.54923e-23)
(0.99996 -5.78209e-05 5.09028e-25)
(1.02601 -0.021504 -1.38162e-22)
(0.938116 -0.0181116 6.77148e-22)
(0.983045 0.00261563 -5.57697e-21)
(1.00593 -0.00330841 -6.86844e-23)
(0.993169 -0.064432 -3.48272e-22)
(1.00903 -0.0273301 7.316e-24)
(1.00002 -5.32286e-06 1.64227e-25)
(0.987731 -0.0296866 -3.21994e-22)
(0.999784 -6.95357e-05 1.14437e-24)
(1.02255 -0.0904174 -2.41603e-22)
(0.963534 -0.00990706 -2.38621e-23)
(1.00146 -0.00302586 -6.74006e-24)
(1.00333 -0.00337534 -1.10148e-23)
(0.999987 -3.81652e-06 -6.30424e-27)
(1.03711 0.0426217 -1.96289e-21)
(0.999806 -0.000568932 1.06436e-24)
(0.98144 -0.0599475 9.21238e-22)
(1.00006 -1.22498e-05 -2.97919e-25)
(1.06557 -0.13049 4.79953e-22)
(0.978404 -0.0561317 -1.66977e-22)
(1.03121 -0.0032516 5.18979e-22)
(0.948671 -0.0221876 2.40113e-22)
(1.00006 -5.09498e-05 1.16663e-24)
(0.999963 -5.23727e-05 -9.54548e-25)
(0.999871 -7.1947e-05 -5.50056e-25)
(0.999972 -5.31838e-05 4.67162e-25)
(1.00002 -5.31504e-06 -8.74606e-26)
(0.999957 -6.38734e-05 9.82957e-25)
(0.999972 -9.77091e-05 3.57301e-25)
(0.999414 -0.00367741 1.79695e-24)
(0.999781 -0.000672477 2.94804e-24)
(1.00162 -0.00327288 1.50112e-23)
(1.00178 -0.00353889 -6.8955e-24)
(1.00007 -4.71171e-05 -1.84146e-25)
(1.01274 -0.00627226 1.14814e-22)
(0.999953 -7.04871e-05 4.2851e-26)
(1.05703 -0.128571 2.84772e-22)
(0.984179 -0.0133409 1.43033e-22)
(0.999987 -3.20248e-06 -3.61591e-26)
(0.999988 -3.78621e-06 -7.28649e-27)
(1.00001 -5.36337e-05 5.00547e-26)
(0.999949 -7.76289e-05 5.0541e-25)
(0.982957 -0.0242517 3.04989e-23)
(1.02724 -0.0932881 -4.55225e-22)
(0.982469 -0.0257522 1.36613e-23)
(1.08142 0.163156 7.93077e-22)
(1.04928 -0.126062 -1.21466e-21)
(1.00001 -1.29573e-05 6.92399e-27)
(0.999794 -0.000618387 3.9434e-24)
(1.02619 -0.000538406 -7.01219e-22)
(0.975901 -0.074675 -2.331e-22)
(1.00001 -5.05189e-05 7.68146e-26)
(1.00012 -0.00226807 -2.86121e-26)
(1.01372 -0.00645998 1.07674e-23)
(0.998889 -0.000912385 2.76232e-24)
(1.00004 -1.59598e-05 -8.34206e-25)
(0.999742 -0.00110316 -6.5441e-24)
(1.04213 -0.12358 1.53227e-21)
(0.999936 -8.56738e-05 -7.16044e-25)
(1.03238 -0.0959707 -3.96735e-22)
(0.99638 -0.00115272 1.80129e-24)
(1.14261 -0.167784 1.11927e-21)
(1.00715 -0.00445997 -9.80477e-24)
(0.999754 -0.000794018 4.85909e-24)
(0.99985 -0.00103352 -2.68143e-24)
(0.999971 -3.01661e-05 4.76694e-25)
(0.999412 -0.000182139 -1.29296e-23)
(1.00006 -0.00364779 -1.2724e-24)
(1.00015 -0.00245188 -3.123e-26)
(0.95288 -0.0240675 1.03154e-22)
(0.999768 -0.00073109 -3.17047e-24)
(1.00019 -0.00264881 -1.55538e-25)
(1.00002 -8.76811e-06 -2.80382e-26)
(1.00001 -7.93968e-06 -4.50956e-27)
(0.957791 -0.0426886 4.76159e-23)
(1.03552 -0.120594 -5.97093e-22)
(1.00004 -0.000170311 2.56653e-25)
(1.03078 0.00919682 1.34139e-21)
(0.99994 -0.000195189 -1.61697e-25)
(1.03772 -0.0981643 -5.71242e-22)
(0.999836 -0.000146798 1.87389e-24)
(0.999841 -0.000164629 1.10578e-24)
(1.02943 -0.117333 -2.12252e-22)
(1.15613 -0.163648 -1.18214e-21)
(1.18282 -0.151885 7.6966e-22)
(0.975928 -0.00422839 -2.50244e-22)
(0.999986 -1.0048e-05 1.46318e-25)
(1.00783 -0.00472301 1.02609e-23)
(0.997683 -0.00153357 5.64475e-23)
(1 -9.18789e-06 1.368e-26)
(0.999985 -3.91797e-06 4.74204e-26)
(0.999993 -4.72733e-05 5.78206e-26)
(0.99993 -9.40903e-05 1.15972e-24)
(1.04357 -0.100355 1.71246e-22)
(1.00001 -1.95529e-05 -2.24841e-26)
(1.02361 -0.11394 -9.99952e-22)
(0.997983 -0.00175575 3.18474e-23)
(0.975113 -0.0714889 8.42254e-23)
(1.27195 -0.0125787 8.30081e-22)
(0.999739 -0.000859776 -7.13656e-25)
(0.981581 -0.0111135 -3.63983e-23)
(0.982307 -0.0139385 8.14959e-23)
(1.16974 -0.15845 -3.16151e-22)
(0.999809 -8.02864e-05 2.34214e-24)
(1.20821 -0.134804 3.02126e-22)
(1.17789 0.125701 -8.13381e-23)
(1.05 -0.102221 -1.00659e-21)
(1.26927 -0.0312959 -6.29654e-22)
(0.999651 -0.000954085 6.47774e-24)
(0.999944 -0.000402292 -5.16232e-25)
(0.95944 -0.0280434 1.0119e-22)
(1.01011 -0.0289035 -1.9836e-23)
(0.999714 -4.33811e-05 -1.80551e-24)
(1.00243 -0.00441804 -9.13721e-24)
(1.01536 -0.0428611 -6.22277e-23)
(0.999896 -0.00053809 -7.63786e-25)
(1.19556 -0.144016 -1.20659e-21)
(1.00002 -4.94821e-05 4.34389e-26)
(0.999978 -5.33157e-05 1.38777e-25)
(1.25087 -0.0837476 1.34145e-21)
(0.999983 -9.9269e-05 4.04521e-25)
(1.00002 -6.57519e-05 -3.6709e-26)
(0.99983 -0.000285987 1.67528e-24)
(0.999771 -0.000303449 2.06579e-24)
(1.0001 -0.00209556 -1.83351e-25)
(1.00219 -0.00411233 -2.58687e-23)
(1 -1.04173e-05 2.90975e-27)
(1.00017 -0.000190544 1.36662e-24)
(0.999753 -0.000330573 2.60342e-24)
(1.24123 -0.0985635 -1.15949e-21)
(1.0001 -2.20278e-05 -2.20347e-26)
(0.999328 -0.000216995 8.20907e-24)
(0.999996 -0.000104506 -1.36235e-25)
(0.999987 -4.65986e-05 -1.33243e-26)
(1.21989 -0.12411 1.4489e-21)
(1.27298 0.005325 2.47116e-22)
(0.982046 -0.0273062 9.17023e-23)
(1.26513 -0.049791 7.90138e-22)
(1.01827 -0.110511 -6.3951e-22)
(1.23093 -0.1121 3.10283e-22)
(1.25888 -0.067218 -2.36068e-23)
(1.00018 -4.35384e-05 2.84107e-24)
(1.05702 -0.104005 -7.04165e-24)
(1.00197 -0.00382024 3.166e-23)
(1.03177 -0.00185924 3.05221e-22)
(0.999873 -0.000134356 -1.92181e-24)
(0.976629 -0.0780995 -3.4096e-22)
(0.999984 -9.87009e-06 1.22547e-25)
(1.03933 0.016867 3.9791e-22)
(0.999464 -7.40191e-05 8.61757e-25)
(0.999736 -0.000359922 1.63394e-24)
(1.00009 -3.98534e-05 -1.72123e-24)
(0.999676 -4.55079e-05 -3.69603e-24)
(1.00009 -2.97098e-05 -8.49036e-25)
(0.974537 -0.0683823 3.82304e-22)
(1.00268 -0.00474971 1.12144e-23)
(1.00366 -0.00364085 -4.68156e-23)
(0.934846 -0.0111263 3.18201e-22)
(0.999399 -7.73067e-05 5.9411e-25)
(0.999629 -0.00103301 1.14962e-25)
(0.999936 -1.87355e-05 9.34636e-25)
(0.977617 -0.0817173 -5.075e-22)
(0.999981 -1.30943e-05 1.4536e-25)
(1.00007 -3.84827e-05 -9.59524e-25)
(1.00011 -4.75781e-05 5.35323e-25)
(0.999987 -2.37172e-06 4.07683e-26)
(1.00648 -0.00353686 5.47895e-23)
(0.999918 -0.00011334 1.09422e-24)
(0.999979 -1.25061e-05 4.99411e-27)
(0.999979 -1.64029e-06 1.27192e-25)
(0.999984 -5.5482e-06 -1.08539e-26)
(0.977496 -0.00409364 -1.97393e-22)
(1.01592 0.0840378 -6.31844e-22)
(0.999911 -0.000124388 -1.18895e-24)
(1.01343 -0.106791 1.03719e-21)
(0.981025 -0.0941657 -1.98173e-22)
(0.99994 -2.20397e-05 -6.19358e-25)
(1.01475 -0.00661606 -2.24301e-22)
(1.02594 0.00165179 -3.60931e-22)
(0.845426 0.114061 6.44801e-21)
(0.999938 -4.80974e-05 3.76981e-25)
(0.999583 -0.00121041 -7.06065e-24)
(0.979591 -0.0899791 8.32472e-23)
(0.999957 -7.22052e-05 8.44618e-25)
(1.07586 0.0330137 9.0208e-22)
(1.00924 -0.103031 -1.39821e-22)
(0.998796 -0.000397093 -3.17658e-23)
(0.945978 -0.00721262 1.04529e-22)
(0.999896 -0.000149548 -1.88649e-24)
(1.0002 -9.86803e-05 -3.24248e-24)
(0.999191 -0.000394168 4.53681e-24)
(0.999924 -0.000103297 6.45205e-25)
(1.00026 -0.00151173 -3.24337e-24)
(0.999607 -0.00111831 -6.24365e-24)
(0.999787 -0.00027848 3.30937e-24)
(0.935593 -0.0138717 1.48041e-22)
(1.00903 0.00834803 -7.82782e-22)
(1.0001 -3.22688e-05 -8.78427e-25)
(0.999824 -5.80984e-05 5.10428e-25)
(1.14878 0.0539983 6.27849e-22)
(1.00004 -9.80059e-05 5.01312e-25)
(1.0194 0.00911596 2.24579e-22)
(0.999904 -0.000136415 9.50504e-25)
(0.978069 -0.0857665 -4.49272e-22)
(1.00552 -0.0990509 -1.37353e-21)
(0.999967 -5.54941e-06 1.04783e-25)
(1.12242 -0.161234 1.22843e-21)
(0.988793 -0.0053049 -2.10544e-23)
(1.00011 -0.000219775 -2.35466e-25)
(0.999968 -2.26941e-05 -3.07795e-25)
(1.00033 -0.000703179 1.83117e-24)
(0.999954 -2.99379e-05 -7.24665e-25)
(0.999962 -2.43109e-05 -3.73719e-25)
(1.00011 -0.00125302 -4.54091e-25)
(0.976087 -0.0138193 1.36197e-23)
(0.999559 -0.00130927 3.54732e-24)
(0.934141 -0.00851273 4.20436e-23)
(0.999864 -0.000232712 -2.64507e-24)
(0.999533 -0.00141604 -3.66042e-24)
(1.00001 -1.49989e-05 -2.93233e-26)
(0.999977 -1.4342e-05 5.23259e-26)
(0.999979 -0.000103827 2.93606e-25)
(1.06477 -0.0823787 -4.10459e-22)
(0.999983 -1.14138e-05 3.02533e-26)
(1.00008 -3.64766e-05 3.88636e-26)
(0.87489 0.0507995 -3.68014e-22)
(0.992488 -0.00439737 -2.24129e-23)
(0.99995 -3.33505e-05 4.6451e-25)
(1.00954 -0.0229211 3.99045e-24)
(1.01656 -0.000726354 -2.03665e-22)
(1.01768 -0.000640812 8.39417e-25)
(0.990438 -0.0218545 2.62272e-22)
(1.00396 -0.00438893 -9.21946e-23)
(0.999971 -3.46878e-05 3.22117e-25)
(0.999809 -0.000174973 2.65284e-24)
(0.999994 -8.35726e-06 -2.74534e-26)
(0.999784 -4.2812e-05 -1.97665e-24)
(0.983596 -0.00137506 8.58428e-23)
(0.982572 -0.00992746 9.08078e-23)
(0.999958 -2.69695e-05 -2.25405e-25)
(1.00212 -0.0951622 1.35935e-22)
(1.00001 -7.68089e-06 -9.0031e-27)
(1.00014 -5.6133e-05 2.75454e-24)
(0.999507 -0.00152993 -3.99177e-25)
(1.00296 -0.00510642 2.18792e-23)
(0.998172 -0.0127908 1.87154e-23)
(0.996685 -0.00285971 1.08671e-22)
(0.999965 -2.55785e-05 2.2228e-25)
(0.999924 -2.30291e-05 -7.34127e-25)
(1.06478 -0.104624 1.40307e-22)
(0.969733 -0.0259717 -1.43405e-22)
(0.999916 -5.22144e-05 -2.93137e-25)
(0.999199 -0.000277249 -7.06398e-24)
(0.966911 -0.00951958 3.99367e-22)
(0.999924 -0.00107768 -8.5609e-25)
(0.999878 -0.000376022 1.90769e-25)
(1.00008 -8.6636e-05 4.25753e-25)
(0.999975 -1.6215e-05 -1.24842e-25)
(1.00008 -9.86466e-05 3.10276e-25)
(1.07666 0.0272561 4.28268e-22)
(0.99994 -8.84674e-05 -8.73658e-25)
(1.00002 -8.98819e-06 1.89996e-26)
(0.999971 -2.03328e-05 -4.46869e-26)
(0.999802 -0.000254997 2.11026e-24)
(0.999985 -1.46599e-06 -1.81115e-26)
(1.01818 0.0146927 3.34942e-22)
(1.00005 -0.000148303 2.99481e-25)
(1.00001 -1.71915e-05 3.11588e-26)
(0.9999 -6.34813e-05 3.352e-25)
(0.968418 -0.0225463 1.63017e-22)
(0.999945 -3.68109e-05 1.27602e-24)
(1.00028 -0.000104034 1.35346e-24)
(0.999919 -5.60591e-05 1.88942e-25)
(1.00344 -0.00124637 2.28937e-23)
(0.99994 -4.09172e-05 5.36771e-25)
(0.939583 -0.0238129 1.22269e-22)
(0.999892 -6.98419e-05 -1.94293e-24)
(1 -1.99938e-05 -5.60531e-27)
(0.999973 -1.82474e-05 9.46178e-26)
(0.998271 -0.000732044 -1.30536e-23)
(0.941005 -0.0260507 -2.85446e-22)
(1.00337 -0.00638114 3.72802e-24)
(1.00713 0.0128854 6.31403e-22)
(0.978244 -0.00475268 -2.63267e-22)
(0.999985 -4.5928e-06 -3.53904e-26)
(0.999969 -5.19837e-05 -5.22437e-26)
(0.99948 -0.00165232 4.23752e-24)
(1.03213 -0.000350959 5.02237e-22)
(0.999455 -0.00178362 8.68681e-24)
(1.07433 0.0387356 1.83304e-21)
(1.02523 0.014501 1.32729e-21)
(0.942414 -0.0282119 2.81168e-22)
(0.99993 -5.00551e-05 -1.93886e-25)
(1.00003 -2.38411e-05 4.45118e-25)
(0.999987 -2.89654e-06 -2.94505e-26)
(0.997539 -0.000976718 4.41711e-23)
(0.999021 -0.0913975 3.57971e-22)
(0.999935 -4.52107e-05 -1.49101e-24)
(0.944039 -0.0302939 -7.11137e-23)
(1 -1.83507e-05 -1.26092e-27)
(0.999784 -0.000983033 8.41836e-25)
(0.999837 -9.56172e-05 -4.86109e-25)
(1.00017 -0.000488425 1.07261e-24)
(1.08085 -0.104037 -4.3329e-22)
(0.945658 -0.0321512 2.33998e-22)
(0.947419 -0.0339569 1.90209e-22)
(0.999977 -0.000125503 1.29339e-25)
(0.999908 -5.75787e-05 9.6894e-25)
(0.999985 -1.86224e-06 2.70996e-26)
(0.996233 -0.0876242 5.72976e-22)
(1.0059 -0.00245105 7.37915e-23)
(1.00326 -0.00548318 -1.38753e-23)
(1.10025 -0.0726112 2.2132e-22)
(1.00001 -1.41514e-05 3.19022e-26)
(1.07213 -0.104881 -4.9029e-22)
(0.999927 -5.87727e-05 1.67552e-24)
(0.949119 -0.0103827 -1.05502e-22)
(0.99996 -1.06991e-05 1.39876e-25)
(0.987074 -0.0197264 -2.38018e-22)
(0.999986 -3.71159e-06 -1.17864e-25)
(1.09283 -0.0761692 1.56825e-22)
(1.08841 -0.10358 -1.93887e-22)
(0.99991 -2.8844e-05 -4.83004e-25)
(1.00014 -0.00019586 2.58019e-25)
(0.99968 -0.000606994 -6.99267e-24)
(0.999957 -1.20906e-05 4.46119e-25)
(0.999119 -0.000141805 1.62193e-23)
(0.999242 -0.00212486 1.35445e-23)
(0.996312 -0.00739948 8.78628e-24)
(1.00001 -1.85985e-05 5.27048e-26)
(0.998295 -0.000512648 -2.97248e-23)
(1.00008 -0.00010608 3.50187e-25)
(1.00004 -1.39711e-05 6.22057e-25)
(0.999883 -7.67291e-05 -3.31136e-24)
(1.01368 -0.0326986 1.64274e-23)
(1.01563 0.0341907 1.038e-21)
(1.10746 -0.0684025 2.78125e-23)
(0.999425 -0.00192511 -4.79593e-24)
(0.999964 -9.43289e-06 -4.73728e-25)
(1.00031 -8.13002e-05 -1.94601e-24)
(1.11492 -0.0956336 -2.88328e-22)
(1 -1.02192e-05 -1.88975e-26)
(0.987876 -0.00263406 -1.15286e-22)
(0.981616 -0.0289438 -1.44244e-22)
(1.00001 -1.99201e-05 -6.76705e-27)
(1.08545 -0.0784972 -2.10196e-22)
(0.998892 -0.000227903 -1.2961e-23)
(1.00217 -0.00152592 2.08342e-23)
(1.10495 -0.0987088 -9.01464e-23)
(1.00006 -2.70705e-05 1.05085e-25)
(0.999997 -1.04287e-05 2.15639e-26)
(1.02356 -0.0284096 -1.08007e-22)
(1.09713 -0.102043 2.93474e-22)
(1.00376 -0.00682504 -2.25037e-23)
(0.999967 -8.21133e-06 5.99242e-26)
(0.991864 -0.0152083 -4.54431e-23)
(0.999794 -0.000125498 -2.55799e-24)
(0.999953 -1.3527e-05 -4.07021e-25)
(0.993781 -0.0838906 -3.68151e-22)
(0.999934 -6.43977e-05 2.68803e-25)
(0.999873 -8.43266e-05 6.68474e-25)
(0.998423 -0.0101806 5.77227e-23)
(0.986482 -0.00327427 1.19473e-22)
(0.99993 -0.000106621 6.50994e-25)
(0.999778 -0.000137039 -2.07049e-24)
(1.07843 -0.0805264 -1.36569e-22)
(1 -0.00111783 -7.33178e-25)
(0.999356 -0.000741182 7.06204e-24)
(1.00001 -1.89825e-05 1.04383e-25)
(0.999969 -1.02169e-05 3.35465e-25)
(1.04076 0.0142424 -6.18505e-22)
(0.999535 -0.000590024 7.31843e-24)
(1.07124 -0.0819782 -4.42524e-24)
(0.999202 -0.00229005 -1.32415e-23)
(0.999839 -0.000111211 -3.74432e-24)
(0.999972 -8.87241e-06 5.08085e-25)
(0.999904 -6.77385e-05 -1.84978e-24)
(0.999851 -0.000101503 -2.17049e-26)
(0.999974 -2.11781e-05 -3.3471e-25)
(0.9995 -0.000639139 6.23169e-24)
(0.997947 -0.00259773 1.80616e-24)
(1.02967 -0.00957204 -6.13431e-22)
(1.00006 -0.000163139 -5.10487e-25)
(0.999862 -9.25801e-05 -1.92249e-26)
(0.999974 -7.69401e-06 5.729e-26)
(1.00018 -6.76941e-05 -8.40104e-25)
(0.999856 -0.000282604 1.07245e-24)
(0.998459 -0.00635633 2.66244e-23)
(0.967448 -0.02904 1.86703e-22)
(0.967294 -0.0324323 1.60865e-23)
(0.997576 -0.000681579 -3.00073e-24)
(0.999809 -0.000114776 -4.79224e-24)
(1.0169 0.156222 -2.22751e-21)
(1.00006 -0.000173294 -9.90357e-27)
(0.999976 -6.70221e-06 3.12698e-25)
(0.994196 -0.0158983 4.65869e-23)
(0.99916 -0.00246682 4.59192e-24)
(0.997024 -0.000447466 -1.48877e-23)
(1.00005 -0.000108774 1.7428e-25)
(0.999961 -0.000198479 -2.5421e-25)
(0.951307 -0.00664506 1.64349e-22)
(0.999978 -5.79907e-06 -6.18092e-26)
(0.999313 -0.000802373 3.55485e-24)
(1.00002 -4.57858e-06 1.07239e-25)
(1.00001 -1.90489e-05 1.42061e-25)
(0.964521 -0.00163599 1.16141e-22)
(0.999464 -0.000691429 -7.18854e-25)
(1.00413 -0.00728583 4.80176e-24)
(0.999948 -1.53525e-05 7.55109e-25)
(0.999979 -4.96071e-06 1.58809e-25)
(0.945703 -0.00591622 -3.70724e-22)
(0.998922 -0.00271118 -5.04706e-24)
(0.999987 -0.000208814 -4.77018e-26)
(0.997638 -0.000413342 2.46214e-23)
(0.98111 -0.0193735 -7.67399e-24)
(1.00039 -0.00154197 7.57842e-25)
(1.00862 -0.0366821 -1.96953e-23)
(0.999761 -0.000149658 -1.96891e-24)
(0.99383 -0.00576103 -8.04506e-23)
(0.979621 -0.00694203 -4.00902e-23)
(0.963235 -0.0361421 -9.16187e-23)
(1.04604 0.10888 1.35874e-22)
(0.999884 -3.97734e-05 2.66372e-24)
(0.991538 -0.0226368 8.96335e-23)
(0.998858 -0.0112113 8.58077e-23)
(0.981811 -0.0182313 -1.76363e-22)
(1.00793 -0.0317602 -5.34172e-23)
(1.12401 -0.091826 2.64291e-22)
(0.88235 0.0381778 -3.3995e-21)
(1.00026 -9.41612e-05 -2.43368e-24)
(0.999651 -0.000198372 -2.06352e-24)
(0.999567 -0.000255683 -5.28592e-24)
(0.999597 -0.000235001 4.6016e-24)
(1.0001 -0.000128296 3.41254e-25)
(1.00024 -0.000505916 4.9777e-25)
(0.991716 -0.0802227 1.41041e-22)
(0.982486 -0.0171549 -1.69044e-22)
(0.999887 -8.16427e-05 1.97077e-25)
(0.982866 -0.0660837 -5.76613e-22)
(0.999265 -0.000866101 1.09292e-23)
(1.00888 0.0150997 3.02226e-22)
(0.998865 -0.00291572 -1.78397e-23)
(0.999997 -2.29126e-05 -1.29734e-26)
(0.999935 -1.58504e-05 -2.81883e-25)
(1.00001 -1.91371e-05 7.88152e-26)
(0.9999 -2.78443e-05 -1.38846e-24)
(0.999971 -0.000218037 -1.99166e-25)
(0.999742 -0.000163351 5.71722e-24)
(1.14165 -0.134178 5.01504e-22)
(0.976832 -0.0171631 9.80994e-23)
(0.999156 -0.00309567 1.04522e-23)
(0.997998 0.0276358 5.18865e-22)
(0.998547 -0.00196004 1.41611e-23)
(0.999269 -2.9957e-05 -6.57676e-24)
(0.99999 -2.06873e-05 8.83387e-26)
(0.999945 -8.56015e-05 7.63563e-25)
(1.00026 -0.000123544 -2.33827e-24)
(0.99871 -0.00169277 7.22231e-24)
(1.00455 -0.00777632 -7.84882e-24)
(0.999988 -9.96301e-05 3.26952e-25)
(0.999944 -1.71822e-05 -4.34616e-25)
(0.999922 -1.99023e-05 4.12615e-25)
(1.01597 -0.00311563 4.16419e-23)
(1.00005 -0.000112103 4.73261e-25)
(0.999915 -2.22411e-05 1.99395e-25)
(1.03224 0.00120701 -3.71704e-22)
(0.986736 -0.000346959 7.52688e-23)
(0.999988 -4.03387e-06 1.03156e-25)
(0.980134 -0.0119461 -4.18402e-23)
(0.999536 -0.000277525 5.11371e-24)
(1.00005 -1.23317e-05 -7.11077e-25)
(0.999625 -0.000215862 -6.47882e-25)
(0.999891 -3.10071e-05 -2.24262e-24)
(1.00005 -1.52568e-05 5.06064e-25)
(0.99863 -0.00182222 2.5819e-24)
(0.987809 -0.00613404 8.88783e-24)
(0.999837 -5.25289e-05 -1.20569e-24)
(0.999989 -1.61756e-06 1.49801e-27)
(0.950484 -0.0029919 -9.71034e-23)
(0.999929 -1.77269e-05 7.604e-25)
(1.02266 0.0320899 -8.79791e-22)
(0.998112 -0.00198223 -3.51218e-24)
(0.998783 -0.0015735 5.17442e-24)
(0.999722 -0.000177795 1.27857e-24)
(0.999973 -0.000166178 2.30818e-25)
(0.998807 -0.00313464 1.96816e-23)
(1.00869 0.00559275 3.42399e-22)
(0.96366 -0.00414542 3.5139e-22)
(0.999162 -0.00100783 -4.24186e-24)
(0.948598 -0.0198023 -2.35725e-22)
(1.00502 -0.00828584 -2.21307e-23)
(0.999701 -0.000193559 8.48935e-25)
(1.00002 -2.40678e-05 -3.5121e-26)
(0.998745 -0.00337014 -6.53175e-24)
(0.999872 -3.85177e-05 -2.26652e-24)
(1.00003 -2.91347e-05 1.76182e-26)
(0.999908 -2.48944e-05 -8.41154e-25)
(1.14151 -0.080089 -3.91811e-22)
(0.999503 -0.000300546 -2.27955e-24)
(0.99892 -0.00135864 -1.09345e-23)
(0.952422 -0.0131189 -1.85655e-22)
(0.999856 -0.000108081 1.31595e-24)
(0.999106 -0.00108655 3.5009e-24)
(0.98991 -0.076676 3.56702e-22)
(0.998987 -0.00126136 7.45251e-24)
(0.999048 -0.00117132 3.69617e-24)
(0.970824 -0.00794896 1.26629e-22)
(0.979726 -0.00599783 -3.8295e-24)
(0.918122 0.0659972 -1.38039e-21)
(1.07686 0.0215963 6.00526e-22)
(0.999861 -4.28386e-05 -1.01837e-25)
(1.05287 -0.00215818 7.98274e-23)
(0.999215 -0.000934399 -4.68119e-24)
(0.953554 -0.0338078 3.35648e-23)
(0.999924 -5.52077e-05 1.27942e-24)
(1.13321 -0.087056 -4.06001e-22)
(1.04743 0.0171367 1.41301e-21)
(0.998853 -0.00145924 6.98265e-24)
(0.959064 -0.0202887 -2.47107e-22)
(1.02548 0.00246162 1.70225e-22)
(0.99985 -4.73297e-05 -2.13683e-24)
(1.01596 -0.00261076 3.35873e-22)
(0.999986 -1.33772e-06 3.27709e-26)
(0.999443 -0.00292042 -1.77431e-24)
(0.999882 -3.45162e-05 -8.73608e-25)
(1.00047 -0.000648088 9.37932e-25)
(0.969339 -0.011138 1.79732e-23)
(0.999985 -5.84347e-06 -2.43269e-27)
(0.998283 -0.00109706 -9.82459e-24)
(0.998685 -0.0036213 2.02536e-23)
(0.963417 -0.00645704 1.29865e-22)
(0.999467 -0.000325186 1.8263e-25)
(0.999387 -0.000383583 1.53196e-24)
(0.999429 -0.000352763 2.72271e-24)
(1.00002 -4.50602e-06 8.80414e-26)
(1.00012 -9.09502e-05 1.13473e-26)
(0.999823 -7.30156e-05 8.74234e-25)
(0.999853 -5.38915e-05 3.88087e-26)
(1.00002 -5.8222e-06 2.11403e-25)
(0.975899 -0.0181531 -1.64645e-23)
(0.999992 -0.000199927 4.66331e-25)
(0.999911 -0.000140712 1.09405e-24)
(1.0001 -0.000212686 -5.3873e-25)
(0.996943 -0.00290721 -1.18654e-23)
(0.998625 -0.00388935 1.36124e-23)
(1.13261 -0.00369707 -2.03426e-22)
(0.999643 -0.000263438 4.71269e-24)
(1.00002 -1.01261e-05 -5.00291e-26)
(1.00131 0.010216 -3.01539e-22)
(0.992067 -0.00813197 2.18867e-24)
(1.00741 0.0419034 -6.99455e-23)
(1.02249 0.0173939 3.90723e-22)
(1.14963 -0.0720033 5.49478e-22)
(0.999192 -0.000456144 -2.03894e-23)
(0.96901 -0.0242611 -5.47344e-23)
(0.99483 -0.000234558 -4.88349e-23)
(1 -1.97782e-05 1.48818e-27)
(1.02538 0.00582246 1.02645e-22)
(0.999219 -0.0020344 -7.11113e-24)
(0.999994 -2.42271e-05 -1.07349e-26)
(1.00009 -8.1294e-05 -2.83168e-25)
(0.999662 -0.00226918 6.76063e-25)
(0.998569 -0.00417976 -1.32054e-23)
(0.999939 -1.90877e-05 1.21192e-25)
(1.11472 -0.0636934 1.26387e-22)
(1.00072 -0.000115675 7.40886e-24)
(0.999955 -0.000207167 -1.77512e-25)
(1.00002 -7.67917e-06 -2.61963e-25)
(1.00055 -0.000632048 -1.45306e-24)
(0.999346 -0.000414514 5.84009e-24)
(0.976096 -0.00267186 -1.4731e-22)
(1.01222 0.0121731 -2.93174e-22)
(1.00362 -0.0109174 -6.84095e-23)
(0.999138 -0.000491882 -3.94737e-24)
(0.999019 -0.000570067 4.67912e-24)
(0.998097 -0.00163546 -2.20255e-24)
(0.99908 -0.000529717 1.42218e-24)
(1.1566 -0.0633739 5.81216e-22)
(0.970953 -0.043882 -1.35955e-22)
(0.989474 -0.0190916 -2.38182e-22)
(1.00002 -2.01889e-05 -2.5322e-25)
(1.00008 -9.35846e-05 -7.89026e-25)
(0.998886 -0.000660769 5.02819e-24)
(0.987906 -0.00178059 -1.62574e-22)
(1.16343 -0.0536755 -1.30642e-23)
(0.998954 -0.000609714 1.65487e-24)
(0.998513 -0.0044819 4.85071e-24)
(1.1859 -0.0348934 -7.9463e-23)
(0.954957 -0.0248141 4.64697e-22)
(1.00012 -0.000154882 1.1434e-24)
(0.938484 -0.021323 -1.04767e-22)
(1.07888 -0.0737313 -6.90623e-23)
(1.00001 -4.03307e-06 1.85311e-27)
(0.998439 -0.00480499 -2.95065e-23)
(0.998221 -0.00183916 -6.61158e-25)
(0.999994 -2.27427e-05 9.94442e-26)
(1.14311 -0.0253395 7.23908e-25)
(1.01277 -0.00405065 -9.37752e-23)
(0.999297 -0.000445638 6.85043e-25)
(1.00807 -0.0147719 -2.43406e-23)
(0.999949 -0.000247835 4.97086e-26)
(1.0003 -0.0046973 -2.90496e-25)
(0.999524 -0.00217544 -2.64189e-25)
(1.00003 -2.98274e-05 -1.74032e-25)
(1.01538 -0.00517702 4.36728e-22)
(0.97787 -0.00369778 1.26264e-22)
(1.00751 -0.0130275 -6.70205e-23)
(1.03761 0.0194434 1.00777e-22)
(0.994135 -7.91424e-05 -1.34011e-23)
(1.13912 -0.0346135 3.96842e-23)
(1.03303 -0.026042 -3.05057e-23)
(1.0003 -0.00072419 1.06405e-24)
(0.998813 -0.000710696 5.31497e-24)
(1.00014 -0.000209835 -8.93977e-25)
(1.02892 0.0149421 -4.12312e-22)
(1.00238 -0.000604946 -2.72247e-24)
(0.999815 -0.000123145 -1.79682e-24)
(0.990752 0.0587818 4.63314e-21)
(1.02491 -0.0188844 -1.18108e-22)
(0.998382 -0.00514694 2.63994e-23)
(0.998654 -0.000824401 -1.04851e-23)
(0.955063 -0.0401447 -1.50047e-22)
(1.04744 0.0234846 -1.27081e-21)
(1.1339 -0.0431278 6.71765e-23)
(1.00032 -0.000452835 2.01783e-24)
(0.999852 -0.000160969 -2.07741e-24)
(1.00001 -5.37339e-06 4.83895e-26)
(1.01176 -0.00384247 8.62486e-23)
(0.995226 -0.00665311 -3.60778e-23)
(1.00002 -1.0082e-05 -9.33958e-26)
(1.00299 -0.00101497 -2.70193e-23)
(1.14616 -0.0158083 8.82931e-23)
(0.998569 -0.000885962 -8.32826e-24)
(0.999672 -0.000290105 -2.57119e-24)
(0.999271 -0.00278973 9.12634e-25)
(0.996222 -0.00101688 -4.78355e-23)
(0.997175 -4.5479e-05 6.86425e-23)
(0.959244 -0.0154149 -1.73497e-22)
(1.07646 0.0160835 2.25819e-22)
(0.982078 -0.00667794 -3.92674e-23)
(0.990994 -0.012872 -4.30484e-23)
(1.00038 -0.00202922 -4.89803e-24)
(0.982118 -0.00852187 -2.57019e-22)
(0.998065 -0.00242335 -1.83782e-23)
(1.00055 -0.00029827 2.51065e-24)
(0.999888 -0.000164111 3.90612e-25)
(1.10699 0.118489 -1.52931e-21)
(0.999916 -0.000382658 4.31188e-25)
(1.12169 -0.0577193 -1.40615e-22)
(1.03224 0.00282581 5.38282e-22)
(1.12834 -0.0510863 9.57327e-23)
(0.999897 -0.000169268 2.09251e-24)
(0.998273 -0.00097052 1.32733e-23)
(0.996866 -0.00266452 -5.62933e-23)
(0.968348 -0.0341419 3.96909e-23)
(0.998736 -0.000766097 -1.02286e-23)
(0.999943 -0.000295634 5.79218e-25)
(1.04271 0.00485154 -8.00184e-22)
(0.998055 -0.00111715 -2.66877e-23)
(0.998167 -0.00104115 -2.0978e-23)
(1.00007 -0.000158903 1.31074e-24)
(0.997921 -0.00564824 2.56355e-24)
(0.98893 0.111416 -3.78515e-22)
(1.00019 -5.20527e-05 6.4801e-25)
(1.00009 -0.000349822 4.14398e-25)
(0.988417 -0.0053791 -1.42853e-22)
(1.00011 -0.000123979 1.14828e-25)
(0.999841 -0.000233978 3.67555e-28)
(0.999875 -0.000238232 -1.30277e-24)
(0.997936 -0.00119774 3.03669e-23)
(0.997533 -0.00129535 -3.51185e-23)
(0.998957 -0.1084 3.90584e-22)
(1.00994 0.00615334 -2.75064e-22)
(0.999988 -3.16569e-06 8.97225e-28)
(0.986226 -0.0115036 2.18942e-23)
(0.997388 -0.0013847 -2.30899e-23)
(0.997878 -0.00606458 -6.07696e-23)
(0.97432 -0.00669092 3.37963e-23)
(0.948742 -0.00917949 -2.72517e-22)
(0.96677 -0.0110286 -2.7672e-22)
(0.999879 -0.000169024 -2.1602e-25)
(0.998503 -0.00853707 -2.38798e-23)
(0.999176 -0.000130031 -9.35486e-25)
(0.998478 -0.000952008 -7.11009e-24)
(1.01965 -0.0205775 8.9295e-23)
(0.998392 -0.000474886 2.72297e-23)
(1.07544 0.0107611 6.55536e-22)
(0.999787 -0.000491101 3.27897e-24)
(0.999812 -0.000498542 -2.19601e-24)
(0.99987 -0.000163171 -2.85262e-24)
(0.998058 -3.50551e-05 3.36967e-23)
(0.987009 -0.0132605 -1.00485e-22)
(0.998735 -0.000349803 1.56048e-24)
(1.00018 -0.000252851 2.80961e-24)
(1.00994 -0.0510881 -5.15659e-23)
(0.99986 -0.000167597 3.37395e-24)
(0.998974 -0.00597248 -4.20054e-24)
(0.999768 -0.000159355 3.55676e-24)
(1.09799 0.0390327 6.13735e-22)
(0.998809 -0.000322681 7.19773e-24)
(1.00027 -0.000138226 2.32411e-25)
(0.988442 -0.0733353 -3.11313e-22)
(0.999996 -2.4322e-05 9.50418e-27)
(0.998656 -0.00037817 2.71377e-23)
(0.991942 -0.0189521 -6.39387e-23)
(1.00009 -0.000102827 1.61892e-25)
(0.998484 -0.000439414 -6.76025e-24)
(0.997794 -0.00648537 3.84291e-23)
(0.997807 -0.0012817 9.62814e-24)
(1.00005 -4.86316e-05 1.37217e-25)
(0.875646 0.0941846 -4.67192e-21)
(0.997236 -0.00148047 -2.28431e-23)
(0.999972 -0.000199235 3.53052e-26)
(0.97427 -0.0277159 5.37587e-22)
(1.19602 0.0829234 -3.31404e-22)
(0.999832 -0.000129395 5.46422e-24)
(1.00017 -0.000181368 9.59323e-25)
(0.999992 -2.1014e-05 1.88055e-25)
(1.00897 -0.0155049 4.38529e-23)
(0.969923 -0.0393103 -1.21869e-22)
(0.999815 -0.000263119 4.52084e-25)
(1.00806 0.010632 7.58666e-22)
(0.998572 -0.000407347 -4.38505e-23)
(0.999984 -6.95806e-06 1.99305e-25)
(0.996245 -0.0225245 -5.43024e-23)
(0.987299 -0.000363894 1.74614e-22)
(0.987082 -0.00307494 1.24952e-22)
(1.074 0.00575976 8.6e-22)
(0.999861 -0.00050992 -3.42429e-25)
(1.00064 -0.00481231 3.55656e-25)
(0.996728 -0.00180809 -6.67251e-23)
(0.958841 -0.0361704 3.18965e-22)
(1.05286 -0.0558086 -5.42608e-23)
(1.00133 -0.0029477 4.61397e-24)
(0.992264 -0.00340354 1.13557e-22)
(1.00004 -0.000108434 8.43837e-28)
(1.0197 -0.0242745 8.48222e-23)
(0.999886 -0.000230984 -6.93155e-25)
(0.999836 -0.000200063 -4.14092e-25)
(1.00022 -0.000304564 -1.1817e-24)
(1.0067 0.00990744 1.30631e-21)
(0.991904 -0.00364502 2.95466e-23)
(1.00002 -3.82787e-06 3.79109e-26)
(0.999338 -0.00617918 -5.21597e-24)
(1.00033 -0.000165882 -5.35438e-24)
(1.00008 -4.16519e-05 -1.83035e-24)
(0.997721 -0.00693663 2.30299e-23)
(0.996543 -0.00193204 -6.00408e-23)
(0.99691 -0.00169139 5.58415e-23)
(0.999974 -0.000385615 -3.57549e-25)
(1.01665 -0.0205106 6.71976e-23)
(0.999826 -0.000121727 -2.16988e-24)
(0.999989 -3.54509e-06 -4.66496e-26)
(0.997076 -0.00158251 -1.41069e-23)
(1.00002 -3.48978e-05 -9.65844e-26)
(0.962366 -0.0199361 -3.21548e-22)
(1.02331 -0.0183339 -9.96939e-23)
(1.00015 -0.000186706 -1.74061e-24)
(0.999786 -0.000312444 -2.92589e-24)
(0.996536 -0.00148417 2.11906e-23)
(1.07214 0.00114939 9.16655e-22)
(0.99025 -0.00232653 9.46984e-23)
(0.991523 -0.00391395 -9.98612e-23)
(0.999968 -6.91921e-06 3.4337e-25)
(0.986679 -0.0209732 -1.39382e-22)
(0.971158 -0.0143431 4.56931e-23)
(0.999985 -1.16427e-05 -2.68173e-26)
(1.00008 -4.22283e-05 1.11791e-24)
(0.999969 -7.24793e-06 -3.35289e-25)
(0.996347 -0.00205808 4.51692e-23)
(1.0001 -4.38458e-05 2.23049e-25)
(0.991542 -0.00434981 -2.20341e-23)
(0.99765 -0.00741588 -1.13858e-23)
(0.995413 -0.00386549 7.99958e-23)
(0.995931 -0.00234175 -1.83357e-23)
(1.0004 -0.000658388 4.34441e-24)
(0.990704 -0.00448774 3.28088e-23)
(0.954149 -0.023866 -3.60573e-22)
(0.991116 -0.00418893 -1.87153e-23)
(1.00008 -0.000369145 8.92897e-25)
(0.996145 -0.00219319 2.18739e-23)
(0.999711 -0.000205433 -2.84777e-25)
(1.06992 -0.00310241 -3.05515e-22)
(0.995166 -0.00412763 4.04874e-23)
(0.978242 -0.00626812 5.634e-23)
(0.995473 -0.00266718 -4.20367e-23)
(0.998634 -0.00575706 7.10831e-24)
(0.995708 -0.00249913 -3.7749e-23)
(1.001 -0.00490181 9.271e-24)
(1.00002 -2.61626e-05 2.72273e-26)
(1.13373 0.090724 6.68882e-22)
(0.999965 -0.000402618 -4.66844e-25)
(0.970577 0.103773 -6.95056e-21)
(0.965691 -0.01683 4.19603e-22)
(0.990281 -0.00482907 -2.07335e-22)
(0.995233 -0.00285082 3.75079e-23)
(0.99999 -1.92528e-05 -1.22652e-26)
(0.996954 -0.00077694 2.93807e-23)
(0.999753 -0.000369902 3.58496e-26)
(0.996777 -0.000825241 1.9876e-23)
(0.994918 -0.00440084 -6.2678e-23)
(1.09867 0.0316506 1.19367e-21)
(1.00006 -0.000977575 -7.76269e-26)
(1.00003 -3.30799e-05 3.63636e-25)
(1.00022 -0.000491018 -1.07329e-24)
(0.999708 -0.000100913 -6.73301e-25)
(0.988122 -0.0149685 2.4436e-22)
(0.999209 -0.000424083 1.89962e-23)
(0.994979 -0.00305127 1.7695e-23)
(1.01815 0.00596635 -1.17407e-21)
(1.10836 0.154165 -4.37698e-22)
(0.95197 -0.011997 -1.56761e-22)
(0.994709 -0.00325781 1.25435e-23)
(1.03194 0.00450037 1.2213e-21)
(1.02479 0.00326231 4.24795e-23)
(0.999736 -0.0063851 1.4194e-24)
(1.00006 -7.35234e-06 -2.44241e-25)
(0.99464 -0.00471015 1.44074e-23)
(0.994133 -0.00539436 1.91962e-24)
(0.999853 -0.000254154 1.76551e-24)
(1.00005 -4.61954e-05 -4.43164e-25)
(0.99443 -0.00346483 -1.17885e-22)
(1.0154 -0.00397129 -1.85166e-22)
(0.999904 -0.000398185 -1.66894e-24)
(1.06733 -0.00699263 -1.4812e-22)
(0.997082 -0.00812637 3.20462e-23)
(0.989834 -0.00516983 4.61256e-23)
(1.04649 0.0114021 1.18432e-21)
(1.00011 -0.000440901 1.83179e-25)
(0.999662 -0.000212274 4.11306e-25)
(0.999828 -0.000255338 -1.0775e-24)
(0.999828 -6.57259e-05 -1.39146e-25)
(0.999977 -9.99016e-07 -1.98478e-25)
(1.00663 -0.0112202 -7.25333e-23)
(1.04083 0.0177333 3.15574e-22)
(1.00041 -0.000200267 1.55321e-24)
(1.1886 0.09397 3.87704e-22)
(0.978831 -0.00213236 -8.74008e-24)
(0.995702 -0.0048517 -3.76058e-23)
(0.999985 -2.72484e-06 2.65141e-26)
(1.00029 -8.61637e-05 4.40352e-25)
(1.00138 -0.00496091 -6.66915e-24)
(0.999978 -1.69965e-05 2.14323e-25)
(0.994139 -0.00369054 3.23911e-23)
(1.00004 -3.97668e-05 1.16798e-25)
(1.01587 0.0156759 -7.07807e-22)
(0.996069 -0.000871933 8.63861e-24)
(0.999841 -0.000262072 1.77391e-24)
(0.994418 -0.00506274 -5.93276e-24)
(1.00016 -1.95168e-05 2.23813e-24)
(0.996267 -0.000811991 7.19703e-23)
(1.00121 -0.00167187 9.33964e-24)
(0.998021 -0.00823885 1.79368e-23)
(0.995859 -0.000933709 6.80516e-23)
(0.993837 -0.0039503 -1.12408e-23)
(0.84039 0.11078 1.34026e-21)
(1.00005 -4.49019e-05 -4.32743e-26)
(0.999137 -0.000873295 1.64224e-23)
(0.999952 -0.000103179 5.48989e-25)
(0.99699 -0.00868472 -8.34071e-23)
(0.988038 -0.00749467 9.26855e-23)
(0.999985 -1.41347e-05 1.46043e-25)
(1.00003 -3.58993e-05 -1.47016e-25)
(1.00692 -0.117325 -1.26145e-21)
(1.01841 0.00420772 7.98276e-23)
(1.01936 0.106211 -2.28071e-21)
(0.99564 -0.000997371 4.68238e-23)
(0.985084 -0.0637672 3.25229e-22)
(0.988299 -0.00571846 1.01139e-22)
(0.995172 -0.00113552 -8.46899e-23)
(0.998876 -0.000296057 -2.37083e-25)
(0.99541 -0.00106472 -7.3453e-23)
(0.972642 -0.0025181 -3.56283e-22)
(0.993527 -0.00420652 2.95818e-24)
(0.996601 -0.000886414 4.98458e-23)
(1.02451 -0.0170879 4.26068e-22)
(0.9969 -0.00927919 6.4798e-24)
(0.994925 -0.00121181 -4.26735e-23)
(1.10252 -0.0378196 1.83562e-22)
(0.995928 -0.0199702 1.628e-22)
(0.9944 -0.00138926 -5.50813e-24)
(0.994669 -0.0012973 5.7431e-23)
(1.00078 -0.0306994 -1.65577e-23)
(1.00016 -0.00655803 -2.94687e-24)
(0.993172 -0.00446348 -5.5256e-23)
(0.986081 -0.0668235 6.54877e-23)
(1.02387 0.00408413 -8.13799e-22)
(0.994123 -0.00148001 8.41362e-23)
(0.987188 -0.0700212 -6.74071e-22)
(0.999494 -0.000828263 -5.26515e-24)
(1.00002 -7.85093e-06 3.70754e-25)
(1.00401 0.0871149 3.76699e-21)
(1.00004 -3.21904e-05 -3.66604e-25)
(1.00138 -0.00162363 4.55026e-24)
(0.999983 -1.33597e-05 -8.73735e-26)
(0.99383 -0.00157745 -1.49016e-22)
(0.992829 -0.00478952 1.79595e-23)
(1.00004 -4.05842e-05 7.32061e-26)
(0.999923 -0.00054091 -1.16028e-24)
(0.993525 -0.00167781 6.91531e-26)
(1.0006 -0.00669784 8.2408e-25)
(0.993207 -0.00178001 -9.11096e-23)
(0.997833 -0.00265421 -3.02904e-23)
(1.02334 -0.0261965 -1.38504e-22)
(1.02143 -0.0252795 -4.48399e-23)
(0.999965 -0.000565813 3.08479e-25)
(1.01637 -0.0301395 -3.86995e-23)
(0.999938 -0.00052005 1.29746e-24)
(0.959109 -0.0426902 -1.06806e-21)
(0.867194 0.0158331 3.51964e-21)
(0.996817 -0.00991193 1.71928e-23)
(1.06449 -0.010498 3.02875e-22)
(0.992468 -0.00509697 -2.70443e-24)
(0.987896 -0.000315419 1.73473e-22)
(1.00007 -0.00120758 6.55896e-25)
(0.999679 -0.000209865 -6.13529e-24)
(0.989374 -0.00553081 1.43799e-22)
(0.992873 -0.00190425 6.14275e-23)
(1.00027 -0.000107267 2.39612e-24)
(0.999844 -0.000529338 -1.52081e-24)
(1.00031 -0.000396107 7.32043e-24)
(1.00032 -0.000482431 -3.41084e-24)
(0.992523 -0.00203803 -1.14918e-24)
(1.00646 0.0166542 5.70024e-22)
(0.999808 -9.71688e-05 -3.51715e-24)
(1.00216 -0.00948534 -6.44287e-25)
(0.99215 -0.00217833 -1.29684e-22)
(0.999581 -0.000273752 5.40989e-25)
(1.00069 -8.77337e-05 -1.20772e-23)
(0.997567 -0.00304248 -5.31477e-24)
(1.00022 -0.00146031 1.12855e-24)
(0.992443 -0.00760821 7.81711e-23)
(1.02715 0.00786421 -1.41463e-22)
(0.996971 -0.00275893 -3.15011e-23)
(0.999725 -0.000931019 -1.46267e-24)
(0.994993 -0.0219744 -6.13353e-23)
(1.00119 -0.00301923 -1.63012e-24)
(0.995032 -0.000437775 -5.88142e-23)
(1.02204 -0.0194719 1.37824e-23)
(0.992064 -0.00539184 -1.85909e-23)
(0.99076 -0.00110357 8.09277e-23)
(0.991765 -0.0023142 4.14201e-24)
(0.971318 -0.0409088 -1.96215e-22)
(0.997272 -0.00348732 2.11195e-23)
(1.04906 -0.0622899 2.15397e-22)
(0.989475 -0.016657 7.56217e-23)
(0.999517 -0.000321836 -4.71853e-25)
(1.03675 0.0342359 -2.19313e-22)
(1.00051 -0.000241002 3.62376e-24)
(0.999997 -1.23578e-05 3.7601e-27)
(0.990328 -0.00120506 3.1717e-23)
(1.0001 -3.8583e-05 1.54321e-24)
(1.02565 -0.0157273 1.98547e-22)
(0.991666 -0.00572094 -1.21232e-22)
(0.99133 -0.00244778 -1.29314e-22)
(0.988427 -0.00165188 6.06894e-23)
(1.0314 0.00616996 -4.49892e-22)
(0.984864 -0.0225705 3.19889e-23)
(0.990179 -0.014054 1.13833e-23)
(1.00005 -4.95533e-05 3.23778e-25)
(1.1032 0.157621 -3.50587e-21)
(0.994572 -0.0341128 -1.11925e-22)
(0.991236 -0.00608162 1.29174e-22)
(0.996733 -0.0105784 -1.86885e-23)
(1.02668 -0.0142612 -1.46231e-22)
(1.00011 -0.000342296 -1.09746e-24)
(0.999814 -0.000679042 9.15298e-25)
(0.989887 -0.00130726 -9.13618e-23)
(1.02755 -0.012766 -6.1432e-23)
(0.999969 -2.64895e-05 -3.41973e-25)
(1.00014 -0.000498841 -1.21362e-24)
(0.996965 -0.00397455 -7.88085e-23)
(0.989418 -0.00141711 -8.80514e-23)
(0.976095 -0.00648032 -3.54549e-22)
(0.990913 -0.00262403 3.87665e-23)
(0.984343 -0.00305885 1.25309e-22)
(0.982937 -0.00345586 -1.43039e-22)
(0.999933 -0.000419422 2.82248e-25)
(0.988928 -0.00152968 5.28883e-24)
(1.06145 -0.0135343 -5.03414e-22)
(1.00013 -5.18828e-05 9.80721e-26)
(0.986124 -0.00319233 5.71277e-23)
(1.00026 -0.000700912 -3.17433e-24)
(0.990747 -0.00645742 -5.62512e-23)
(0.98942 -0.0210064 3.29843e-23)
(1.00286 -0.00134217 1.78045e-23)
(0.999991 -7.84453e-06 -1.09044e-25)
(0.99047 -0.0027974 -1.64862e-22)
(0.999945 -0.000125145 9.49961e-26)
(1.0008 -0.00012907 6.72946e-24)
(0.97707 -0.00243348 -2.2881e-22)
(1.05832 -0.0161806 -4.44403e-22)
(0.988415 -0.000286789 -1.56029e-23)
(0.999446 -0.000374743 -7.09991e-24)
(1.00251 -0.0352126 7.85671e-23)
(1.03891 0.0104992 1.30994e-21)
(0.97553 -0.020635 -4.97737e-23)
(0.999975 -1.14909e-06 -2.47987e-25)
(1.05515 -0.0182334 -7.80478e-23)
(1.01151 0.014616 -1.33823e-21)
(0.990364 -0.00694387 -5.17802e-23)
(1.00057 -0.000330069 -2.30522e-24)
(0.996661 -0.0112849 -8.88739e-23)
(1.13459 0.0185047 7.26913e-22)
(0.973407 -0.0352874 4.21626e-23)
(0.990021 -0.00297445 2.4254e-22)
(0.999986 -2.88826e-06 1.32404e-25)
(1.00001 -3.38132e-05 -1.10257e-26)
(0.999736 -0.000425007 2.02136e-24)
(0.999998 -5.25895e-06 -6.86108e-27)
(1.00028 -0.000957401 -3.35045e-25)
(0.996279 -0.00520248 2.23162e-24)
(1.00022 -0.000194428 -9.89504e-25)
(1.00179 -0.0120094 -2.17031e-24)
(0.969143 -0.00313889 -3.50249e-22)
(0.999916 -3.95804e-06 -1.50148e-24)
(1.01386 0.0690623 -1.30036e-22)
(0.996452 -0.0048626 1.06181e-23)
(1.00214 -0.00267904 3.18654e-24)
(0.999976 -1.90871e-05 -2.73469e-25)
(0.999971 -2.78689e-05 -3.83577e-25)
(1.00917 0.016655 -2.99141e-22)
(0.989556 -0.0031768 2.57957e-24)
(0.99953 -0.000804587 7.41198e-25)
(0.99999 -6.72662e-05 -1.44639e-25)
(0.970377 -0.00291078 -3.79109e-22)
(0.999972 -2.36984e-05 6.28191e-25)
(0.98991 -0.0074122 -2.00721e-22)
(0.996049 -0.00272701 2.03607e-23)
(1.00003 -0.000154557 -2.11302e-25)
(0.992338 -0.0129221 8.63322e-23)
(0.999613 -0.000113194 -3.54886e-24)
(0.913648 0.115893 8.22799e-22)
(1.0296 0.0109308 -1.84618e-23)
(0.997394 -0.0409595 -3.37549e-22)
(1.15812 -0.0193671 -1.52379e-23)
(1.00001 -2.66662e-05 1.06774e-25)
(0.989076 -0.00337095 1.40667e-22)
(0.997656 -0.000144142 -2.98399e-23)
(1.00014 -0.000149725 -2.3801e-24)
(0.996876 -0.019182 5.42503e-23)
(0.993178 -0.0106858 -1.83533e-23)
(1.00001 -3.61132e-05 -3.18028e-26)
(0.99589 -0.00594055 -9.16612e-23)
(0.966851 -0.00728141 -1.27109e-22)
(1.1483 -0.00576757 -8.49096e-23)
(0.999986 -3.11469e-06 -7.60778e-27)
(0.999783 -0.000466995 -1.3926e-24)
(0.988577 -0.00361334 2.28881e-22)
(1.00002 -1.84338e-05 2.19105e-25)
(0.994232 -0.00826647 -4.39045e-23)
(1.05198 -0.0199702 1.24913e-22)
(0.996649 -0.0120308 -1.93778e-23)
(0.989439 -0.00788875 6.23459e-23)
(1.03293 -0.0593877 -1.24736e-22)
(1.00001 -3.76778e-05 5.40299e-26)
(0.999791 -0.000802492 8.26824e-26)
(1.03027 -0.0325628 -1.56849e-22)
(0.993703 -0.00939762 1.62085e-23)
(1.03083 0.00798497 -1.8394e-21)
(1.02146 0.00669028 -6.02212e-22)
(0.939848 -0.00490465 2.5019e-22)
(1.00639 -0.0250011 -2.09058e-23)
(1.00746 -0.0146434 8.61328e-24)
(0.994735 -0.00726438 7.95961e-23)
(0.999924 -0.000992542 -1.55063e-24)
(1.0134 0.0165275 -3.51325e-22)
(0.988927 -0.00839418 -1.45685e-23)
(0.998325 -0.0207331 8.24848e-23)
(1.00002 -4.40385e-06 -2.53825e-25)
(0.967858 -0.0033617 -9.6586e-23)
(0.988046 -0.00384911 -8.23765e-24)
(0.998447 -0.00120168 -2.95383e-23)
(1.02682 -0.00556609 6.69653e-22)
(1.00003 -2.68408e-05 1.71913e-25)
(1.00186 -0.00274173 6.73222e-24)
(0.988419 -0.00894192 -7.81747e-23)
(0.999831 -0.000989055 3.56893e-24)
(0.999814 -0.000105584 1.57157e-24)
(1.00018 -0.00118581 -3.4874e-24)
(0.996678 -0.0128011 9.69209e-23)
(0.99953 -0.000659174 2.94003e-24)
(0.996651 -0.014509 1.006e-22)
(0.999936 -0.000384659 4.98403e-25)
(0.987463 -0.00414423 6.25873e-23)
(1.00738 0.0143715 -2.9443e-21)
(1.03669 -0.0464269 -1.90287e-23)
(1.04877 -0.0213981 1.07107e-22)
(0.998895 -0.00259824 6.80394e-24)
(1.14358 0.0635864 1.09166e-21)
(1.00016 -6.12797e-05 -4.16862e-25)
(0.996674 -0.0136253 2.17471e-23)
(0.9898 -0.00247227 -4.70048e-23)
(0.997525 -7.65887e-05 -1.4042e-23)
(0.998479 -0.00133042 -2.00729e-24)
(1.00003 -6.43046e-06 4.91672e-25)
(1.04569 -0.0225053 9.72964e-24)
(0.987905 -0.00950824 -8.26057e-23)
(1.00012 -0.00350358 1.89266e-24)
(0.9999 -0.00103529 -1.87608e-25)
(0.949921 -0.0371211 3.61799e-22)
(0.965165 -0.00388071 1.55566e-22)
(1.01586 0.00851974 -2.18418e-22)
(0.999972 -0.00018198 -4.21895e-25)
(0.986818 -0.0107889 -1.40205e-22)
(0.998785 -0.00256306 5.1018e-24)
(0.986871 -0.00438203 1.31155e-22)
(1.04266 -0.0232411 1.26863e-22)
(0.969862 -0.0154278 -1.25531e-22)
(0.999319 -0.00047398 -8.76664e-25)
(1.02708 0.0167516 -1.6528e-22)
(0.999953 -4.26603e-05 -3.91338e-25)
(1.03976 -0.0237114 -5.94417e-23)
(0.970426 -0.0286701 1.50102e-22)
(0.99759 -0.00154159 -4.36853e-23)
(1.00007 -3.80031e-05 3.87611e-25)
(1.00119 -0.00257733 -3.7726e-24)
(1.00104 -0.00169959 -1.05145e-24)
(0.999991 -7.04423e-05 -4.07704e-27)
(1.00016 -0.00377638 1.13769e-24)
(1.00176 0.0740244 -3.3719e-21)
(1.00002 -4.52062e-06 1.86169e-25)
(0.997392 -8.10064e-05 -9.82876e-24)
(0.988163 -0.0565983 2.18344e-22)
(0.987368 -0.0101264 -4.51219e-23)
(1.00071 -0.000400606 -1.93901e-24)
(0.997774 -6.75725e-05 -2.68002e-23)
(1.0306 -0.0257192 -1.99716e-23)
(0.986245 -0.00460215 -6.52673e-23)
(0.999721 -0.000102568 2.99338e-24)
(0.972793 -0.0164577 -7.86522e-23)
(0.946572 -0.0186183 2.47469e-22)
(0.992702 -0.00814898 -2.53033e-24)
(1.00262 -0.0120543 1.87839e-24)
(1.00041 -0.000700013 2.25729e-24)
(0.982871 -0.00626887 -2.17554e-22)
(0.999427 -0.000747854 3.28967e-24)
(0.985636 -0.00489034 -4.40725e-23)
(1.00002 -6.1352e-07 6.9897e-26)
(0.999992 -6.42323e-05 2.21807e-25)
(0.984987 -0.00518817 1.54667e-22)
(0.984316 -0.00552648 -1.87322e-22)
(1.01869 0.010095 7.23079e-22)
(0.999984 -6.11648e-06 -1.54911e-25)
(0.994289 -0.0120953 2.39554e-23)
(1.00025 -0.00111593 -1.59339e-24)
(0.999695 -0.00096464 3.08777e-24)
(1.0047 -0.023279 2.40887e-23)
(0.957208 -0.0193931 -5.65917e-22)
(0.94793 -0.0186589 2.24879e-22)
(1.0036 -0.0786601 -3.40545e-22)
(1.0166 0.088886 1.05246e-21)
(0.966515 -0.00361184 -1.7502e-22)
(0.983613 -0.00587593 -6.69386e-23)
(1.0023 -0.0012716 6.2208e-24)
(0.973453 -0.000573996 2.04009e-23)
(1.0542 0.0995701 -5.14554e-22)
(0.997653 -7.18458e-05 3.15116e-23)
(1.00515 -0.00175141 -7.72098e-23)
(1.00012 -0.000374424 1.81952e-24)
(1.00055 -0.000906429 6.75824e-24)
(0.958728 -0.0145374 -3.81659e-23)
(1.13982 -0.0708835 3.09231e-22)
(1.0057 -0.000758112 8.04748e-24)
(1.037 -0.0239059 -2.10905e-23)
(1.00051 -0.000619835 2.86871e-24)
(0.999391 -0.000766049 4.84452e-24)
(0.974571 -0.0219231 1.35254e-22)
(1.01221 -0.0195408 1.40706e-22)
(0.970824 -0.0756045 3.51537e-23)
(1.00056 -0.0339553 -5.36996e-23)
(1.25539 0.114 -3.37142e-23)
(0.999887 -0.000514095 -1.83545e-24)
(0.918626 0.0929899 -3.98292e-21)
(1.06032 0.0350076 4.1332e-22)
(1.05859 0.0226929 -1.14556e-21)
(1.03833 -0.0404343 3.71125e-23)
(0.999997 -1.13467e-05 -9.07882e-27)
(1.00251 -0.00111781 2.32563e-25)
(1.00143 -0.014329 1.58194e-23)
(1.02316 -0.0561723 -2.89744e-22)
(0.999212 -0.000486233 8.29e-24)
(0.957096 -0.0415124 2.91865e-22)
(1.01498 -0.0187901 1.12774e-22)
(1.08389 -0.00779598 -1.97058e-22)
(1.02007 0.0298577 -2.22413e-21)
(1.00034 -0.00142257 2.05265e-24)
(0.999248 -0.000482494 2.49995e-24)
(1.02832 -0.0252487 -3.45527e-24)
(0.989143 -0.00286604 2.69785e-23)
(1.08021 0.0743509 -1.13323e-21)
(0.999984 -1.21373e-05 -1.55841e-25)
(0.999758 -0.000434884 3.67004e-24)
(0.995468 -0.00522117 -7.02829e-23)
(1.00019 0.00674139 4.09891e-21)
(1.00001 -4.26991e-06 4.07398e-26)
(1.00045 -0.00292447 4.83106e-26)
(0.9997 -0.000112232 3.0757e-24)
(1.00001 -5.94082e-05 -5.40985e-26)
(0.998597 -0.000104283 7.70337e-24)
(1.01816 0.103035 3.07527e-21)
(0.999638 -0.00122344 2.28087e-24)
(1.208 -0.0027289 2.99417e-22)
(0.996644 -0.0388626 3.33994e-22)
(1.00004 -0.000100987 -6.95005e-25)
(0.999962 -2.84877e-05 -2.5938e-26)
(0.999976 -0.00107553 2.14402e-25)
(1.00281 -0.000468004 2.05656e-23)
(1.00002 -7.47112e-07 -5.65966e-26)
(0.999099 -0.000561104 1.21052e-26)
(0.999977 -7.89785e-06 -2.58502e-27)
(1.00006 -0.00111159 5.96441e-25)
(0.994012 -0.0180061 3.41795e-23)
(1.05852 0.0114541 -7.99257e-22)
(1.19242 -0.00206353 8.75135e-23)
(1.00068 -0.00107817 7.81574e-24)
(1.13761 0.072432 7.02968e-22)
(1.00016 -0.0012428 1.55282e-24)
(0.981146 -0.0306833 1.07493e-23)
(1.00011 -4.23624e-05 -5.6917e-25)
(1.00131 -0.00133618 7.20408e-24)
(0.999397 -0.0020754 -1.04218e-23)
(1.02578 -0.123946 1.22788e-21)
(0.98113 -0.0138148 -5.4401e-22)
(0.978093 -0.00726926 -1.60673e-22)
(0.996479 -0.00264506 4.52972e-23)
(1.00014 -0.000170079 6.99427e-25)
(1.00271 -0.000945581 2.64732e-23)
(1.00017 -0.00020517 -1.25031e-24)
(1.00126 -0.00150393 -1.19277e-23)
(1.00276 -0.0012127 -2.66016e-23)
(0.999908 -8.62881e-06 3.01653e-24)
(1.00465 -0.00158698 -3.08845e-23)
(0.999969 -2.42831e-05 -3.73537e-25)
(0.996427 -0.0012645 -3.46699e-23)
(0.999371 -0.000199428 6.87695e-24)
(0.998979 -0.000646747 -2.30036e-24)
(1.00009 -0.000116689 -7.54132e-26)
(1.00001 -1.54996e-05 5.27144e-26)
(1.00057 -0.000264232 5.13955e-24)
(1.04316 -0.0448255 -2.99714e-24)
(1.00027 -0.00101062 3.93223e-24)
(0.999958 -3.20346e-05 -3.74554e-25)
(1.07845 -0.0547997 -9.48048e-24)
(0.998844 -0.000747797 5.55422e-24)
(1.00412 -0.0057608 4.58902e-24)
(1.01942 -0.120257 -4.99643e-22)
(0.999255 -0.000962811 -1.14479e-23)
(1.00095 -0.000526128 1.45356e-24)
(0.999985 -2.22912e-06 -2.11359e-26)
(1.00291 -0.000742765 -2.26318e-24)
(0.99339 -0.026084 3.6939e-23)
(0.977997 -0.002294 1.42343e-22)
(1.00467 -0.0056083 5.59543e-23)
(1.0083 0.0120361 -5.2287e-22)
(1.01015 -0.0680668 1.52553e-22)
(1.00001 -5.60408e-05 -2.53775e-26)
(1.019 -0.0956598 7.23727e-22)
(0.998823 -0.000363397 3.24901e-24)
(0.99865 -0.0023062 1.32601e-23)
(1.00618 -0.00628382 6.87075e-23)
(1.00246 -0.000863049 7.06639e-24)
(1.00044 -0.000633553 -3.10351e-24)
(0.982185 -0.0146861 -9.81916e-23)
(1.00058 -0.000600579 -2.4656e-24)
(1.00033 -0.00149096 -3.42203e-24)
(1.00008 -2.75252e-05 -3.32063e-25)
(1.00252 -0.00277755 -1.0672e-23)
(0.999152 -0.00111935 -1.03882e-23)
(0.999597 -0.00142925 -2.98206e-24)
(1.14581 0.0355618 -3.16814e-22)
(0.984717 -0.130492 1.04786e-22)
(0.996769 -0.147358 2.52094e-22)
(1.05482 -0.190354 -1.91652e-23)
(0.967964 -0.0608686 6.89463e-22)
(1.02762 -0.174847 -5.89682e-22)
(0.976326 -0.114657 4.449e-22)
(1.08747 -0.201018 -1.96667e-22)
(0.967443 -0.066683 3.47395e-22)
(0.970776 -0.095999 -5.37854e-22)
(0.968126 -0.0581432 4.13304e-23)
(1.31571 0.045512 -1.4349e-21)
(1.04534 -0.185233 -1.38127e-21)
(0.981599 -0.125085 2.82562e-22)
(0.967282 -0.0762483 -7.9397e-23)
(1.25028 0.165034 1.53452e-22)
(1.27213 -0.132505 9.14114e-22)
(1.26062 0.150556 3.23647e-22)
(1.25897 -0.146686 7.21892e-22)
(1.31772 -0.0186908 9.91141e-24)
(0.9884 -0.135997 4.14351e-22)
(1.06475 -0.194195 -1.35826e-23)
(0.968184 -0.0833574 -5.48157e-22)
(1.23059 -0.171108 -2.07495e-22)
(1.00702 -0.158308 -1.08851e-22)
(1.27482 0.136265 1.66576e-22)
(1.31496 -0.0399675 -3.49729e-22)
(1.12689 -0.206164 3.44908e-22)
(1.07577 -0.197941 8.80263e-25)
(1.31094 0.0661084 -4.09141e-22)
(0.967609 -0.0796896 -6.46707e-22)
(0.9694 -0.0487584 4.09105e-22)
(1.31863 0.024368 2.81978e-23)
(1.23717 0.175445 -1.27333e-22)
(1.31931 0.00294356 -4.22455e-23)
(1.28604 0.120782 -1.61858e-23)
(0.968321 -0.0555514 -5.46588e-22)
(1.03619 -0.180215 6.72903e-22)
(1.18484 -0.194245 -1.60575e-21)
(1.31016 -0.0608793 8.39839e-22)
(0.992295 -0.141623 1.83431e-22)
(1.24533 -0.159732 8.13638e-22)
(1.15439 -0.20263 -1.84253e-21)
(0.973047 -0.104911 -2.55557e-22)
(0.978626 -0.119815 6.40055e-22)
(1.28408 -0.117158 -7.67802e-22)
(1.16934 -0.198813 -8.27918e-22)
(1.00076 -9.82433e-05 -3.37715e-24)
(0.999192 -0.000334351 2.0554e-24)
(1.00002 -1.70888e-05 -4.38511e-26)
(0.999514 -5.77451e-05 -2.38435e-24)
(1.00141 -0.000222974 5.62826e-24)
(0.960813 -0.00916618 4.02221e-22)
(1.0459 -0.0395817 -1.21481e-22)
(1.04497 0.000735777 -1.72259e-22)
(0.999977 -1.74686e-05 -1.84419e-25)
(1.02279 0.00772604 -1.30077e-23)
(0.999461 -0.000769357 2.41073e-25)
(1.00009 -0.00392936 -1.10032e-24)
(1.04515 0.104734 -7.56584e-22)
(1.14811 0.0253493 -9.47028e-24)
(0.991527 -0.019486 -5.63969e-24)
(1.00129 -0.000683424 2.81179e-24)
(0.971566 -0.00270705 2.18445e-22)
(1.00083 -0.00127842 2.05096e-24)
(1.00159 -0.00277916 -1.30396e-24)
(1.03681 0.00353243 -9.7651e-23)
(1.01403 -0.0253259 -2.3666e-23)
(0.973552 -0.0232517 -1.33127e-22)
(0.998904 -0.000262741 -4.86388e-24)
(0.999117 -0.00265544 -5.43645e-25)
(0.995844 -0.0169302 8.44479e-23)
(1.00017 -4.64996e-05 -5.73407e-24)
(0.991005 0.063518 -8.79022e-22)
(1.01078 -0.0107043 -2.20908e-23)
(1.0091 -0.0215778 -4.78765e-23)
(0.998688 -0.0008685 1.12295e-23)
(0.999931 -5.74772e-05 1.08084e-26)
(1.00002 -6.22788e-05 2.30562e-26)
(1.14929 0.0149788 -4.5487e-22)
(0.999835 -0.000575286 9.72695e-25)
(0.999991 -8.52847e-06 1.59727e-25)
(0.998592 -0.000453584 6.8201e-24)
(1.14928 0.00456666 6.14073e-24)
(0.999161 -0.00018471 4.97408e-25)
(0.999037 -0.00129728 -9.3366e-24)
(0.960574 -0.0276623 5.61493e-23)
(1.06276 -0.0416942 -1.88072e-23)
(0.998811 -0.000439258 -3.29466e-24)
(1.00023 -0.0019937 4.40575e-26)
(0.995794 -0.0262943 1.71299e-24)
(0.999938 -0.000352607 1.19547e-24)
(1.0002 -0.000110422 2.42141e-25)
(0.980771 -0.0325324 -2.10544e-22)
(0.95458 -0.0227472 1.39804e-22)
(1.00019 -0.000372234 2.29179e-24)
(1.00166 -0.000204723 -4.58045e-24)
(0.998917 -0.00149899 -8.97388e-25)
(0.999987 -1.16744e-05 -4.2171e-26)
(0.999813 -8.86786e-05 2.3911e-24)
(0.998413 -0.000528382 6.02917e-24)
(0.998518 -0.00118626 1.39886e-23)
(0.999965 -0.000439011 3.11317e-25)
(0.999536 -0.0165461 -4.88412e-23)
(0.993502 -0.0123674 5.7344e-23)
(0.967367 -0.0301643 -4.06359e-22)
(1.00054 -0.0167659 -8.12035e-25)
(1.00034 -0.00188888 -7.31084e-25)
(1.00073 -0.000236839 -1.89726e-24)
(1.00158 -0.0169454 -9.17925e-25)
(0.998517 -0.0162746 -5.66401e-23)
(0.998269 -0.000849169 -2.12512e-23)
(1.00462 -0.0134864 2.39747e-24)
(0.998862 -0.000368714 6.46063e-24)
(1.00486 -0.0489901 3.42165e-22)
(0.966711 -0.0126052 -4.22853e-22)
(1.00012 -4.57286e-05 -5.45348e-25)
(1.00975 0.0126477 -5.80467e-23)
(0.999935 -6.00838e-05 -1.02272e-25)
(0.998782 -0.00173164 -1.83754e-23)
(0.999768 -0.000939198 -2.82224e-24)
(1.01683 0.0145071 -2.0039e-22)
(1.02082 0.00724343 1.51781e-21)
(0.958587 -0.0272157 -9.07984e-23)
(1.00018 -0.0045459 6.52226e-26)
(1.00376 -0.0151896 3.80477e-24)
(0.974999 -0.0146154 -2.66091e-22)
(1.03724 -0.0372414 -1.26976e-22)
(0.995996 -6.7575e-05 1.49115e-23)
(0.999966 -3.50246e-05 -2.51897e-26)
(1.00058 -0.00288158 -6.12728e-25)
(0.999937 -5.19918e-05 3.40545e-25)
(0.985376 -0.00299655 -7.0563e-23)
(1.00525 -0.0211753 -6.58558e-24)
(1.01435 -0.00511026 3.21108e-22)
(1.04214 -0.0494632 -9.30796e-24)
(1.04621 -0.0353195 -2.81438e-22)
(1.00004 -3.67007e-05 7.4151e-26)
(0.961478 -0.00844136 1.4492e-23)
(0.998313 -0.00102993 1.61776e-23)
(1.00535 -0.0117616 -2.71962e-23)
(1.00053 -0.000754667 -5.37826e-24)
(1.0122 -0.016319 8.21129e-23)
(1.00194 -0.00245893 -1.43957e-23)
(0.998383 -0.00102238 -2.79358e-23)
(1.0477 0.101872 1.46662e-21)
(0.99967 -0.00210827 -4.47542e-24)
(1.00014 -4.96622e-05 -1.673e-25)
(1.01189 0.0161143 1.90915e-21)
(0.952247 0.0552046 -2.38267e-21)
(1 -6.5449e-06 -2.88532e-27)
(0.998305 -0.00090774 -9.43565e-24)
(1.00022 -9.77616e-05 3.00482e-24)
(0.998629 -0.00200641 -9.68876e-24)
(0.999736 -0.00040241 -3.17497e-24)
(0.990584 -0.000253943 6.11762e-23)
(1.00011 -0.000140976 -2.12363e-25)
(0.999978 -0.000114234 -2.62669e-25)
(0.97579 -0.0189103 9.29152e-23)
(1.00657 0.00851683 -2.28826e-21)
(0.941692 0.114956 -5.75722e-22)
(1.00002 -6.8874e-06 -1.39864e-25)
(1.04856 0.0882036 -9.60365e-23)
(0.99988 -0.000558892 3.14497e-24)
(0.997533 -0.00113372 -8.29977e-24)
(1.0414 -0.00512964 3.56739e-22)
(1.00159 -0.000811421 7.23536e-24)
(1.01324 -0.0155209 1.50764e-23)
(0.999932 -5.31566e-05 -1.87907e-24)
(0.998878 -0.000409505 -2.06903e-24)
(0.992926 -0.0135529 -2.58683e-23)
(1.0001 -6.27417e-05 9.77287e-25)
(0.997579 -0.00121294 3.74875e-23)
(0.999947 -1.00406e-05 -9.186e-25)
(0.980402 -0.0344474 -3.67465e-23)
(1.0081 -0.00283525 1.53934e-22)
(0.997568 -0.0159341 -3.00637e-23)
(1.01307 -0.0492824 1.51855e-22)
(0.997244 -8.86534e-05 -4.81478e-23)
(0.999336 -0.00214591 -1.59931e-25)
(1.01385 -0.0283021 -3.8687e-23)
(1.00105 -0.00180168 -1.58075e-24)
(1.00014 -4.14459e-05 3.08373e-24)
(1.0076 -0.00332211 -3.32165e-23)
(0.999985 -1.62437e-07 4.3539e-26)
(0.999601 -0.000127281 3.77597e-24)
(0.999977 -0.00019084 2.97396e-25)
(1.01106 -0.0170137 1.84826e-24)
(1.00961 -0.0188543 1.80356e-23)
(1.00523 -0.032125 1.59731e-23)
(0.999959 -2.90429e-05 2.37186e-25)
(0.999905 -1.58857e-05 -3.9546e-25)
(1.01428 -0.0146949 1.09568e-22)
(0.951554 -0.0162156 -1.0414e-22)
(0.999546 -0.00179649 -3.21712e-24)
(1.00015 -5.383e-05 -1.39433e-24)
(1.00833 -0.00753983 8.2982e-23)
(0.999426 -0.000830869 1.53739e-24)
(0.944523 -0.0249202 -6.69203e-22)
(0.997989 -0.00127386 4.97361e-24)
(1.05852 0.0303956 -1.99508e-22)
(0.965113 -0.0160275 3.11926e-22)
(0.995027 -0.0135754 -4.38258e-23)
(0.999621 -0.00218441 8.07139e-25)
(1.05535 -0.00470321 4.78811e-22)
(1.00924 -0.0133303 4.03065e-23)
(0.945723 -0.0006471 2.25223e-22)
(0.999463 -0.002711 -5.86034e-24)
(0.973648 -0.0163061 -7.27208e-23)
(1.00768 -0.00793557 -7.70847e-23)
(0.983626 -0.0236791 -2.16497e-22)
(0.983136 -0.0251314 2.1934e-22)
(1.00086 0.0103489 -1.72022e-21)
(0.945971 -0.0174183 -8.61815e-23)
(0.997676 -0.00136905 5.28131e-23)
(0.998033 -0.00191775 1.73448e-23)
(0.992449 -0.000201692 -1.3646e-23)
(0.98271 -0.0266553 -2.21281e-22)
(1.00665 -0.0209894 -3.49084e-25)
(0.998766 -0.00245317 -1.4601e-23)
(0.999893 -0.000472335 -2.52195e-24)
(1.00015 -0.000173701 -8.54114e-25)
(1.01167 -0.0100684 -6.2896e-24)
(0.990984 -0.000263632 2.92268e-24)
(0.96051 -0.0106159 3.34978e-22)
(1.00024 -0.00117174 3.04177e-24)
(1.0015 -0.00440592 -1.27731e-23)
(1.00035 -0.00283083 7.17283e-25)
(1.00777 0.0077352 7.8533e-22)
(0.949589 -0.00831148 -3.3629e-23)
(1.00004 -0.000160636 3.10063e-25)
(0.9811 -0.0201919 2.78263e-23)
(1.0002 -0.00207814 -2.88637e-25)
(0.995946 -0.00155526 1.91802e-23)
(0.992097 -0.000196455 -1.04253e-22)
(1.29663 0.103178 1.87481e-22)
(1.00805 -0.0206735 -4.13414e-24)
(0.998224 -0.00123598 1.95287e-23)
(1.00686 -0.00907734 3.73079e-23)
(1.02925 0.0135422 1.0936e-21)
(0.991747 -0.000203633 -2.03103e-23)
(0.970099 -0.0111657 1.61625e-22)
(1.04418 -0.0383465 1.10777e-22)
(1.0061 -0.00933624 1.06372e-23)
(1.00219 -0.00603647 3.00362e-24)
(0.972569 -0.0246442 2.37317e-22)
(0.997583 -0.00137643 -7.48064e-23)
(1.00037 -0.00100111 -4.40699e-25)
(0.999657 -1.36347e-05 -3.78318e-24)
(1.02946 -0.0157666 -3.08404e-22)
(1.03972 0.128373 1.22003e-21)
(0.997294 -0.00157101 7.76523e-23)
(1.02151 0.12602 1.75271e-21)
(0.982327 -0.0282438 5.54427e-23)
(0.999631 -1.56613e-05 -6.95593e-24)
(0.966688 -0.00438905 -1.12548e-22)
(1.03648 -0.0194177 1.32215e-22)
(1.00859 -0.00229805 4.24025e-23)
(0.992719 -0.00778886 -9.65293e-24)
(0.991388 -0.000215699 -5.68278e-24)
(1.00297 -0.00418616 -1.3844e-23)
(1.22281 0.184352 1.40757e-22)
(1.00026 -0.00242862 3.16801e-24)
(1.01445 0.0153802 4.57505e-22)
(1.01342 -0.0708612 -3.34076e-22)
(0.99874 -0.000464785 -1.52183e-24)
(1.00593 -0.0124916 -1.992e-23)
(0.996978 -0.000600263 4.17363e-24)
(0.999986 -9.03906e-06 -1.12238e-25)
(0.99828 -0.000620119 1.41849e-24)
(1.02393 0.000786549 -1.23242e-21)
(1.0003 -0.000151842 -1.28922e-24)
(0.932014 0.111856 3.29096e-21)
(0.999394 -0.00280734 2.59286e-24)
(1.0671 -0.0379079 -1.77048e-22)
(1.00035 -0.000122569 1.1696e-24)
(1.00017 -5.88872e-05 2.47936e-25)
(1.03929 -0.0159947 3.36512e-22)
(0.996679 -0.00776835 -7.5384e-24)
(1.00316 -0.00145722 -3.7737e-23)
(0.998553 -0.00226115 5.20226e-24)
(0.999982 -0.000109121 -2.60732e-25)
(1.00009 -0.00010855 -5.56303e-25)
(1.04444 -0.0607681 6.09742e-23)
(0.986799 -0.0182889 3.14173e-23)
(1.01528 -0.0138598 -6.3985e-23)
(0.996547 -0.0012767 -3.75741e-23)
(1.00001 -1.48135e-05 -5.92564e-27)
(0.999038 -0.00274105 -4.83508e-24)
(1.00194 -0.000964215 3.06537e-23)
(0.998426 -0.00107824 5.52581e-24)
(0.999904 -0.00015409 -3.6949e-25)
(1.00141 -0.00229396 1.25647e-23)
(1.02015 -0.0593489 -2.33192e-23)
(0.999576 -0.00292807 -6.38405e-24)
(1.01827 -0.0329842 -2.62449e-24)
(1.00012 -0.000481731 7.60184e-25)
(1.00551 -0.0263308 -5.44868e-23)
(0.999184 -0.00016027 1.85753e-24)
(1.00137 0.0119813 1.41445e-21)
(0.996061 -0.00121025 -3.75167e-24)
(0.999991 -5.50177e-06 4.22522e-26)
(0.955805 -0.022572 -3.05659e-22)
(0.979525 -0.00360079 8.83278e-23)
(1.00005 -0.000134866 -2.25114e-25)
(0.99698 -0.00783142 5.05073e-24)
(1.00002 -5.58378e-06 -1.42837e-25)
(1.03771 -0.00379614 -8.28786e-23)
(0.998873 -0.0091257 7.54673e-24)
(1.00238 -0.00139404 4.58575e-24)
(1.01927 0.00619192 -2.5399e-22)
(0.997016 -0.000703984 -4.97781e-23)
(0.996978 -0.00179123 -1.81484e-24)
(0.99999 -8.24352e-06 -8.35297e-27)
(1.02437 0.0134125 -7.00098e-22)
(0.991634 -0.0338568 2.66983e-22)
(1.0003 -0.000118394 7.52431e-26)
(0.997603 -0.000544078 -5.85554e-24)
(1.00016 -0.000230386 -4.02764e-25)
(0.997379 -0.0217497 4.13463e-23)
(0.997553 -0.000825587 -1.26595e-23)
(1.00005 -0.000157422 -5.67059e-26)
(1.0035 -0.0322854 5.82725e-23)
(0.996814 -0.000921809 5.93066e-23)
(1.00816 0.0850955 -2.34751e-21)
(1.00064 -0.00157875 -8.52162e-24)
(0.972513 -0.0172909 2.88672e-22)
(0.999981 -0.00011987 5.01354e-26)
(0.998889 -0.00340119 -2.05514e-24)
(1.00124 -0.00464398 2.41208e-24)
(0.962789 -0.0189411 1.77897e-22)
(1.00402 -0.00391908 6.90614e-23)
(1.00056 -0.00448598 -6.67601e-26)
(1.02961 -0.0572411 1.57248e-22)
(0.998329 -0.00115694 -3.93155e-23)
(0.999397 -0.000202614 -2.58099e-24)
(0.999904 -0.000163886 -8.91317e-25)
(1.0159 -0.00489522 -2.16712e-22)
(0.999676 -0.00104476 4.4138e-24)
(1.02154 -0.00300795 1.49769e-22)
(0.999985 -7.53749e-06 -5.87843e-26)
(0.996425 -0.00217311 -2.00231e-23)
(0.998316 -0.00551752 9.84893e-25)
(1.01832 0.0369858 1.47111e-21)
(1.04771 0.0671943 -1.36029e-21)
(1.00118 -0.0075799 -3.1618e-24)
(0.982877 -0.0137491 -1.20497e-22)
(0.995973 -0.0368477 1.61361e-23)
(1.00358 -0.00587812 4.05249e-23)
(0.998921 -8.79336e-05 -1.10397e-23)
(1.00037 -0.000182419 -2.02599e-26)
(1.04029 -0.0592402 6.77982e-23)
(0.996302 -0.000928035 5.93547e-23)
(0.999917 -6.06943e-05 1.43167e-25)
(0.830642 0.0236331 -1.19544e-21)
(1.01005 0.0141228 1.14956e-21)
(1.0001 -0.000119297 -6.05407e-25)
(0.999986 -0.000190991 9.66585e-26)
(0.994002 -0.000163579 -9.15863e-23)
(0.999977 -0.000174236 -4.30248e-25)
(1.16132 0.0747324 7.13177e-24)
(1.0002 -0.00027774 -2.21165e-24)
(0.995679 -0.00112672 2.37572e-23)
(0.97052 -0.0035844 1.14349e-22)
(1.00009 -0.00115486 -6.19378e-25)
(1.03576 -0.00413324 -4.23408e-23)
(0.980964 -0.0112286 -1.23285e-23)
(0.999355 -0.000220905 -6.75723e-24)
(0.996415 -0.00095078 -1.14219e-23)
(0.98567 -0.00108269 2.1122e-23)
(1.08102 0.0413372 8.72867e-22)
(0.995801 -0.0026272 4.11697e-23)
(1.00129 -0.00160238 -7.70068e-24)
(1.08899 -0.025376 1.66084e-22)
(0.999489 -0.00208982 -7.46264e-24)
(0.999846 -0.000143953 -8.44489e-25)
(0.999208 -0.000364151 5.41532e-24)
(1.00008 -3.25384e-05 -5.16372e-25)
(0.996659 -0.000330546 2.77904e-23)
(0.988212 -0.0323296 9.85656e-24)
(1.00708 -0.00377447 5.92477e-23)
(0.995214 -0.00127434 -1.51716e-23)
(1.0178 0.00786381 6.0541e-22)
(0.997726 -0.00144284 1.01217e-23)
(1.00763 0.00631121 -1.38905e-21)
(0.981967 -0.0542129 1.34213e-22)
(1.02909 -0.0215222 -1.14221e-22)
(0.964906 -0.00227574 -8.08414e-23)
(1.00395 -0.000661003 -8.12837e-24)
(1.01728 0.119148 -1.65018e-21)
(1.0005 -0.00626394 1.50012e-24)
(1.00289 -0.00164255 2.47952e-24)
(0.999756 -0.00101822 -1.11301e-24)
(0.999845 -0.000118302 5.76095e-24)
(0.9767 -0.0178612 1.50605e-22)
(1.00099 -0.0010127 -1.16499e-24)
(0.974715 -0.0153854 8.9346e-23)
(0.999952 -0.000226774 6.65853e-25)
(1.0016 -0.00293742 -2.09023e-23)
(0.995097 -0.00320653 3.00501e-23)
(0.999466 -0.00225239 6.3595e-24)
(1.03571 -0.0109053 -5.24888e-22)
(0.978103 -0.00279469 3.46025e-22)
(1.00112 -0.00163753 -4.23772e-24)
(0.998791 -0.00391951 5.23424e-24)
(0.994717 -0.00145129 3.32281e-23)
(1.0205 -0.053781 9.44759e-23)
(1.0236 -0.0403374 -4.70926e-23)
(1.06111 -0.0338358 1.38229e-22)
(0.999349 -0.000827759 -1.83862e-24)
(0.995721 -0.00396461 4.30008e-24)
(1.09749 0.121948 -2.03908e-22)
(0.999777 -0.00086748 1.19666e-24)
(1.02756 0.0153223 -8.91759e-22)
(1.00045 -0.000764976 7.24919e-25)
(0.99991 -6.65483e-05 -3.90275e-25)
(0.996027 -0.00318805 3.27159e-23)
(1.00046 -0.000219833 2.43433e-24)
(0.999911 -0.000149202 -1.39369e-24)
(1.00054 -0.00023593 -5.49648e-24)
(1.00015 -0.0003108 8.62653e-25)
(0.999985 -8.46609e-06 -3.99514e-26)
(0.995555 -0.00400491 6.57473e-25)
(1.02558 0.017007 -7.10353e-23)
(1.00788 -0.00216161 7.06795e-24)
(0.999842 -0.000127365 -6.09611e-24)
(0.999854 -0.000116447 -3.01721e-24)
(1.00044 -0.0018639 -3.08572e-24)
(0.980031 -0.036391 3.96129e-22)
(1.01632 0.00651905 -3.61281e-22)
(0.993872 -0.00174439 -6.07653e-23)
(1.0005 -0.00466029 -1.89546e-24)
(1.00029 -0.0223642 6.81041e-23)
(1.01862 0.018896 5.18534e-22)
(0.999699 -0.00595131 5.73383e-24)
(1.11227 0.0759777 4.1156e-22)
(0.998829 -0.00660875 -2.85877e-24)
(1.01618 -0.0129601 3.29403e-22)
(0.956549 -0.02354 -3.08325e-22)
(0.994279 -0.0038584 -4.66418e-23)
(0.999211 -0.000306711 -7.37954e-25)
(1.20708 0.191622 1.39834e-22)
(0.999804 -0.000154284 8.36085e-25)
(0.995104 -0.00455307 -1.00335e-22)
(1.00554 -0.00880425 -4.14989e-24)
(0.992943 -0.00208468 3.15493e-23)
(1.00758 -0.00150879 8.06287e-23)
(1.01769 -0.0189344 1.45651e-22)
(1.00186 -0.00926375 3.53803e-24)
(1.00011 -0.000131123 -1.23629e-25)
(1.01894 0.00804667 5.96246e-22)
(1.00086 0.00890878 -6.09954e-22)
(1.12975 0.20735 -2.51266e-22)
(0.984115 -0.0223102 2.34263e-23)
(1.00032 -0.00197121 4.9663e-24)
(1.00534 -0.00954067 -7.66976e-23)
(0.962666 -0.0217865 4.08963e-23)
(0.999912 -6.16895e-05 -3.29297e-25)
(1.00013 -0.000158223 -5.60853e-25)
(1.00084 -0.00475947 -5.95356e-24)
(1.03584 0.0447287 2.20748e-21)
(0.995988 -0.00701087 -2.04442e-23)
(0.992234 -0.00239646 -9.3961e-23)
(1.00004 -2.06707e-06 5.31104e-26)
(0.993323 -0.0046379 -1.91542e-23)
(0.996599 -0.00138503 -4.93979e-24)
(0.994597 -0.0052093 -1.88132e-23)
(0.998999 -0.00555485 1.38841e-23)
(1.00514 0.0235428 -1.43113e-21)
(1.0051 0.0897609 2.96326e-22)
(0.999238 -6.97457e-05 1.21116e-23)
(1.00134 -0.00143149 1.30908e-23)
(0.998865 -0.00577136 -7.03895e-24)
(0.994747 -0.0101204 -3.57671e-23)
(0.997583 -0.00792502 1.72998e-23)
(0.990272 -0.00377257 1.37091e-22)
(0.989949 -0.0185858 1.52022e-22)
(1.00702 -0.015116 -4.31797e-23)
(0.992035 -0.00384068 7.92119e-23)
(1.00003 -1.86824e-06 -4.04817e-25)
(0.99981 -8.48442e-06 -4.79416e-25)
(1.00743 -0.00266947 5.11256e-23)
(1.007 0.0375431 1.74974e-21)
(0.991421 -0.00269747 -3.77065e-23)
(0.996455 -0.00106039 -1.22563e-23)
(0.990812 -0.00133463 3.01623e-23)
(1.00426 -0.00522718 2.17532e-23)
(0.982695 -0.0225418 -4.90403e-23)
(1.00351 -0.00193776 2.599e-23)
(1.00435 -0.004711 5.72424e-23)
(0.998303 -0.000790233 2.78308e-23)
(0.996677 -0.0154503 8.91648e-23)
(1.00697 -0.00828324 -5.39067e-24)
(0.968054 -0.0118534 3.28378e-22)
(0.999946 -0.000368956 -9.1736e-25)
(0.97728 -0.018357 -9.04629e-25)
(0.99586 -0.0159592 -3.94883e-23)
(1.00121 -0.00482932 1.29513e-23)
(0.999232 -0.00267871 -7.75343e-24)
(1.00101 -0.00151003 -1.66068e-23)
(0.992225 -0.00559585 1.07688e-22)
(0.994994 -0.0164472 4.85963e-23)
(0.975677 -0.0145364 6.31522e-23)
(1.00135 -0.00192572 -9.57506e-24)
(0.963036 -0.0207765 5.30959e-23)
(0.990119 -0.00320634 1.74121e-22)
(0.996262 -0.00113357 -2.95446e-23)
(0.991031 -0.00139724 1.68793e-22)
(1.00281 -0.112823 6.29417e-22)
(1.0251 0.0380623 1.74983e-21)
(1.01976 -0.102231 2.40636e-22)
(1.11075 0.129424 -3.1085e-21)
(0.989954 -0.00155882 -2.18312e-22)
(1.00158 -0.0048769 1.33758e-23)
(1.00214 -0.00370485 2.66366e-23)
(0.994077 -0.0169305 -1.25967e-22)
(1.02467 0.0158345 -1.72353e-21)
(1.01739 0.130972 3.34767e-21)
(1.01819 -0.0513551 9.57692e-23)
(0.990857 -0.00468905 -2.34515e-24)
(0.989004 -0.00181273 2.04923e-22)
(0.998307 -0.000677413 -3.5766e-24)
(0.997058 -0.00300067 4.01722e-23)
(1.01779 0.00485718 -4.81604e-22)
(0.981793 -0.0189944 1.38461e-22)
(0.990077 -0.0168441 8.68632e-24)
(1.00704 -0.00750948 1.39741e-22)
(0.989215 -0.00366519 -1.76727e-22)
(1.00067 -0.00538365 -2.82236e-24)
(0.999213 -0.00597223 -1.80275e-24)
(0.977887 0.0865365 2.21205e-21)
(0.999591 -0.00616956 -3.13589e-24)
(0.978689 -0.00733851 6.81987e-23)
(0.998345 -0.00825302 8.33571e-24)
(0.988925 -0.00594346 8.41669e-23)
(1.00254 -0.00896595 3.23765e-24)
(1.0051 -0.0102989 1.66797e-23)
(0.991018 -0.0066978 -4.84736e-23)
(0.983124 -0.0168387 2.13274e-22)
(0.999865 -0.000106325 3.47573e-25)
(0.982458 -0.017886 1.49678e-22)
(1.00198 -0.00263162 -5.07503e-24)
(1.02923 -0.0114757 -4.04778e-22)
(0.998643 -0.00483827 -7.78269e-24)
(1.01845 0.0122942 1.88149e-21)
(1.00012 -0.000144009 -2.03205e-25)
(0.999854 -0.000150736 9.46965e-26)
(0.99758 -0.00105593 -1.34835e-23)
(1.01187 -0.0345206 -5.08762e-23)
(1.00009 -0.00040344 2.33187e-25)
(1.02305 -0.0295514 5.44239e-23)
(0.998175 -0.00569365 -8.16768e-24)
(1.01703 -0.012003 -1.60895e-22)
(1.00236 -0.00114016 7.72248e-24)
(0.976363 -0.0202832 7.79067e-23)
(0.98821 -0.00416265 8.27777e-23)
(0.989706 -0.00815043 2.22166e-22)
(1.00227 -0.00254842 9.23168e-24)
(1.01691 -0.0068036 1.05941e-22)
(1.03708 0.0231425 4.90097e-22)
(1.01903 0.0135061 -2.67197e-22)
(0.972669 -0.00921183 -1.97456e-22)
(0.993124 -0.0173916 -1.52765e-22)
(1.00007 -3.3474e-05 8.33872e-25)
(0.990228 -0.0174618 -3.38791e-23)
(1.00256 -0.000978234 -2.8354e-23)
(0.988558 -0.00602399 5.7929e-23)
(0.993282 -0.0131834 1.7016e-23)
(1.00187 -0.0432549 8.43437e-24)
(0.989636 -0.00581511 -7.29621e-23)
(1.09136 -0.0184333 1.60115e-22)
(0.985907 -0.0469647 -2.73657e-22)
(1.04756 0.0192056 -1.15363e-21)
(1.01111 -0.0293465 2.77564e-23)
(0.999995 -0.00635388 -2.05531e-25)
(1.03254 0.0566953 1.35618e-21)
(0.986404 -0.00496074 1.24243e-22)
(0.991753 -0.00040618 -1.72858e-22)
(0.987271 -0.011129 -7.86654e-23)
(1.00042 -0.00650541 -7.67919e-25)
(0.956146 -0.0246052 -1.97967e-22)
(0.988225 -0.00980945 3.26281e-23)
(1.00574 -0.0450842 2.33837e-22)
(0.975476 -0.00641004 1.2913e-22)
(1.00085 -0.00663189 -5.15785e-24)
(1.00143 -0.011714 -2.48819e-24)
(1.01698 -0.00312499 -2.04149e-22)
(0.998505 -0.00798079 -1.21279e-23)
(1.01036 0.0215595 -7.52637e-22)
(1.00641 -0.00107775 1.10674e-22)
(0.968269 -0.00895431 5.81569e-22)
(0.969374 -0.0125456 3.16717e-22)
(1.08226 -0.0175295 -9.8643e-23)
(0.983095 -0.000418001 -1.13044e-23)
(1.00276 -0.00079121 -7.1904e-24)
(1.01782 -0.0109879 3.31898e-22)
(1.00208 -0.00314004 -2.34971e-23)
(1.0067 -0.0139108 -1.5928e-23)
(1.0175 -0.00587598 2.63901e-22)
(0.985142 -0.00554864 -4.06638e-23)
(1.00019 -0.00134751 3.02097e-24)
(1.01582 -0.00673368 -1.62763e-22)
(0.982071 -0.00758792 -1.07624e-22)
(1.00829 -0.0446488 -3.39212e-23)
(0.999959 -0.000217153 3.81436e-26)
(1.01645 -0.00400151 4.5725e-22)
(1.03554 0.026166 -8.01591e-22)
(1.04211 0.0316238 4.6917e-22)
(1.07565 -0.0676928 4.24689e-23)
(1.00296 -0.00057429 -3.53496e-24)
(1.00286 -0.00460041 -2.90023e-23)
(0.999172 -0.000216757 -4.34775e-24)
(1.01805 -0.00493002 -2.13198e-22)
(1.01629 -0.00773062 2.2131e-22)
(1.01854 -0.00992427 3.04705e-22)
(1.00013 -0.000678078 -4.73965e-25)
(0.983834 -0.00625122 2.24894e-23)
(1.00464 -0.00243563 -1.66668e-23)
(1.03315 -0.00880354 2.22703e-22)
(0.999867 -9.85106e-05 6.18882e-25)
(0.999941 -0.000323053 1.30066e-24)
(1.00001 -2.73488e-05 -7.99552e-27)
(0.967648 -0.0110837 -2.52959e-22)
(1.00193 -0.000290724 4.16409e-23)
(1.02589 -0.0011525 -6.87864e-22)
(1.02612 0.00574632 -3.66923e-22)
(1.00265 -0.00588418 -2.37683e-23)
(0.999902 -0.00049435 2.52781e-24)
(0.99889 -0.000333502 1.76084e-23)
(1.03329 -0.00144637 -5.28809e-22)
(0.988167 -0.00711619 -1.71081e-23)
(1.06303 0.153882 2.80336e-22)
(0.997587 -0.000904249 -4.78526e-23)
(1.19288 0.199338 6.36402e-23)
(1.01697 -0.0049306 -2.74368e-22)
(1.00048 -0.000690545 6.75745e-24)
(1.0723 -0.0553253 -4.26837e-23)
(1.00084 -0.0499862 -1.14568e-22)
(0.988103 -0.0478749 -1.38128e-22)
(0.995511 -0.000277933 -4.87133e-23)
(0.99816 -0.0499355 1.70921e-22)
(0.998052 -0.00182065 -1.07512e-23)
(1.02972 0.00972182 3.3066e-22)
(0.992111 -0.0178289 1.4174e-22)
(1.12545 0.0977173 5.36636e-22)
(1.01678 -0.00877291 6.12838e-23)
(0.995498 -0.0496885 1.73028e-22)
(0.973015 -0.00147844 2.45816e-22)
(0.999957 -0.000237082 -7.7491e-25)
(1.01636 -0.0180523 1.21815e-22)
(1.00016 -0.000214894 3.8991e-25)
(0.997991 -0.00697392 -4.47946e-23)
(0.949443 -0.030636 -4.7893e-23)
(0.987235 -0.0204488 4.29871e-22)
(0.978456 -0.00046327 -6.44212e-23)
(1.11676 0.103589 1.11482e-22)
(1.00064 -0.00036379 -7.89908e-24)
(1.00898 0.0915978 -4.14955e-21)
(0.999965 -0.000369531 -2.9202e-25)
(0.970447 -0.0351295 -5.27476e-23)
(1.00171 -0.00268494 8.18129e-24)
(1.02017 -0.169441 -9.46418e-25)
(1.00036 -0.00212233 -4.35692e-24)
(0.987771 -0.00231652 -1.60393e-23)
(0.996595 -0.00747761 -9.29633e-24)
(1.01988 0.0054583 9.54227e-22)
(0.992879 -0.0493116 1.13838e-22)
(0.975257 -0.023392 1.0554e-22)
(1.00855 -0.0097026 2.56962e-23)
(0.997045 -0.000532797 -1.68726e-23)
(0.994042 -0.00475688 9.07898e-23)
(0.983794 -0.000375498 -5.14159e-23)
(0.9904 -0.048754 -8.6251e-24)
(1.04689 0.0132357 -1.78541e-22)
(0.997626 -0.000619702 2.00767e-23)
(1.01073 -0.00967388 2.63508e-22)
(1.00413 -0.00417462 -1.0981e-23)
(1.0079 -0.00835179 -1.8219e-23)
(1.0107 -0.00873849 -2.89532e-23)
(0.999754 -0.00039064 -1.02392e-25)
(1.01727 -0.00985489 -6.28389e-23)
(1.10661 0.00834406 -7.76967e-22)
(1.01741 0.00678462 1.417e-21)
(0.998668 -0.000499562 1.69671e-23)
(1.00982 -0.0373248 9.97968e-23)
(0.988575 -0.00116368 2.42938e-22)
(1.00065 -0.0147722 -8.44437e-24)
(0.998939 -0.0077398 9.87256e-24)
(0.952746 -0.00811575 -4.50242e-22)
(0.991206 -0.0219397 -2.51962e-22)
(0.999805 -2.24298e-05 3.2746e-25)
(0.981894 -0.0299228 1.92863e-22)
(1.00137 -0.00811177 2.12399e-24)
(1.0048 -0.0110757 -2.93366e-23)
(0.983851 -0.0459484 -1.44785e-22)
(1.00943 -0.00198148 -1.26866e-23)
(1.00364 -0.0061853 -6.00808e-23)
(1.00017 -0.000235543 6.60699e-25)
(0.998317 -0.000569511 -2.76964e-23)
(0.997197 -0.009947 -3.6758e-23)
(0.994069 -0.0129011 8.98452e-23)
(1.00352 -0.00454424 1.84266e-23)
(0.997703 -0.00284303 3.44108e-23)
(1.00029 -0.000136432 2.12871e-24)
(0.999874 -5.47323e-05 -1.94962e-24)
(0.957446 -0.0275169 2.52152e-22)
(1.18163 0.0343503 3.0237e-22)
(1.2562 0.0300674 -5.09286e-23)
(1.00605 -0.00300578 7.56718e-24)
(1.02523 -0.00108442 3.21197e-22)
(0.987904 -0.00679615 -1.59272e-22)
(0.997655 -0.000487384 2.53334e-23)
(0.997397 -0.00817334 -1.09722e-23)
(0.988207 -0.0305443 4.01681e-23)
(1.00032 -0.000148943 3.03927e-25)
(1.00244 -0.00646724 2.01397e-23)
(0.997603 -0.000758543 3.76296e-23)
(1.02504 -0.000570854 1.22376e-22)
(1.01912 -0.0197391 -7.8202e-23)
(1.00252 -0.00931929 9.1061e-24)
(1.02858 -0.081178 -1.60166e-22)
(0.997427 -0.00326094 -1.4372e-24)
(1.00827 -0.0137061 7.44946e-23)
(0.999113 -0.000792416 -1.00155e-24)
(1.00019 -0.000258587 -1.14672e-24)
(1.01019 -0.0107224 1.09526e-22)
(1.0044 -0.00705337 -5.61913e-24)
(0.999496 -0.000711831 -2.3416e-25)
(0.999853 -0.000554357 5.62713e-25)
(1.00731 -0.0040766 -2.73873e-23)
(1.02462 -0.000926932 7.3615e-22)
(1.00196 -0.00790588 -1.51965e-24)
(0.999898 -0.000433821 -2.08899e-24)
(1.05592 -0.00668424 -5.36598e-22)
(0.972397 -0.000620081 -3.03863e-22)
(0.986585 -0.0123616 4.92275e-23)
(1.00419 0.0293117 -3.46489e-22)
(1.01749 -0.0241104 -5.96816e-23)
(0.999986 -2.3604e-06 -9.96009e-26)
(0.999801 -0.000286943 -9.06544e-25)
(1.00898 -0.0263263 -2.4739e-24)
(0.998544 -0.00554972 4.09952e-24)
(0.997122 -0.00372388 -5.04986e-23)
(0.999997 -0.000418145 6.20697e-26)
(1.00022 -0.000284088 2.56167e-24)
(1.00035 -0.000162413 4.85594e-24)
(1.01314 -0.0363364 1.23575e-23)
(1.01289 -0.0349455 1.57812e-23)
(0.999511 -0.00193912 2.84423e-24)
(0.979174 -0.00591877 3.82888e-23)
(1.02273 0.00346295 -6.71292e-22)
(1.12406 -0.00465736 2.93179e-22)
(0.998988 -0.00294619 4.43328e-24)
(0.993734 -0.0132872 -1.75928e-22)
(0.942244 -0.0237708 1.39038e-22)
(0.979284 -0.0270868 -1.27299e-22)
(0.990163 -0.0211419 -1.85524e-22)
(1.00012 -0.000107222 -7.80881e-25)
(0.999607 -0.00235345 -2.88723e-24)
(1.00064 -0.00248625 -1.11187e-23)
(0.975431 -0.0215333 -3.34538e-22)
(0.983429 -0.0142211 -9.08112e-23)
(0.999929 -0.000496988 -1.34608e-24)
(0.999332 -0.00111964 -5.61695e-24)
(0.999987 -2.12586e-06 5.6908e-26)
(1.03443 -0.023953 -2.5307e-22)
(1.00002 -6.13977e-06 -1.53562e-25)
(1.26737 -0.0937523 -5.09256e-22)
(1.0178 0.0763363 -1.20942e-21)
(0.985496 -0.0220406 1.7193e-22)
(0.998587 -0.000630726 2.09573e-23)
(1.088 0.124065 9.53597e-22)
(1.14206 0.128052 -1.18006e-21)
(1.03456 -0.0467478 7.24542e-24)
(0.994541 -0.0129818 -5.44778e-23)
(0.999815 -0.000278384 1.11193e-24)
(1.02085 -0.0371974 2.41903e-23)
(1.03104 -0.00838294 7.35487e-23)
(1.0002 -0.00128647 -5.4601e-25)
(1.00532 -0.00799686 -1.00009e-22)
(0.99995 -0.000309489 -1.39947e-24)
(0.999912 -2.00631e-06 5.30465e-25)
(0.955299 -0.0010126 3.31782e-23)
(1.00436 -0.00552685 -1.59246e-23)
(0.999986 -2.06566e-06 -3.38469e-26)
(0.999267 -0.00248894 1.97232e-24)
(1.00983 -0.0175368 -3.4262e-23)
(1.17826 0.204596 -1.7572e-21)
(1.02861 -0.0437244 7.93668e-24)
(0.999263 -0.0197011 -4.38308e-23)
(0.983043 -0.0182128 2.33065e-22)
(1.00013 -0.000456649 7.29654e-26)
(1.00845 0.0271067 -6.69462e-22)
(1.01495 -0.01265 -1.90202e-22)
(1.00007 -2.97567e-05 -9.85696e-25)
(0.999983 -1.93603e-06 -1.31556e-25)
(1.0004 -0.000179291 1.61239e-24)
(0.999194 -0.00288069 -1.11056e-23)
(1.00945 -0.00483608 -1.70691e-22)
(1.00015 -0.00114483 3.5304e-24)
(1.03933 0.0152051 1.11222e-23)
(0.973105 0.12574 1.3961e-21)
(0.999059 -0.000664708 -1.62377e-23)
(1.0001 -0.000382227 -1.29328e-25)
(0.992364 -0.022638 -9.42718e-23)
(1.02035 0.0136083 2.68006e-22)
(0.96892 -0.0118545 -5.99484e-22)
(0.999825 -0.000625023 6.40011e-25)
(0.998795 -0.00198919 -1.30559e-23)
(1.0952 0.0119305 -1.36348e-21)
(0.996077 -0.00555651 3.27457e-23)
(0.999068 -0.0205131 2.57745e-23)
(1.0121 -0.0150079 1.73225e-23)
(1.06088 0.125781 7.17022e-23)
(0.98074 -0.0118518 2.46427e-22)
(1.00116 -0.0019554 -1.33708e-23)
(0.999793 -0.000906973 -9.03462e-25)
(0.999848 -0.000134318 -2.81323e-24)
(0.99708 -0.0113112 -1.02322e-22)
(1.01 -0.0278096 1.9332e-23)
(0.993215 -0.000868246 -1.94178e-23)
(0.999801 -0.000302929 1.25272e-24)
(1.00216 -0.0160287 1.59402e-23)
(0.999988 -5.93501e-06 1.74658e-26)
(1.00445 -0.0119011 -5.03056e-24)
(0.998549 -0.00215716 -1.64118e-23)
(0.961082 -0.00991248 9.31097e-23)
(1.04586 0.00207209 4.90076e-22)
(1.02082 -0.0242853 -6.1888e-25)
(1.0175 0.0636072 3.64118e-21)
(0.981774 -0.0448572 -1.80482e-22)
(1.00002 -6.47726e-06 1.43505e-25)
(0.999852 -6.6593e-05 1.01771e-24)
(1.06009 0.0690755 -1.69646e-21)
(0.996356 -0.0039549 4.99465e-23)
(1.04248 -0.00420055 -1.89679e-22)
(0.974474 -0.0228456 3.3386e-23)
(1.00405 -0.0127409 -1.45083e-24)
(1.10343 0.16417 -1.76966e-21)
(1.00011 -0.000417902 -6.5832e-25)
(1.19037 -0.0380214 5.72708e-25)
(1.00044 -0.000196489 -2.14646e-24)
(1.10239 0.057567 7.21825e-22)
(1.0544 0.0303096 1.14759e-21)
(0.985012 -0.0028966 1.10384e-22)
(1.00005 -0.000102002 5.19422e-25)
(1.02668 0.0256729 7.12448e-22)
(0.983665 -0.00325591 -4.21003e-23)
(1.00365 -0.0135466 1.75425e-23)
(0.999977 -2.50549e-05 2.022e-26)
(1.06518 0.105041 -3.11488e-22)
(0.999529 -0.000768131 -6.00537e-24)
(1.00061 -0.000988908 -2.64207e-24)
(0.969487 -0.0358055 -6.11934e-22)
(0.999643 -7.26268e-06 8.02657e-24)
(0.999576 0.116799 2.1465e-21)
(0.998839 -0.00853715 3.42966e-23)
(0.996457 -0.00508751 2.53203e-23)
(1.02341 0.00347179 3.3694e-22)
(1.04057 0.0593709 2.62508e-21)
(1.00996 -0.0162464 4.3884e-24)
(1.00834 -0.0192925 -2.89847e-23)
(1.05249 0.124458 1.05489e-21)
(0.99261 -0.0121296 -4.1803e-23)
(0.993006 -0.00833016 2.01823e-23)
(1.00575 -0.0199117 -2.18248e-25)
(1.13105 -0.185331 6.49958e-22)
(0.995027 -0.0598066 9.60868e-23)
(1.01198 -0.00553425 -1.32239e-22)
(0.991053 -0.0182264 -1.24697e-22)
(1.00324 -0.0143477 3.96559e-24)
(0.997889 -0.007957 2.57025e-25)
(1.00316 -0.0186807 2.10617e-23)
(1.05121 0.00532824 -2.99192e-23)
(1.00419 -0.0036831 -7.38075e-25)
(0.995575 -0.00280753 -1.61779e-23)
(1.00016 -0.00014265 -1.10169e-24)
(1.00049 -0.00021539 -4.31169e-24)
(1.00003 -6.26547e-05 -1.35507e-25)
(0.999101 -0.000841815 2.14274e-23)
(1.00382 -0.0056726 2.51081e-24)
(0.997078 -0.0203619 2.32009e-23)
(0.967769 -0.00962201 -6.58341e-22)
(1.02458 -0.0260487 2.43053e-22)
(1.02507 0.00214735 -5.82851e-22)
(1.00269 -0.0152016 1.37802e-24)
(0.971207 -0.0322996 -4.42802e-22)
(0.999875 -0.000125612 1.63443e-24)
(0.973473 -0.0242218 9.00242e-24)
(0.995773 -0.0219029 4.61565e-23)
(0.984245 -0.0608205 4.91788e-22)
(0.973379 -0.0261979 -6.80081e-23)
(1.00223 -0.0118019 -4.2396e-24)
(1.01201 -0.00225757 6.95649e-23)
(0.999967 -1.57699e-05 1.44033e-25)
(0.999495 -0.000749981 -1.03531e-24)
(1.03403 -0.0434091 6.44414e-24)
(1.00771 -0.00294427 -7.04264e-23)
(0.999279 -0.0155803 1.20042e-22)
(1.04936 0.0549651 8.02118e-22)
(0.999967 -4.47819e-05 -6.4718e-25)
(1.08538 0.0466213 -1.03667e-21)
(1.0375 0.00992046 3.29355e-22)
(1.00233 -0.000884838 1.00039e-23)
(0.995932 -0.00453983 -4.2018e-23)
(1.00819 -0.00243687 -7.62519e-23)
(0.983477 -0.0228486 -3.82262e-24)
(0.984076 -0.0139493 -1.04083e-22)
(1.02263 -0.0252012 1.69846e-22)
(1.06945 0.126333 -1.63704e-21)
(1.02322 0.0159747 1.09486e-21)
(1.14162 -0.138807 -6.49976e-22)
(0.996414 -0.0401365 -1.51873e-22)
(1.02773 -0.00477655 3.91913e-22)
(0.976457 -0.0194238 8.08125e-23)
(0.992111 -0.00135476 -7.95761e-23)
(0.99209 0.0777686 1.96915e-21)
(0.998821 -0.00798312 -3.69941e-23)
(0.991996 -0.0596184 1.77563e-22)
(1.02243 0.0147915 -3.04161e-22)
(1.00641 -0.0149304 1.68935e-23)
(0.952563 -0.0219017 3.22353e-22)
(1.00157 -0.000244641 2.56612e-23)
(1.00245 -0.00259004 3.71409e-24)
(1.00143 -0.000746361 -6.56523e-24)
(1.01406 -0.0117179 -3.58065e-22)
(1.00062 -0.000221287 -5.08783e-24)
(1.00075 -0.00117456 -9.84746e-24)
(1.03586 0.0404628 -2.59726e-21)
(0.976036 -0.0276239 -6.05359e-23)
(0.997081 -0.0127934 5.38158e-24)
(1.03498 -0.0089773 2.72701e-22)
(0.968962 -0.0104341 -4.27666e-22)
(1.02103 0.0148111 8.55198e-22)
(0.987042 -0.0126912 -1.90327e-22)
(1.07647 -0.160728 1.57e-21)
(0.988046 -0.00643619 1.64411e-22)
(1.16401 0.207851 -1.75138e-21)
(1.0198 -0.00919525 -3.20262e-22)
(0.99607 -0.021192 -5.34831e-23)
(1.03922 -0.00677078 4.20743e-23)
(0.999911 -0.000417072 3.45107e-24)
(0.953398 -0.00111858 1.09195e-22)
(1.00791 -0.00756681 -6.8716e-23)
(1.00453 -0.0208421 -2.13184e-23)
(0.999388 -0.000807553 -4.55553e-24)
(1.00288 -0.00876797 -5.10372e-24)
(1.05153 -0.0435751 5.15226e-24)
(1.00445 -0.00499058 -6.552e-23)
(0.99813 -0.0158708 -2.61849e-23)
(1.041 -0.0454113 2.8097e-24)
(1.01482 -0.00603766 8.77267e-23)
(1.07877 0.125528 1.07863e-21)
(1.00641 -0.00899933 -1.17927e-22)
(0.999115 -0.0161215 -1.27868e-23)
(1.02363 -0.0173088 -2.36865e-23)
(1.00722 -0.0034049 4.82408e-23)
(1.00009 -0.0163764 1.63566e-24)
(0.999828 -9.63162e-05 9.47785e-25)
(1.00716 -0.00870293 7.9899e-23)
(1.11635 -0.141127 4.19408e-22)
(1.02878 0.00906244 1.35339e-21)
(0.988803 -0.018923 -9.52159e-23)
(1.0011 -0.0165616 1.73748e-23)
(1.00215 -0.0166816 -3.85571e-24)
(1.03451 -0.00273007 -5.26631e-23)
(0.999708 -0.00100894 -4.05899e-24)
(1.00528 0.0527121 2.66174e-22)
(1.0191 -0.00426431 -3.1193e-22)
(0.999976 -2.54051e-05 1.64772e-25)
(0.999803 -0.000837945 6.93011e-25)
(1.00849 -0.0142721 -6.96114e-23)
(0.982621 -0.0157806 3.43325e-22)
(0.983258 -0.028458 1.44368e-22)
(1.04732 0.0257638 1.0914e-22)
(1.01917 -0.0233023 -3.26995e-23)
(1.00155 -0.00248047 2.38099e-24)
(1.00794 -0.00176195 -2.73206e-23)
(0.971093 -0.0225295 -2.8925e-22)
(1.03779 0.0176839 2.9597e-23)
(1.04479 0.0109166 6.93864e-22)
(1.10041 -0.0489644 3.80337e-23)
(1.00214 -0.00104608 -3.7171e-23)
(1.00123 -0.00177575 1.28242e-23)
(0.993797 -0.00275742 2.98936e-24)
(0.999924 -0.000116896 1.05519e-24)
(1.02241 -0.0184938 5.10591e-23)
(0.998905 -0.00015635 -9.43118e-24)
(1.09276 0.0811007 -9.14353e-22)
(1.03353 -0.00241686 5.98644e-22)
(1.05984 0.0378087 8.88332e-22)
(1.00347 -0.00529307 2.51613e-23)
(0.999365 -2.36011e-05 -1.80392e-24)
(1.07217 0.0443493 -1.67306e-21)
(1.06052 -0.0433791 4.6273e-23)
(0.999528 -0.000694208 3.54476e-24)
(0.982353 -0.00803346 8.26175e-23)
(1.03686 -0.0104997 3.45271e-22)
(1.01105 -0.0101173 -1.9036e-22)
(0.998115 -0.00610191 8.71479e-25)
(0.999646 0.0305063 3.06948e-21)
(1.00566 -0.00922569 -8.96235e-23)
(0.980924 -0.0571566 1.56627e-22)
(1.05918 0.0138653 1.32155e-23)
(1.00045 -0.000718571 -1.02283e-24)
(0.971591 -0.0261271 2.25592e-22)
(0.998502 -0.00594094 -1.587e-23)
(0.999658 -0.00113096 1.05382e-25)
(0.994685 -0.0169585 -2.49514e-23)
(0.995573 -0.0164558 1.37817e-23)
(1.02475 -0.0160463 2.52756e-22)
(1 -1.49063e-05 -4.09075e-27)
(1.00176 -0.00317766 -3.85502e-24)
(0.996418 -0.015948 -8.01962e-23)
(0.97581 -0.0476457 -6.16093e-23)
(1.00023 -0.00139471 -2.90638e-24)
(0.975066 -0.00687408 -4.2734e-23)
(1.00545 -0.00998942 -4.8187e-23)
(1.05702 0.00377322 -2.90893e-22)
(0.999651 -0.03331 -1.13533e-22)
(1.02668 -0.0132694 -1.50036e-23)
(0.993739 -0.0174449 1.32123e-24)
(0.968989 -0.0508816 2.32838e-22)
(1.02581 -0.0146833 2.94561e-23)
(1.00117 -0.00147864 -1.45206e-23)
(1.14245 0.0453896 -2.6757e-22)
(0.999989 -5.72489e-06 -1.06141e-25)
(1.02424 -0.0787705 1.79495e-22)
(0.982326 -0.007129 5.98887e-23)
(1.0011 -0.00154278 1.17164e-23)
(0.963055 -0.0236344 6.39177e-22)
(0.998518 -0.00100335 -1.47066e-24)
(1.01968 0.00702667 -1.74048e-21)
(1.02219 -0.0037601 -2.48496e-22)
(1.02342 -0.00857462 6.3979e-22)
(1.01012 -0.0182959 1.89014e-23)
(1.01612 -0.0489806 4.78374e-23)
(1.00781 -0.0120538 6.82278e-23)
(1.03107 0.00431048 -7.09929e-22)
(1.00013 -0.00422824 1.44004e-24)
(1.02593 0.000158555 1.06392e-21)
(0.993064 -0.0992949 -3.96111e-22)
(1.13406 -0.159119 6.58124e-22)
(0.987992 -0.00208572 -1.2652e-22)
(1.0036 -0.00408725 -1.62999e-23)
(0.961081 -0.036173 3.21062e-22)
(1.03828 -0.00181051 -3.22602e-22)
(1.00175 -0.000888137 -2.30021e-23)
(1.03984 -0.00335206 -1.59258e-23)
(1.00005 -3.55461e-05 -3.75337e-25)
(0.985834 -0.0947018 4.25632e-22)
(1.06539 0.013491 -1.25615e-21)
(1.00061 -0.000327802 2.68106e-25)
(1.00724 -0.0079099 -1.63143e-23)
(0.999835 -0.000654284 -1.2793e-24)
(0.985895 -0.0603457 3.71852e-22)
(1.0086 -0.0353798 2.30061e-23)
(1.23774 0.051477 6.51494e-24)
(1.00291 0.00879303 7.81545e-22)
(0.999993 -5.24547e-05 -4.63426e-27)
(1.0005 -0.00083342 -1.00163e-23)
(0.999948 -0.000338263 -2.76275e-25)
(1.02586 -0.00158565 6.61741e-22)
(1.02394 -0.00311575 4.22894e-22)
(1.03855 0.00446366 -1.34073e-21)
(0.997229 -0.0154231 2.7718e-23)
(1.08185 -0.0562521 -1.51472e-23)
(0.998594 -0.000141322 5.1263e-24)
(0.949388 -0.035737 -3.14705e-22)
(0.992753 -0.0179086 5.95192e-23)
(1.03497 -0.000964854 3.90008e-22)
(1.02698 0.012998 1.20474e-21)
(0.971259 -0.00552996 7.50743e-23)
(1.00466 0.0612419 8.09783e-22)
(0.998674 -0.000581064 -2.54498e-23)
(1.02983 -0.00409844 6.62495e-22)
(0.999826 -0.00736473 1.17123e-23)
(0.992615 -0.0190291 1.00359e-22)
(1.02695 -0.00688851 3.38736e-23)
(0.981931 -0.100038 7.29377e-22)
(1.01147 -0.0163504 -2.57551e-23)
(1.02136 -0.0232903 6.76075e-23)
(1.1929 0.010657 -1.3787e-23)
(1.00519 -0.0107653 -1.26558e-23)
(1.00752 -0.00229172 1.89733e-23)
(0.999904 -2.24387e-06 6.7965e-25)
(0.997853 -0.00135341 -5.95101e-24)
(0.997844 -0.00849783 -4.18783e-23)
(1.01766 0.0202654 -1.74973e-21)
(1.01254 -0.0155938 1.79583e-23)
(1.00181 -0.00242287 3.82285e-26)
(1.14968 0.210175 4.13347e-23)
(0.992486 -0.00274664 9.02184e-23)
(1.01543 -0.0180171 -1.43556e-23)
(1.01354 -0.0147971 -4.99007e-23)
(0.992711 -0.0220139 -1.5384e-23)
(1.04232 0.0149648 -7.78425e-22)
(1.12972 0.0311181 6.89743e-22)
(0.998592 -0.00518099 1.13768e-23)
(1.0313 -0.000265246 1.49896e-22)
(0.977754 -0.02748 1.30611e-22)
(1.13698 0.0432429 3.57883e-22)
(1.01454 -0.0140205 8.26383e-23)
(0.987619 -0.0192253 9.47927e-23)
(1.00068 -0.00036096 9.89333e-24)
(1.10476 0.0166708 3.63398e-22)
(1.07717 -0.0344477 -1.88797e-22)
(0.897844 0.0155286 1.88062e-21)
(1.0458 0.0224573 -1.09284e-22)
(0.997823 -0.00278231 9.76947e-24)
(0.989927 -0.0043097 -7.33506e-23)
(0.969428 -0.0520471 -1.89083e-22)
(1.006 0.0311585 6.93624e-23)
(1.00095 -0.0142835 -1.21062e-23)
(0.969838 -0.0466838 -5.97008e-23)
(1.00726 -0.0204553 -8.94661e-24)
(0.997323 -0.00872936 -2.51357e-23)
(0.991706 -0.0183427 1.31951e-22)
(0.999978 -7.85053e-06 -1.34487e-25)
(0.996735 -0.00119187 -3.02842e-23)
(1.00192 -0.00471439 -2.56085e-23)
(1.00588 -0.0206886 7.429e-25)
(0.981908 -0.0471145 4.18615e-22)
(1.00005 -9.84637e-05 -7.33317e-25)
(1.00326 -0.0110104 1.17136e-23)
(1.00859 -0.0200578 5.30826e-23)
(0.999543 -0.00201634 7.57997e-24)
(1.04134 -0.0319827 -2.32817e-23)
(0.99756 -0.00318432 -1.08031e-23)
(1.00019 -0.000449473 -1.80566e-25)
(1 -1.72518e-05 -3.63015e-27)
(1.04387 0.0632349 1.15784e-21)
(0.997693 -0.00297832 -1.775e-23)
(1.00029 -0.0013775 -1.61747e-24)
(0.981469 -0.0317251 -4.87718e-23)
(1.03205 -0.0128709 1.68328e-22)
(0.999318 -3.02678e-05 3.66855e-24)
(0.999992 -5.80987e-05 1.39246e-26)
(0.999968 -6.7615e-05 5.94328e-26)
(0.990615 -0.0187297 2.89562e-23)
(1.04343 0.000858403 5.80882e-22)
(1.01547 -0.013165 -4.64244e-23)
(1.02573 -0.0226405 5.58938e-23)
(1.00013 -0.000117895 9.6617e-25)
(0.999844 -0.000602136 1.37632e-24)
(1.04276 0.00223932 -3.43907e-22)
(0.997265 -0.00364454 -1.28688e-23)
(0.997415 -0.00341697 1.09674e-23)
(1.01924 0.0332482 -1.41096e-21)
(1.18086 -0.0708957 -7.38382e-22)
(0.98049 -0.00656291 -8.04158e-23)
(0.993848 -0.0044128 1.78465e-23)
(1.01542 -0.00340737 -5.17103e-23)
(0.997803 -0.0202081 -9.53332e-23)
(0.993839 -0.0213856 -1.78302e-22)
(1.033 -0.00984375 -4.6142e-22)
(1.02594 0.00909012 2.34014e-22)
(1.0006 -0.000258818 4.15759e-25)
(0.999301 -0.000892292 -8.28257e-24)
(1.01099 -0.00915029 -2.95951e-23)
(0.983138 -0.00751653 1.58306e-22)
(1.01917 -0.0214554 1.20024e-22)
(0.975141 -0.027173 -2.69666e-22)
(0.998184 0.0801043 -3.82233e-21)
(1.00488 -0.0115798 5.60807e-23)
(0.999988 -8.48463e-06 2.40094e-26)
(1.04059 0.00347955 2.37165e-22)
(1.00451 -0.012415 -2.65701e-23)
(0.997116 -0.00388787 6.299e-23)
(0.97183 -0.0492176 -5.08927e-22)
(1.00409 -0.0132449 2.3446e-24)
(1.02597 -0.0128772 6.62178e-23)
(1.00864 -0.0132488 -4.20951e-23)
(0.998539 -0.00111799 -3.87835e-24)
(0.980104 -0.00423408 1.02678e-23)
(1.01817 -0.0181473 -1.98661e-22)
(0.996812 -0.0210818 2.8829e-23)
(0.999823 -8.86274e-05 3.41261e-24)
(0.932661 -0.00439749 -8.11609e-22)
(0.999162 -0.000527521 8.65368e-25)
(1.01071 0.0172365 -1.15872e-21)
(1 -5.0344e-06 2.02871e-27)
(0.978822 -0.00635741 -9.55585e-23)
(0.998494 -0.00106669 -8.63522e-24)
(1.00369 -0.0140622 -1.90046e-23)
(1.02776 0.00949533 -7.45771e-22)
(1.04193 -0.0412163 1.91231e-23)
(0.981135 -0.0336031 2.62516e-22)
(1.19416 0.0305327 2.49288e-23)
(0.994516 -0.00596957 -2.99106e-23)
(1.00263 -0.00151408 -1.91518e-23)
(1.00325 -0.014914 -1.93883e-24)
(0.996794 -0.00110157 5.51605e-24)
(0.999906 -0.000454147 1.73112e-24)
(0.999795 -9.47458e-06 2.64865e-24)
(1.08753 -0.0287111 6.04948e-23)
(0.986646 -0.0118413 -7.33322e-23)
(1.07099 0.0376603 -8.389e-22)
(1.20345 -0.00946649 -4.96144e-22)
(1.05867 0.0253471 1.4729e-22)
(0.967657 -0.00537015 -7.8599e-23)
(0.947712 0.0995693 -3.61211e-21)
(1.001 -0.00709041 1.70076e-24)
(1.0054 -0.0538517 1.54546e-23)
(0.984444 -0.0239447 -6.09565e-23)
(0.991456 -0.000876781 3.40533e-23)
(0.999304 -0.00259217 3.62854e-24)
(1.02402 -0.0154089 -4.01136e-22)
(0.999827 -8.072e-05 -5.362e-24)
(0.999986 -1.63771e-06 3.85165e-26)
(1.01115 0.0188049 9.56493e-22)
(1.00188 -0.00290179 -2.96383e-23)
(0.962111 -0.0355459 -9.71806e-23)
(1.0401 -0.0046634 8.20288e-22)
(1.0006 -0.000926762 -1.10234e-24)
(0.987958 -0.020655 -3.38647e-23)
(1.03657 -0.0034344 -8.71696e-22)
(1.02694 0.00879538 3.39523e-22)
(0.998378 -0.000576128 8.02497e-24)
(0.999204 -0.00103785 -2.27014e-24)
(1.01646 -0.00341331 2.74812e-22)
(0.999965 -7.06611e-05 3.30504e-26)
(1.00504 -0.000700087 -4.51138e-23)
(1.01633 -0.0122717 3.08971e-22)
(1.00016 -9.48803e-06 -7.07824e-25)
(1.01633 -0.00709828 9.13102e-25)
(1.0026 -0.00123681 1.77434e-24)
(1.01695 -0.00618662 2.04981e-22)
(1.01683 -0.00809986 1.15078e-22)
(1.00266 -0.015769 -1.05517e-24)
(1.10411 -0.0805734 2.08055e-22)
(0.996284 -0.00542948 -4.51434e-23)
(0.993667 -0.0185357 -6.28435e-24)
(1.01697 -0.00251138 3.93033e-22)
(1.01726 -0.0658069 -2.32627e-22)
(1.00001 -1.33342e-05 -2.89846e-26)
(0.997937 -0.00744988 3.33238e-23)
(0.98317 -0.0161882 -5.44071e-23)
(1.01697 -0.00431835 -2.63145e-22)
(1.00656 0.0354442 -1.29834e-21)
(0.999631 -0.00202668 4.79613e-25)
(1.01713 -0.0113158 3.10495e-23)
(1.00067 -0.00101451 -7.5326e-24)
(1.01751 -0.00525547 1.42797e-22)
(1.01788 -0.0102688 3.00318e-23)
(1.00023 -0.00224752 -3.12703e-24)
(1.04069 -0.0378806 -7.5262e-23)
(1.03471 -0.00374591 -2.68056e-22)
(1.00106 -0.00135969 1.30551e-23)
(1.0042 -0.0060707 -3.82842e-23)
(1.04359 -0.0426125 -9.31007e-24)
(0.992651 0.117806 3.21001e-22)
(0.999058 -0.000694327 1.54032e-23)
(1.06848 -0.154856 -1.23325e-21)
(1.09611 -0.0842113 -4.98148e-23)
(0.999097 -0.00120676 -5.82171e-24)
(1.00015 -8.98559e-06 -7.09879e-25)
(0.984058 -0.00334159 -1.53831e-22)
(1.13086 0.080474 7.91725e-22)
(1.05274 0.00928103 -4.15052e-22)
(1.00855 -0.00383166 -3.58162e-23)
(1.04437 -0.0362776 -9.60241e-23)
(0.996095 -0.00580088 -1.61616e-23)
(1.02179 -0.0177835 -2.81424e-23)
(1.01975 0.0778738 -9.2616e-22)
(1.11232 -0.0769001 -1.13173e-22)
(1.01732 -0.00916208 -4.17241e-22)
(0.992574 -0.00258783 -8.78398e-23)
(1.0364 0.0107273 -5.95126e-22)
(0.980769 -0.035518 -2.25814e-22)
(1.04621 -0.0332538 4.98722e-23)
(1.01028 -0.0169562 -1.93914e-23)
(0.997812 -0.00143702 -2.75523e-23)
(1.00074 -0.00110481 1.41781e-24)
(1.06244 -0.00887433 -3.55269e-22)
(1.02527 0.00836819 -3.22933e-22)
(1.02202 0.0357066 1.82594e-21)
(1.07264 0.0114153 2.54678e-23)
(0.999196 -0.000523986 -5.13215e-24)
(0.996639 -0.00099121 -1.36849e-23)
(1.11873 0.14723 -1.22879e-21)
(0.982476 -0.0527147 -4.06577e-22)
(0.983366 -0.00356899 9.58018e-23)
(0.984729 -0.00316736 -2.41418e-24)
(0.999674 -0.00118354 -1.29611e-24)
(0.994297 -0.00581436 -5.15499e-23)
(1.00885 -0.0187067 -3.0141e-25)
(1.02822 -0.0104901 3.57193e-22)
(0.994402 -0.00310389 -9.28686e-23)
(1.00017 -0.000462049 1.96299e-25)
(0.98626 -0.0222813 2.08219e-22)
(1.01776 -0.0174048 1.19343e-22)
(1.02075 -0.0223524 -4.95191e-23)
(1.20438 0.00425794 -4.67142e-24)
(1.12346 0.14298 -2.16241e-21)
(0.988931 -0.0215601 9.6108e-23)
(0.999418 -0.00260768 5.87662e-24)
(1.01155 -0.0609672 1.86944e-23)
(1.0265 0.0361864 7.1346e-22)
(0.998239 -0.00137228 9.30666e-24)
(1.04809 -0.0196853 -4.0002e-22)
(1.01354 -0.0107266 -1.32803e-22)
(1.00054 -0.000852046 -9.8813e-25)
(1.05688 -0.0142566 6.27385e-22)
(0.999574 -1.90185e-05 -3.41318e-24)
(0.976783 -0.00340003 -1.02091e-22)
(0.979389 -0.0426085 -7.12169e-22)
(1.0007 -0.00202149 -3.26927e-24)
(1.08062 -0.113843 1.87366e-22)
(0.992702 -0.0125916 -4.60524e-23)
(0.999953 -4.00668e-05 4.97212e-26)
(1.06979 0.00219473 6.52494e-22)
(0.999301 -0.0023118 -6.35709e-24)
(1.03762 -0.0354142 7.26589e-23)
(1.10006 -0.00842979 -2.21927e-23)
(1.02842 0.00309651 1.07397e-21)
(0.999842 0.0140869 -5.95625e-21)
(1.08625 -0.0135162 6.90856e-22)
(1.00002 -1.81505e-06 6.82182e-28)
(0.999142 -0.000563485 -4.83237e-24)
(0.999785 -0.000146599 8.36898e-25)
(0.99086 -0.0176181 6.4674e-23)
(1.07349 0.0269421 1.73207e-21)
(0.970354 -0.0340192 4.55735e-22)
(0.964011 0.0693261 -4.85295e-21)
(0.999796 -0.000145034 1.05109e-24)
(0.988481 -0.0201274 -3.43072e-23)
(1.00228 -0.00102929 1.9516e-23)
(1.02556 -0.000957335 3.54088e-23)
(1.0423 -0.0215321 -2.19243e-22)
(1.03736 -0.0444344 -7.3624e-24)
(0.9566 -0.0266385 -1.69014e-22)
(0.999743 -3.40083e-05 -5.49344e-26)
(0.998764 -0.0405604 1.04527e-22)
(1.0544 -0.0317357 1.89569e-22)
(1.00082 -0.00120284 6.35749e-24)
(0.993492 -0.0220128 1.37212e-22)
(0.999299 -0.00093975 7.88572e-24)
(1.00001 -0.000120027 -2.89383e-26)
(1.03509 0.0100117 -5.51452e-23)
(1.00006 -9.83642e-05 -4.90351e-27)
(0.989444 -0.00463799 -1.50459e-22)
(0.994588 -0.0213607 -1.56911e-24)
(1.03232 -0.0738664 -4.81423e-22)
(1.00621 -0.0315371 6.46857e-23)
(0.999251 -0.00101488 1.27352e-24)
(0.998479 -0.0289176 1.77456e-22)
(1.00355 -0.0334735 -1.7123e-23)
(1.03791 -0.00499296 -3.77464e-22)
(1.0369 -0.0223472 4.27222e-22)
(1.00511 -0.000690104 9.99838e-23)
(0.972509 -0.0256589 -3.33819e-22)
(1.05977 -0.0380121 -9.49109e-23)
(1.0348 -0.0101315 -3.16403e-22)
(1.03729 0.00438512 -8.8358e-22)
(1.01578 -0.0247957 -5.65661e-23)
(1.00187 0.0265522 7.6e-22)
(0.998634 -0.00210241 1.35422e-23)
(1.0044 -0.0316752 -2.33593e-23)
(0.999823 -0.000361488 -2.36674e-24)
(1.00138 -0.000672894 3.07905e-24)
(1.0002 0.0146331 -5.20714e-21)
(0.998708 -0.00096484 1.74147e-23)
(0.999944 -2.69569e-05 -4.82017e-25)
(0.994901 -0.0264583 -7.33343e-23)
(0.999095 -0.000629409 -6.25165e-24)
(0.999571 -0.00186578 1.79792e-24)
(1.15248 0.13461 -2.3002e-22)
(1.00168 -0.00252887 -1.93443e-23)
(1.02839 0.14589 1.51973e-21)
(0.986629 -0.005705 -1.51543e-23)
(1.10719 0.0040072 5.72713e-23)
(1.00063 -0.00029088 -2.29956e-24)
(0.979745 -0.0383863 1.96343e-22)
(1.01824 -0.0165987 -3.01521e-22)
(0.959984 -0.0355741 -1.53389e-22)
(0.989208 -0.0305411 8.47158e-23)
(1.00114 -0.00184461 4.65374e-24)
(0.976924 -0.00395775 -1.9627e-22)
(1.02396 -0.069961 1.51373e-22)
(1.00001 -9.41708e-06 -9.30103e-26)
(0.989683 -0.0197654 1.7506e-22)
(1.00006 -0.000135946 -2.06922e-26)
(1.02498 -0.000862104 1.84659e-22)
(0.987129 -0.0614771 3.38851e-22)
(1.06228 -0.0388987 -6.79697e-23)
(1.16351 0.0949717 1.11104e-21)
(0.999199 -0.0010958 1.05683e-23)
(1.03921 0.00340632 6.49519e-22)
(1.00158 -0.0334398 -7.23731e-23)
(0.999147 -0.00118411 4.70177e-24)
(0.999691 -0.00109354 -1.17224e-24)
(0.996613 -0.00118364 5.11425e-23)
(0.976851 -0.0270669 3.63602e-22)
(1.04349 0.012154 -2.27564e-22)
(1.04696 -0.0780381 1.13349e-22)
(1.00106 -0.00681237 5.23787e-24)
(1.00288 -0.00228536 2.85591e-23)
(0.999072 -0.00285483 -2.75909e-25)
(1.05692 -0.0347343 1.4351e-23)
(1.01614 0.145276 3.01844e-22)
(1.04799 -0.0363762 2.45057e-22)
(1.00267 0.00628603 -9.52912e-22)
(1.00137 -0.0777789 1.77661e-22)
(0.982608 -0.0319347 -4.98206e-23)
(1.00707 -0.0027709 -2.45444e-23)
(0.983989 -0.0253697 -8.40609e-23)
(1.03288 0.125485 -2.03668e-21)
(1.17567 0.162543 -4.92223e-22)
(1.02486 -0.000412709 -2.64458e-23)
(0.998939 -0.00316551 -7.5722e-24)
(1.02125 -0.0213815 -1.17727e-22)
(1.02822 0.0126364 -1.98577e-22)
(0.987458 -0.0185147 -2.60539e-22)
(1.00661 -0.0031997 1.48794e-22)
(1.04569 0.0163489 -1.00869e-22)
(1.01453 -0.0160574 1.36233e-22)
(1.13366 -0.00792436 1.63112e-22)
(1.00149 -0.000187712 -7.92504e-24)
(0.997951 -0.00135119 3.12243e-23)
(1.03558 -0.021745 -2.845e-22)
(0.999991 -0.000385122 -1.90017e-25)
(0.999987 -8.57644e-06 6.43927e-26)
(1.00153 -0.000733654 -4.2474e-24)
(1.11907 0.0457447 1.39591e-21)
(0.998959 -0.00195633 -9.06532e-24)
(1.01711 0.0327289 1.08062e-21)
(1.00161 -0.00867316 -1.70646e-24)
(0.986856 -0.0217107 -1.95771e-22)
(0.999214 -0.0068479 1.38866e-23)
(1.08333 -0.023087 1.52783e-22)
(0.970702 -0.0255318 2.63793e-23)
(1.03316 -0.0246092 2.03113e-22)
(0.99909 -0.00127554 3.84608e-24)
(0.999942 -6.39365e-05 -2.59931e-25)
(0.996472 -0.000357763 1.76514e-23)
(0.999345 -0.000871009 7.78175e-24)
(1.00161 -0.0323264 1.30554e-22)
(1.02806 0.00746798 -2.57554e-22)
(1.01783 0.00189336 1.84679e-22)
(1.02065 -0.02052 5.72307e-23)
(1.03859 -0.00299381 1.73625e-22)
(0.999832 -3.79109e-05 -2.13546e-25)
(1.11658 -0.151516 1.90219e-22)
(0.99657 -0.00107812 8.91673e-25)
(0.953026 0.0136851 -7.37366e-21)
(0.994074 -0.00197082 3.53072e-23)
(0.97367 -0.0452785 6.22675e-23)
(1.10798 0.108519 -9.57199e-23)
(0.999861 -7.92409e-05 -3.03613e-24)
(0.995736 -0.00278378 1.7449e-23)
(1.01033 -0.0233763 -3.73663e-24)
(0.999991 -2.68744e-06 -7.64443e-27)
(1.00255 -0.0306939 5.88187e-23)
(0.998094 -0.021601 3.51087e-23)
(0.999018 -0.00882596 -2.15456e-23)
(1.00005 -0.00102522 -1.58885e-25)
(0.985695 -0.000573275 -1.13648e-22)
(1.07818 -0.0210506 -3.21162e-22)
(1.00463 0.0175697 -1.11138e-21)
(1.01591 -0.0822739 -2.42073e-22)
(1.00049 -0.000784661 -1.90838e-25)
(1.01024 -0.00207779 1.50145e-22)
(1.0006 -0.027183 -1.73571e-22)
(1.16458 -0.0212577 -7.06395e-23)
(1.00531 0.0358732 1.73809e-22)
(0.955538 0.0270475 3.73109e-21)
(1.00257 -0.0340544 -3.78617e-23)
(1.00643 -0.0734781 6.45307e-23)
(1.01492 -0.131241 8.53686e-22)
(1.04992 -0.149311 5.79241e-22)
(1.01319 0.0845079 -1.23075e-21)
(0.997441 -0.0014712 1.23728e-23)
(0.972269 -0.0338417 -5.97687e-22)
(1.00091 -0.118399 -1.80838e-22)
(0.999987 -0.000269722 -1.01528e-25)
(1.00243 -0.00620738 -1.69002e-23)
(0.999976 -5.19544e-07 2.83852e-25)
(1.00799 -0.00432619 4.34344e-23)
(0.995552 -0.0174547 -3.029e-23)
(1.03701 0.0469435 1.27144e-21)
(1.01494 0.0129268 7.15823e-22)
(0.993573 -0.109408 7.67957e-22)
(0.980067 -0.0518853 -2.64437e-22)
(0.998836 -0.00364998 8.89845e-24)
(0.935596 -0.00396319 5.56045e-23)
(1.00007 -0.000149586 -6.96244e-25)
(1.00127 -0.00212075 2.27415e-23)
(1.00559 0.0381057 -6.8666e-22)
(0.985045 -0.0233853 -1.08531e-22)
(1.08593 -0.0614808 1.34881e-22)
(0.999986 -1.59428e-05 6.8854e-26)
(0.996313 0.0786904 4.5059e-21)
(1.08129 -0.163481 -8.83659e-22)
(1.04582 0.0203244 2.59865e-22)
(1.0584 -0.0790287 2.1612e-23)
(1.00783 -0.0091926 1.57742e-23)
(0.999999 -1.84941e-05 2.01328e-27)
(0.992289 -0.0167701 -2.28651e-22)
(1.00169 -0.000798961 1.30725e-23)
(1.06375 -0.0345835 -7.21849e-23)
(1.03408 -0.00835576 -7.27715e-22)
(1.0584 -0.124226 -2.51632e-22)
(1.02865 -0.0908123 -1.93835e-22)
(0.992351 -0.00319189 -8.61473e-23)
(1.00208 -0.0476191 -3.10269e-23)
(1.00002 -2.23948e-06 -3.44951e-25)
(1.04359 -0.119742 -4.29931e-22)
(0.97001 -0.00589898 -7.08585e-23)
(1.0002 -0.00406661 6.0338e-26)
(1.05073 -0.0989871 7.60209e-23)
(1.02283 0.0377298 -2.92817e-21)
(1.01498 0.0578682 -1.46722e-21)
(1.09947 0.00714849 8.10374e-23)
(1.03112 -0.114048 3.19145e-22)
(1.0007 -0.0018147 1.85902e-24)
(1.03787 -0.0198728 2.3391e-23)
(1.10977 0.210786 4.53696e-22)
(0.982713 -0.015113 -3.40445e-22)
(0.998672 -0.00537747 -9.85936e-24)
(1.00011 -2.55548e-05 -8.7908e-26)
(0.97953 -0.0533132 4.53877e-24)
(1.02004 -0.10779 -1.11363e-22)
(1.05246 -0.0588012 -5.18368e-23)
(0.989083 -0.0592482 5.55128e-23)
(0.990857 -0.0569905 5.87342e-22)
(1.10303 -0.125261 -4.08287e-22)
(1.07503 -0.127076 6.60043e-22)
(1.0098 -0.0257663 -2.07348e-24)
(0.996612 -0.00645965 7.59972e-23)
(1.02559 -0.0656713 -3.75006e-22)
(1.00001 -0.000113743 2.85543e-27)
(0.98972 -0.0560468 -7.08461e-25)
(1.02108 -0.0195865 1.27873e-24)
(1.01425 -0.0917083 -3.03758e-22)
(0.998569 -0.00123742 2.14144e-23)
(1.0253 -0.00046489 -2.63256e-22)
(1.01144 -0.100913 -4.38905e-22)
(1.07074 -0.0782531 -2.5474e-22)
(0.972927 -0.000289256 2.13447e-24)
(0.955393 -0.0379416 4.13234e-22)
(0.977189 -0.0191131 -8.55261e-23)
(1.12333 -0.120168 -1.31813e-21)
(0.964894 -0.00607379 2.33408e-22)
(1.00024 -0.00437238 -8.58205e-25)
(1.14347 -0.1105 -9.09679e-22)
(1.02708 -0.0211466 -5.40838e-23)
(1.00969 -0.0248034 1.50822e-24)
(1.0081 -0.0258686 -3.28455e-24)
(1.07218 -0.1008 -3.89981e-22)
(1.00207 -0.000946633 -6.34993e-24)
(0.994332 -0.00555446 2.03331e-23)
(1.00375 -0.00537931 -1.09002e-23)
(1.00418 -0.0933678 2.66992e-22)
(0.979525 -0.0404739 -5.11194e-22)
(1.0413 0.00225472 -6.74577e-22)
(0.999139 -8.82921e-05 1.86012e-24)
(0.999637 -0.000231352 -5.58354e-24)
(1.00142 -0.0077808 1.66709e-24)
(1.09113 -0.072256 -8.31646e-25)
(0.998371 -0.00724468 4.02699e-23)
(1.01475 -0.0245442 2.06848e-23)
(0.979168 -0.00178421 1.12529e-22)
(0.996751 -0.00100668 1.14631e-23)
(0.98478 -0.00721888 -1.20683e-22)
(1.00153 -0.0023367 -8.79413e-24)
(1.00968 -0.0347025 -3.62881e-23)
(0.9981 -0.00118344 -2.57192e-23)
(0.970203 -0.0478365 2.50952e-23)
(0.983552 -0.0931268 -3.28877e-22)
(1.04118 -0.0568998 -7.15667e-23)
(0.997136 -0.00167365 -1.39421e-23)
(1.10158 0.144743 7.13988e-22)
(1.01447 -0.04838 -1.74459e-23)
(1.02417 0.145983 -4.18436e-21)
(1.09225 0.0453247 -5.05359e-22)
(0.97719 -0.00301052 1.44051e-22)
(0.994633 -0.0180209 1.11122e-22)
(0.985136 -0.057594 -1.91664e-22)
(1.00187 -0.000873986 -4.22892e-24)
(1.13601 0.0378321 -5.10324e-22)
(1.08673 -0.0225471 -3.53153e-23)
(0.975579 -0.0523458 -1.42981e-22)
(1.00026 -0.00214757 1.98579e-24)
(1.09769 0.154716 4.63249e-22)
(1.00875 0.0519541 1.91634e-21)
(1 -2.62242e-06 4.7081e-28)
(1.17111 -0.0874583 2.32861e-22)
(1.00725 -0.0263894 -1.63931e-23)
(1.00001 -1.28755e-05 -4.94072e-26)
(1.01667 0.0109005 -5.52964e-22)
(1.14097 -0.160945 -6.10909e-22)
(1.00658 -0.0428973 -1.91905e-22)
(0.968778 -0.059486 -4.41602e-22)
(0.988078 -0.13221 -7.74111e-22)
(0.996241 -0.143252 -1.45182e-21)
(1.05119 -0.185074 3.19728e-22)
(1.06116 -0.18954 -1.13138e-23)
(1.03326 -0.175085 -1.11528e-22)
(0.968443 -0.0778207 7.82886e-22)
(0.984648 -0.126868 4.44981e-22)
(1.08245 -0.196144 -9.18772e-22)
(0.968913 -0.0568711 4.04351e-22)
(1.04219 -0.180104 -1.47558e-22)
(1.24174 0.166779 -9.75331e-23)
(1.25267 0.155026 -1.68009e-22)
(1.3085 0.0561845 1.03153e-21)
(1.31258 0.0347359 1.01072e-21)
(1.26346 0.140699 -3.25253e-22)
(1.31199 -0.0283841 -1.09024e-22)
(1.07116 -0.192966 8.83826e-22)
(0.978949 -0.116607 -3.06252e-22)
(1.27691 0.125725 7.54138e-24)
(1.31421 -0.0074655 9.78756e-22)
(0.98162 -0.121684 -9.20702e-22)
(1.31456 0.0135597 -1.12494e-21)
(1.30809 -0.0494126 -4.16059e-22)
(1.27576 -0.120302 1.04932e-21)
(1.24964 -0.149434 2.58912e-22)
(0.991871 -0.137628 9.84172e-22)
(0.968928 -0.0813677 7.36942e-22)
(1.26297 -0.135549 -1.66964e-21)
(1.23583 -0.161401 -1.16064e-21)
(1.17559 -0.192379 1.36931e-21)
(1.1599 -0.196894 1.79245e-21)
(1.09309 0.00607984 6.16594e-22)
(0.998552 -0.00130839 -1.62779e-23)
(0.988435 -0.00636857 -1.17876e-22)
(1.00092 -0.00138939 -1.16871e-23)
(0.987225 -0.046801 3.20983e-22)
(1.07998 -0.015124 8.29624e-23)
(1.03909 0.0119831 1.0508e-22)
(0.993973 -0.00429321 1.23371e-23)
(1.01812 -0.0232306 -6.6333e-23)
(1 -0.000366727 -1.48819e-25)
(1.16652 -0.151147 1.95298e-22)
(1.00051 -0.00141431 3.15276e-24)
(0.998314 -0.0860843 9.86052e-22)
(1.09759 0.20981 -1.7366e-22)
(1.00029 -0.00231781 1.15857e-24)
(0.979642 -0.0811295 5.35604e-23)
(1.10407 -0.0942581 4.69135e-22)
(1.04227 -0.0391392 6.76401e-23)
(0.999367 -0.00223636 6.91575e-24)
(0.999535 -0.0492204 5.24939e-23)
(1.03828 -0.0148315 1.58661e-24)
(0.996906 -0.0490766 -2.46284e-22)
(0.99994 -9.38182e-05 7.23551e-25)
(0.994308 -0.0487655 -5.86759e-23)
(0.999977 -1.95762e-06 -2.38558e-25)
(1.00215 -0.0491503 1.29754e-22)
(1.1818 -0.165956 5.43083e-22)
(1.00396 -0.0051623 -4.06317e-23)
(1.04059 0.0126405 9.89679e-23)
(1.03442 -0.0225213 -1.11077e-22)
(1.20625 -0.0167028 5.00969e-22)
(1.055 -0.0873526 4.45653e-22)
(1.01037 -0.0243377 1.81999e-23)
(0.971635 -0.0366918 4.7098e-22)
(0.980466 -0.0544827 -7.33964e-23)
(0.956159 0.0641483 -1.91377e-21)
(0.997173 -0.0145004 9.05663e-23)
(1.19376 -0.0559946 6.21865e-22)
(1.01061 -0.00790125 -7.56616e-23)
(1.00465 -0.014026 7.98067e-24)
(0.991781 -0.0483602 -5.36873e-23)
(0.999861 -1.22709e-05 -9.73639e-25)
(0.989471 -0.0476445 1.62903e-22)
(0.998498 -0.00748821 -2.58173e-24)
(1.00933 -0.0102156 -4.86932e-23)
(0.968118 -0.0103793 5.05164e-22)
(0.989195 -0.0203001 -1.93123e-22)
(0.999894 -0.000104138 6.42113e-25)
(0.985148 -0.0458671 2.93385e-22)
(1.01715 0.0121267 7.69478e-23)
(1.11157 -0.0593935 -1.37414e-23)
(0.993426 -0.0100153 4.87574e-23)
(0.993728 -0.0790744 7.31576e-23)
(0.997538 -0.00146539 4.28402e-23)
(0.998905 -0.00538622 -9.05053e-24)
(0.958584 -0.0031877 4.99176e-23)
(1.12979 -0.0818623 1.79061e-22)
(1.00001 -1.68889e-05 -3.04152e-26)
(1.07249 0.0477776 2.1947e-21)
(1.00675 -0.0443112 3.45136e-23)
(1 -3.70529e-06 -3.38205e-27)
(1.01996 0.0352848 -3.11485e-21)
(0.993738 -0.00976421 -4.31581e-23)
(1.20296 -0.127861 -4.19789e-22)
(0.997394 -0.0015634 -5.51293e-23)
(1.0716 -0.113647 8.7844e-23)
(1.00786 -0.00361417 -5.59843e-23)
(0.998989 -0.00825961 -7.23916e-24)
(1.00044 -0.00434017 2.1369e-24)
(0.999981 -2.77759e-06 1.12189e-25)
(1.00175 -0.0030062 2.67195e-23)
(0.998066 -0.00126295 -1.24216e-23)
(1.04188 0.011579 -2.11665e-22)
(1 -0.000400431 3.006e-26)
(0.988707 -0.0121904 7.73755e-23)
(0.997909 -0.0107275 2.5192e-23)
(0.977697 -0.074295 2.35683e-22)
(1.02848 0.0113846 -1.0441e-21)
(1.06432 -0.0370706 5.26386e-23)
(1.00002 -3.38116e-07 -3.85559e-26)
(0.998057 -0.00771282 -5.1577e-23)
(0.917791 0.00295094 2.72065e-21)
(1.0071 -0.0236029 -1.04229e-23)
(1.00253 -0.00138216 -7.2896e-24)
(1.0009 -0.00130746 5.63148e-24)
(0.998608 -0.00135749 -1.54159e-23)
(0.998159 -0.0178397 6.49051e-23)
(0.987611 -0.0219304 7.81992e-23)
(1.22459 -0.106326 2.18085e-22)
(1.04547 0.0144812 -7.89196e-22)
(0.995343 -0.0030001 -3.46302e-23)
(0.954732 -0.00366161 -2.53887e-23)
(0.997245 -0.00166621 -2.65668e-23)
(0.993502 -0.0104329 -3.20553e-23)
(1.03467 0.0549523 7.61563e-22)
(1.00306 0.0486453 -2.56267e-21)
(1.00079 -0.0454455 9.87331e-23)
(0.946351 -0.0273003 -5.25511e-22)
(1.08595 0.208176 1.36549e-21)
(1.08544 -0.0167167 4.99289e-23)
(0.99576 -0.00718899 5.41317e-23)
(1.0163 0.0131875 -1.61752e-21)
(1.01597 0.00555812 1.23191e-21)
(1.24291 -0.0789801 1.75519e-22)
(0.999861 -6.0437e-06 1.93355e-25)
(1.12932 -0.0403387 1.87996e-23)
(1.00195 -0.00343469 -4.84538e-24)
(1.189 0.036279 4.29917e-24)
(1.0111 -0.00216183 1.7823e-22)
(1.05818 0.0333202 -1.30053e-21)
(1.0004 -0.000580055 -1.61394e-25)
(1.00002 -3.13196e-05 7.45967e-26)
(1.00006 -9.60474e-06 5.8342e-25)
(1.28755 0.108863 -9.31564e-23)
(1.12646 0.0765238 -2.55955e-21)
(1.10534 0.103509 7.2846e-22)
(1.0587 0.0724006 2.371e-21)
(0.966274 -0.0117543 7.56117e-22)
(1.05416 -0.0296627 2.21621e-23)
(1.00321 -0.0453328 -8.08391e-23)
(1.03548 0.00554597 -1.25975e-22)
(1.19615 0.0174245 -9.42264e-23)
(1.00949 -0.0138541 -5.19715e-23)
(1.00938 -0.0149656 -4.64407e-23)
(1 -2.56309e-06 -3.64198e-30)
(0.998263 -0.00591178 3.18997e-23)
(0.976413 -0.0681019 -3.42832e-22)
(1.2288 0.175437 -1.20846e-22)
(0.994562 -0.0472294 5.20747e-22)
(0.999936 -0.000102999 5.5329e-25)
(0.99497 -0.00135955 -3.30578e-23)
(1.09451 -0.0529406 -2.79945e-23)
(0.960139 0.0233591 -3.84881e-21)
(1.02981 0.00748599 9.31807e-22)
(1.00126 -0.0105821 -2.94823e-24)
(0.999789 -0.000366834 -2.12183e-24)
(0.999928 -2.9127e-05 1.63495e-25)
(1.00279 -0.00149993 1.84839e-23)
(0.981587 -0.0376164 2.18504e-22)
(0.99709 -0.00177397 -1.23955e-23)
(1.00401 -0.00661175 -1.31599e-23)
(0.998178 -0.00117415 -1.54779e-23)
(1.02141 -0.0386653 -1.39644e-23)
(0.99898 -0.00329452 -7.39088e-25)
(1.1404 -0.0142396 3.74582e-23)
(1.01556 0.0941803 1.31428e-22)
(0.994457 -0.00155415 -1.33214e-22)
(1.00001 -2.70381e-05 4.76979e-27)
(1.00123 -0.00728536 -2.36737e-24)
(1.02015 -0.00415422 -5.44174e-23)
(0.941456 0.0151212 -3.67441e-21)
(1.00016 -0.00016471 1.13007e-24)
(1.26133 0.0222827 -1.40006e-22)
(0.99989 -4.95313e-05 -1.47195e-24)
(1.00001 -1.75153e-05 -3.50651e-28)
(0.790103 0.025644 -1.008e-23)
(1.1183 0.0408456 -7.74418e-22)
(0.999834 -2.50112e-05 5.83807e-25)
(0.979034 -0.00688091 1.85582e-23)
(0.998051 -0.00652457 -4.66226e-23)
(1.05653 -0.0324846 2.86855e-23)
(1.07539 0.204717 -2.96467e-22)
(0.989045 -0.0693253 -3.37595e-22)
(1.00138 -0.00216384 -1.41499e-23)
(1.25984 -0.0292859 4.23798e-22)
(0.998934 -0.00353539 6.68572e-24)
(0.963414 -0.0226701 -3.46986e-22)
(0.975974 -0.00022901 3.49645e-22)
(0.999074 -0.0042455 -1.72268e-23)
(1.00257 -0.0317821 -5.75129e-23)
(1.10251 0.00976124 8.90124e-22)
(1.05926 -0.0355273 1.26692e-22)
(1.12678 0.0395478 3.52741e-22)
(1.01234 0.114417 -6.01053e-22)
(0.963918 -0.0455584 -1.82286e-22)
(0.99836 -0.00772517 2.11558e-23)
(0.999992 -6.31572e-06 -4.14454e-26)
(0.986777 -0.0632174 -4.5667e-22)
(1.07343 0.193417 -1.07203e-21)
(0.99998 -8.70813e-06 -6.28872e-26)
(0.999818 -4.2273e-05 -2.76367e-25)
(0.992602 -0.00223866 -4.63595e-23)
(1.0001 -0.000687314 4.28172e-25)
(1.00995 0.0199315 6.49721e-23)
(1.00012 -0.029123 1.36963e-23)
(0.983245 -0.0212366 6.87965e-23)
(1.09399 0.0382998 -3.32826e-22)
(1.00762 -0.00875173 -1.02521e-22)
(0.998718 -0.00502132 6.05079e-25)
(1.00418 -0.0148813 9.02347e-24)
(1.02727 -0.0199905 -1.79368e-22)
(0.999242 -0.00119187 7.19161e-24)
(1.0391 -0.00546234 -4.69654e-22)
(1.00484 -0.0075203 2.5719e-23)
(0.808213 0.0216688 -1.00249e-20)
(1.24411 0.0448768 1.77439e-23)
(0.993156 -0.0127241 8.55073e-23)
(1.18048 0.155311 -1.42413e-21)
(0.952079 -0.0230473 -5.0672e-22)
(1.00011 -0.000963159 1.28579e-24)
(0.991859 -0.00256697 -3.43722e-23)
(1.03541 -0.0203156 3.98659e-22)
(0.99434 -0.025869 -5.11177e-23)
(0.987201 -0.0116166 7.57501e-23)
(0.999999 -1.14321e-05 -9.08707e-27)
(0.99745 -0.00564002 -3.79262e-24)
(1.00697 -0.00312573 -7.7263e-23)
(1.00125 0.0865663 -2.29927e-21)
(1.04987 -0.0249329 -8.5337e-23)
(1.03417 0.00104079 2.33795e-22)
(0.995113 -0.0013869 1.97648e-23)
(1.00428 0.0677237 -2.00541e-21)
(1.0126 -0.0268742 4.86869e-24)
(1.02462 -0.00192163 7.53526e-22)
(0.969326 -0.0335153 -3.59593e-22)
(1.08922 0.0481032 1.03052e-21)
(0.999849 -6.00757e-05 -1.07628e-24)
(1.07401 0.0973396 -3.2727e-22)
(0.995895 -0.00105564 -6.36071e-23)
(1.02534 -0.170045 5.77158e-22)
(0.999955 -8.00002e-06 -8.03045e-25)
(1.00861 -0.00797146 -2.09918e-22)
(0.993486 -0.0588994 6.00738e-23)
(0.999999 -1.74985e-05 1.47551e-26)
(1.00451 -0.107383 -8.50912e-22)
(1.00951 0.024419 6.11644e-22)
(0.994561 -0.00186148 -2.29887e-23)
(0.998891 -0.00379036 -2.6825e-23)
(1.01139 0.0763915 1.57832e-21)
(0.953849 -0.0113141 4.37506e-22)
(0.989881 -0.0331689 -1.19633e-22)
(1.06523 0.200971 1.47224e-21)
(0.999859 -0.000178697 -4.50933e-25)
(1.05793 -0.0256523 3.32976e-22)
(0.999842 -0.00121836 -2.40551e-24)
(1.001 -0.00141826 6.63934e-24)
(0.970091 -0.0193818 3.21833e-22)
(0.994599 -0.00158217 2.54129e-23)
(1.00154 -0.00154997 -4.40901e-23)
(1.01684 -0.0173398 -1.02327e-22)
(0.995269 -0.00318375 3.69306e-23)
(1.01913 -0.0151636 6.5093e-23)
(0.980455 -0.0374685 -4.46651e-22)
(1.00006 -0.000144557 1.15913e-25)
(1.00265 -0.00608863 9.5775e-24)
(0.983082 -0.0596003 -4.73623e-22)
(1.00029 0.0065733 2.78144e-21)
(0.994859 -0.00148171 5.58455e-23)
(0.95439 -0.0304052 -1.42e-22)
(0.999335 -0.00240817 3.8221e-24)
(0.999026 -0.00306793 8.3156e-24)
(1.01799 -0.00814915 1.72959e-22)
(0.997517 -0.0084633 3.71437e-23)
(0.981855 -0.0213815 -1.78053e-22)
(0.999989 -6.25659e-06 5.96612e-26)
(1.00015 -0.000447291 -1.45018e-24)
(0.995807 -0.00115336 1.58095e-23)
(1.0036 -0.0048181 -1.49673e-23)
(0.859539 0.0520314 2.48766e-21)
(1.03944 -0.0438808 -3.56166e-24)
(1.00557 -0.000746703 8.99468e-23)
(1.01669 0.00461158 3.66978e-23)
(1.13268 -0.152859 -6.62097e-22)
(1.02583 -0.000430174 -2.0785e-22)
(0.978217 0.104563 -3.23259e-21)
(0.992831 -0.0022465 -3.8138e-23)
(1.08786 -0.0192597 -3.09283e-22)
(0.997254 -0.00931919 -3.17066e-23)
(1.21306 -0.0860188 1.73162e-22)
(1.00035 -0.00608009 -1.32664e-24)
(1.00905 -0.00170415 -5.94471e-23)
(0.973189 -0.0332129 5.93729e-22)
(0.99985 -6.49802e-06 1.61805e-24)
(0.98974 -0.00678499 2.53343e-23)
(0.970357 -0.00854767 8.27607e-23)
(1.08125 -0.0205558 -4.39889e-24)
(1.01973 -0.0223772 -1.35158e-22)
(1.02227 0.0103681 -8.66211e-22)
(0.99543 -0.00860476 4.12373e-23)
(0.794235 0.0424771 -3.2868e-22)
(0.992099 -0.00259023 1.1229e-22)
(0.974999 -0.0535937 6.21196e-22)
(1.05543 0.197126 -2.69681e-21)
(1.05347 0.0416149 1.69668e-21)
(0.968929 -0.0872748 3.52845e-22)
(1.12741 0.0711829 2.15171e-21)
(0.998099 -0.00722232 2.45668e-23)
(1.04586 0.00499485 2.29051e-22)
(1.02082 0.0233798 1.5916e-21)
(1.00732 -0.0385262 9.77663e-23)
(1.04309 -0.00171427 -5.93585e-22)
(1.0002 -0.000134879 -1.18606e-24)
(1.00126 -0.00199951 -1.86095e-24)
(0.956952 -0.0255225 3.33761e-22)
(0.949998 -0.0221019 -2.72556e-22)
(1.01079 0.0566962 1.7658e-21)
(0.992481 -0.00241501 1.25556e-22)
(0.971286 -0.0333909 -4.61947e-23)
(0.989865 -0.000399834 2.88526e-23)
(0.992058 -0.0468356 -7.00974e-23)
(1.11806 0.0694695 4.34307e-22)
(1.02582 -0.00628279 -3.61059e-23)
(1.00002 -3.26958e-06 4.2745e-27)
(0.969151 -0.0196076 -4.0679e-22)
(1.00865 -0.0018768 -2.57706e-23)
(0.984014 -0.00779452 2.3573e-22)
(1.00018 -0.000133708 1.4572e-24)
(1.06513 0.0353128 2.34549e-22)
(1.14524 0.134666 6.36566e-22)
(1.00224 -0.00875637 9.49502e-25)
(1.0019 -0.00890868 -7.61092e-24)
(0.999781 -0.000157203 -6.56612e-24)
(1.00582 -0.000285506 -2.0687e-23)
(1.00357 -0.000681589 -1.07609e-22)
(0.983123 -0.0448528 4.99434e-23)
(0.969603 -0.0369609 2.42481e-22)
(1.00001 -0.000102908 -3.62154e-28)
(0.991704 -0.00275538 -2.13732e-23)
(1.02533 -0.00217255 -6.00879e-22)
(0.99934 -1.35714e-05 -1.36675e-24)
(0.979929 -0.0559213 -2.24982e-23)
(0.983766 -0.0377456 -3.04843e-22)
(1.00228 -0.000260332 -2.79563e-23)
(1.02897 -0.0381779 -1.01402e-23)
(1.00217 -0.0127693 -2.33477e-25)
(0.955027 0.0734294 5.23422e-22)
(1.21298 0.183543 -5.25001e-22)
(1.00825 -0.0289219 2.80077e-23)
(1.14333 0.0146181 2.19596e-22)
(1.07219 -0.0074339 5.64487e-23)
(0.999913 -1.40959e-05 -3.39449e-25)
(1.02802 -0.00610058 7.8697e-22)
(1.09808 0.0147006 7.5369e-22)
(1.00003 -4.16407e-05 -4.93991e-27)
(1.00723 0.0295016 7.66974e-22)
(1.02606 -0.0420133 -1.96828e-23)
(0.996021 -0.0010825 4.06627e-23)
(0.98579 -0.00525805 -3.33041e-22)
(1.00456 0.0313343 2.56441e-21)
(0.999915 -3.63499e-05 1.00943e-24)
(1.04622 0.192555 7.88151e-22)
(0.999988 -7.59572e-06 4.721e-26)
(1.06605 0.0579199 1.55317e-21)
(1.01136 0.00809785 -6.52087e-22)
(1.01994 -0.00238131 1.57941e-22)
(1.00165 -0.0083325 4.126e-24)
(0.966981 -0.0730341 -3.00739e-22)
(1.00006 -8.11213e-05 3.24635e-26)
(1.01207 -0.0372009 9.81541e-24)
(0.952318 -0.0196658 -7.33986e-22)
(0.995508 -0.00297547 -1.2972e-23)
(1.19657 0.00435725 4.33536e-23)
(0.999997 -0.00103129 1.12765e-24)
(0.985109 -0.0197291 7.62927e-23)
(0.997453 -0.0149452 -6.60906e-23)
(1.19843 0.176094 -1.7514e-22)
(1.03814 -0.00871554 2.75336e-22)
(1.00003 -4.61686e-05 3.53803e-25)
(0.960664 0.0741266 -9.01618e-22)
(1.00332 -0.0468019 6.21817e-23)
(0.999945 -0.00592913 4.72624e-24)
(1.01337 -0.016899 1.5103e-24)
(1.02101 -0.00280056 -3.14822e-22)
(0.998657 -0.0178683 -2.96504e-23)
(1.03196 0.082565 1.98967e-21)
(1.20648 -0.180388 1.89346e-21)
(0.988507 -0.00194159 3.97553e-23)
(0.989882 -0.063815 -7.29089e-23)
(0.99713 -0.0106165 -3.53329e-23)
(1.14016 0.0339086 2.28741e-22)
(1.00001 -2.78581e-05 2.18984e-26)
(1.00117 -0.000628215 2.44497e-23)
(1.00212 -0.00351795 -4.22703e-24)
(1.00654 -0.00822946 -3.61526e-23)
(1.16306 0.127567 8.86559e-22)
(1.00637 -0.00293307 -7.29652e-23)
(0.971752 -0.0240842 -3.60213e-22)
(1.14313 0.0512967 2.5367e-23)
(1.00438 -0.0445121 1.70856e-23)
(0.988824 -0.00282146 -3.10548e-23)
(0.999897 -9.04372e-05 -8.95864e-25)
(1.18588 0.0103347 2.99535e-23)
(0.996943 -0.00512341 -6.3446e-23)
(0.988295 -0.0194215 9.73755e-24)
(1.00571 -0.00808986 4.32802e-23)
(0.988776 -0.060914 4.23358e-22)
(1.0064 -0.0258857 2.94034e-23)
(0.999836 -6.62904e-05 -1.6214e-24)
(1.11889 -0.14532 -1.15604e-21)
(1.0008 -0.13114 4.86896e-22)
(0.990654 -0.0586423 -2.34275e-22)
(0.988803 -0.00201813 -2.17488e-22)
(1.00986 -0.00179608 1.99383e-24)
(0.986131 -0.00532238 2.13503e-22)
(0.981802 -0.0205657 1.4039e-22)
(1.00832 -0.00923743 1.19807e-22)
(1.09589 0.00841339 -3.79502e-22)
(1.0681 0.152379 -1.92576e-22)
(1.03396 0.0048967 -1.04499e-21)
(1.10803 0.0989525 -4.57199e-22)
(0.994249 -0.00862437 3.87966e-23)
(0.97628 -0.0434471 -1.76931e-22)
(0.799181 0.0589219 -1.0897e-21)
(0.973738 -0.00870183 -1.66057e-23)
(0.983344 -0.0148576 4.92152e-23)
(0.960194 -0.00305784 -3.52743e-22)
(1.00584 -0.0084889 4.48627e-23)
(1.04746 -0.0431921 1.94785e-23)
(1.00265 -0.0170327 2.33574e-24)
(1.03349 -0.0115941 1.87537e-22)
(1.00379 -0.0197475 -7.06676e-24)
(0.999987 -7.66735e-06 -2.46532e-27)
(0.993002 -0.0184786 -9.75652e-24)
(0.956536 -0.0309549 -3.28409e-22)
(1.04815 0.0786482 -3.08725e-21)
(1.00772 -0.00400907 -2.17473e-23)
(0.999966 -1.64305e-05 5.11459e-25)
(1.01017 -0.00971792 -9.75558e-23)
(0.999466 -0.000240583 -9.70708e-24)
(1.03054 -0.0139368 1.01324e-22)
(0.999991 -5.51071e-05 5.88728e-26)
(1.16941 -0.0167965 -3.52673e-24)
(1.1832 0.0899693 -2.34494e-22)
(0.999956 -3.76758e-05 -5.86885e-25)
(1.02685 0.1225 1.34063e-21)
(0.985498 -0.00561587 6.63637e-23)
(0.823749 0.0986792 2.55255e-22)
(1.11414 0.156744 1.02741e-21)
(1.03591 -0.0051953 1.38046e-22)
(1.02555 0.00146355 9.91239e-22)
(0.990567 -0.00925556 -2.022e-22)
(1.0277 -0.0231389 1.9055e-22)
(1.00158 -0.00125426 -4.30199e-24)
(0.966119 -0.00492352 2.67806e-23)
(1.0066 0.0526839 -5.74921e-22)
(0.997566 -0.00180993 -2.50389e-23)
(1.00725 -0.00719998 -2.11463e-23)
(0.967024 -0.0158472 -3.87232e-23)
(0.99815 -0.00676343 4.53356e-23)
(0.983416 -0.000201013 1.42335e-22)
(0.999132 -0.00153937 3.22502e-24)
(0.990963 -0.0330341 -1.42813e-22)
(0.983911 -0.0524283 2.39806e-23)
(0.981433 -0.00534027 1.6538e-22)
(1 -7.40513e-06 -8.24117e-27)
(1.01748 -0.00341401 -3.81976e-22)
(1.02118 -0.0147042 9.4656e-23)
(1.01701 0.0567215 9.41766e-22)
(1.03043 0.182115 1.59741e-21)
(1.02016 0.0490635 1.02504e-21)
(1.05589 -0.0436681 -5.91896e-24)
(0.975203 -0.0242863 -2.60645e-22)
(0.993988 -0.00919061 -6.86132e-23)
(0.985023 -0.00116438 1.55133e-22)
(1.02622 -0.0246666 -1.58538e-22)
(0.938653 -0.00708211 -6.57205e-23)
(1.00008 -7.45131e-05 -6.97849e-25)
(0.999893 -5.42381e-05 6.90211e-25)
(1.05121 -0.0183096 -1.12904e-22)
(1.00907 -0.00973182 -1.26713e-22)
(1.04259 -0.000312938 -6.42897e-22)
(1.24956 0.000687773 8.85814e-23)
(1.02435 0.00280309 3.06605e-22)
(1.10333 0.04432 -5.15408e-22)
(0.997053 -0.012032 2.17497e-23)
(0.998799 -0.00104389 -8.98109e-24)
(0.999985 -2.89863e-07 -3.22626e-26)
(1.1007 0.0280088 4.03107e-22)
(1.06535 -0.00554989 -3.2407e-22)
(1.00261 -0.0176606 1.07117e-23)
(1.01646 -0.0239631 -2.77764e-23)
(1.00395 -0.00629174 1.23161e-23)
(0.997124 -0.00102697 2.38309e-23)
(0.977964 -0.0181079 2.07612e-22)
(0.999987 -1.4954e-06 3.40725e-27)
(1.10933 0.167222 9.43343e-22)
(1.00589 0.0656649 2.38538e-22)
(1.02294 -0.0388479 1.59481e-23)
(1.00193 -0.00325328 -7.2232e-24)
(0.975745 -0.040145 3.34278e-22)
(1.00909 0.0226439 1.31321e-21)
(1.03816 0.00664007 -6.83265e-22)
(1.28112 -0.0437476 8.87769e-22)
(1.05376 -0.0237354 1.27458e-22)
(0.998909 -0.0315977 -2.49299e-22)
(0.995905 -0.00619988 5.34062e-23)
(1.00002 -0.000117499 -6.7892e-26)
(1.00388 -0.0238257 1.69743e-23)
(1.00239 0.068825 3.34983e-21)
(1.02003 -0.0311427 -2.8706e-24)
(1.02862 -0.0239752 -2.30151e-23)
(1.00433 -0.00671563 -1.51454e-23)
(0.999999 -1.54954e-05 -5.05618e-27)
(1.05949 0.150268 2.42887e-21)
(0.999744 -1.82248e-05 5.41431e-24)
(1.19162 0.0234439 1.12182e-22)
(1.02798 -0.0219053 -9.58856e-23)
(0.998412 -0.0469296 2.73942e-22)
(0.987787 -0.0455363 -2.65193e-22)
(1.01644 -0.0052304 1.98343e-22)
(1.0099 -0.010224 1.2303e-23)
(1.09998 0.094263 3.16008e-22)
(0.993236 -0.0111012 1.5018e-23)
(0.974266 -0.0257152 3.77532e-22)
(0.997403 -0.00964029 6.31553e-23)
(1.02133 0.0824795 -2.65814e-21)
(0.998836 -1.86543e-05 5.67244e-24)
(1.0392 0.0732133 2.64459e-21)
(0.854883 0.12894 -1.37313e-21)
(1.07276 0.0323443 -1.36819e-21)
(1.00001 -1.67017e-05 -3.9975e-26)
(0.998205 -0.00632578 1.43444e-23)
(1.19891 0.191256 7.8361e-22)
(1.1085 0.0723401 -4.69071e-22)
(0.999996 -0.000114841 1.04398e-25)
(1.00475 -0.00715979 5.4896e-23)
(1.00316 -0.00493422 5.3151e-24)
(0.999986 -5.68061e-07 1.86054e-27)
(0.999797 -0.000428899 2.82958e-24)
(1.00132 -0.00643391 4.7949e-24)
(1.04979 -0.0596073 1.8328e-22)
(0.969978 -0.0238909 3.96867e-22)
(0.867316 0.133745 3.35382e-21)
(1.00009 -0.00611942 -1.98557e-24)
(1.00549 -0.007321 -7.57776e-23)
(0.999874 -0.000213425 2.82068e-24)
(1.0819 -0.068223 1.35568e-22)
(0.986286 -0.0056647 8.1472e-23)
(1.04564 -0.0418237 4.47959e-23)
(1.02515 -0.00145205 -5.91834e-22)
(0.878587 0.14084 2.79503e-21)
(0.99646 -9.39095e-05 5.84224e-23)
(1.10168 0.0136766 6.51243e-23)
(0.994953 -0.0174606 -6.28429e-23)
(1.02539 -0.0405381 -1.19918e-24)
(1.0901 0.0775235 4.54396e-22)
(0.99997 -7.55137e-05 3.82874e-25)
(1.02755 0.0105952 -7.70371e-22)
(1.1328 0.0688579 -5.61231e-22)
(0.88984 0.144438 1.78408e-21)
(0.999655 -0.00128038 -3.19831e-24)
(1.17679 -0.0588191 7.42369e-23)
(1.00521 -0.00762008 4.0713e-23)
(1.13082 0.0360765 -1.20845e-21)
(0.997359 -0.0102828 1.46422e-23)
(0.997152 -0.013618 -9.0153e-23)
(1.01922 -0.00883925 3.36095e-22)
(0.999987 -8.8213e-07 -3.45322e-27)
(1.01854 -0.00398459 -1.81213e-22)
(1.00372 -0.0514386 -7.42942e-23)
(0.985276 -0.0164489 4.76699e-23)
(0.989787 -0.00078944 -5.14204e-23)
(0.900946 0.148094 -1.23292e-21)
(0.998147 -0.0017839 -2.20264e-24)
(1.01278 -0.0183381 -1.39837e-22)
(0.995586 -0.00122548 -7.63519e-23)
(0.999218 -0.0100556 -4.30753e-23)
(0.982597 -0.0217217 -9.34295e-23)
(0.999984 -1.53642e-06 9.93251e-26)
(1.01534 -0.0057736 -9.60551e-23)
(0.999978 -3.93831e-06 2.04919e-25)
(1.07211 -0.0364883 1.11561e-22)
(0.999848 -7.32882e-05 -1.22708e-24)
(1.02557 -0.000613738 4.21629e-23)
(0.992301 -0.003812 -1.44989e-22)
(0.911498 0.151178 5.5152e-21)
(0.989278 -0.0322842 4.61964e-22)
(1.04275 0.0089174 1.17435e-22)
(1.01407 -0.013445 3.99408e-23)
(0.988152 -0.0213771 -7.62652e-23)
(0.977633 0.012482 1.21963e-21)
(1.02896 0.0988267 4.85269e-22)
(1.1222 0.0377778 -1.8132e-22)
(1.00008 -0.000862326 2.3701e-25)
(0.99993 -0.00250466 1.45973e-24)
(0.981391 -0.0395925 -9.1797e-23)
(1.10226 -0.0449355 1.19161e-23)
(0.921189 0.152994 -4.11164e-23)
(0.981486 -0.0516007 5.96067e-22)
(0.999884 -5.98053e-05 -3.91563e-25)
(0.997611 -0.0018613 3.90226e-23)
(0.989129 -0.00910222 -2.2864e-23)
(1.01274 0.166291 -3.55545e-21)
(0.975115 -0.0262097 4.22203e-23)
(1.01803 -0.00431716 6.05815e-24)
(1.0023 -0.000145698 -2.8601e-23)
(0.971405 -0.0480613 3.35209e-23)
(0.930838 0.153027 1.41394e-21)
(1.01857 -0.00918507 -1.1799e-24)
(1.0545 0.0669968 -1.79005e-21)
(1.08232 -0.0319305 -1.4542e-22)
(1.00205 -0.000121666 2.25468e-23)
(0.99993 -0.000113124 -1.56314e-24)
(1.01587 -0.0061187 7.20091e-23)
(1.00911 -0.0143573 6.85599e-24)
(0.994744 -0.00758867 -1.02638e-22)
(1.00117 -0.0109949 1.18341e-24)
(0.93985 0.154313 -1.71135e-21)
(1.05793 0.0664515 -1.70728e-21)
(0.998162 -0.00169061 2.10624e-23)
(1.0147 -0.0630773 -3.76736e-23)
(1.02889 0.00804657 -4.29264e-22)
(0.995353 -0.00129999 -8.3435e-23)
(0.974295 -0.0247622 -1.56803e-22)
(0.999945 -4.84797e-05 7.35257e-26)
(0.994985 -0.00598231 8.02906e-24)
(0.999636 -0.00138339 4.56399e-24)
(1.00309 -0.00466992 1.98481e-23)
(1.00001 -7.26902e-06 -5.62695e-27)
(0.972359 -0.00871475 4.7641e-24)
(1.00602 -0.0105826 3.43818e-23)
(1.02052 -0.0678501 -1.29231e-22)
(1.0081 0.025259 1.05139e-21)
(0.997455 -0.00903359 1.18466e-23)
(1.01157 -0.00194243 9.13931e-25)
(1.09238 0.157975 3.1383e-21)
(1.0001 -0.000104364 -1.33252e-24)
(0.969089 -0.00905672 -2.91916e-22)
(1.00001 -5.34035e-06 -1.41047e-26)
(1.01143 -0.0150524 -1.30721e-22)
(1.0082 -0.00674759 -5.71858e-23)
(0.988296 -0.00216071 6.25221e-23)
(1.00896 0.0589203 6.26068e-22)
(1.00001 -1.53473e-05 -4.51825e-26)
(0.997297 -0.010975 8.45086e-23)
(0.999618 -0.00149357 -3.45977e-24)
(1.14582 -0.18272 -1.98377e-22)
(1.00522 -0.0331503 2.72074e-23)
(1.00198 -0.010701 -1.16172e-24)
(1.00476 -0.00591758 2.17345e-23)
(0.99628 -9.48449e-05 2.59789e-24)
(1.13616 0.211053 2.32866e-21)
(1.09227 0.089882 1.4359e-21)
(0.97675 -0.0634836 -3.43948e-23)
(1.00282 -0.00105714 2.82547e-24)
(1.00696 0.0483315 7.56863e-22)
(1.02503 -0.0248983 -2.30293e-22)
(0.994499 -0.00808786 2.36399e-23)
(1.00417 -0.01433 6.43981e-24)
(1.00505 -0.0196417 3.97161e-25)
(1.03377 -0.0104858 -3.47516e-22)
(1.0196 -0.00390522 1.71469e-22)
(1.00831 -0.00161335 -2.34155e-23)
(0.948289 0.152679 -1.15134e-21)
(0.999972 -0.000991562 -1.23748e-24)
(1.00694 0.0275643 -1.46206e-21)
(1.11058 0.023546 -3.59957e-22)
(1.02797 -0.0719216 2.01313e-22)
(0.98181 -0.013588 2.90009e-22)
(1.17253 0.000470691 -1.4873e-22)
(1.00015 -0.000152319 1.26412e-24)
(1.12941 0.0862575 1.99827e-22)
(0.999996 -4.70613e-06 -1.68436e-26)
(1 -1.75949e-05 3.27615e-26)
(1.11623 -0.0354761 4.96324e-24)
(1.00559 0.0850334 2.22378e-21)
(1.00389 -0.00787793 6.99397e-23)
(1.03993 -0.0418784 -1.2943e-23)
(0.995625 0.0498699 4.18609e-21)
(1.00002 -4.28673e-05 -1.82802e-26)
(1.08569 0.0851531 -1.6325e-21)
(0.997273 -0.0116612 2.44913e-23)
(1.01037 -0.0156514 4.92907e-23)
(1.02373 0.00289064 -3.6238e-22)
(0.968114 -0.0133968 5.93084e-23)
(1.15553 0.128674 1.20176e-22)
(1.00955 0.104112 1.58991e-21)
(1.18452 0.19799 -5.27498e-22)
(0.992391 -0.00358971 4.90861e-23)
(1.03 -0.0222891 -1.1796e-22)
(1.00206 -0.00463901 1.93058e-23)
(0.983621 -0.0268694 -2.02314e-22)
(1.00001 -1.16912e-05 -7.57419e-27)
(0.970235 -0.0318054 8.91402e-23)
(1.11369 0.0986963 6.67259e-22)
(1.04213 -0.0027687 5.71664e-22)
(1.05243 -0.0786893 -4.29679e-22)
(1.01667 0.0815101 3.68764e-22)
(0.999746 -0.000249672 -1.47268e-24)
(1.0001 -0.000112844 4.12552e-25)
(1.00001 -4.42901e-06 6.14072e-27)
(0.99518 -0.0126389 -1.03778e-22)
(1.00015 0.149549 7.78881e-23)
(1.03602 -0.00854081 -2.0558e-22)
(1.13303 0.0520989 7.85379e-22)
(1.16212 -0.0956562 -4.05055e-22)
(1.09583 -0.0137464 2.97589e-22)
(1.11414 0.0661592 2.58235e-22)
(0.99995 -1.07965e-05 2.22664e-25)
(1.0015 -0.0112759 1.61731e-24)
(0.984628 -0.0247432 5.14704e-23)
(0.999899 -0.000287123 1.08066e-24)
(1.00127 -0.00594366 9.77204e-24)
(0.956553 0.152254 -4.80569e-21)
(1.00057 -0.00154123 1.11927e-23)
(1.0451 0.00352665 -6.3107e-22)
(1.00003 -9.04044e-07 0)
(1.00758 -0.019102 3.04021e-23)
(1.07134 0.00664748 6.63311e-22)
(1.00768 -0.00720316 2.2746e-24)
(1.00626 -0.00857282 5.08877e-23)
(0.981179 -0.0437318 -1.78048e-22)
(1.01234 -0.0793251 6.55475e-23)
(1.02456 0.00229573 2.36911e-22)
(0.97336 -0.0473165 5.47712e-24)
(0.99908 -0.00166742 -5.95131e-24)
(0.97931 -0.0448354 -1.3179e-22)
(1.0775 -0.0289832 -1.49298e-22)
(1.01956 -0.0188936 -8.40115e-23)
(0.998119 -6.20235e-05 5.90112e-24)
(0.980223 -0.0394845 3.57429e-22)
(0.999933 -2.59887e-05 -9.24296e-25)
(1.03526 -0.00204064 -1.69685e-22)
(0.997109 -0.113855 1.91991e-22)
(1.05046 -0.122104 -1.29307e-22)
(1.02516 0.00173181 -9.85935e-22)
(0.993081 -0.00579366 -1.74703e-24)
(1.03711 -0.117025 3.44019e-22)
(0.851446 0.0157949 -4.2681e-21)
(0.972177 -0.047124 -1.86964e-22)
(0.977731 -0.00316366 -9.25188e-23)
(0.956074 -0.00894674 9.28322e-23)
(1.0254 -0.110942 4.59365e-23)
(1.0034 -0.00501164 -7.3117e-24)
(0.972247 -0.0753705 5.93964e-22)
(0.99984 -7.33462e-05 4.94042e-25)
(0.99883 -0.00227823 -4.32992e-24)
(1.00376 -0.0190235 -1.99994e-23)
(1.00316 -0.0180063 -1.28634e-23)
(1.09132 0.0414038 -2.82399e-22)
(1.01288 0.0562547 5.2823e-22)
(0.977412 -0.0457044 -5.0183e-22)
(1.03711 -0.00154275 1.35398e-22)
(0.96469 -0.00523815 -5.19939e-23)
(1.10474 0.11327 9.41886e-22)
(1.12306 0.0676467 -4.8254e-22)
(1.06915 -0.0358402 -2.54883e-23)
(1.07236 0.15621 -4.93781e-21)
(0.994564 -0.00545175 -1.48536e-23)
(1.01069 -0.00186289 -2.19231e-22)
(0.975319 -0.0465077 -1.16172e-22)
(1.25544 0.121064 5.67418e-23)
(0.995495 -0.000373664 -7.38359e-23)
(1.02792 -0.0422635 -2.33687e-23)
(0.950782 -0.00862085 -1.28149e-22)
(0.963103 -0.0446414 -5.87356e-24)
(1.02573 -9.88935e-05 -3.62773e-22)
(0.999979 -1.78693e-05 9.96419e-27)
(1.06771 -0.00190393 5.07986e-22)
(1.01089 -0.0366266 3.97359e-24)
(0.983686 -0.0437683 -3.68508e-22)
(1.10391 -0.00253662 -6.38843e-23)
(1.11307 -0.123263 4.72595e-22)
(1.03817 -0.00743257 1.1048e-22)
(1.27933 0.0534582 2.89823e-22)
(1.00869 0.0539104 7.07508e-22)
(0.996182 -0.00270918 -1.48664e-23)
(1.13337 0.0272756 -2.14636e-22)
(1.00006 -7.65012e-05 -1.77332e-27)
(0.998498 -0.000583447 3.92739e-23)
(1.04111 0.124036 1.77638e-21)
(0.999864 -6.03988e-05 -8.77483e-25)
(0.997287 -0.0124075 1.19339e-23)
(1.0276 -0.0148568 -2.06929e-23)
(0.992776 -0.0253354 -2.18819e-22)
(1.00446 -0.0200808 2.60453e-23)
(1.02585 -0.00755958 -1.35197e-22)
(0.996819 -0.000303399 1.55503e-23)
(1.13351 -0.115848 3.89371e-22)
(1.04076 -0.0024404 -2.45288e-22)
(1.00359 -0.0498805 2.60881e-23)
(1.04377 0.0138244 5.12891e-22)
(0.999802 -4.49147e-06 -2.34039e-24)
(0.994562 -0.000140258 6.41359e-23)
(0.999987 -9.04106e-06 1.14866e-25)
(1.09699 -0.00250898 -5.65416e-22)
(0.993965 -0.00881714 -4.13644e-24)
(1.00001 -5.63025e-06 -3.28142e-26)
(1.03887 -0.142609 6.66162e-24)
(0.998679 -0.000101155 -1.97943e-23)
(1.00567 0.0292666 -1.56385e-22)
(0.999834 -0.000213296 -4.30021e-25)
(1.0002 -0.000942779 3.15214e-25)
(0.989277 -0.00089311 -3.66105e-23)
(0.949672 -0.0294023 -3.26975e-22)
(0.99339 -0.0119386 -2.10959e-22)
(1.1053 0.0942463 -5.90161e-22)
(0.956826 -0.0338331 -2.40356e-22)
(1.15356 -0.156478 -5.556e-22)
(1.00371 -0.00905749 -5.3596e-23)
(1.00112 -0.0896912 6.47526e-22)
(0.999966 -0.000283322 -9.22412e-25)
(1.02545 -0.00172557 4.16419e-22)
(0.99734 -0.0131972 4.67826e-24)
(1.09816 -0.0688066 4.718e-23)
(0.987824 -0.10712 5.07489e-22)
(1.03703 -0.00924677 -3.18317e-22)
(1.00472 0.0733626 -5.25446e-21)
(1.00026 -4.07706e-05 -2.11135e-24)
(0.982492 -0.0568493 1.84255e-22)
(1.02092 -0.00225652 -1.90427e-22)
(0.942229 -0.0208573 -1.06791e-22)
(1.0063 -0.0194187 -1.87317e-25)
(0.93751 -0.0164042 8.09836e-23)
(0.990852 -0.00373575 -3.37479e-23)
(1.00062 -0.000736598 7.41487e-24)
(1.17873 -0.144294 -6.38744e-22)
(0.992978 -0.0118065 1.65927e-22)
(0.990834 -0.01937 1.66441e-22)
(1.02727 -0.00620438 -5.09421e-22)
(0.977658 -0.00464411 1.38376e-22)
(1.00011 -0.000114504 5.13408e-25)
(1.01005 -0.015023 -6.37598e-24)
(0.998762 -0.000114699 -6.67611e-24)
(1.105 -0.0645371 -1.6022e-22)
(0.950585 -0.0208871 1.62717e-22)
(0.978488 -0.0776568 -3.69596e-23)
(0.980065 -0.0415752 5.35536e-22)
(1.0895 -0.0124205 -8.01886e-23)
(1.02088 -0.0179359 -2.17532e-22)
(1.1909 -0.136515 -4.17487e-22)
(1.04956 -0.0422539 -6.25006e-23)
(0.999789 -0.000188643 -8.80312e-25)
(1.0087 -0.0045668 -9.2272e-23)
(1.01252 -0.0106819 9.02097e-23)
(0.999893 -0.000316069 -1.5046e-25)
(1.00002 -8.79486e-07 3.30611e-26)
(0.97998 -0.0437036 1.85195e-22)
(0.951594 -0.00780182 2.55475e-22)
(1.00002 -2.84599e-06 -7.68741e-26)
(0.999835 -0.00143896 -2.69337e-25)
(1.04522 -0.0207555 -4.9114e-22)
(0.998645 -8.11187e-05 6.74675e-24)
(0.888927 0.0420838 4.706e-21)
(0.999581 -0.00173629 1.45884e-24)
(0.990168 -0.00765092 1.61928e-22)
(0.965307 -0.00467076 1.48056e-22)
(0.974112 -0.0463528 -8.82472e-23)
(1.07036 -0.120376 -5.47598e-22)
(0.999902 -9.47029e-05 2.28906e-25)
(0.953047 -0.00921314 1.43417e-22)
(0.978083 -0.0448068 5.59742e-22)
(0.999787 -0.000329302 3.92257e-24)
(1.05367 -0.0424309 -6.8053e-23)
(0.991289 -0.0171546 -1.11182e-22)
(1.21442 -0.118036 3.96409e-22)
(1.0203 0.1002 3.22597e-21)
(0.990623 -0.0205773 -5.19389e-23)
(0.983562 -0.0293748 -1.12324e-22)
(0.998424 -0.000177009 -8.71985e-25)
(1.1707 0.202335 3.33292e-21)
(0.97671 -0.0711804 -2.922e-22)
(1.09745 0.0900221 -1.95228e-21)
(1.00916 -0.00449177 1.3329e-22)
(1.03958 -0.0220047 3.18021e-22)
(0.980285 -0.0022568 -1.48499e-22)
(1.01178 -0.027581 -7.92386e-25)
(1.03244 -0.0118314 9.31364e-23)
(0.991023 -0.100064 -4.34043e-23)
(0.991126 -0.0165768 4.80811e-23)
(0.977918 0.146738 4.42963e-21)
(0.999968 -8.30706e-05 -2.03735e-25)
(0.976073 -0.0455194 -6.62159e-23)
(1.03349 0.00671451 -1.30446e-21)
(1.00001 -5.22724e-06 2.88841e-26)
(1.02909 0.00119898 5.87115e-22)
(1.09694 0.149176 -2.06358e-21)
(1.03007 -0.00080882 4.39251e-22)
(1.23448 -0.0933517 -3.85745e-22)
(0.988948 -0.0237543 2.35705e-23)
(0.97336 -0.0191268 2.0759e-23)
(1.06252 -0.0260126 -1.49934e-22)
(0.981471 -0.0038381 -1.58352e-22)
(0.999945 -2.44471e-05 -1.38572e-25)
(1.01906 -0.0181169 2.15764e-22)
(0.99986 -5.43744e-05 -2.65445e-25)
(1.07376 0.0215744 -1.05645e-21)
(0.998939 -0.000378521 1.75258e-23)
(1.02119 -0.00398213 2.77912e-22)
(1.04351 0.00351463 7.15172e-22)
(0.983051 -0.0131211 -5.7727e-23)
(1.00001 -1.35358e-05 6.88215e-26)
(0.99545 -0.00119564 9.83746e-23)
(0.980438 -0.0276335 1.35425e-22)
(1.00011 -8.28462e-05 -8.73328e-25)
(1.24989 -0.0631333 -7.59908e-22)
(1.05807 -0.0422537 -1.29773e-24)
(0.969409 -0.00976521 1.64255e-22)
(1.03941 -0.0347277 1.3383e-22)
(1.0205 -0.0188142 9.98697e-23)
(0.983912 -0.0277244 -9.30904e-23)
(1.03644 0.0120784 -2.16847e-22)
(0.974521 -0.04233 2.58932e-22)
(1.19643 0.129528 -5.92396e-22)
(1.06132 -0.0985056 -8.98041e-23)
(0.999896 -1.26488e-05 7.73637e-25)
(1.09011 0.0855309 5.7623e-23)
(1.03104 -0.0129562 -2.02927e-22)
(1.01108 -0.0156801 3.67496e-24)
(0.997087 -0.00502649 1.56856e-23)
(0.999917 -4.00563e-05 -6.96306e-25)
(1.00017 -0.00016742 -1.04547e-24)
(1.09225 -0.0149234 -3.97478e-22)
(0.99038 -0.0199046 -2.06162e-23)
(0.999771 -0.000358508 -1.52517e-24)
(1.03791 0.0144025 -1.33771e-21)
(0.969568 -0.00843506 -2.50253e-22)
(0.99956 -0.000748593 5.83164e-24)
(1.06954 0.0530256 -8.58204e-22)
(1.00303 -0.0425471 -1.92197e-22)
(1.07043 0.0347426 9.76247e-22)
(0.969378 -0.022238 2.68099e-23)
(0.999993 -1.49709e-05 2.90763e-26)
(0.951124 -0.00976832 5.26901e-22)
(1.01247 -0.0463173 -4.12705e-23)
(0.982928 -0.0301464 4.0314e-22)
(1.01749 -0.00401208 3.05004e-22)
(1.02677 0.0324616 -3.84109e-22)
(1.25595 -0.0466749 2.63546e-23)
(1.01798 -0.00881978 3.36808e-23)
(1.04926 -0.0181025 9.00993e-23)
(0.999932 -1.37133e-06 6.63558e-25)
(0.997287 -0.0164389 -1.06448e-23)
(1.06279 -0.00658704 3.14825e-22)
(1.14543 0.16215 7.81399e-22)
(1.00251 -0.00539639 -7.59709e-24)
(0.99898 -0.000499692 -8.89448e-24)
(1.00001 -1.74675e-06 2.9963e-26)
(1.02495 -0.0513357 -4.30548e-23)
(1.00235 -0.00550421 -5.43075e-25)
(1.01641 -0.00583649 -2.31809e-22)
(0.999753 -0.0322407 2.88521e-22)
(0.99956 -0.000712745 -3.14753e-24)
(0.991409 -0.000439191 -1.54794e-22)
(1.03632 -0.0023479 7.29716e-22)
(1.00131 -0.0603391 1.35173e-24)
(1.01083 -0.027194 4.92736e-24)
(1.00041 -0.00117869 6.58735e-25)
(0.995682 -0.00634784 4.96225e-23)
(1.02588 0.000731335 8.00841e-25)
(0.999986 -2.07378e-07 1.4825e-26)
(1.00006 -2.05216e-05 -6.8772e-26)
(0.995253 -0.00723915 -7.30777e-23)
(0.978031 -0.0127145 -2.82347e-22)
(1.13169 -0.0972764 -4.2911e-22)
(0.999993 -0.000352546 4.30506e-26)
(1.00528 -0.052264 -1.54938e-22)
(0.969808 -0.049917 -8.38139e-22)
(0.999986 -1.30727e-07 -1.02056e-26)
(1.03787 0.0128376 -6.3915e-22)
(1.02178 -0.0474894 5.41215e-24)
(1.00001 -1.11968e-05 3.97806e-26)
(0.992906 -0.0113873 -1.00729e-22)
(0.999975 -0.000137925 5.10758e-25)
(0.970608 -0.00920031 1.43697e-22)
(0.9637 -0.0264507 -1.43595e-22)
(0.979146 -0.0508337 6.35628e-23)
(0.973224 -0.0199407 -1.54422e-22)
(0.999848 -0.000183092 -2.54188e-24)
(1.04097 -0.035941 -7.00992e-23)
(1.0284 0.169168 2.67828e-21)
(0.970799 -0.0245175 1.77888e-22)
(0.999977 -2.67993e-06 4.06825e-25)
(1.00523 -0.0367451 -1.40935e-22)
(1.04116 -0.000133256 1.25813e-21)
(1.01013 -0.00877243 -1.06355e-22)
(0.999912 -1.02799e-05 -1.27527e-24)
(0.979901 -0.0294658 6.42484e-24)
(0.989727 -0.0313868 -1.50661e-22)
(1.00692 -0.031981 -7.88469e-23)
(1.08676 0.118851 7.10623e-22)
(0.991185 -0.00556771 -1.90178e-22)
(1.07898 -0.0318077 1.60004e-22)
(0.987676 -0.0490857 -1.15157e-22)
(0.994782 -0.000458825 1.66407e-23)
(1 -6.32942e-05 -6.2703e-26)
(1.00142 0.0292327 2.83515e-21)
(1.00055 -0.00170007 -4.22633e-26)
(1.02622 -0.00691635 1.63152e-22)
(1.03654 -0.0575402 -5.38646e-23)
(0.989784 -0.00174593 1.15474e-22)
(1.07408 -0.0340901 2.04548e-22)
(0.999965 -0.000338775 -4.356e-25)
(1.06456 -0.0788939 4.5138e-22)
(1.00001 -1.45754e-05 8.72799e-26)
(1.02779 -0.0534081 -8.01591e-23)
(1.0016 -0.00116446 -1.41848e-23)
(1.15667 0.204912 1.09478e-21)
(0.928645 0.056968 -5.82185e-21)
(1.00001 -2.44304e-06 -2.7226e-26)
(0.999935 -9.71129e-05 -3.69819e-25)
(0.997883 -0.038409 5.91645e-23)
(0.99528 -0.000404621 1.24636e-24)
(0.999996 -0.000139037 5.32484e-26)
(1.00705 -0.0196384 -5.65134e-24)
(1.07169 0.0293871 3.56139e-22)
(0.994291 -0.000158891 1.25684e-22)
(1.07802 0.0675161 2.48788e-21)
(0.990367 -0.00400724 8.7473e-23)
(1.02288 -0.0221856 5.03909e-23)
(0.984242 -0.0261822 2.44854e-22)
(0.998838 -0.000577648 -6.29498e-24)
(1.05778 -0.0396139 -4.18538e-23)
(0.990027 -0.00369723 -1.09806e-22)
(1.02514 -0.0132739 2.31789e-22)
(1.02165 -0.00357402 -2.74778e-24)
(0.999858 -0.00013163 -5.18238e-25)
(1.01494 -0.00310784 -1.82808e-22)
(0.992769 -0.020771 -3.14265e-23)
(1.01602 0.0200258 9.00134e-22)
(0.984013 -0.00151699 1.16615e-23)
(1.04436 0.00929975 -6.25749e-22)
(1.05278 0.064494 -1.91667e-22)
(0.965529 -0.0151582 -3.22832e-22)
(1.00001 -0.000174605 -6.97692e-26)
(0.997419 -0.0140493 4.17482e-23)
(0.966458 -0.015077 -1.02915e-23)
(0.993906 -0.00224023 -4.02456e-23)
(1.00842 -0.00424017 3.20506e-23)
(1.01659 -0.063544 4.19097e-22)
(0.965991 -0.00710319 -2.48199e-22)
(0.993499 -0.0463023 -4.04341e-22)
(1.00326 -0.00716378 -7.49077e-24)
(1.01945 -0.0659911 -3.88222e-23)
(0.999974 -0.000353811 5.05902e-25)
(0.995821 -0.0127985 -3.97239e-23)
(1.00308 -0.00162887 1.53967e-23)
(1 -2.87013e-05 5.42949e-28)
(0.996984 -0.000278269 5.21067e-23)
(1.02086 0.119423 -2.63049e-21)
(1.02321 -0.0156665 1.87854e-22)
(1.00035 -4.55306e-05 1.34251e-23)
(1.00178 -0.00126222 -3.8936e-23)
(0.997187 -0.00449444 -4.58102e-23)
(1.00005 -2.61307e-05 3.75194e-26)
(0.999865 -0.000137767 1.05951e-24)
(1.06106 0.121117 1.91067e-21)
(1.00002 -8.36233e-05 2.24019e-25)
(1.0707 0.00934098 3.81017e-22)
(1.084 -0.0289316 6.28107e-23)
(1.06221 0.062439 9.08589e-22)
(1.02577 0.000432966 -5.49924e-22)
(0.975098 -0.0486596 2.54745e-22)
(1.04139 0.0281936 6.74734e-22)
(1.01381 -0.0611136 1.15198e-23)
(1.00644 -0.0820764 -6.22442e-22)
(1.06937 0.00487708 -7.89649e-22)
(0.950786 -0.0232004 6.65046e-22)
(0.989307 -0.00188825 -9.15316e-23)
(1.00664 -0.00748035 -8.22436e-23)
(0.960031 -0.0394948 1.07673e-21)
(1.00002 -3.35721e-05 7.005e-26)
(0.936503 -0.0038552 7.4823e-23)
(0.999942 -0.000438314 -2.21559e-25)
(1.19361 0.106569 -5.45094e-22)
(1.00008 -1.19551e-05 5.44479e-25)
(1.0023 -0.00500422 -4.37222e-23)
(1.00986 -0.0196263 2.3248e-23)
(1.01307 0.00546237 3.45661e-22)
(0.943589 0.0724822 -8.51264e-22)
(1.01409 -0.0104557 7.37341e-23)
(1.00599 -0.00776042 4.05421e-23)
(1.07886 -0.0263806 2.29277e-22)
(1.00054 -0.00176533 6.37279e-25)
(0.983552 -0.0580122 -3.07361e-22)
(1.0034 -0.00177234 -3.59386e-23)
(1.04357 -0.0203265 2.28751e-22)
(0.985485 -0.0067637 5.95749e-23)
(0.987894 -0.0661991 2.41391e-22)
(1.0464 -0.0194523 1.49818e-22)
(1.05353 0.0758917 -3.69468e-22)
(0.975958 -0.0257384 1.00851e-23)
(1.01115 -0.158929 -2.07292e-22)
(1.03068 -0.0716658 2.29666e-22)
(1.02262 -0.067819 8.55878e-23)
(1.06763 0.000707205 -4.45554e-22)
(0.998761 -0.00748758 1.95148e-23)
(0.958593 -0.000860782 -3.97946e-22)
(0.99892 -0.000195054 -1.85538e-24)
(1.00539 -0.0423595 -2.47494e-23)
(0.999618 -0.00132278 1.08404e-24)
(1.09688 0.00104842 2.19356e-22)
(1.10432 0.0278215 -3.34921e-23)
(1.2025 0.136484 8.22035e-22)
(1.03815 -0.0214164 -5.31004e-22)
(1.17198 0.119324 6.87379e-22)
(0.996368 -0.00230007 6.87881e-24)
(1.02422 -0.0144808 2.86044e-25)
(0.999764 -0.00227266 -1.46144e-24)
(0.971075 -0.0501455 1.26182e-22)
(1.00072 -0.0317668 -3.56698e-23)
(1.0002 -0.000231095 -2.62425e-24)
(0.954261 -0.000534178 -1.16677e-22)
(0.949063 0.0245686 1.06155e-21)
(1.00341 -0.0301641 -7.42875e-23)
(0.933746 0.0460491 -9.60741e-22)
(1.02954 0.0743093 5.23592e-21)
(1.02344 0.0339804 1.43384e-21)
(1.00001 -0.000102122 -5.12743e-26)
(1.08207 -0.0260929 -2.81379e-22)
(1.04083 -0.0210275 4.79852e-23)
(0.999958 -1.90623e-06 -2.62599e-25)
(0.998952 -0.00089383 2.44467e-24)
(1.0221 -0.0168451 -1.419e-22)
(0.999991 -1.34278e-05 -1.21566e-25)
(0.999964 -1.38151e-05 -5.52556e-25)
(0.999917 -0.000221143 4.85074e-25)
(0.999968 -2.86984e-06 2.48639e-25)
(1.00638 0.00563082 -5.16209e-22)
(1.04006 0.00954753 -7.82497e-22)
(1.0264 -0.0697665 -2.32991e-22)
(0.996407 -0.0169303 -9.29561e-24)
(1.00374 -0.00057198 7.43459e-23)
(1.02657 -0.0234757 -2.48418e-23)
(0.994198 -0.00207058 -3.76651e-23)
(1.00565 -0.0109278 -1.57835e-23)
(1.00123 -0.000424421 -1.28148e-23)
(0.99993 -3.2139e-05 2.81141e-25)
(0.999881 -4.44732e-05 -2.57303e-24)
(1.02469 -0.0026882 -5.68026e-22)
(0.999907 -0.000263442 5.35794e-26)
(0.99449 -0.00775085 1.07472e-22)
(0.999655 -0.000227882 1.33602e-24)
(1.0314 0.00121659 -2.26894e-22)
(0.999989 -9.09216e-05 -2.83967e-25)
(1.04969 -0.0768818 6.18973e-23)
(1.00716 -0.000375204 2.09216e-23)
(1.04275 -0.0351705 -3.40442e-23)
(1.02656 -0.0550475 -1.40852e-22)
(1.02425 -0.00267822 -2.10613e-23)
(0.999924 -1.36407e-05 -1.44705e-24)
(0.989049 -0.00390379 2.17239e-23)
(0.999413 -0.000488689 3.84497e-24)
(0.983256 -0.0311219 -2.3309e-22)
(0.999966 -1.28661e-05 3.06855e-25)
(1.00986 -0.00836458 5.78642e-23)
(1.02296 -0.0166361 -2.0464e-22)
(1.05402 0.00827759 9.20797e-22)
(1.00389 0.0350408 -2.83196e-21)
(1.01041 0.0661274 9.22291e-22)
(1.01593 -0.0042943 1.4215e-23)
(0.99986 -0.000122806 2.29803e-27)
(0.999776 -0.000420957 -1.82281e-24)
(1.01081 -0.0353122 3.23913e-23)
(1.03038 -0.0199201 1.22015e-22)
(0.999954 -0.000258703 -6.16004e-26)
(1.09646 -0.00997619 4.32326e-22)
(1.03095 0.000492116 3.96093e-25)
(0.988268 -0.00106645 -2.74645e-22)
(1.00267 -0.0107214 -1.31426e-23)
(1.03319 -0.101702 -2.72906e-22)
(0.998057 -0.0372387 -3.95066e-24)
(0.995724 0.111265 5.381e-21)
(1.02505 -0.0141377 -7.93287e-23)
(0.998983 -0.0393529 -1.40901e-22)
(1.04331 0.00619994 3.86775e-22)
(0.999841 -5.95768e-05 2.86096e-24)
(0.955903 -0.00406874 1.94686e-22)
(0.999885 -8.7951e-05 1.70875e-26)
(0.968387 0.147843 1.30709e-21)
(1.00021 -0.000151022 -4.05355e-25)
(0.988352 0.0683101 2.55082e-21)
(1.00227 -0.0246439 3.94949e-23)
(1.02558 0.0342218 -1.46954e-21)
(0.996562 -0.00622685 -7.17756e-23)
(0.999569 -0.0476954 -1.87772e-22)
(1.10033 -0.00449898 4.3271e-22)
(0.99872 -0.000495721 5.66756e-24)
(0.987369 -0.00554001 -5.40047e-24)
(1.00001 -4.1951e-05 8.0618e-26)
(0.952699 0.00668935 3.3924e-21)
(1.18185 0.189536 2.14993e-21)
(0.999575 -0.00154343 3.61512e-24)
(0.999987 -6.38262e-06 -7.39194e-26)
(0.998401 -0.000733935 -2.33935e-23)
(1.00005 -3.9052e-05 9.83899e-25)
(1.00426 -0.0431727 -3.69384e-23)
(1.0552 -0.0771577 3.76631e-22)
(0.98206 -0.0386524 3.28253e-23)
(1.02063 -0.00376723 1.44831e-22)
(0.999193 -0.0012154 -1.12551e-23)
(0.99544 -0.000204286 9.58385e-23)
(0.983858 -0.00402846 3.27285e-22)
(0.999543 -1.64178e-05 9.28864e-24)
(0.996101 -0.000115124 -4.88634e-23)
(1.01493 -0.0797832 -4.97843e-22)
(1.07218 0.0241311 2.86434e-22)
(1.00002 -4.10031e-05 -4.79405e-26)
(0.978783 -0.000201721 1.37451e-22)
(1.00107 -0.00250595 2.97346e-24)
(0.982956 -0.0553697 7.72863e-23)
(1.10947 0.0677107 2.02416e-22)
(1.00026 -0.115029 -7.65669e-23)
(1.10377 0.00161158 -5.10397e-22)
(0.975987 -0.0247917 -8.63917e-23)
(1.0093 -0.0306572 7.46124e-23)
(0.995078 -0.00477155 3.43777e-23)
(0.996491 -0.11047 -7.82972e-22)
(0.999929 -0.000456559 2.07188e-25)
(0.992399 -0.00463697 1.50694e-22)
(1.05521 -0.120871 2.01035e-22)
(0.999987 -7.21381e-06 6.00735e-26)
(1.04765 -0.119038 6.97878e-22)
(1.04105 -0.116558 -1.78026e-22)
(1.10003 0.00332673 -2.00881e-22)
(1.00002 -4.65981e-05 -9.51612e-26)
(1.03484 -0.113829 -8.57596e-22)
(1.02908 -0.110883 2.40931e-26)
(1.01948 -0.0173119 -1.29356e-22)
(0.988544 -0.00415521 -1.37761e-22)
(1.0235 -0.107745 9.65716e-23)
(1.00057 -0.000466238 7.42298e-24)
(1.20836 -0.165189 -2.10085e-21)
(1.02035 -0.017242 2.32028e-23)
(1.09704 0.10777 1.42463e-21)
(1.00009 -8.90634e-05 2.87782e-25)
(0.961799 0.0363535 -1.05591e-21)
(1.0178 -0.164156 2.17353e-22)
(1.04447 -0.0486097 -3.05103e-23)
(1.00432 -0.0306411 5.21781e-23)
(0.999952 -0.000282658 -1.02942e-24)
(1.03081 -0.0243633 2.08488e-22)
(0.999006 -0.00017904 -1.96165e-23)
(0.99725 -0.000171783 4.83605e-23)
(0.867293 0.0559431 -3.96906e-21)
(0.999357 -0.000566193 1.05102e-24)
(1.03743 0.00240842 1.51582e-21)
(0.991877 -0.0254502 1.39336e-22)
(0.96829 -0.0318643 -2.40601e-22)
(1.00001 -9.25087e-05 9.70479e-28)
(1.28654 0.0139103 1.36737e-22)
(1.1074 -0.121457 -6.75408e-22)
(0.999979 -8.42498e-07 1.04736e-25)
(0.999809 -0.00251948 -3.48727e-24)
(1.10493 0.0361537 8.25797e-22)
(0.993571 -0.0027557 -3.87116e-23)
(1.11738 -0.118884 2.45434e-22)
(1.00001 -1.00665e-05 -3.97653e-26)
(0.834537 0.00972389 -8.19487e-21)
(1.09363 -0.0686251 -3.21899e-22)
(1.16467 -0.0888362 1.74466e-22)
(0.994748 -0.00361457 -8.6047e-24)
(1.0001 -6.21503e-05 2.98523e-25)
(1 -0.000159979 -1.88272e-25)
(0.973253 -0.00386436 -3.70219e-22)
(0.992384 -0.0213851 9.79038e-23)
(0.976099 -0.0650358 1.10835e-22)
(1.11489 -0.0799266 -5.89792e-22)
(1.13716 -0.110397 6.75995e-22)
(1.12734 -0.115188 -3.80712e-22)
(1.02265 -0.0202569 -3.13019e-23)
(0.999909 -8.63796e-05 4.49988e-26)
(1.05195 -0.108516 1.42061e-22)
(0.989394 -0.000241005 1.28368e-22)
(1.00367 -0.0906482 -1.46977e-22)
(1.21573 -0.180665 -1.23598e-21)
(0.991772 -0.0201165 -1.60538e-22)
(1.00043 -0.000594179 -1.05543e-24)
(0.998625 -0.00103834 -1.7801e-23)
(0.956945 -0.000809901 -4.67734e-22)
(1.01588 -0.0111104 -1.61083e-22)
(0.991263 -0.00350123 -1.66199e-23)
(1.10688 -0.0598825 1.72983e-22)
(1.00007 -0.000898816 -4.92224e-25)
(1.00034 -0.000834455 6.25109e-25)
(1.00033 -0.00250034 -1.00961e-24)
(0.992238 0.105356 -3.4518e-21)
(1.00628 -0.0143206 3.83173e-23)
(1.11972 0.0834027 -1.60338e-21)
(1.00004 -9.26064e-05 -2.09856e-25)
(0.998669 -0.000922818 -3.37545e-23)
(0.968301 -0.0307558 5.98494e-24)
(1.00068 -0.0870424 -1.22043e-21)
(1.1459 -0.155493 7.36906e-22)
(0.990995 -0.00284703 -1.11828e-22)
(0.994836 -0.00510848 -3.97537e-23)
(0.947009 -0.00128639 -4.32151e-22)
(0.991464 -0.00203526 1.19009e-22)
(1.02001 -0.00295072 1.37725e-22)
(1.00176 -0.00522129 -1.10751e-23)
(0.998787 -0.00181119 2.50179e-23)
(1.00638 -0.007818 1.74781e-23)
(1.15798 -0.150489 -1.11245e-21)
(1.00646 0.0735456 1.75422e-21)
(1.12695 0.0223487 5.02268e-22)
(1.03178 0.00981262 2.0259e-22)
(0.965629 0.148373 8.73093e-22)
(1.17092 -0.144296 1.24157e-21)
(1.00277 -0.00353526 -5.97624e-24)
(0.999868 -0.000120151 -1.96419e-25)
(1.02916 -0.00434452 -3.93075e-23)
(1.00002 -6.89968e-05 1.20081e-25)
(1.02556 0.000969491 -3.88276e-22)
(1.13685 -0.067241 2.14914e-22)
(0.987045 -0.0555775 -5.67474e-22)
(1.00067 -0.000285065 -1.94025e-24)
(1.0007 -0.000322103 9.45538e-24)
(0.999037 -0.00189321 8.43886e-24)
(1.02529 0.0214451 -7.83614e-22)
(0.99639 -0.00254087 -5.07807e-23)
(1.0655 -0.00317022 -2.10669e-22)
(1.06129 -0.077284 -2.76418e-22)
(0.945312 0.143179 1.32411e-21)
(0.995495 -0.00707374 8.40159e-24)
(1.17697 -0.172616 9.79073e-22)
(1.00042 -0.000989779 2.32897e-25)
(1.23383 -0.128277 1.4018e-22)
(0.979983 -0.0791644 8.34858e-23)
(0.98864 -0.0229434 3.37574e-23)
(0.995721 -0.000332035 -5.07818e-23)
(1.00028 -0.000345173 2.52703e-24)
(1.04488 0.122947 -2.22846e-21)
(1.0589 0.0485441 -1.52583e-21)
(0.991467 -0.00774106 9.97468e-23)
(0.995741 -0.0136099 4.72443e-23)
(0.999954 -2.33488e-06 1.89208e-25)
(1.06618 0.00826927 1.04403e-21)
(1.02387 -0.00802281 -2.35428e-22)
(1.09964 -0.20327 -7.47008e-22)
(1.01586 0.115172 9.7453e-22)
(0.99994 -0.000478568 -5.66283e-25)
(1.1947 -0.128922 -5.0616e-22)
(0.989668 -0.0105907 -4.47166e-23)
(1.08186 0.110554 2.22472e-21)
(1.00039 -0.00270027 -8.58309e-26)
(1.03387 0.0244855 3.79339e-22)
(1.06721 -0.0769371 -7.35437e-23)
(1.00575 -0.0114281 9.89295e-24)
(0.984149 0.144602 1.46081e-21)
(0.98624 -0.000991435 1.29644e-22)
(0.970138 -0.0228963 -2.74034e-22)
(1.14225 0.0242876 -2.32292e-22)
(0.859233 0.0435453 3.06425e-21)
(1.20624 -0.119863 4.74552e-22)
(0.999773 -0.00039945 -1.0249e-24)
(0.979027 -0.0757501 -1.2493e-22)
(1.01312 -0.163607 -4.1377e-22)
(0.938301 -0.0154961 3.51583e-22)
(0.999259 -0.000335365 1.14353e-23)
(1.00216 -0.00782138 -8.37843e-24)
(1.00004 -8.41746e-06 1.33529e-25)
(0.982142 -0.0891113 2.21045e-22)
(0.990227 -0.000737698 -1.87493e-23)
(0.980726 -0.00477464 9.79486e-23)
(1.00124 -0.000616653 -1.32151e-23)
(1.00002 -1.27424e-06 -3.15588e-25)
(0.978148 -0.0725879 -1.3476e-22)
(1.01167 0.0826084 -5.2681e-21)
(0.999987 -1.11249e-06 5.04555e-27)
(0.990644 -0.00149883 -1.12498e-23)
(1.21681 -0.109555 1.69118e-22)
(0.999977 -2.91047e-05 1.09444e-25)
(0.933734 -0.00581342 2.94817e-22)
(0.998714 -0.00195127 -5.85941e-24)
(0.95571 -0.0342435 -1.20365e-22)
(1.00348 -0.000168407 -1.62991e-23)
(1.00176 -0.00151265 3.64615e-23)
(0.980908 -0.00329129 3.65587e-22)
(0.99851 -0.000158806 -1.08922e-24)
(0.99991 -4.43514e-05 -1.12398e-24)
(0.999973 -3.59834e-05 -9.69561e-26)
(0.988924 -0.000271505 -1.59553e-22)
(0.972126 -0.0317109 7.65905e-22)
(0.967762 -0.0141553 2.72746e-22)
(1.00961 -0.0031716 -4.45786e-23)
(1.22636 -0.097168 -1.16128e-21)
(0.999988 -1.39537e-06 -1.16695e-26)
(0.999727 -0.000201125 6.24531e-24)
(0.999893 -4.48675e-05 1.99509e-24)
(0.990826 -0.00304959 -8.37582e-23)
(1.23486 -0.0838954 3.76862e-22)
(1.02388 0.0304925 2.16207e-21)
(1.01923 0.080707 -3.18053e-22)
(1.02146 0.0286709 9.56283e-22)
(1.00317 -0.000156063 -3.69713e-23)
(1.00615 0.0223045 7.13161e-22)
(1.0249 -0.00224475 3.21517e-22)
(1.00013 -0.000386191 -9.68359e-25)
(0.973056 -0.0494523 -2.24295e-22)
(0.999994 -4.40955e-06 1.45864e-26)
(0.977489 -0.0693999 3.64749e-23)
(0.999967 -4.75521e-05 1.3532e-25)
(1.00043 -0.00542691 -1.30955e-25)
(1.24261 -0.0689922 4.97818e-22)
(1.12439 -0.0481283 1.58193e-22)
(0.939332 0.105261 -1.98177e-22)
(1.12316 -0.0741133 4.7789e-22)
(0.978552 -0.00291777 -3.56864e-22)
(0.987958 0.099958 1.95717e-21)
(1.00386 0.0243046 6.79774e-22)
(0.996967 -0.00536918 2.70368e-23)
(0.960906 -0.041858 1.12636e-22)
(1.00015 -0.000421832 3.75633e-25)
(0.999551 -0.00166471 -8.58643e-24)
(1.02609 0.0120469 -1.2072e-21)
(1.00017 -0.000339319 -2.42697e-24)
(0.999956 -0.000871778 -1.02438e-24)
(0.999576 0.0467576 -8.98662e-22)
(0.982932 -0.0980956 -5.96425e-22)
(1 -1.59812e-05 7.4042e-28)
(1.01946 0.00174131 1.80526e-22)
(0.985015 -0.0159998 1.35753e-22)
(1.00002 -0.00175178 -1.98669e-25)
(1.00069 -0.000526925 5.28347e-24)
(1.00001 -1.44438e-06 3.26304e-27)
(0.998981 -0.0042112 4.88202e-24)
(1.01353 0.131435 -4.21742e-21)
(1.00001 -8.08116e-06 6.94174e-26)
(1.01282 0.00327678 5.3224e-22)
(0.985015 -0.0003159 -1.663e-23)
(1.02643 0.0109397 6.06694e-22)
(0.969408 -0.0424387 3.74296e-22)
(0.9999 -4.80264e-06 -8.47148e-26)
(1.04526 -0.0583414 -1.73965e-22)
(0.979426 0.0925876 1.84534e-21)
(1.00001 -1.13497e-06 -4.43259e-27)
(0.999245 -0.00138329 3.34759e-24)
(1.03318 0.00859991 -7.10841e-22)
(0.809248 0.00388626 4.61169e-22)
(0.998564 -0.000494427 -9.40055e-24)
(1.00004 -0.000313798 -1.95755e-25)
(0.951978 0.111478 1.96727e-22)
(1.00063 -0.000825558 -1.40568e-23)
(0.977499 0.00639303 -6.90997e-22)
(1.00258 -0.000152956 -4.97399e-23)
(1.02588 0.0274213 -2.71569e-21)
(0.990094 -0.00803037 -1.93206e-22)
(0.969017 -0.0444349 3.8449e-22)
(0.999982 -6.04499e-07 -1.95025e-26)
(0.972355 -0.0286823 3.11158e-23)
(0.999988 -0.000322524 4.81028e-26)
(0.987826 -0.0227617 -1.35757e-22)
(0.990214 -0.00161262 2.12139e-22)
(1.25374 -0.036057 -3.66697e-22)
(1.01953 -0.00330578 -1.40738e-22)
(0.988196 -0.0644457 -2.34431e-22)
(1.04352 -0.0564654 3.82528e-23)
(0.989347 -0.0675043 1.67048e-22)
(1 -0.0301584 -5.41711e-23)
(1.01715 -0.015944 -7.83671e-23)
(1.04036 -0.00114248 -4.63967e-22)
(0.990607 -0.00885374 3.79006e-23)
(0.99282 -0.000289416 4.79784e-23)
(1.0235 0.0216344 2.56076e-22)
(0.979328 -0.0178666 -1.91804e-22)
(1.14714 -0.143438 -7.62064e-22)
(1.00021 -0.000833955 -1.03835e-24)
(0.96746 -0.0046149 -1.16055e-22)
(0.986669 0.135879 -2.46578e-21)
(1.02289 -0.00611132 -4.13761e-22)
(1.05897 0.0633157 7.93317e-22)
(1.0696 0.0496703 2.45328e-21)
(1.00151 -0.00636278 1.38955e-23)
(0.999924 -3.60012e-05 -7.92695e-25)
(1.00001 -1.29629e-05 5.456e-26)
(0.999853 -7.98547e-05 3.21051e-24)
(0.999749 -0.00211133 6.43709e-24)
(0.972536 -0.0451205 8.12768e-23)
(0.993416 -0.00542663 -1.01569e-22)
(0.996904 -0.000931116 -6.46643e-23)
(1.02899 -0.00512913 -3.91779e-22)
(0.999764 -0.000170239 -4.51661e-24)
(1.00927 0.0829373 4.50028e-21)
(0.993057 -0.000291705 9.38318e-24)
(0.977425 -0.00163233 4.10634e-23)
(0.999416 -0.000952377 8.27334e-24)
(1.0263 0.0828653 -2.08718e-21)
(0.999647 -0.002442 -2.46539e-24)
(1.00013 -0.000409221 2.43096e-25)
(0.973104 -0.03221 -3.90682e-22)
(0.999982 -1.15389e-06 -1.71915e-25)
(1.00019 -0.000348475 9.40347e-25)
(1.00929 0.0482727 3.00746e-21)
(0.997006 -0.00215761 -6.25998e-23)
(0.9999 -9.57395e-06 -1.02326e-24)
(1.09489 0.0315143 -1.83853e-21)
(0.999946 -6.58456e-05 -3.69354e-25)
(0.999929 -2.61986e-05 -6.4224e-25)
(0.998564 -7.70173e-05 -1.40872e-23)
(1.00009 0.0688841 1.59949e-21)
(0.987673 -0.0281151 5.67865e-23)
(1.18775 -0.0678744 6.36812e-22)
(1.01876 0.0531323 -5.48884e-22)
(0.983902 -0.0906364 4.39984e-22)
(0.999808 -0.0020137 -9.42553e-25)
(0.984403 -0.000300555 2.02428e-22)
(0.851664 0.0392163 -4.84708e-21)
(0.99973 -0.000255627 -3.84588e-24)
(1.0037 -0.00434341 4.01832e-23)
(1.00008 -0.000662821 -8.6963e-25)
(1.01221 0.0698123 -1.42074e-21)
(1.17564 0.14702 -1.40797e-22)
(1.00004 -7.99407e-05 1.20481e-25)
(1.10409 0.206885 1.26415e-21)
(1.18674 0.139208 1.81756e-21)
(0.999681 -1.20836e-05 9.01818e-24)
(0.998475 -0.000534546 -4.85239e-24)
(0.999875 -9.6754e-05 -1.60758e-24)
(1.00069 -0.000245918 -7.44885e-24)
(0.972814 0.134673 -5.34318e-21)
(0.997557 -0.00580811 1.31828e-23)
(0.970826 -0.0385641 1.36397e-22)
(0.9984 -0.0168405 1.51505e-22)
(0.999963 -5.85559e-06 5.07427e-25)
(1.07464 0.14642 1.49791e-21)
(1.03451 0.121807 1.68325e-21)
(1.03204 -0.0238352 -1.33025e-23)
(0.969274 -0.0324027 1.86456e-22)
(0.995703 -0.00662161 -1.62834e-24)
(0.999156 -0.000593503 3.46687e-24)
(1.01322 0.060884 -3.04675e-21)
(0.999954 -7.95818e-05 -6.42043e-25)
(1.08346 -0.010988 -2.66599e-22)
(0.999245 -0.000308996 2.74949e-24)
(0.990973 -0.00218831 3.27807e-23)
(0.971316 -0.0292454 -1.7943e-22)
(1.08204 0.15766 1.35297e-21)
(1.00192 -0.000396765 -6.24211e-24)
(1.13833 0.0604411 -4.44775e-22)
(1.01086 0.0786106 -6.54413e-23)
(0.999951 -9.1852e-06 6.33678e-25)
(0.999984 -1.54122e-06 -1.82746e-25)
(1.02463 -0.00811288 -8.18199e-23)
(1.02826 -0.00531378 -3.74608e-22)
(1.12474 -0.0429377 -4.07223e-23)
(0.998692 -0.00102078 -3.77175e-24)
(0.934322 0.105692 2.38838e-21)
(1.10041 -0.0648225 1.91692e-22)
(0.998751 -8.54006e-05 8.28819e-24)
(0.996817 -0.00424544 -1.73472e-23)
(1.0275 -0.00285617 -7.45889e-23)
(0.97439 -0.0443105 1.58114e-23)
(1.0802 0.113727 -8.48198e-22)
(1.03879 0.179065 -1.23732e-21)
(1.0028 -0.00435089 -3.87587e-23)
(0.952304 -0.0100191 -4.07562e-22)
(0.99996 -1.45558e-05 -1.7815e-25)
(1.0154 0.0106431 6.45941e-22)
(1.03078 0.00345889 -1.7024e-22)
(1.01452 0.0116102 -3.7928e-22)
(0.971336 -0.0182963 -1.81428e-24)
(1.0001 -5.84395e-06 5.93713e-25)
(1.0585 -0.151788 1.06846e-22)
(0.998583 -0.000992336 -6.06717e-25)
(0.983091 -0.0189381 -2.729e-22)
(1.00228 -0.0148624 1.39506e-23)
(0.973233 -0.00706201 2.2167e-23)
(1.00373 -0.00192561 -5.8227e-24)
(1.11938 0.152728 7.97909e-22)
(0.978172 -0.0121579 2.5839e-22)
(0.984854 -0.0175957 -3.40395e-24)
(0.945105 0.0281553 -1.97189e-21)
(0.991003 -0.00867212 1.94323e-22)
(1.00009 -5.21488e-06 4.03455e-25)
(1.09326 -0.127171 2.28454e-22)
(0.999971 -1.42681e-05 -2.25689e-26)
(0.999902 -7.28474e-05 2.09632e-24)
(1.12854 -0.0650533 -3.24042e-22)
(0.988289 -0.0122525 -2.42081e-23)
(1.00002 -3.408e-07 -4.67894e-26)
(0.999907 -3.24967e-05 7.42505e-25)
(1.0143 -0.0128278 6.7557e-23)
(0.996104 -0.0254488 -3.51518e-23)
(1.00003 -0.000220585 -1.96276e-25)
(1.18284 -0.136988 8.33924e-22)
(1.01391 0.0732955 -5.69609e-22)
(0.999842 -0.000220105 -2.87986e-24)
(0.991799 -0.0293143 -2.27432e-22)
(1.09056 0.064526 2.55121e-22)
(1.00056 0.00115524 1.16301e-21)
(1.09235 0.205829 -1.8841e-21)
(1.00006 -6.78428e-05 5.05112e-25)
(1.04489 0.0064012 4.83617e-22)
(1.02243 -0.023204 1.47304e-22)
(0.996371 -3.52245e-05 -3.32937e-24)
(0.964994 -0.01434 -1.88847e-23)
(1.06362 0.00027846 8.32688e-22)
(1.20308 0.173448 1.03557e-21)
(1.00319 -0.00178106 7.64096e-24)
(0.99993 -0.0819165 -4.35183e-22)
(0.909081 0.0522876 1.8371e-21)
(0.998735 -0.0022413 1.07637e-23)
(1.00049 -0.00191916 1.97252e-24)
(0.999898 -8.44143e-05 -3.11201e-26)
(0.999989 -7.05802e-06 -6.97183e-26)
(0.999856 -2.86511e-06 -2.17657e-26)
(0.989493 -0.00168775 1.11706e-22)
(0.999979 -6.60042e-05 2.35627e-26)
(1.03346 -0.0884869 -6.33655e-23)
(1.20026 -0.0445049 -1.73672e-22)
(1 -3.03996e-05 5.37958e-27)
(1.03047 -0.0437696 -3.35976e-24)
(1.05519 0.0727436 -1.70862e-21)
(1.00008 -7.4048e-05 -4.14467e-25)
(0.999942 -6.01495e-05 5.5751e-25)
(0.999917 -3.28048e-05 -1.71694e-24)
(1.00021 -7.20463e-05 -8.275e-25)
(0.999981 -5.3601e-05 -1.72718e-25)
(0.99948 -6.18201e-05 -6.01111e-25)
(1.02262 -0.00331903 -5.38993e-22)
(0.999597 -0.00160915 4.36393e-24)
(1.0156 -0.00231509 -1.20199e-22)
(1.00002 -3.08797e-06 3.01829e-25)
(0.99989 -4.012e-05 2.58604e-25)
(0.993245 -0.00225589 1.96251e-23)
(1.00993 -0.00475333 -1.02635e-23)
(0.9819 -0.0357371 3.74034e-22)
(0.992488 -0.0201877 7.43202e-23)
(1.02369 -0.0658758 3.51353e-22)
(1.00029 -0.00163398 -3.02458e-24)
(0.999991 -2.05675e-06 3.22081e-27)
(0.998788 -0.000895537 1.96001e-23)
(1.02632 0.0227291 -3.33888e-22)
(1.00032 -9.53696e-05 -1.5968e-25)
(1.02351 -0.00303533 5.42151e-23)
(0.999992 -2.25156e-06 5.58991e-27)
(1.05038 -0.0672156 -4.82941e-23)
(0.994913 -0.0656451 4.55172e-22)
(1.04549 0.0079482 1.38845e-22)
(1.00006 -1.98881e-05 -2.03285e-25)
(1.14022 0.0190817 -8.10779e-23)
(0.99988 -0.000101938 -1.9406e-24)
(1.03909 -0.000922315 1.5563e-22)
(0.999946 -2.89149e-05 -4.1191e-25)
(1.00001 -1.17272e-05 4.46136e-26)
(1.06649 0.0545853 -1.146e-21)
(1.13866 0.0284466 2.57307e-22)
(1.00264 -0.0854008 -3.27509e-22)
(1.00707 0.0470508 -1.11036e-21)
(0.999804 -0.00219038 -1.69632e-24)
(1.00413 -0.000102208 6.37423e-25)
(0.997729 -0.000239985 3.81457e-23)
(0.999501 -0.00234247 -6.3857e-24)
(0.997776 -0.000132086 -3.21966e-23)
(0.998816 -0.00429037 2.1313e-23)
(1.00255 -0.000504579 1.69025e-23)
(0.998964 -0.000236849 3.78453e-24)
(0.999961 -1.63263e-05 2.54058e-26)
(0.996771 0.0362984 -8.51785e-22)
(1.08148 0.203427 1.82545e-21)
(0.99851 0.0600634 -3.18953e-21)
(1.00001 -0.00012525 7.10371e-27)
(0.999407 -2.06667e-05 -7.38367e-24)
(0.995474 -0.0067794 3.92471e-23)
(0.97222 -0.0400764 2.28329e-22)
(0.99899 -0.000109707 -1.78682e-23)
(1.00001 -6.26432e-06 1.0371e-26)
(1.00137 -0.0259314 -2.35644e-24)
(1.00333 0.0633231 -1.03445e-21)
(1.16534 0.121268 -1.12656e-21)
(1 -5.08881e-06 9.12931e-28)
(1.03337 -0.0451706 -9.75557e-24)
(1.09263 0.034672 8.81012e-22)
(0.999959 -6.82346e-06 -2.65747e-25)
(1.03822 0.121008 -3.8964e-21)
(0.990103 -0.00251542 -6.87818e-23)
(1.03422 -0.0198247 -4.8949e-22)
(0.999992 -4.81947e-06 2.15199e-26)
(1.0446 -0.0322668 6.53563e-24)
(0.996804 -8.56017e-05 -5.75065e-23)
(0.998562 0.074415 1.65396e-22)
(1.24882 -0.0532421 2.70794e-22)
(1.01913 -0.073829 -2.87057e-22)
(0.973824 -0.0485123 3.59511e-22)
(0.977801 0.025104 -7.38857e-21)
(0.985397 0.0937744 9.88682e-22)
(1.00001 -7.13527e-06 -8.18266e-26)
(0.998398 -5.46226e-05 -3.3179e-23)
(1.12396 0.0525975 -2.26273e-22)
(1.01832 -0.00157923 2.29841e-22)
(0.859493 0.0271649 9.9802e-22)
(1.00001 -0.000333699 -9.28633e-26)
(0.999894 -8.00081e-05 -9.34193e-25)
(0.995499 -0.0041913 -2.50468e-24)
(0.999956 -1.6161e-05 3.32474e-25)
(1.00392 0.0422487 -2.00144e-21)
(0.961596 -0.0411211 -4.95074e-22)
(0.999857 -3.02173e-05 -1.18864e-24)
(0.999952 -4.81646e-05 4.07111e-25)
(0.997978 -0.0834291 -5.88128e-22)
(1.0035 0.0210595 2.80919e-21)
(1.01911 0.0972813 7.61959e-22)
(1.00624 -0.0231823 -7.13545e-24)
(1.00192 -0.0111094 6.47083e-24)
(1.00187 -0.00060563 5.38567e-24)
(0.998215 -4.68466e-05 -6.75473e-24)
(0.995631 -0.0800558 2.5353e-22)
(0.888994 0.0497864 -2.57172e-22)
(1.02629 -0.0392757 4.83423e-24)
(0.99135 -0.0206801 -7.22457e-23)
(0.933332 -0.000651518 6.61266e-23)
(0.999723 -3.62073e-05 -1.63961e-24)
(1.09801 0.059988 -1.65289e-21)
(1.03019 0.000522257 -2.33338e-22)
(0.965148 -0.0452642 -3.26511e-22)
(0.909763 0.0576938 -8.52228e-22)
(0.932376 -0.00163262 1.25832e-22)
(1.04781 -0.0577275 -1.098e-22)
(1.00447 -0.00223072 3.27745e-23)
(1.00003 -2.59445e-06 -7.53293e-26)
(1.01372 0.00239446 -5.16956e-22)
(0.99999 -5.97817e-06 -4.03592e-26)
(0.991686 -0.00453602 -2.18021e-23)
(0.99594 0.0524204 1.18854e-21)
(1.01539 0.0772494 -1.34687e-21)
(1.00581 -0.00274594 4.60015e-23)
(0.975872 -0.0016124 -2.10241e-23)
(1.00886 0.100787 -4.04978e-21)
(1.06288 0.0591429 -5.44802e-22)
(0.970073 -0.00404621 -2.53922e-22)
(1.00063 -0.00199734 -2.11459e-25)
(1.02503 -0.0075079 2.28239e-22)
(1.07131 0.199923 -2.49908e-21)
(0.998372 -0.000680224 2.35713e-23)
(0.999968 -1.56223e-06 -3.43451e-25)
(0.96336 -0.00251476 -8.69814e-23)
(1.00366 -0.00119912 2.31754e-23)
(1.01482 0.0797213 3.08463e-21)
(0.971403 0.0991127 3.20705e-21)
(0.997847 -0.000411834 5.88656e-23)
(1.01047 0.0682872 -2.48455e-21)
(0.999722 -1.02587e-05 -1.09303e-24)
(0.990121 0.142361 4.82033e-22)
(1.12148 -0.0877223 9.50948e-23)
(1.03646 0.0167125 1.22603e-21)
(1.05614 0.0411981 -1.14001e-21)
(1.00901 -0.0925298 1.65394e-22)
(1.00106 -0.00403097 5.48565e-25)
(1.05321 0.0698337 3.73532e-21)
(1.00231 -0.00377645 -8.0167e-24)
(1.00024 -0.000110265 -2.9984e-25)
(0.993619 -0.0534086 1.39734e-22)
(1 -1.70296e-05 -3.77673e-26)
(0.996234 -0.00299289 -7.51259e-23)
(1.01508 0.102477 -2.23981e-21)
(1.00488 -0.00241522 4.69657e-23)
(0.963256 -0.000656844 -2.03238e-22)
(0.796901 0.0330941 3.10669e-21)
(0.991633 -0.0213354 2.616e-22)
(1.00017 -0.000318806 1.10665e-25)
(0.998571 -3.6538e-05 3.46028e-24)
(1.0282 -0.0367834 4.07839e-23)
(0.987154 -0.00532343 -1.60531e-22)
(0.995866 -0.082512 4.23572e-23)
(1.00155 0.01964 -3.23021e-23)
(1.01136 0.110803 -1.36536e-21)
(1.00499 -0.0126294 5.88405e-23)
(1.051 0.025761 -1.44036e-22)
(0.995284 -0.00446273 2.09897e-23)
(1.01924 -0.00678183 -2.45746e-22)
(0.999667 -5.51692e-05 1.28477e-24)
(0.997045 -0.000991054 -1.19684e-23)
(0.999973 -1.42018e-05 -2.69457e-25)
(1.04996 0.0758311 1.65807e-21)
(0.929852 0.0634104 3.37008e-21)
(1.00001 -5.80806e-06 1.4964e-26)
(0.999035 -1.3115e-05 -1.9497e-23)
(0.997168 0.0378797 -1.25131e-21)
(1.0298 -0.0235555 -5.04191e-23)
(0.970167 -0.00980821 1.09487e-23)
(0.999963 -3.2654e-05 -2.49593e-25)
(0.979279 -0.000893311 2.93861e-22)
(0.902382 0.0425688 -3.67725e-21)
(0.995567 0.106907 2.66235e-21)
(1.01946 -0.050116 -8.37754e-23)
(0.999957 -9.91603e-05 -1.38342e-25)
(1.07575 -0.0985194 -3.07655e-23)
(1.02291 -0.0808513 -3.60975e-22)
(1.06145 0.19629 1.37626e-21)
(0.999964 -6.30164e-05 -7.5744e-25)
(1.00001 -4.66521e-06 8.83948e-27)
(1.04291 -0.0330564 4.03502e-23)
(0.937838 0.0267759 -2.06189e-21)
(1.0029 -0.00630052 3.64641e-23)
(0.999198 -0.00411388 -6.66159e-24)
(0.992253 -0.00609644 -7.55021e-23)
(1.01157 -0.00517642 1.15042e-22)
(1.18896 0.0712458 -1.05013e-22)
(0.999772 -0.000178932 3.25323e-24)
(1.01069 -0.0261663 8.38091e-25)
(0.999942 -3.16953e-05 7.44862e-26)
(0.959755 -0.0212676 2.58655e-22)
(0.982458 -0.0201285 1.40895e-22)
(1.04407 0.0175201 -1.41712e-22)
(1.05918 -0.000210094 -1.13095e-21)
(0.99987 -0.00011197 8.12893e-25)
(0.999439 -0.00242382 1.57327e-24)
(1.06958 0.120809 1.63922e-21)
(1.01946 0.00447705 3.53741e-23)
(0.985681 -0.0447516 -6.00018e-22)
(0.998278 0.0829029 -2.72211e-21)
(0.992397 0.113347 -5.39394e-22)
(1.01831 0.0505209 -3.9384e-22)
(0.943236 -0.000487773 -3.17891e-22)
(1.00001 -1.11278e-05 1.18024e-25)
(1.00287 0.0330987 -3.8093e-22)
(1.00928 0.0465539 2.28006e-21)
(0.999985 -2.01994e-05 1.59376e-25)
(1.03903 0.00563158 1.07909e-21)
(1.0232 0.115871 3.19805e-21)
(0.996624 -9.45179e-05 4.38023e-23)
(0.999991 -5.34217e-06 5.79945e-26)
(0.999982 -2.37249e-06 -2.13364e-25)
(1.00037 -8.25067e-05 -1.85715e-24)
(0.999999 -6.08978e-06 1.26797e-26)
(0.937301 -0.0119024 6.69883e-23)
(0.982017 0.0988642 4.01047e-21)
(1.00419 0.00123337 1.01068e-21)
(0.987663 -0.00447037 1.60712e-22)
(0.991898 -0.017272 -3.72708e-23)
(0.985957 -0.111718 8.90107e-22)
(1.08571 0.0143082 1.61063e-22)
(0.999956 -4.38189e-05 1.01768e-24)
(0.94707 -0.00261361 -1.55551e-22)
(1.03661 0.0151003 4.67288e-22)
(1 -5.22311e-06 -1.57482e-27)
(1.0423 0.00748053 9.62701e-23)
(0.960261 -0.00095721 -6.76778e-23)
(1.01682 0.0544731 -4.41295e-22)
(0.995184 0.010347 -5.12141e-21)
(0.999477 -1.68833e-05 1.60786e-24)
(0.996795 -0.0019054 5.5876e-24)
(1.00077 -0.000359031 4.06175e-24)
(0.988731 -0.00922916 4.10731e-23)
(1.07217 -0.146714 -3.08182e-22)
(1.00071 -0.00171433 4.7667e-24)
(0.999987 -1.40106e-05 -1.75556e-25)
(0.991614 -0.00670577 1.23274e-22)
(0.997719 -0.000172052 2.69641e-23)
(0.999876 -0.000249944 1.02199e-24)
(1.02123 -0.0138612 1.20889e-22)
(0.938246 -0.0140957 9.52839e-22)
(0.993886 -0.00466449 -2.58617e-23)
(0.996668 -0.00246881 1.83592e-23)
(1.02273 -0.0084463 -7.92936e-22)
(0.999961 -2.06415e-05 -4.29905e-27)
(0.998298 -0.0299228 -4.15715e-23)
(1.05212 0.192443 -1.73776e-21)
(1.00003 -0.000229273 2.6394e-25)
(0.956244 -0.0215566 6.41008e-22)
(0.996097 0.139115 5.36035e-21)
(0.961077 -0.0438128 2.38955e-22)
(1.01382 0.108265 -4.43913e-21)
(0.999936 -8.06767e-05 -5.24398e-25)
(0.99999 -7.37448e-06 2.32325e-26)
(0.945525 0.0458473 -3.53006e-21)
(0.999905 -1.14352e-05 -1.26658e-24)
(1.0143 -0.00567393 7.10261e-24)
(1.00003 -8.2425e-06 -8.27659e-27)
(1.07537 -0.0707745 2.01266e-23)
(1.02465 -0.0228953 1.44135e-22)
(1.00003 -1.49212e-06 -2.28155e-25)
(0.999538 -3.05389e-05 -5.43744e-24)
(0.976783 -0.0262144 4.35789e-23)
(1.02043 -0.00883218 1.34265e-22)
(0.956895 0.109571 2.96891e-21)
(1.13323 0.0633167 4.78893e-22)
(0.970627 -0.0458404 1.49504e-22)
(1.00001 -6.70401e-06 -6.11127e-26)
(1.04369 0.0256099 -2.31746e-21)
(1.00003 -1.21242e-06 -1.27695e-25)
(0.999833 -1.81602e-05 3.36191e-25)
(1.07702 -0.0160216 -3.49195e-22)
(0.915133 0.139988 -2.74808e-21)
(0.975578 -0.0444177 -3.88749e-23)
(1.01245 -0.00540652 -5.49024e-23)
(0.942773 0.146416 4.5178e-22)
(0.988707 -0.00387324 1.76281e-22)
(0.995029 -0.000119891 1.9342e-23)
(0.999032 -0.000776626 4.3262e-24)
(1.01213 0.0719082 2.38392e-21)
(0.999968 -1.92518e-05 1.3363e-25)
(0.984491 -0.0549967 -2.57947e-22)
(0.999978 -8.79211e-06 2.40982e-25)
(0.999922 -2.60583e-05 6.09631e-25)
(0.998951 -0.000304571 -1.72731e-23)
(0.970128 -0.0124301 5.82007e-23)
(0.999062 -0.0305479 6.36037e-23)
(0.801539 0.0497266 3.3583e-21)
(0.959246 -0.013714 -4.03958e-22)
(1.00541 0.00629788 1.16045e-21)
(1.1382 0.0546915 2.74837e-22)
(0.996809 -0.00546505 -5.6507e-24)
(1.05521 -0.0361598 -1.34115e-22)
(1.00263 -0.00338013 -3.64406e-23)
(1.01863 -0.082664 1.09528e-22)
(0.970647 -0.0374091 1.41173e-22)
(1.02563 0.0100979 4.80502e-22)
(0.992906 -0.00567592 3.39782e-23)
(0.998723 -0.00214242 -1.08657e-23)
(1.00002 -2.26301e-06 -6.23442e-26)
(0.970824 -0.0152578 2.98662e-22)
(0.999916 -7.55707e-06 8.20203e-25)
(1.00456 0.0827495 -7.48248e-21)
(1.00585 -0.00738473 4.18086e-23)
(0.996225 -0.00231245 -1.3277e-23)
(1.13959 -0.0619849 2.66835e-22)
(0.96962 -0.0850184 1.79203e-22)
(1.01707 -0.000362102 3.02234e-22)
(1.00007 0.000121577 1.46071e-21)
(1.00022 0.00012722 -1.17148e-21)
(1.00001 -2.0566e-07 1.58332e-27)
(1.00001 -1.28107e-07 -2.75987e-27)
(1.02316 -0.00155019 4.12525e-22)
(1.00001 -4.11202e-07 -1.76206e-26)
(1.00046 -0.00056668 3.73811e-24)
(1.18244 0.00457419 1.39269e-23)
(1.00054 -0.148994 4.22843e-22)
(1.00544 -0.154247 1.21745e-22)
(0.994414 -7.44132e-05 -8.67421e-23)
(0.998404 -0.000628663 -4.61658e-23)
(1.00073 -0.00622717 -2.74443e-24)
(0.993821 -0.0245262 -5.43772e-23)
(1.01576 -0.00169029 -2.46315e-22)
(1.02054 -0.00318986 1.81204e-23)
(0.968889 -0.0205714 4.02913e-23)
(0.999961 -6.92353e-05 -2.58159e-25)
(0.999955 -2.2699e-05 -3.73763e-25)
(0.999866 -0.000272493 -1.25273e-24)
(0.99948 -0.00252013 1.41357e-25)
(0.974974 -0.000225727 -3.12684e-22)
(1.05204 -0.0270225 1.76785e-22)
(1.00001 -2.71417e-06 4.54252e-26)
(0.99883 -0.000793502 2.23758e-24)
(1.00081 -0.00426405 -3.49455e-24)
(1.01789 -0.0159709 1.82111e-22)
(0.970715 -0.019987 5.19117e-22)
(1.05314 -0.0352894 -4.20265e-23)
(1.00377 0.00468907 -3.18817e-22)
(1.031 -0.0383224 3.62102e-23)
(1.01357 0.0756685 -1.48739e-21)
(1.00003 -4.46346e-06 -1.82112e-26)
(1.00074 -0.000775784 2.37249e-25)
(1.00313 -0.00622109 -1.67648e-23)
(1.02425 -0.0239752 3.37029e-23)
(1.04062 0.0011288 -2.24027e-22)
(0.987127 -0.0445837 -1.74761e-23)
(0.999642 -0.0575661 -8.1598e-23)
(1.00544 0.0431201 -1.26948e-21)
(1.04158 -0.0772319 -1.58966e-22)
(0.977078 -0.0664293 3.72833e-23)
(1.01308 -0.0250727 -2.44414e-23)
(0.993977 -0.0154535 5.18225e-23)
(1.03498 -0.00582944 -2.43095e-22)
(1.18539 -0.00140476 -5.27419e-24)
(1.03023 -0.131218 4.24351e-22)
(1.01326 -0.0460342 8.95495e-23)
(1.00044 -0.00387845 -1.71752e-24)
(1.00017 -0.00193384 -1.60139e-24)
(0.991576 -0.000516989 2.20743e-22)
(1.06332 0.00408321 -3.76685e-22)
(1.03733 0.0559088 -2.77124e-21)
(1.02388 -0.0220094 -1.31958e-22)
(0.999985 -1.19983e-06 1.68221e-25)
(0.96802 -0.074715 -3.41103e-22)
(1.00005 -3.5437e-05 5.25587e-25)
(1.00225 -0.000794827 -5.01608e-25)
(0.99977 -0.000340031 1.17301e-24)
(0.999962 -1.7255e-06 -6.48381e-26)
(1.00026 -7.97083e-05 -7.57975e-25)
(1.02463 -0.0101795 -4.96026e-22)
(1.06505 -0.0896778 1.16659e-22)
(0.999807 -0.000186038 -2.20414e-24)
(0.999971 -1.56214e-05 4.01121e-25)
(0.999933 -9.85779e-06 8.37528e-26)
(0.979836 0.0573664 -3.56661e-21)
(0.973122 -0.00209988 2.81498e-22)
(1.0035 -0.000328011 4.54749e-24)
(0.956257 0.0455504 -2.06087e-21)
(1.03747 -0.0557238 2.46064e-23)
(0.992315 -0.0318515 -2.15883e-22)
(1.00765 -0.0347966 -1.71925e-23)
(0.999962 -2.22574e-05 3.07483e-25)
(0.966634 0.0454941 5.84822e-21)
(0.994559 -0.00364222 2.32822e-23)
(0.998914 -0.00156793 -2.33013e-23)
(0.99659 -0.00238108 9.03799e-24)
(0.98812 -0.0102494 6.56474e-23)
(0.998724 -0.000426589 7.18063e-24)
(0.969596 -0.0212358 -2.51949e-22)
(0.966833 -0.0142532 -5.9938e-23)
(1.06351 0.190427 -2.56725e-22)
(1.00112 -0.000563474 -1.43971e-24)
(1.13392 -0.0270366 1.33625e-23)
(1.0001 -8.977e-05 -5.15313e-25)
(1.12173 0.0929691 1.642e-21)
(0.999643 -0.00188069 2.22871e-24)
(0.896591 0.0382896 5.76052e-21)
(1.00019 -0.000184894 1.76263e-24)
(1.09386 -0.0618767 3.29539e-23)
(1.00076 -0.000399027 -9.99178e-24)
(0.992339 -0.00421529 -4.51786e-23)
(0.998996 -0.000349534 5.51922e-24)
(0.999974 -0.000151544 -8.22732e-25)
(1.00111 -0.00451065 7.06737e-24)
(1.00211 -0.000828685 -1.2914e-23)
(1.00022 -0.000111099 -4.19104e-25)
(1.07999 -0.1002 7.709e-22)
(0.983644 -0.00664749 1.27669e-22)
(1.02998 0.00329854 -2.10942e-22)
(0.998759 -1.62978e-05 -4.53313e-24)
(1.00286 -0.00837779 1.128e-23)
(0.999673 -0.00196527 1.06784e-24)
(0.981905 -0.0406465 -1.54236e-22)
(1.02688 0.0289873 1.37972e-21)
(0.99969 -0.000223704 -5.20531e-24)
(0.999947 -5.7312e-05 -4.8834e-25)
(1.02931 0.0810518 -3.19334e-22)
(0.999197 0.112997 -6.05145e-21)
(0.956374 -0.00992792 -2.29271e-22)
(1.09588 0.116635 2.34572e-22)
(0.999488 -0.00015481 -6.07951e-25)
(0.957497 -0.0101537 1.90166e-24)
(0.943235 0.109403 4.19345e-21)
(0.951145 -0.0374081 3.00326e-22)
(0.999384 -9.34389e-05 3.76497e-24)
(0.998976 -0.000171123 -3.96528e-24)
(1.04417 0.0194404 -4.57069e-22)
(1.00003 -5.87014e-05 7.6221e-26)
(0.995698 -0.00509635 2.8517e-23)
(1.0218 -0.0524039 -1.32913e-22)
(0.986156 -0.000251859 -6.35434e-23)
(0.999915 -2.91814e-05 8.04316e-25)
(1.21746 0.167754 -6.21638e-22)
(0.976998 -0.0289622 1.82859e-23)
(1.08743 0.154972 -1.44899e-21)
(1.01894 0.00225603 -1.91441e-22)
(0.994797 -0.0001116 1.24784e-23)
(0.989302 0.0719827 -5.92174e-22)
(1.04245 0.016724 -1.98535e-22)
(1.05263 0.0292711 -3.58909e-21)
(0.994857 -0.00487944 1.15814e-22)
(1.04137 0.103339 1.2393e-21)
(0.95833 -0.0326085 -6.7301e-23)
(1.00343 -0.00969138 -2.14571e-23)
(1.01905 -0.0166166 -2.02873e-22)
(0.998106 -0.00138965 -3.50033e-25)
(1.00152 -0.134973 -4.28068e-22)
(0.998753 -0.000856635 4.1071e-25)
(0.999995 -5.22097e-06 1.48015e-26)
(1.01089 -0.00827818 2.99619e-23)
(1.02395 0.081387 2.1274e-21)
(1.02587 0.0306839 -7.90635e-22)
(1.00002 -3.47237e-06 -7.40865e-26)
(1.07432 0.114331 -1.89569e-23)
(0.947346 0.068064 1.02599e-21)
(1.01833 -0.146056 9.72622e-23)
(0.999885 -0.000218857 1.19779e-24)
(0.999956 -9.38671e-05 -1.5979e-25)
(0.999243 -0.00112433 2.15332e-24)
(1.28002 0.103299 1.01152e-22)
(0.999977 -3.73431e-06 -4.85342e-25)
(1.04001 0.0759438 -1.44565e-21)
(0.999222 -0.000198093 6.11434e-24)
(1.03134 0.00273339 -6.98001e-22)
(0.999819 -2.012e-05 3.49815e-25)
(0.999973 -0.000323334 4.58113e-25)
(1.01048 0.141336 -1.59323e-21)
(0.998845 -0.00168394 2.02149e-23)
(1.00257 -0.0387532 4.14871e-23)
(0.967929 0.0959452 -3.44468e-21)
(0.999934 -2.12086e-05 -8.34843e-25)
(1.00001 -8.39341e-06 1.02056e-25)
(0.98181 -0.042713 -2.49406e-23)
(1.02895 0.00615924 -7.69173e-22)
(0.978587 0.100465 -2.27432e-21)
(0.863222 0.128747 -5.43271e-21)
(0.998645 -0.000457271 -9.65706e-24)
(0.90355 0.0630668 -1.42347e-21)
(0.995951 -0.00260583 -3.31183e-23)
(1.03653 -0.0162334 2.13816e-22)
(1.02918 -0.0130302 -6.94339e-22)
(1.05488 -0.0146335 -3.67901e-22)
(0.999997 -6.10633e-06 9.13242e-27)
(1.01201 -0.0105382 3.24229e-24)
(1.07772 0.154339 6.90756e-22)
(1.00009 -0.00030115 9.271e-25)
(1.03097 0.0019623 1.16459e-21)
(1.00015 -4.14768e-06 0)
(1.10349 0.0206283 -2.95989e-22)
(1.0299 -0.00336244 -4.38078e-22)
(0.874293 0.133998 -4.7005e-21)
(1.13771 -0.02355 -2.46089e-23)
(1.01566 0.0664109 7.84259e-23)
(1.00005 -4.20426e-05 7.32914e-26)
(0.992804 -0.014861 1.01456e-22)
(0.934236 0.052507 2.02249e-21)
(0.999864 -4.87474e-05 -5.30686e-25)
(1.00007 -2.30524e-05 7.98613e-25)
(1.05807 -0.0727659 1.69664e-22)
(1.03937 -0.0754815 -3.02303e-22)
(1.01282 0.104937 1.03552e-21)
(0.98766 -0.010913 -9.91121e-24)
(0.998394 0.0965009 1.43075e-22)
(0.996405 -0.00664332 -6.96371e-23)
(0.961386 -0.0399705 2.56968e-22)
(1.13562 -0.195977 -7.18805e-22)
(0.984964 -0.0436995 2.0165e-22)
(1.01394 -0.0340636 -2.07858e-23)
(0.885242 0.139631 -8.29461e-22)
(0.851753 0.0316048 2.31653e-21)
(0.999998 -0.000167064 9.29072e-26)
(1.01203 -0.0117361 -1.9423e-23)
(0.999998 -1.44351e-05 -1.6275e-26)
(0.996153 -0.00331597 1.61749e-23)
(0.971783 -0.0460555 2.45754e-22)
(0.982269 -0.0367478 -5.10812e-22)
(1.11601 0.0937923 -8.83215e-22)
(0.998803 -0.00442331 -6.18115e-24)
(0.896578 0.143293 -2.63816e-21)
(0.986582 -0.0407394 -7.26556e-23)
(1.01287 0.00992819 9.02227e-22)
(1.06451 -0.119713 1.06901e-21)
(0.997129 -0.00210675 -4.98924e-23)
(0.995947 -0.00672764 -4.7886e-23)
(0.983047 -0.0427207 3.00208e-22)
(0.999987 -0.000120285 2.56549e-25)
(0.998946 -3.33074e-05 -2.79417e-24)
(1.01179 -0.0578483 -4.02772e-22)
(0.990175 -0.000179266 -8.88286e-23)
(0.951778 -0.0208171 4.79951e-22)
(0.953025 -0.0389463 2.81642e-22)
(0.906892 0.146918 -4.45418e-22)
(1.00066 -0.0023606 -3.75331e-24)
(1.00008 -2.43607e-05 4.46658e-25)
(1.00005 -3.86473e-05 2.84565e-25)
(0.975147 -0.0348452 -5.85975e-22)
(1.02312 -0.0034514 3.9941e-22)
(0.958885 -0.0261915 -2.38058e-22)
(1.02172 -0.0361585 2.23785e-24)
(1.29475 -0.0677814 8.94067e-22)
(0.939663 0.0425443 5.18877e-21)
(0.916949 0.149376 -3.36721e-22)
(1.00448 -0.119652 -1.3717e-22)
(1.18336 0.0825273 1.80116e-22)
(0.989617 -0.00854694 5.94242e-23)
(1.28478 -0.0244629 8.8706e-22)
(1.01574 -0.011767 3.69865e-23)
(1.00091 -0.000481195 -1.88385e-23)
(1.06496 0.0296567 -1.00462e-21)
(0.926718 0.150402 -7.91201e-22)
(0.999983 -1.91611e-06 1.05809e-25)
(0.993112 -0.000160576 9.22912e-23)
(1.11249 0.144083 -2.34081e-21)
(0.999966 -1.11709e-05 1.66285e-25)
(1.01898 -0.00304428 9.75742e-23)
(1.02297 -0.0763693 -3.34524e-22)
(0.935548 0.151257 -6.7786e-21)
(0.970517 -0.0104859 2.50617e-23)
(1.08988 0.102785 1.94725e-21)
(0.999965 -0.000309848 -5.62184e-25)
(0.99897 -0.000384419 -1.19266e-23)
(0.999237 -0.001315 -3.60132e-24)
(0.974564 -0.097954 -1.05326e-22)
(0.975436 -0.101002 -1.48603e-23)
(0.985575 -0.000314163 4.07293e-23)
(1.00587 -0.000478617 -1.92988e-24)
(0.999989 -8.13363e-05 5.06286e-26)
(0.98552 -0.056039 2.53395e-22)
(0.999952 -1.75008e-05 3.99906e-25)
(1.00109 -0.0753303 2.56688e-22)
(1.08389 0.0737727 2.22084e-21)
(0.999838 -0.000348456 7.02973e-25)
(0.99974 -1.01469e-05 1.24685e-24)
(0.998488 -4.5951e-05 -1.21016e-23)
(0.995467 -9.96172e-05 -3.39185e-23)
(1 -3.06839e-05 -6.79514e-26)
(1.00545 -0.0184368 2.6988e-24)
(0.99958 -0.0275945 -8.60139e-23)
(1.00031 -0.00262112 -1.5359e-24)
(0.999693 -0.00183518 -1.45974e-24)
(1.00021 -0.00020444 -1.75286e-24)
(0.979539 -0.00408078 -1.26135e-22)
(1.00721 0.106362 -4.61336e-24)
(1.00796 -0.0125771 -1.55445e-22)
(0.966667 0.032889 -1.56382e-21)
(0.999979 -1.13325e-05 2.10247e-25)
(1.01319 0.0112509 5.96701e-22)
(0.957808 -0.0111395 9.57304e-23)
(0.996709 -0.0164158 3.95918e-23)
(1.00006 -0.000344172 2.39642e-25)
(1.07706 -0.0237622 -1.66745e-22)
(0.944227 0.151146 4.41421e-21)
(0.987485 -0.0124635 1.51982e-22)
(0.999946 -4.2453e-05 9.32711e-25)
(1.0005 -0.000579483 -1.99336e-24)
(1.04276 0.0296512 1.28605e-21)
(0.947388 -0.0285454 -1.75712e-22)
(0.990612 -0.0706318 4.13354e-22)
(1.0011 -0.00604919 -3.9067e-24)
(1.00077 -0.00443642 1.51208e-24)
(1.00009 -2.128e-05 -7.50292e-25)
(1.05565 -0.0263833 -1.08585e-22)
(1.04628 -0.13437 -9.12767e-23)
(0.999361 -0.000438923 9.81313e-24)
(0.98125 -0.0416417 2.91239e-22)
(1.06131 -0.0277959 -1.44596e-22)
(1.0151 0.0440234 8.90894e-22)
(0.971281 -0.00376219 -1.52815e-22)
(1.00541 0.11218 -3.81035e-21)
(0.976371 -0.00701557 -1.00591e-22)
(1 -3.33325e-06 -6.88022e-28)
(0.956258 -0.0319586 3.40063e-22)
(0.999955 -3.49033e-05 -7.79784e-25)
(1.02487 0.0122726 1.17361e-21)
(1.00127 -0.000551028 1.4709e-23)
(1.0522 -0.0168268 1.20481e-22)
(1 -2.32923e-06 0)
(0.999901 -0.000954767 1.59647e-24)
(1.04181 -0.146367 6.50665e-23)
(0.936198 -0.0163917 1.06552e-23)
(0.928529 0.138042 2.43388e-21)
(0.999928 -2.33374e-05 3.32913e-25)
(1.00119 0.0216142 8.12269e-22)
(1.07629 -0.0188326 3.67113e-22)
(1.03841 0.00776975 1.02432e-21)
(0.986573 0.0901158 4.71922e-22)
(0.999508 -1.62126e-05 4.9678e-24)
(1.00208 0.00673085 -3.38786e-23)
(1.0228 0.00950691 1.73989e-22)
(0.957752 -0.0233695 1.81092e-22)
(1.01375 0.0090661 -5.51359e-22)
(1.02312 -0.0241412 -1.82867e-22)
(0.998932 -0.00682332 1.19891e-23)
(1.06508 0.118363 -1.78173e-21)
(0.982881 -0.00711827 9.14478e-23)
(0.993005 -0.00493874 4.7391e-23)
(1.12146 0.0331108 -2.63888e-22)
(1.02981 0.00121296 3.24972e-22)
(1.05279 -0.0694308 2.56273e-22)
(1.00412 0.154559 2.87966e-21)
(1.00085 -0.0469563 -1.60752e-23)
(0.997109 -7.58878e-05 -2.907e-23)
(0.993585 -0.0770169 6.99414e-23)
(0.999822 0.0637963 2.68917e-21)
(0.951954 0.150319 2.99662e-21)
(1.0003 -0.000338287 2.49333e-25)
(1.18948 0.0791179 3.82359e-22)
(0.957078 -0.0328017 -6.89552e-23)
(0.977615 -0.106164 -1.83344e-22)
(1.12362 0.087633 -1.42355e-21)
(0.989945 -0.00342373 -1.56307e-23)
(0.97202 -0.038987 -1.62462e-22)
(1.0569 0.00010001 4.38849e-23)
(1.14274 0.206962 -2.42384e-21)
(0.991263 -0.00438636 -2.96399e-23)
(0.948365 -0.0031653 -8.59178e-24)
(0.996639 0.0757029 -3.02005e-21)
(0.999499 -0.0414403 -4.33659e-23)
(0.99999 -1.70664e-05 -2.3191e-26)
(0.999029 -0.00136193 2.28488e-23)
(0.989803 -0.000188834 1.04733e-22)
(0.987348 -0.0541684 6.83845e-22)
(0.990386 -0.00143314 -1.96244e-22)
(0.937147 -0.0189822 -2.92929e-22)
(1.0282 -0.050087 4.21576e-23)
(1.03728 -0.134985 4.69008e-22)
(0.991082 -0.00161124 -3.74785e-23)
(1.03143 -0.0453107 -4.45494e-23)
(1.11478 0.163448 6.1668e-22)
(1.0002 -0.00185427 1.8826e-25)
(0.971967 -0.00752989 2.84436e-22)
(1.12188 -0.155173 -7.21593e-24)
(0.978938 -0.00257183 -1.37699e-22)
(0.996949 -8.0836e-05 -5.18638e-23)
(0.998716 0.0708807 2.83294e-21)
(1.00003 -7.6604e-06 -6.3297e-26)
(0.938353 -0.0111162 2.84362e-22)
(1.0017 -0.0157765 -1.50094e-23)
(1.0904 0.115229 6.9793e-24)
(1.01229 -0.00362962 5.74547e-23)
(1.29063 0.0864843 3.15275e-22)
(1.03302 0.0211927 4.66049e-23)
(1.00211 -0.00506484 4.42467e-23)
(1.0071 -0.0547072 8.40554e-23)
(1.02829 -0.0131943 -4.75012e-23)
(0.961423 0.0542761 1.60066e-21)
(0.999827 -4.39252e-05 1.11328e-24)
(1.01249 0.0803416 -1.75933e-21)
(0.998898 0.0530138 -2.0148e-21)
(0.976767 -0.111698 6.25763e-23)
(0.975049 -0.106701 4.85051e-22)
(1.09357 0.00260188 2.90193e-22)
(0.999169 -6.80081e-05 8.06418e-24)
(0.999943 -2.23779e-05 8.74292e-25)
(0.999438 -0.000185169 4.40689e-24)
(0.981803 -0.0129943 -4.81608e-23)
(0.968017 -0.0468767 1.15876e-22)
(1.01976 -0.0852389 -3.46775e-23)
(1.00481 -0.0258013 9.61365e-23)
(1.09694 0.081185 1.13211e-21)
(0.813582 0.0780659 -1.21808e-21)
(0.998961 -0.000685873 -7.79292e-24)
(0.793035 0.00358636 -3.20284e-21)
(1.00931 -0.0202028 -2.64574e-23)
(0.999971 -1.11959e-05 -4.0808e-25)
(1.06484 -0.100811 -8.7136e-23)
(1.0239 -0.0353712 2.49152e-23)
(1.00278 -0.00992265 -3.57403e-24)
(0.982433 0.0949124 -2.09817e-21)
(0.992769 -0.00433423 4.18174e-23)
(1.02962 0.00479871 7.33331e-23)
(1.00011 -8.28225e-05 1.19237e-24)
(1.09928 0.112609 -2.44144e-21)
(1.0031 -0.0100269 -4.20174e-24)
(0.999978 -5.16783e-05 -1.3659e-25)
(1.12105 0.16618 9.08248e-22)
(1.00493 -0.00150482 7.09607e-23)
(1.00101 -0.000516567 9.44885e-24)
(0.991719 -0.00498353 -2.55889e-23)
(0.999963 -1.25935e-05 2.23254e-25)
(1.02121 -0.0505709 5.53506e-23)
(0.963398 -0.0435715 1.66678e-22)
(0.99174 -0.00145211 -4.40265e-23)
(1.00225 -0.0113586 8.00167e-25)
(0.979942 -0.0458144 3.31184e-22)
(1.11317 -0.205393 -6.29923e-22)
(1.00687 -0.00216141 5.98275e-23)
(0.99278 -0.0233156 2.9318e-23)
(1.045 -0.106392 -2.0706e-22)
(0.999988 -2.27762e-06 -1.1576e-26)
(1.03798 -0.0521457 3.65712e-23)
(1.04272 0.0810915 1.82942e-21)
(1.02897 0.0024691 -1.54389e-21)
(1.00011 -0.000923666 9.89974e-25)
(1.06207 0.00171916 -2.14663e-22)
(1.00259 -0.00428554 6.61284e-23)
(1.04481 0.0782985 6.54585e-22)
(1.01415 -0.0187562 5.21389e-24)
(0.948333 0.108042 -2.17023e-21)
(1.16716 0.106698 -3.59886e-22)
(0.787535 0.00953583 6.02799e-22)
(0.998709 -0.00186598 -8.89025e-24)
(0.867037 0.0314662 -2.39553e-21)
(1.01024 -0.0051227 -7.18586e-23)
(0.992755 -0.000163478 2.71042e-23)
(0.995238 -0.000118438 5.27451e-25)
(0.810675 0.0469931 -1.83807e-21)
(0.999954 -9.88961e-06 -9.67552e-26)
(0.998971 -0.00146853 3.13472e-24)
(0.974107 -0.00185346 -3.14781e-24)
(1.00121 -0.000486901 -1.74073e-23)
(0.999941 -4.70097e-05 -9.23527e-25)
(0.99995 -3.86113e-05 1.17529e-24)
(1.00268 -0.000556691 -2.12414e-23)
(1.02361 -0.00172023 1.30249e-22)
(0.999306 -0.00050381 3.0817e-24)
(1.0003 0.0525106 6.00158e-23)
(0.999641 -0.00262333 2.11161e-24)
(1.25922 -0.00193049 -2.27491e-23)
(1.00933 -0.00838729 1.78473e-23)
(0.989493 -0.00368356 1.94079e-22)
(1.07182 0.0140645 -2.10515e-22)
(0.999772 -0.00195785 -1.88207e-24)
(0.951042 0.135813 -3.19339e-21)
(0.893211 0.102492 7.27647e-21)
(1 -6.94939e-05 6.739e-26)
(1.03706 -0.00683991 -1.40385e-22)
(1.0068 -0.00250682 2.94189e-23)
(0.997228 -0.00414565 1.0284e-23)
(1.01502 0.00941745 -4.74937e-22)
(0.998605 -0.000933863 1.70446e-23)
(0.805132 0.0738184 2.44572e-21)
(1.00027 -0.001211 -1.24365e-24)
(0.988046 -0.0274939 1.41045e-22)
(1.00546 -0.00634258 -1.5106e-23)
(1.00011 -2.15497e-05 4.52083e-25)
(0.99648 -0.0590701 2.53881e-22)
(1.0341 -0.0575035 -6.7994e-23)
(1.00056 -0.000495311 -2.23515e-26)
(1.03081 -0.000898192 2.21818e-22)
(1.00474 -0.0157437 -1.29101e-23)
(0.940845 0.0611537 8.88722e-21)
(1.04626 -0.0293035 1.53276e-22)
(1.00584 -0.00100926 -5.68711e-23)
(0.951049 0.0426149 -1.38048e-21)
(1.00001 -4.46845e-06 -6.80145e-26)
(0.998725 -0.00419361 -2.56177e-23)
(1.03863 0.00026237 -4.30558e-22)
(1.00001 -7.06892e-06 8.46961e-26)
(0.988954 -0.00999174 5.1831e-23)
(1.00853 0.0617103 -1.39514e-21)
(0.991163 -0.00330739 -3.20852e-23)
(0.999407 -0.000402741 -5.28749e-24)
(1.01083 -0.0981512 2.11167e-22)
(0.999817 -0.000310528 5.09513e-25)
(1.06158 0.18031 -1.15744e-21)
(1.00713 -0.0943828 -7.57595e-22)
(1.03041 0.00497403 1.58081e-21)
(0.99996 -8.99729e-05 -3.34018e-25)
(0.998894 -0.00073476 -2.85678e-23)
(0.996578 -0.00040538 -2.20318e-23)
(1.00001 -4.17035e-06 3.52591e-26)
(0.987548 -0.0118905 1.73982e-22)
(1.03322 -0.0205597 2.3319e-22)
(1.03429 0.00698784 2.92088e-22)
(1.00145 -0.00044213 -1.28926e-24)
(0.954539 -0.0104839 -3.4187e-22)
(0.984884 -0.00586113 -3.00252e-23)
(1.00646 -0.00260984 -4.68455e-23)
(0.989363 -0.00689291 3.17126e-23)
(0.991284 -0.00194006 -1.14148e-22)
(1.01041 -0.0144635 5.049e-23)
(1.00001 -5.31618e-06 -3.15676e-26)
(0.943679 -0.0234338 5.08827e-22)
(0.99707 -0.0044126 -4.32231e-23)
(0.961648 0.0425137 -6.953e-21)
(1.00028 -0.000365921 -3.0141e-24)
(1.0132 -0.128023 -1.84872e-22)
(0.952683 -0.0111268 -2.60541e-22)
(0.983156 -0.0204531 -1.89056e-23)
(0.999977 -2.03375e-05 4.18127e-25)
(1.00001 -6.57056e-06 1.64778e-26)
(1.01979 0.0248074 -1.57582e-21)
(1.02447 0.103792 -1.91718e-21)
(1.06869 -0.0192931 -2.79384e-22)
(0.96605 0.0511248 -2.01176e-21)
(0.996612 -0.00203321 4.25527e-23)
(0.971553 -0.0111567 3.90049e-23)
(0.98119 -0.0122463 -6.22073e-23)
(0.996973 -0.000855068 1.69867e-23)
(1.00062 -0.00060897 -2.16013e-25)
(1.00145 -0.00154554 1.99885e-23)
(1.00002 -4.26048e-06 -1.26073e-25)
(1.00385 -0.0021108 -3.04958e-23)
(1.00019 -0.000225964 9.92167e-25)
(0.996286 -0.00282735 -2.58748e-23)
(1.0016 -0.00211061 -1.42735e-23)
(0.992099 -0.000398239 -9.4387e-23)
(1.00021 -0.000221498 4.25504e-24)
(0.990982 -0.00702513 1.84708e-23)
(0.999999 -1.34696e-05 2.89625e-26)
(0.999079 -0.000594205 2.00021e-23)
(1.00412 0.0145553 1.12797e-21)
(0.9736 -0.00821138 1.73385e-22)
(1.00536 -0.0069578 4.82236e-23)
(1.17988 0.0278909 1.78822e-22)
(0.967997 -0.00411558 -2.60641e-23)
(0.999244 -0.00019309 2.23704e-23)
(1.11094 0.0806065 -2.74395e-22)
(0.943175 -0.00373611 9.44336e-23)
(1.09712 0.0180339 -8.00656e-23)
(0.976485 -0.000495285 -1.92834e-22)
(0.999871 -4.9264e-05 2.27739e-24)
(1.00001 -2.97248e-05 -3.03108e-26)
(0.999917 -1.54337e-05 9.37888e-25)
(0.991929 -0.00407279 4.45198e-23)
(1.00703 -0.000603853 1.44208e-22)
(1.04529 0.026772 -8.72247e-22)
(1.18205 0.015895 -1.17582e-22)
(0.975962 0.128002 3.20476e-22)
(0.985173 0.132031 -8.0076e-22)
(0.993643 -0.00437582 -7.93294e-23)
(0.983717 -0.0129458 1.8136e-22)
(1.18803 -0.0597479 -6.0917e-22)
(0.992242 -0.000492954 1.88916e-22)
(1.02976 0.00652071 2.75545e-22)
(0.98943 -0.00936068 3.55116e-23)
(0.999946 -0.000270714 5.31548e-25)
(0.999686 -0.000237399 5.36439e-24)
(1.03611 -0.00738256 -9.63513e-23)
(0.99616 -0.00424913 1.2366e-25)
(1.03083 -0.0554632 8.9448e-23)
(0.969055 -0.013267 -3.69408e-22)
(0.999969 -0.000237768 -2.29766e-25)
(1.0566 0.02917 -8.93086e-22)
(0.890673 0.0198588 6.05825e-22)
(0.996622 -0.00261333 -2.15467e-23)
(1.00518 0.145061 -1.06414e-21)
(1.00232 -0.000482124 -4.49377e-23)
(1.00149 0.124495 -6.29413e-22)
(1.00431 -0.0355465 4.33391e-23)
(1.03929 0.00120819 7.56362e-22)
(1.02954 -0.0123589 8.38961e-22)
(0.996507 -0.126221 2.68767e-22)
(0.999981 -1.7159e-05 -2.46912e-25)
(1.30214 -0.0703211 -1.42812e-21)
(1.00696 -0.00113895 -4.15424e-23)
(1.19121 -0.18725 -7.9214e-22)
(0.978831 -0.0165366 1.67975e-22)
(0.990554 -0.00751842 -1.03138e-22)
(1 -4.3673e-06 -1.4826e-27)
(1.00525 0.0168107 -4.37952e-22)
(0.993165 -0.00209731 -1.06386e-22)
(1.0091 -0.00881545 -1.11044e-23)
(1.05425 -0.148312 -4.81836e-22)
(1.01897 -0.048392 -3.50029e-23)
(1.00504 -0.013188 -5.67491e-23)
(1.0123 0.00741722 2.86416e-22)
(1.00786 -0.00683731 3.3045e-23)
(1.05747 0.0581694 -1.40444e-21)
(0.988415 0.0964947 -2.76378e-21)
(1.00342 -0.000594222 -7.0277e-24)
(1.01125 -0.0453599 1.9777e-22)
(0.974309 -0.0187752 5.20559e-23)
(1.06277 0.0338005 -2.36804e-22)
(1.02225 0.142617 -6.03995e-22)
(0.999832 -0.000911613 -4.22921e-27)
(1.28664 -0.00540117 -1.10471e-22)
(1.00597 -0.0336214 2.86545e-23)
(1.09305 0.0280509 7.82615e-22)
(0.984248 -0.0180578 -4.01108e-22)
(0.999644 -0.000773021 -3.67899e-24)
(1.02227 -0.0598887 -7.24417e-23)
(1.0567 -0.0107745 -5.68812e-22)
(1.18997 0.130969 8.28755e-22)
(1.01103 0.0523427 1.9856e-22)
(1.19391 -0.0492089 -6.87362e-22)
(0.99999 -0.000138904 8.3386e-26)
(1.00025 -0.000930645 -2.08377e-24)
(0.997088 -0.000142125 2.25068e-23)
(1.0389 -0.10409 7.826e-22)
(0.98428 -0.00620075 1.37737e-23)
(1.0222 -0.00900116 -1.06182e-22)
(1.12506 0.0298289 -3.18523e-22)
(0.961514 -0.0247992 2.12196e-22)
(1.04188 0.026417 -4.81428e-22)
(1.23092 0.143918 9.42865e-22)
(0.999961 -0.000523206 4.26879e-25)
(1.00172 -0.0292948 4.4935e-24)
(1.01105 -0.0144729 8.88125e-23)
(0.982422 -0.0193526 -2.35066e-23)
(0.991028 -0.0450451 -4.95734e-23)
(1.28686 -0.105606 -6.53382e-22)
(1.00021 -0.00086997 3.95733e-25)
(1.09191 -0.0649573 -5.38571e-24)
(1.00002 -2.81057e-05 9.37887e-26)
(0.999981 -1.00334e-05 -1.0345e-25)
(0.975344 -0.0177038 -5.07015e-23)
(1.02447 -0.0546772 -1.08249e-22)
(0.999982 -1.78743e-05 -7.2386e-26)
(1.02355 0.176967 8.56336e-22)
(1.00182 0.0640453 2.96323e-21)
(1.00001 -2.91064e-05 -1.88778e-26)
(0.99902 -0.000642743 -2.32248e-24)
(1.30393 0.0754477 4.99243e-22)
(1.01235 -0.0258335 1.35077e-23)
(0.993992 -0.00409486 -1.85109e-23)
(1.07547 -0.0871755 -1.5836e-22)
(0.960502 -0.0137226 -2.16391e-22)
(1.00199 -0.005658 2.92927e-23)
(0.99427 -0.0137874 1.88135e-23)
(1.01278 -0.0190868 -7.02727e-23)
(0.983065 -0.106584 -8.00871e-24)
(0.971508 -0.0419634 2.90076e-22)
(1.0031 -0.000522477 -7.30222e-24)
(0.993741 -0.00185337 3.02911e-23)
(1.09774 -0.123367 9.85226e-22)
(0.960986 -0.0127873 3.71243e-22)
(0.999995 -2.16398e-05 -7.47973e-27)
(0.981159 -0.0127515 1.97301e-23)
(0.989268 -0.116574 3.88203e-22)
(1.00553 -0.0028162 -9.51899e-24)
(0.989906 -0.00879227 1.58985e-22)
(0.993502 -0.0207905 2.63854e-23)
(0.968429 -0.045091 -2.99225e-22)
(1.00011 -3.07166e-05 -1.4675e-25)
(0.992098 -0.00589731 -7.35748e-23)
(0.806001 0.0650123 -2.55192e-21)
(1.0256 0.00744777 4.29965e-22)
(1.00038 -0.00403743 1.65665e-24)
(1.00727 -0.000935503 -1.95179e-23)
(1.19939 0.144926 -1.25334e-21)
(1.00336 -0.0093934 -1.04059e-23)
(0.991255 -0.00289182 1.16171e-22)
(1.01102 -0.00538848 -1.86576e-22)
(1.01726 -0.0478564 9.39839e-24)
(1.00005 0.0758222 3.0601e-21)
(0.99895 -0.00020057 1.2758e-23)
(0.983706 -0.0192183 -2.89542e-23)
(0.999093 -0.000715434 -4.62281e-24)
(0.999848 -0.000320844 9.5784e-25)
(1.29716 0.0925807 -5.23702e-23)
(1.0021 0.110953 9.81401e-22)
(0.952046 -0.0367299 8.86675e-23)
(0.99998 -0.000131885 -2.21345e-25)
(0.922913 0.0549949 1.4275e-21)
(0.995354 0.00340884 4.68641e-21)
(1.00007 -2.19933e-05 7.44748e-25)
(0.975252 0.097853 -6.73678e-22)
(1.00336 -0.0357879 -3.28903e-23)
(0.949842 -0.0197911 -5.64421e-23)
(0.845639 0.119741 -4.13329e-21)
(1.02222 0.106649 -1.12666e-21)
(0.996139 -0.00445017 -1.28512e-23)
(1.0006 0.0838119 3.90307e-22)
(0.95809 -0.0252938 -2.95495e-23)
(1.02852 0.177497 -1.79849e-21)
(1.01157 0.00949485 2.68562e-23)
(0.998506 -0.000490967 1.53482e-23)
(1.00134 -0.0620958 1.65735e-22)
(1.08865 -0.12537 -9.50223e-22)
(1.00419 -0.00228501 -1.04492e-25)
(1.11627 -0.0880692 -3.09231e-22)
(1.05341 0.0550149 -1.52774e-21)
(1.03199 -0.0102023 -1.36012e-23)
(1.00974 0.0748174 1.9084e-21)
(1.00053 -0.000552853 -1.0332e-24)
(0.984734 -0.0377206 -4.45876e-22)
(0.999875 -4.40926e-05 -9.54556e-25)
(1.02732 -0.016053 2.6145e-22)
(1.02566 -0.0108495 -3.74881e-22)
(1.11417 0.0390504 -1.21053e-21)
(1.00001 -3.04768e-05 1.47398e-26)
(0.919669 0.136104 1.49143e-21)
(1.03074 -0.0189034 -3.47101e-22)
(0.999343 -0.000310279 1.89368e-24)
(0.990752 -0.00493892 -5.12836e-23)
(0.972224 -0.0978131 6.48606e-22)
(0.973417 -0.102259 -5.22892e-22)
(1.00842 -0.0738592 -1.51613e-23)
(1.13407 -0.203066 -1.68136e-22)
(1.14663 -0.201339 2.45165e-22)
(0.999973 -2.69922e-05 -1.79933e-25)
(1.16303 0.167866 -1.03636e-21)
(0.999877 -8.97691e-05 2.07981e-25)
(0.997262 -0.000606519 3.03575e-23)
(1.02753 -0.0119324 2.06562e-22)
(0.990913 -0.00327366 1.35973e-22)
(0.999991 -0.000183208 -2.67509e-25)
(1.00001 -8.53418e-06 -4.41137e-26)
(0.959581 0.0166137 7.82555e-21)
(1.00491 -0.00655512 -7.06643e-23)
(0.999592 -0.0025284 5.39251e-24)
(1.00001 -3.4644e-06 -1.36113e-26)
(0.98686 -0.0252151 1.92159e-22)
(0.999998 -1.23967e-05 -9.6167e-27)
(1.20337 -0.173507 2.19213e-21)
(1 -7.67032e-05 -5.95361e-27)
(1.05925 -0.136011 -9.24132e-22)
(1.0101 -0.0138952 1.05511e-23)
(1.00251 -0.000738033 1.51372e-23)
(0.999731 -0.000188592 -4.66266e-24)
(1.00342 0.150947 -3.80516e-21)
(1.00035 -0.00129075 2.45722e-24)
(1.08184 0.0027913 1.44722e-23)
(0.968808 -0.0464207 5.67811e-23)
(1.14367 0.00471965 1.00516e-22)
(0.999994 -0.000256375 3.12047e-26)
(0.992611 -0.00530746 1.06076e-22)
(0.955974 0.0335023 5.68948e-21)
(1.00029 -0.000301614 -8.66187e-25)
(1.00434 0.0058136 7.96981e-22)
(1.22183 -0.139881 2.19033e-22)
(1.01381 -0.00591343 4.28033e-24)
(0.998678 -0.00452711 -2.27498e-23)
(1.16054 0.181723 8.04411e-23)
(0.980217 0.144127 -1.94987e-21)
(0.976272 -0.0166904 -2.04394e-22)
(0.991966 -0.0030499 -4.42697e-23)
(1.02377 -0.0527967 2.47985e-22)
(1.02731 -0.0882748 -1.39757e-23)
(0.902023 0.049223 -1.74227e-21)
(0.976154 -0.0379542 4.05788e-22)
(1.03325 -0.0403689 9.31624e-24)
(1.00502 -0.00689084 -4.79938e-23)
(0.992879 -0.0196014 -1.78238e-22)
(1.03249 -0.00740512 3.21722e-22)
(1.00073 -0.015692 1.34854e-23)
(1.00001 -2.42622e-06 -8.59254e-28)
(0.999954 -8.38921e-05 7.97339e-25)
(1.00943 -0.0124268 -2.0186e-22)
(0.945102 -0.0294225 -6.74454e-22)
(0.999991 -7.00223e-06 8.87458e-26)
(1.01101 0.0504495 -1.98987e-21)
(1.00003 -4.295e-05 1.60982e-25)
(0.992522 -0.0157674 6.30199e-23)
(1.00013 -3.74644e-05 -2.56016e-24)
(1.00047 -0.00200373 8.28462e-26)
(1.00001 -2.97268e-05 -6.50104e-26)
(1.00143 -0.0045881 -6.86195e-24)
(1.00371 -0.000388005 -7.55017e-23)
(0.999985 -1.19529e-06 -3.8485e-26)
(1.07233 0.0190131 8.89131e-23)
(1.00503 -0.0026653 -1.75261e-23)
(1.05819 0.017836 1.46435e-21)
(1.13808 -0.0760384 -2.11735e-22)
(1.0229 0.0114558 1.41452e-21)
(1.01808 0.142457 2.05558e-21)
(1.00579 -0.0714368 4.97245e-23)
(1.00119 -0.0277461 6.59577e-23)
(1.02103 -0.00917513 -2.74085e-23)
(1.02099 0.0947501 3.38964e-21)
(1.24287 -0.125861 6.39527e-22)
(1.01852 -0.105119 4.27807e-22)
(0.996349 -0.00416154 -5.97723e-23)
(0.983685 -0.0178003 1.36395e-23)
(0.95349 -0.0294458 -7.14112e-23)
(0.999975 -4.8377e-05 2.46531e-26)
(0.990321 -0.0725678 -6.68201e-23)
(1.08455 -0.0748069 1.7894e-22)
(0.897395 0.0311096 1.06988e-22)
(1.02504 0.00678834 -4.14884e-22)
(1.01441 -0.101841 8.9546e-23)
(0.990376 -0.00324558 -1.46509e-22)
(1.0052 -0.123039 1.56601e-22)
(0.990011 -0.00541623 9.30507e-23)
(0.998415 -0.00679266 -1.11025e-23)
(1.12385 -0.0826208 1.09142e-22)
(1.02568 0.0243627 4.6445e-22)
(1.03569 0.0488845 -2.54262e-23)
(1.12085 -0.0711878 4.2873e-22)
(0.999969 -3.48137e-05 -7.91854e-25)
(0.989128 -0.000126942 1.88594e-22)
(1.00026 -5.23158e-05 3.8421e-24)
(1.1846 0.0223195 -1.39855e-23)
(1.037 -0.00567132 5.24973e-22)
(1.0107 -0.0050343 3.94202e-22)
(1.03112 -0.0218198 -6.71111e-23)
(1.06182 0.047757 -3.8757e-23)
(0.986422 -0.0229872 -5.26892e-23)
(1.01283 -0.00582528 9.04817e-24)
(1.05759 -0.0124288 2.02901e-22)
(0.940979 0.00690496 -5.00779e-21)
(0.977733 -0.0467791 2.00203e-22)
(1.00564 -0.00599139 -1.48184e-23)
(0.994565 -0.0201707 1.37328e-22)
(0.986962 -0.00472789 -8.82235e-24)
(0.999077 -0.000106927 -1.28562e-23)
(0.992489 -0.023942 1.37039e-22)
(1.00006 -0.00181154 5.93724e-25)
(1.24786 0.0295068 1.31491e-22)
(0.975227 -0.0300237 -1.89026e-23)
(0.994769 -0.0126561 5.37802e-23)
(1.02307 -0.0619382 1.77167e-22)
(1.00003 -8.99451e-05 2.12975e-26)
(0.99999 -9.57758e-05 -4.75674e-27)
(0.833154 0.110535 -1.42566e-21)
(1.00515 -0.0291739 -2.30797e-23)
(0.996811 -0.00244046 -2.26929e-23)
(1.01146 -0.0255363 2.32036e-24)
(0.999628 -0.000835699 -7.17997e-25)
(1.03017 0.00191144 -2.08182e-22)
(1.01648 0.0968247 -3.12303e-21)
(1.00001 -9.36517e-05 -5.69084e-26)
(0.999938 -5.83709e-05 -6.26627e-25)
(1.00407 -0.00209848 -1.39779e-23)
(1.02704 -0.0516728 -4.71753e-23)
(1.01898 -0.0781179 2.45653e-22)
(1.00234 -0.00399226 3.67434e-24)
(1.00114 -0.000501568 7.87325e-24)
(0.991074 -0.00200854 4.00886e-23)
(1.00507 -0.0301722 8.31566e-23)
(0.993021 -0.0246663 1.46742e-22)
(1.03868 0.00236834 -2.17528e-22)
(1.00484 0.0202528 -5.01423e-22)
(1.00013 -3.1371e-05 1.74411e-24)
(1.26435 0.00558343 3.45596e-22)
(0.98981 -0.00463119 9.75148e-23)
(0.99999 -4.58701e-06 9.46438e-27)
(0.998649 -0.000629127 -6.36715e-24)
(0.997345 -0.00420054 -3.06139e-23)
(1.03179 -0.0111805 3.01115e-22)
(0.991334 -0.00656356 -1.96667e-23)
(1.02007 -0.0471785 1.34857e-22)
(0.971566 0.149223 1.70484e-21)
(0.954738 -0.0333874 -1.13081e-23)
(0.999891 -5.93048e-05 -2.54397e-25)
(0.97594 -0.00117544 -2.34848e-22)
(0.998736 -0.00106417 1.66646e-23)
(1.00191 -0.000774528 4.67993e-24)
(1.05764 -0.0291641 -1.37147e-22)
(0.937391 0.0712251 -4.80547e-21)
(0.996164 -0.00655706 -6.72552e-23)
(1.00254 -0.00405544 -2.03321e-23)
(0.983141 -0.0387207 1.22336e-22)
(0.992008 0.139407 -1.47746e-21)
(1.04161 0.0101011 -3.49312e-23)
(1.05416 -0.0167775 -9.74907e-23)
(1.02972 0.0025626 2.01291e-22)
(0.974643 -0.036621 5.26619e-22)
(1.00001 -4.46503e-05 -5.26454e-26)
(1.01368 -0.0161369 -1.25236e-22)
(1.00002 -4.12177e-07 7.06716e-27)
(1.02453 0.0103197 -1.77392e-21)
(0.99977 -0.000188518 -3.13172e-24)
(1.00262 0.0201754 -9.64095e-22)
(1.02553 -0.0354636 -2.79298e-23)
(1.00003 -0.000340838 -2.63787e-26)
(0.999339 -0.00117899 1.08075e-23)
(1.00001 -3.30674e-05 -1.23534e-27)
(1.00033 -0.000130373 9.87269e-25)
(1.06054 -0.00972497 4.00289e-22)
(0.999974 -0.000509964 -3.33952e-25)
(1.03318 -0.0557252 6.48593e-23)
(1.06903 -0.0240259 1.23207e-23)
(1.03216 -0.0225379 -2.41784e-23)
(0.999999 -9.98012e-05 -5.10869e-26)
(1.00743 0.0643078 -3.01829e-21)
(1.00057 -0.000560701 1.23112e-24)
(1.00623 -0.0115899 -2.57537e-23)
(0.942892 -0.00264487 -9.9425e-23)
(1.05159 -0.0363923 -2.19037e-23)
(1.00006 -3.17626e-05 4.75675e-25)
(0.993623 0.0681213 -3.76247e-22)
(1.04826 -0.0933672 4.83344e-22)
(1.01438 0.00706745 -1.61076e-21)
(1.05161 -0.0388319 -4.85907e-23)
(0.988195 -0.0514619 -7.04089e-23)
(1.05435 -0.0976268 3.0432e-22)
(0.970649 -0.042816 -3.99242e-22)
(0.984907 -0.0534908 1.28747e-22)
(1.14281 -0.0050129 1.05058e-22)
(0.998137 -0.0600808 -1.09026e-22)
(1.03569 -0.000218198 -1.08605e-22)
(0.995308 -0.00424958 1.8474e-23)
(0.99999 -6.77762e-06 -2.83648e-26)
(1.07486 0.142724 -2.15221e-22)
(0.999914 -7.05703e-05 -8.00992e-25)
(0.999381 -0.000893007 -2.63226e-24)
(1.04603 0.183937 1.00995e-21)
(0.994478 0.0889829 -5.55028e-21)
(1.00263 -0.0125029 -7.73294e-24)
(0.940102 -0.0194398 -2.3715e-22)
(1.00435 -0.0169081 5.53413e-26)
(0.996163 -0.00244442 8.46534e-24)
(0.999901 -0.000101243 -2.83696e-25)
(0.992251 0.133275 -8.28609e-22)
(1.01145 -0.0767898 -5.41194e-23)
(1.00009 -8.19666e-05 8.1439e-25)
(1.0005 -0.00417541 -1.21193e-24)
(0.998067 -0.00142615 -1.91496e-23)
(1.0185 -0.00339314 6.58888e-23)
(1.00002 -8.03348e-05 -4.31562e-27)
(1.18227 -0.0462268 -4.57648e-22)
(0.999996 -9.56732e-05 1.50035e-25)
(0.991613 -0.0758891 -2.83365e-22)
(0.963914 0.151167 0)
(0.998879 -3.70618e-05 4.70914e-24)
(0.998938 -0.000269423 8.1186e-25)
(0.985416 -0.0271251 -5.4917e-23)
(1.02413 0.0113246 3.03418e-22)
(1.06561 -0.0326749 3.06423e-22)
(1.05613 0.00576497 -2.47164e-23)
(1.00533 -0.00260762 -6.51295e-23)
(1.00002 -7.26908e-05 9.30926e-27)
(1.29108 0.0234972 -8.55866e-23)
(0.974185 -0.0346214 2.351e-22)
(1.00001 -2.27278e-06 -3.56856e-27)
(1.00004 -8.39719e-05 -2.54131e-25)
(0.999983 -1.71278e-05 -7.52703e-26)
(0.968812 -0.00435677 2.57591e-22)
(0.97082 -0.00605068 -1.35539e-22)
(1.00001 -3.68359e-05 -1.45845e-26)
(0.999979 -1.05136e-05 -9.28179e-26)
(0.978319 -0.0309966 -2.03191e-22)
(1.07433 -0.178658 -3.04729e-22)
(0.98461 0.138322 8.27584e-22)
(1.00032 -0.000355297 3.5041e-24)
(1.01418 0.0994152 5.11695e-21)
(1.00029 -0.00183584 1.62089e-24)
(1.02848 0.112921 3.05223e-21)
(0.956552 -0.0371983 -3.71946e-23)
(0.97021 -0.0307647 1.69726e-22)
(1.1294 -0.0354154 -4.44328e-23)
(1.03222 -0.090919 2.64404e-22)
(1 -3.65545e-06 1.46634e-28)
(1.05712 0.0385886 2.19424e-22)
(0.999396 -0.000474752 -3.16616e-24)
(1.05538 -0.074211 1.07176e-22)
(1.0216 -0.00878595 5.19085e-22)
(0.999604 -0.000903501 -3.35182e-24)
(1.11363 -0.0552338 -1.97929e-22)
(0.996847 -0.00230707 -9.81899e-24)
(1.15363 0.117482 -4.92149e-22)
(1.02853 0.119185 3.97959e-21)
(1.03219 0.0182495 -1.03353e-21)
(1.03693 -0.0656255 3.6822e-22)
(1.03001 -0.00858041 3.79459e-22)
(1.04367 0.187882 2.30168e-22)
(1.07717 -0.0772021 1.32882e-22)
(1.00109 -0.153258 3.0855e-22)
(0.99856 -0.0065893 3.0322e-24)
(1.00936 -0.00927016 -1.77801e-22)
(1.00064 0.0606944 -3.19712e-21)
(1.12229 -0.100912 2.7234e-24)
(0.999747 -0.000184717 -2.05343e-24)
(1.02706 0.104327 -5.09781e-23)
(0.982658 -0.101904 -8.07936e-23)
(1.0637 0.00836527 -8.52739e-23)
(1.04761 -0.09633 3.46328e-23)
(0.996445 -0.00240542 -1.78355e-23)
(0.999926 -1.50923e-06 5.25045e-25)
(0.981381 -0.00337699 1.17971e-22)
(1.04026 -0.138922 -5.51636e-22)
(0.998949 -6.43514e-05 2.75241e-24)
(0.890657 0.0267128 -2.45451e-21)
(1.03136 -0.00751639 -4.28631e-22)
(0.992729 -0.121328 9.98378e-23)
(1.03056 -0.00297915 1.06118e-22)
(1.00002 -7.60239e-05 -1.37099e-26)
(0.99693 -0.00208252 -2.14207e-23)
(1.05363 -0.039953 1.18111e-22)
(1.00954 -0.0221758 6.09675e-24)
(1.17193 0.0197112 -3.37361e-22)
(0.999984 -1.95792e-05 5.73882e-26)
(1.01797 -0.0031137 1.72627e-22)
(1.01087 -0.0593636 1.59688e-22)
(1.03591 0.182878 -1.9698e-22)
(1.05808 -0.0309895 -8.37634e-23)
(0.999986 -6.45378e-07 -1.5019e-28)
(1.00879 -0.0406821 1.55508e-23)
(0.999994 -3.08121e-06 2.66133e-26)
(1 -5.91311e-06 1.65137e-27)
(1.01337 -0.00560682 3.25932e-23)
(0.959014 -0.011241 -2.4594e-22)
(1.00104 -0.000326414 1.17295e-23)
(0.998093 -0.0619803 1.77511e-22)
(0.939641 -0.0207906 -3.4378e-23)
(0.99975 -0.000173151 2.79235e-24)
(0.991156 -0.0461567 -2.09296e-24)
(1.06154 -0.0949621 -3.55587e-23)
(0.972612 -0.0423194 1.87244e-22)
(1.00005 -9.28071e-05 4.1952e-25)
(0.984735 -0.0170003 -8.31552e-23)
(1.08398 0.0810015 -4.06749e-22)
(1.02241 -0.0492092 -4.68542e-23)
(0.969308 -0.00386946 -8.82361e-23)
(1.01475 0.0513281 1.01396e-21)
(0.999844 -1.55769e-05 3.65395e-25)
(0.958165 -0.0223889 1.31863e-22)
(1.03478 -0.0736735 -2.64765e-22)
(1.01195 0.065636 -5.13808e-22)
(1.07868 0.105455 1.42969e-21)
(0.999676 0.0286077 8.56854e-22)
(1.0088 0.0686595 2.46236e-21)
(1.00988 -0.00926126 1.06938e-22)
(1.00617 -0.02886 -1.05509e-23)
(1.07235 -0.065743 -9.72921e-23)
(1.00092 -0.0151687 1.08207e-23)
(1.00002 -4.15228e-05 -1.84551e-25)
(1.11167 0.0542973 1.55745e-21)
(0.999999 -6.71186e-05 -3.82736e-26)
(1.02013 -0.0806009 1.4981e-23)
(0.997221 -0.000754248 3.29086e-24)
(1.01712 0.0426655 5.08841e-23)
(0.972129 -0.0112035 -2.25447e-22)
(0.997709 -0.00184752 -4.92556e-23)
(1.04701 -0.0275977 -4.38977e-23)
(1.12845 0.0602678 -1.55699e-21)
(1.11268 0.0893715 9.57316e-22)
(1.01511 -0.0119962 -1.52767e-22)
(1.1198 0.0551115 4.43428e-22)
(1.00028 -0.000278886 -1.40884e-24)
(1.07118 -0.12443 -9.1034e-22)
(1.00175 -0.00499162 1.51635e-23)
(0.991407 -0.0156012 1.75939e-22)
(1.00805 0.109889 3.05998e-21)
(1.06269 -0.123333 3.07917e-22)
(0.988629 -0.00969937 -5.56588e-23)
(0.990312 -0.00863479 -6.96589e-23)
(1.00026 -0.000250681 7.26593e-25)
(0.976084 0.0936976 -3.03567e-24)
(1.03208 0.118756 -1.4286e-21)
(0.969377 -0.0291707 -5.01431e-22)
(1.0109 -0.0207021 -9.10165e-24)
(1.00034 0.015098 -1.79539e-22)
(1.02032 -0.0762038 5.46324e-22)
(1.2267 0.15266 -3.19723e-22)
(1.01013 0.0725869 -2.9577e-22)
(1.01149 0.0985699 -5.83407e-22)
(1.00339 -0.000437177 2.80292e-23)
(1.00717 0.0774714 6.01605e-21)
(0.993867 -0.0137056 1.26575e-22)
(0.999993 -0.000235404 1.46043e-25)
(1.07972 -0.125056 4.51112e-23)
(0.98959 -0.0446205 -3.62738e-23)
(0.999843 -0.0435015 -5.19512e-23)
(1.04159 -0.0167011 4.10313e-23)
(0.975465 -0.0169872 -1.161e-22)
(1.02661 0.116013 -6.94267e-21)
(1.00002 -4.73317e-05 -2.42468e-25)
(1.03437 0.0528798 -8.13592e-22)
(0.999946 -0.00175912 2.0114e-24)
(0.984481 -0.0202415 1.15325e-22)
(1.01643 -0.0573536 -3.92627e-23)
(0.999867 0.000475491 2.24201e-21)
(1.00035 -0.00103659 -2.3868e-24)
(0.996341 -0.00614365 -1.90633e-23)
(1.16703 0.0153022 1.28991e-22)
(0.994875 -0.019557 -6.97951e-23)
(0.969319 -0.0302267 6.48681e-22)
(1.0676 0.0336279 -1.29035e-21)
(1.00233 0.0607452 1.77628e-21)
(1.02222 -0.0212937 -8.1522e-24)
(1.00002 -3.44897e-05 1.64084e-26)
(1.22139 -0.171685 1.5416e-21)
(1 -7.39379e-05 -4.92101e-27)
(0.999763 -0.00244201 2.89249e-24)
(0.99015 -0.00943878 8.1939e-23)
(0.970446 -0.0117225 -2.24453e-22)
(0.993288 -0.00527325 -7.48212e-23)
(1.05595 0.00245747 -3.42357e-22)
(1.106 0.0648373 7.14536e-22)
(0.993086 0.0745233 2.02781e-21)
(1.03461 0.0812211 -6.18602e-22)
(1.01496 0.00532927 1.24831e-22)
(1.03983 0.00820159 4.37154e-22)
(1.0333 -0.0219237 3.84639e-23)
(0.99613 -0.00630107 5.61726e-23)
(1.00203 0.00104016 -9.83037e-23)
(1.0404 0.00587331 6.52312e-22)
(1.00005 -4.25671e-05 -3.12235e-25)
(1.00483 -0.0249961 -1.15461e-23)
(0.999945 -5.06384e-05 -1.75949e-25)
(1.00002 -0.000106395 3.33428e-26)
(0.959737 -0.0417203 1.77529e-22)
(0.999993 -4.37298e-06 -5.47674e-27)
(1.00515 -0.0862831 -4.82477e-22)
(1.10805 -0.0910433 -2.31428e-22)
(0.994647 -0.000571307 -9.73935e-23)
(1.00567 -0.0889364 -1.22027e-22)
(0.999971 -7.93742e-05 -6.69203e-25)
(0.997601 -0.0017054 1.78891e-23)
(1.05553 -0.0386488 1.56658e-22)
(0.99999 -0.000114669 -3.99926e-26)
(0.996244 -0.00362676 4.23997e-23)
(1.02981 -0.102084 7.06597e-22)
(0.972884 -0.0432463 -1.97457e-22)
(0.999969 -4.91208e-05 -5.07784e-25)
(0.999699 -0.000250093 -5.76482e-24)
(1.04437 -0.0760807 2.29452e-23)
(0.988739 -0.0115575 -2.48753e-22)
(0.89636 0.0605687 3.64781e-21)
(1.06838 -0.0876081 -2.1718e-22)
(0.993106 0.0524154 -1.67984e-21)
(1.05108 -0.133457 -3.76353e-22)
(0.986175 0.14201 -2.53624e-21)
(0.991935 -0.0738152 -1.19668e-22)
(1.05416 -0.111653 1.17123e-22)
(1.00161 -0.000488596 -1.87765e-23)
(0.999846 -0.000307602 6.9468e-25)
(0.978731 -0.0975002 -1.17699e-21)
(1.00002 -9.83838e-07 -1.08133e-25)
(0.99081 -0.00772642 -8.26352e-24)
(0.985103 -0.0263395 4.31941e-24)
(1.03503 -0.00680331 2.48796e-22)
(1.01349 -0.0113274 -3.6613e-23)
(1.00091 -0.00640278 7.57447e-25)
(1.30533 -0.00676015 2.83008e-22)
(1.05187 0.013006 1.76782e-21)
(1.18904 -0.180064 1.30062e-21)
(1.12097 0.137283 2.07018e-21)
(0.999818 -0.000326397 -1.49298e-24)
(0.999476 -0.000417855 5.79583e-24)
(1.06299 0.0447734 4.78637e-22)
(1.1914 0.145906 8.21225e-22)
(1.12852 0.0551036 1.39633e-21)
(0.954952 -0.00868209 5.04326e-22)
(1.09064 0.00061339 -1.5714e-22)
(1.04309 0.1111 1.43367e-21)
(1.00762 -0.0337436 -2.70308e-23)
(0.996244 -0.00255884 2.57661e-23)
(0.990616 -0.0523922 -3.08883e-22)
(1.15597 0.167072 3.16356e-22)
(1.09319 -0.198788 7.71676e-22)
(1.0302 -0.0109405 9.41939e-24)
(0.999993 -1.61379e-05 -4.98607e-26)
(0.987971 -0.0117786 -1.17395e-22)
(1.03653 -0.0539972 -1.55065e-22)
(0.985376 -0.00133767 -2.19858e-22)
(1.02373 -0.120291 -6.85046e-22)
(1.00258 -0.00824102 -7.08521e-24)
(1.01781 -0.0923371 -6.0136e-22)
(1.00298 -0.0413497 8.87124e-23)
(0.999893 -3.58138e-05 -1.37601e-24)
(0.999419 -0.00100283 2.44014e-24)
(1.22505 0.16807 9.1607e-22)
(1.0003 -0.00131754 -2.27111e-24)
(1.05986 0.186217 2.30953e-21)
(0.971858 -0.0188826 -6.06408e-23)
(0.999479 -0.000220204 -2.56806e-24)
(0.974956 -0.0377106 -2.42701e-22)
(1.01297 -0.075043 1.6536e-22)
(0.990255 0.136253 2.8149e-21)
(1.00007 -2.53026e-05 -1.02844e-24)
(0.996592 0.144755 -2.83728e-21)
(0.954208 -0.00947421 -3.53018e-22)
(1.13642 -0.0181685 8.85671e-24)
(1.01835 -0.00218122 3.49211e-22)
(1.05405 0.0619023 -9.79166e-22)
(1.01697 0.108982 3.92175e-21)
(1.01234 -0.00781274 9.14475e-23)
(1.00853 -0.00717694 -5.43454e-23)
(1.08203 0.101667 5.06679e-22)
(1.00001 -2.62169e-07 -2.25175e-26)
(0.999595 -0.0592905 -3.68016e-24)
(1.03678 -0.000472882 8.98896e-23)
(1.02272 0.08998 4.97672e-21)
(1.05271 0.0196391 -4.46159e-23)
(0.999956 -7.5082e-07 4.88452e-25)
(0.998523 -0.0070295 -2.57765e-23)
(1.09429 -0.109742 1.84161e-22)
(1.11445 0.0846319 2.00118e-22)
(0.99983 -0.000301097 -1.52947e-24)
(1.20867 -0.150018 -6.2437e-22)
(0.999691 -5.0264e-06 -5.05046e-24)
(1.0072 -0.0563758 1.08365e-22)
(0.999989 -2.52113e-06 3.4925e-26)
(0.999989 -0.000957908 4.06954e-25)
(0.959994 -0.0259287 -1.01138e-23)
(1.0004 -0.00228602 4.99604e-25)
(0.999379 -0.00108703 2.08178e-24)
(1.00006 -1.31988e-05 -2.93497e-25)
(1.05429 0.187205 -3.40154e-21)
(1.00038 0.0151133 4.79682e-21)
(0.985355 -0.0386724 2.33639e-22)
(1.12007 -0.0498885 -3.08056e-23)
(0.991297 -0.0321197 1.12536e-22)
(0.999905 -0.000303532 -1.05117e-25)
(1.03646 0.0510096 1.49942e-21)
(0.984587 -0.00771184 1.79215e-22)
(1.02071 -0.0163713 5.36069e-23)
(1.14381 -0.149578 1.59733e-21)
(1.00773 -0.0970368 6.46342e-22)
(0.999989 -2.98772e-06 1.53494e-26)
(0.977116 -0.0298329 -1.34041e-22)
(0.999896 -7.43919e-05 -4.27824e-26)
(1.01792 -0.00249963 -5.4114e-22)
(0.985982 -0.00674612 -1.66963e-22)
(1.00089 0.013823 -2.07908e-21)
(1.02 0.0470991 2.23515e-21)
(1.10628 0.0239615 8.46768e-22)
(1.0023 0.082276 7.55918e-22)
(1.01635 -0.0593834 1.1574e-22)
(0.935866 0.0653731 4.2019e-21)
(0.974437 -0.0180202 -9.22443e-23)
(1.00181 -0.00432512 1.30503e-23)
(0.997508 0.0639416 1.19635e-22)
(1.03949 -0.0729479 1.29453e-23)
(0.972813 -0.0186568 -2.20952e-22)
(0.992094 -0.0162855 9.57738e-23)
(0.998261 -1.51283e-05 -3.75451e-24)
(1.00001 -8.02969e-06 -7.15361e-26)
(0.934458 0.0325803 4.80789e-21)
(0.957747 -0.000288918 4.98304e-22)
(1.08411 0.00843047 -6.59628e-23)
(1.03416 -0.00736865 8.29365e-22)
(1.00027 -0.00033269 -3.1458e-24)
(1.01253 -0.0684881 1.94796e-22)
(0.99998 -3.36784e-07 -1.80695e-26)
(0.998717 0.0374233 -9.22627e-23)
(0.987704 -0.0104016 -7.67706e-23)
(0.99663 -0.00458069 6.24783e-23)
(1.03103 0.174061 -3.29391e-21)
(0.99843 -0.0132285 -4.18692e-23)
(0.999899 -3.63522e-05 1.55085e-24)
(0.994308 -0.0149625 -1.26205e-22)
(1.00881 -0.00644397 -8.59391e-23)
(1.08928 -0.0916007 -2.12943e-22)
(1.02042 -0.135255 -7.62684e-22)
(0.895747 0.0533367 -4.26223e-21)
(0.983793 -0.0199712 1.10816e-22)
(1.00355 0.0286674 -3.55756e-21)
(0.999902 -3.22942e-05 -1.677e-24)
(1.01043 -0.00716997 -1.34794e-22)
(0.942143 -0.0253291 -2.13378e-22)
(1.01687 0.16813 5.10121e-21)
(0.999927 -1.10261e-05 2.22118e-25)
(1.02894 0.00548863 5.39381e-22)
(0.962151 -0.0255905 2.86535e-22)
(0.983107 -0.00669543 -7.12166e-23)
(1.00003 -6.72827e-06 -3.67935e-26)
(1.00002 -0.00012432 1.14887e-25)
(0.999958 -7.61926e-05 -7.43122e-25)
(0.991279 -0.00167681 7.14155e-23)
(0.988049 -0.00444899 -6.90333e-23)
(1.00363 0.0454042 1.69729e-21)
(0.806127 0.0309919 7.76768e-21)
(0.950533 -0.031401 -4.12441e-22)
(0.997782 -0.000438924 -1.00669e-23)
(1.0102 -0.0413726 -4.23336e-23)
(0.986768 -0.0517789 5.26233e-22)
(1.00023 -0.000226339 -2.60753e-24)
(0.990849 -0.00560524 1.1055e-22)
(1.16243 0.191257 2.1672e-22)
(1.02911 -0.0646374 3.03191e-22)
(1.00217 -5.76416e-05 3.87621e-23)
(0.992063 -0.00425561 -2.1789e-23)
(0.979237 -0.0996787 -3.27146e-22)
(0.996966 -0.00413238 2.27604e-23)
(1.0025 -0.00793957 1.87785e-23)
(0.999386 -0.000285373 -8.1531e-24)
(1.00856 -0.124212 -9.76827e-22)
(1.02526 -0.0207444 7.56425e-23)
(0.994479 -0.00382612 7.68072e-23)
(1.15242 0.171365 4.03412e-22)
(1.0695 0.0189417 -1.63799e-21)
(1.02326 -0.0316936 7.38269e-23)
(1.00261 -0.0111702 1.56345e-23)
(1.05565 0.0146872 -1.27849e-21)
(0.970367 -0.0184835 -1.6376e-22)
(1.02429 0.00850364 -1.03206e-22)
(0.999932 -7.31803e-06 -3.92396e-25)
(0.882791 0.0155785 1.19957e-21)
(1.00004 -0.000214168 2.54263e-25)
(1.0316 0.107392 -1.09678e-21)
(0.999619 -0.000804721 -4.78873e-26)
(0.990936 -0.00178002 -4.15421e-24)
(1.00005 -2.2815e-05 1.24247e-25)
(0.984705 -0.000105863 -3.30872e-22)
(1.01124 -0.0246206 -1.47136e-23)
(1.00001 -3.18657e-06 2.26537e-26)
(1.0094 -0.127679 2.26438e-22)
(1.18381 0.124236 -2.54787e-22)
(0.999915 -4.3929e-05 1.2082e-24)
(0.999422 -8.60109e-06 9.78636e-24)
(1.07363 0.0163928 5.87725e-22)
(1.02093 0.0434005 9.76522e-23)
(1.12467 0.0186663 3.69454e-23)
(1.24358 0.0233921 -2.66939e-23)
(1.13132 -0.0682628 -3.66064e-22)
(0.986363 -0.0531237 -2.80141e-22)
(0.953999 0.102086 9.8264e-22)
(0.973002 0.0843662 4.57768e-21)
(1.02359 -0.0201443 -5.63115e-23)
(1.02655 -0.0641898 1.5105e-23)
(0.9764 -0.0160146 2.54693e-22)
(0.985515 -0.105826 -2.31412e-22)
(1.02279 -0.0855201 6.37966e-22)
(0.99978 -0.000195459 6.75351e-25)
(0.999935 -3.04281e-06 -5.52969e-25)
(0.996014 -0.00245902 4.89813e-23)
(1.00513 -0.00631334 6.58618e-23)
(1.00652 -0.0353452 9.36415e-23)
(0.999923 -3.55431e-06 -1.62662e-24)
(1.1293 -0.0254905 -3.37338e-23)
(0.999998 -0.000452658 -1.18429e-25)
(1.00022 -0.000167484 3.45635e-24)
(0.999889 -0.0648615 -3.49301e-22)
(0.971603 0.0424645 -5.30938e-21)
(1.10635 0.0814777 7.26344e-22)
(1.00018 -0.00020947 2.84602e-24)
(0.999838 -1.34432e-05 -1.07605e-24)
(0.996714 -3.14429e-05 -2.79138e-23)
(0.988948 -0.045473 6.261e-23)
(1.02399 -0.0329886 -3.89568e-23)
(1.02162 0.112673 -6.68782e-22)
(1.00633 0.0588302 1.53964e-21)
(0.972141 -0.0441144 1.89436e-22)
(0.997917 -0.000184043 2.05766e-23)
(0.999957 -1.41822e-05 1.47255e-25)
(0.99915 -0.00162256 -1.20497e-24)
(1.01817 0.112336 2.61673e-21)
(1.05267 0.0267496 2.40179e-21)
(0.994596 -0.0190875 8.3023e-23)
(0.996925 -0.00189971 8.5754e-24)
(1.19532 0.184097 2.99606e-22)
(1.05721 0.119051 -1.78296e-22)
(1.08053 -0.0122107 -2.73768e-22)
(0.999974 -0.000247607 1.38836e-26)
(1.00567 0.0685086 1.42248e-21)
(1.00005 -2.23955e-05 -4.33953e-25)
(0.999987 -0.000227417 -1.14572e-25)
(1.05291 -0.0329518 1.46429e-22)
(0.959513 -0.00366402 -1.773e-22)
(1.00096 -0.0287801 -7.5814e-23)
(0.99234 -0.00143014 5.37091e-23)
(1.00024 -0.000311443 -2.57456e-24)
(0.995836 -0.0033982 -4.49545e-23)
(0.997301 -0.000458301 -2.84201e-23)
(1.01195 -0.0219768 4.43461e-23)
(1.00611 -0.0306139 -1.23454e-22)
(1.00479 0.0583902 -2.01537e-21)
(0.995839 -0.00291206 -4.78295e-23)
(1 -0.000199701 1.83627e-27)
(0.989925 -0.0238071 -3.54236e-23)
(0.999866 -0.0629767 -1.9293e-23)
(0.955685 -0.0392067 -3.14517e-22)
(0.999114 -0.141011 7.04305e-22)
(1.02188 0.156317 4.88257e-23)
(1.00008 -9.96457e-06 1.88453e-24)
(0.972543 -0.0119498 -3.73661e-23)
(1.00001 -0.000233365 -1.00388e-27)
(1.0015 -0.00138901 1.49615e-23)
(0.959333 -0.0222322 -2.91456e-22)
(1.08811 -0.055478 -3.68095e-23)
(0.99877 -0.000807899 8.05229e-24)
(1.00812 0.0810907 -1.66189e-21)
(1.12678 0.161736 -3.38771e-23)
(1.07358 0.0894673 1.6296e-21)
(1.0149 0.0532744 1.61255e-21)
(1.01638 -0.0778651 -1.85921e-22)
(0.999997 -0.000152477 1.10651e-25)
(1.00002 -4.94532e-07 4.4991e-26)
(0.999916 -8.40966e-05 -3.39098e-25)
(1.11286 -0.104472 1.20943e-22)
(0.999429 -0.000262693 1.63257e-24)
(1.00701 -0.0846223 -3.31636e-22)
(0.98377 -0.00442317 -8.80886e-23)
(1.08224 0.117562 -5.37273e-22)
(1.03048 -0.00214863 3.76562e-22)
(0.962722 -0.0416483 -1.37416e-22)
(1.04979 0.0644396 1.69938e-21)
(0.999865 -0.000325952 -1.61945e-24)
(1.03789 0.187431 1.53645e-21)
(1.02862 -0.0185829 2.22053e-22)
(1.02776 -0.0179034 -4.39699e-22)
(0.99884 -0.00160714 1.22125e-23)
(0.986696 -0.0280625 5.98318e-23)
(0.990873 -0.130252 4.38834e-22)
(1.04495 0.0288717 8.35007e-22)
(0.990704 -0.0313242 3.7722e-24)
(0.997818 -0.00159151 8.6675e-24)
(1.00492 -0.0188794 -4.85186e-24)
(1.00005 -1.88805e-05 -2.08639e-25)
(1.30332 -0.0270495 -1.18271e-21)
(0.983595 -0.110998 -6.73443e-22)
(1.00078 -0.000442598 1.08875e-23)
(0.813044 0.037756 -2.05129e-21)
(1.09364 -0.00787423 1.23309e-22)
(1.03611 0.0200798 -9.18255e-22)
(0.998304 -4.29863e-05 -1.05672e-23)
(1.05467 -0.0944066 -1.8608e-22)
(0.999981 -1.53906e-06 2.55864e-25)
(0.969326 0.0916174 9.88045e-22)
(0.99835 -2.30399e-05 1.09849e-23)
(1.1808 -0.0505421 -3.77979e-22)
(1.03842 0.105254 -1.59316e-21)
(0.996085 -0.00301723 1.899e-23)
(0.999533 -0.000203453 2.99478e-24)
(1.0002 -0.000175244 1.66972e-24)
(1.0146 0.00442438 1.30274e-21)
(0.998672 -0.000420136 1.60008e-23)
(1.00179 -0.00053165 7.60317e-24)
(0.999944 -5.73854e-05 4.34706e-25)
(1.04842 0.057312 -4.28408e-22)
(1.00058 -0.000819354 9.28832e-24)
(0.946529 0.0636166 -2.44936e-21)
(1.11332 -0.0844572 3.76879e-22)
(0.999965 -2.19211e-05 2.98013e-25)
(1.05585 -0.0684307 -6.11361e-23)
(0.994857 -0.135507 5.0874e-22)
(1.04687 -0.0162921 4.68612e-23)
(1.00883 -0.0393367 -2.33805e-23)
(1.11393 0.0344694 1.28517e-21)
(0.974015 -0.00134064 -1.55331e-22)
(1.06703 0.00557861 -4.86457e-22)
(1.00001 -1.1207e-06 0)
(1.00064 -0.000585289 -7.82845e-24)
(0.937937 -0.00941322 -9.31492e-23)
(0.995264 0.0738065 -2.48796e-21)
(0.916551 0.109943 -4.72226e-22)
(0.999919 -6.92857e-05 -5.8331e-25)
(0.999854 -0.000214339 2.00017e-24)
(1.08748 -0.121028 -6.6123e-22)
(0.988681 -0.0537717 2.0404e-22)
(0.986182 -0.00635059 4.05361e-23)
(1.05623 0.033955 8.71907e-22)
(1.00018 -0.000157969 1.12708e-24)
(1.03104 -0.00165195 -1.85527e-22)
(0.999975 -0.00022763 4.16863e-25)
(0.955699 -0.0106989 3.27278e-22)
(1.01291 -0.0222513 -7.26984e-23)
(0.999596 -0.000866416 -5.35914e-25)
(0.99998 -6.85278e-07 -6.59323e-26)
(1.09262 -0.0591355 9.09708e-23)
(0.985827 0.126224 4.35445e-24)
(0.991989 0.0718454 -2.96294e-22)
(1.05548 0.0366397 2.25784e-21)
(1.00029 -0.0011042 -4.38681e-24)
(1.28823 -0.0348186 -1.04386e-21)
(1.03058 0.00586424 -2.06819e-21)
(0.993919 -0.0190789 3.64558e-25)
(0.989221 -0.00867059 -1.21909e-22)
(0.97393 -0.00713012 6.1852e-23)
(1.10503 0.0494627 2.44082e-22)
(0.999991 -1.64812e-05 8.47962e-26)
(0.977531 -0.0488407 -4.19116e-22)
(1.03175 -0.0810762 -2.06864e-22)
(1.01035 -0.0211082 3.57542e-26)
(1 -0.000543276 3.23379e-27)
(0.9925 -0.00129569 3.2032e-23)
(0.960326 -0.0249941 3.12525e-22)
(1.00003 -0.000210514 -5.57535e-26)
(1.00005 -3.22437e-05 9.77847e-26)
(1.0013 -0.000402143 1.92584e-23)
(0.980881 -0.00528087 1.05844e-22)
(1.04675 -0.145588 1.82402e-22)
(1.00009 -0.00194716 7.16276e-26)
(1.00207 -0.000651703 2.73031e-23)
(1.16891 0.193415 7.45254e-22)
(0.999913 -0.000242286 3.74973e-25)
(1.30564 0.0132343 -1.02655e-22)
(0.998471 -0.000197895 1.79678e-25)
(1.07147 0.0853102 2.36887e-21)
(1.00194 -0.00821439 -3.32684e-24)
(0.98957 -0.000985029 2.43382e-23)
(0.971693 -0.00332528 2.05665e-22)
(1.0363 -0.110601 6.23246e-22)
(0.998912 -0.000539331 1.19618e-24)
(0.989754 -0.102333 -7.04576e-22)
(1.04777 0.175799 1.34929e-21)
(1.15407 0.179925 -2.42381e-21)
(0.999918 -0.000254313 1.54761e-24)
(0.994037 -0.023968 -8.60205e-23)
(1.29961 -0.0163089 6.55191e-22)
(1.07332 0.118618 1.17635e-21)
(1.0017 0.0317732 -2.46869e-21)
(0.972282 -0.0203076 6.73236e-23)
(1.0009 -0.00456887 6.82958e-26)
(0.999702 -9.47748e-06 -2.96341e-24)
(1.05829 -0.070535 2.26163e-22)
(1.09719 -0.181386 -1.41009e-22)
(1.15245 0.160179 -2.89211e-22)
(1.00008 -1.82417e-05 1.90424e-26)
(0.991568 -0.00313254 1.03781e-23)
(0.88371 0.128721 2.14825e-21)
(0.971958 0.0355294 1.937e-21)
(1.07449 -0.0289918 6.39016e-24)
(1.00001 -2.94528e-06 -2.88555e-26)
(1.07289 -0.0314193 1.86289e-22)
(0.988955 -0.0275312 -1.55549e-23)
(1 -0.000132489 3.75785e-26)
(0.998924 -0.000338668 -1.68948e-24)
(0.961808 -0.044923 4.39429e-22)
(1.0117 -0.00792057 3.47183e-23)
(1.00961 -0.0068052 -2.34727e-23)
(1.0652 -0.0261517 1.11095e-22)
(1.09076 -0.00250907 3.16888e-22)
(0.999859 -0.000295899 -1.36898e-24)
(1.04749 -0.109265 -1.18793e-22)
(1.00004 -0.000953728 7.44792e-28)
(0.999863 -0.00025889 2.34878e-24)
(1.10064 0.131775 1.0068e-22)
(0.97923 -0.000404074 4.726e-23)
(0.974234 -0.109799 -8.23333e-22)
(0.973735 -0.00286816 1.44597e-22)
(0.997065 -0.129804 -2.83659e-22)
(1.01074 -0.00760358 -8.02887e-23)
(0.999446 -0.000202541 -6.85508e-25)
(1.00155 -0.00186015 5.9935e-24)
(1.09015 -0.00921921 -1.10352e-22)
(0.83587 0.0167178 1.69218e-23)
(1.05576 -0.0284904 -2.36562e-22)
(0.998886 -0.000580374 -1.29036e-23)
(0.999994 -1.8511e-05 4.90854e-26)
(1.0617 -0.00276588 -2.73107e-22)
(1.00038 -5.86499e-05 -3.10039e-24)
(1.09041 -0.0526924 -3.34841e-23)
(1.05837 -0.0895588 -6.18183e-22)
(0.999988 -2.86886e-06 7.64574e-27)
(1.03521 0.0141428 -1.41175e-21)
(0.999989 -1.36205e-05 -4.62741e-27)
(1.04478 0.0665438 -2.62524e-22)
(0.999988 -1.32247e-05 1.90718e-25)
(1.06858 -0.0987506 5.36631e-22)
(0.993563 -0.019639 -9.4343e-23)
(0.957279 -0.0118302 6.13612e-23)
(1.30088 0.00358838 -4.78721e-22)
(1.02151 -0.0162171 1.31954e-22)
(0.993852 -0.0201843 1.17647e-22)
(1.12279 -0.195235 -2.43705e-22)
(1.00304 0.000398979 -1.95501e-21)
(0.993578 -0.0232726 -9.82915e-23)
(0.992107 -0.00468383 -1.3144e-22)
(1.05033 0.0303692 9.08156e-22)
(0.99996 -3.36603e-05 9.47847e-25)
(0.994793 -0.00174921 -6.27618e-23)
(0.996309 -0.0058924 3.58313e-23)
(0.999977 -0.000490278 3.5399e-25)
(1.11297 0.0265398 5.0516e-22)
(1.09135 0.147505 1.48102e-21)
(0.971273 -0.0301964 -8.11684e-23)
(1.00235 -0.0143154 -9.77949e-25)
(1.00006 -1.57174e-05 5.67104e-25)
(0.999511 -0.000205342 2.26966e-24)
(1.00002 -0.000200749 1.55424e-25)
(1.00437 -0.0166138 -3.95233e-25)
(1.27138 0.109026 -1.31126e-23)
(1.06508 -0.0931482 9.02957e-23)
(0.95122 -0.0289481 3.35839e-22)
(1.00086 -0.000489443 1.14532e-23)
(1.00051 -0.00156863 -1.11876e-23)
(1.00143 -0.0249513 6.9936e-24)
(1.00833 -0.00647925 4.09077e-23)
(0.979327 -0.0028015 -2.26319e-23)
(0.956052 -0.0116897 8.20239e-23)
(1.03476 0.0189575 1.17466e-22)
(1.00083 -0.000443959 -4.52034e-24)
(0.999921 -0.000232294 -1.06223e-24)
(0.999963 -1.88339e-05 5.24906e-27)
(1.03613 0.00723083 1.70404e-21)
(0.999835 -0.00033283 -2.47452e-24)
(1.12375 0.0627126 4.51929e-22)
(1.08453 -0.0541683 -5.50624e-24)
(1.05101 -0.0321461 -2.68268e-22)
(1.01183 -0.0210003 1.32916e-23)
(1.1766 0.0925847 3.89055e-22)
(0.99996 -6.56008e-05 7.2304e-25)
(1.00028 -7.58946e-05 2.19721e-24)
(0.994909 -3.91528e-05 3.10193e-23)
(1.00016 -0.00179875 2.55217e-25)
(0.941989 -0.0146819 5.27388e-22)
(0.991536 -0.0161649 -1.07801e-22)
(0.996524 -0.0187662 -3.22551e-23)
(0.992721 -0.00135415 -9.64784e-23)
(1.0354 -0.104582 -8.12592e-22)
(0.986597 -0.024503 -9.23358e-23)
(1.11634 -0.0474413 6.73723e-26)
(0.999442 -1.59508e-05 -1.11574e-23)
(1.03507 0.0172434 1.81829e-22)
(1.0233 0.10061 -2.61248e-21)
(1.00002 -0.000183284 4.4702e-26)
(0.999292 -0.00127762 5.21061e-24)
(0.999285 -0.00121468 -9.89718e-24)
(0.998656 -0.137224 -5.86399e-22)
(1.03414 -0.107655 -4.62351e-22)
(1.02574 -0.0621915 -1.04045e-22)
(0.999986 -6.79886e-07 8.57872e-27)
(0.998116 -0.00131415 1.08022e-23)
(0.999928 -3.57304e-05 2.45865e-25)
(1.08788 0.00167588 -4.81225e-22)
(0.998957 -0.000540218 1.63448e-23)
(0.998981 -0.000310363 9.59932e-24)
(1.06287 -0.117018 -1.06254e-21)
(1.08006 0.140142 1.24461e-21)
(1.03358 0.00203 -1.02716e-21)
(1.03416 0.00294397 6.83593e-22)
(0.998984 -7.79353e-05 -3.04447e-24)
(1.00148 -0.00207613 7.49168e-24)
(1.00001 -3.55612e-06 -1.4879e-26)
(1.00001 -6.0674e-07 -4.77875e-26)
(1.00188 -0.0678075 -4.089e-22)
(0.994464 -0.131808 -7.51338e-22)
(1.00002 -1.12374e-07 1.76295e-26)
(0.997732 -0.00159944 -1.5209e-24)
(0.990399 -0.0284311 2.57694e-22)
(1.00047 -0.00234981 -5.60731e-24)
(1.25922 0.0844925 -2.78672e-23)
(1.0085 -0.0127392 7.68266e-23)
(1.25674 -0.0991936 1.91574e-22)
(0.999929 -7.07436e-05 -7.15185e-25)
(0.997452 0.141627 1.56664e-21)
(1.10347 -0.107615 2.34168e-22)
(1.05003 0.00349512 3.68488e-22)
(1.00245 0.00219622 1.29763e-21)
(1.01348 0.007894 3.76149e-22)
(0.997173 -0.00597193 -4.31385e-23)
(0.997942 -0.00148746 4.0016e-23)
(0.996765 -0.00607238 -7.64192e-25)
(0.991148 -0.00465901 1.02916e-22)
(1.03512 0.00890859 1.77638e-22)
(1.19111 -0.166066 1.3384e-22)
(0.859485 0.0203201 2.23873e-22)
(1.10478 0.127388 7.67006e-23)
(0.983079 -0.00474723 2.19979e-23)
(1.00526 -0.0411373 1.84247e-22)
(1.00002 -3.01529e-05 -1.80547e-25)
(0.998469 0.000231531 3.81057e-22)
(1.00417 -0.0159981 -4.83293e-24)
(1.00906 -0.00795537 1.87713e-22)
(1.00397 -0.0246215 2.54342e-24)
(1.00017 -0.000144576 8.06369e-27)
(1.03979 0.0805071 -1.84497e-21)
(0.987404 -0.125175 -8.08075e-22)
(1.01334 0.0888745 4.9666e-22)
(0.999359 -0.000284465 -5.88868e-25)
(0.999981 -2.63118e-07 1.25612e-26)
(1.04082 0.00715566 -3.97318e-22)
(0.993084 -0.015866 4.57439e-24)
(0.995969 -0.00353602 7.93197e-24)
(0.99692 -0.000345424 1.05478e-23)
(1.00262 0.0247837 1.5396e-21)
(1.07133 0.0932804 1.71968e-21)
(0.998784 -0.00704398 6.84599e-24)
(1.00018 -0.00172453 6.47537e-25)
(0.972341 -0.0034504 -9.90779e-23)
(1.00183 -0.0659045 5.33458e-22)
(1.06833 -0.033242 -1.27599e-22)
(1.03738 0.00874009 -1.98059e-22)
(1.00922 -0.076345 2.67773e-22)
(0.972755 -0.00302344 -6.13315e-23)
(1.02557 -0.0195625 1.72922e-22)
(0.949502 0.143499 -2.78549e-22)
(0.999975 -3.49366e-05 2.49038e-26)
(1.00015 -2.91229e-05 2.63062e-24)
(1.07305 -0.026454 2.57362e-22)
(1.00126 -0.00395635 1.10056e-23)
(1.051 0.0233423 -3.5814e-22)
(0.966411 0.0880395 -5.58479e-21)
(0.999992 -0.00021698 -2.12098e-25)
(1.00361 -0.0104355 3.81325e-23)
(1.045 -0.138182 6.36757e-22)
(0.987604 -0.0266177 -1.9168e-22)
(0.998083 -0.0241795 -4.96241e-23)
(0.98686 -0.10164 7.92109e-23)
(1.00058 -0.00230729 3.14477e-24)
(0.98966 -0.00339429 -8.16023e-23)
(0.992711 -0.00332979 -4.56012e-23)
(0.999319 -0.000262393 5.77713e-24)
(1.00433 -0.0186472 5.90495e-24)
(1.02378 0.129927 2.59231e-21)
(1.15172 0.123336 -3.85408e-23)
(0.986374 -0.115315 -5.8124e-22)
(0.999917 -2.59174e-05 -3.85167e-25)
(1.0362 0.00820107 -7.5255e-22)
(1.06173 -0.0694492 -1.8749e-22)
(1.03854 0.0263969 3.61399e-22)
(1.00156 0.100768 -1.37123e-21)
(0.998749 -0.000537231 -3.5921e-24)
(0.991618 -0.00524784 -1.04841e-22)
(1.0939 -0.0042982 1.11731e-22)
(1.0007 -0.00214374 -3.80053e-24)
(1.0621 -0.0299436 1.55636e-22)
(0.97256 -0.0105256 4.1083e-22)
(1.00004 -0.00188056 -3.32747e-25)
(1.08543 -0.179795 2.29656e-22)
(0.999985 -1.74865e-05 -7.07028e-26)
(1.13322 0.164294 -4.99919e-22)
(0.986919 0.129928 -1.23028e-21)
(1.02346 -0.012156 8.06739e-22)
(0.999712 -3.20722e-06 1.72946e-24)
(1.02418 -0.0833051 2.6589e-22)
(1.02406 -0.0880339 -1.49702e-22)
(0.983302 -0.036895 1.19476e-22)
(1.0369 0.00156271 -1.72137e-21)
(0.994417 -0.0141616 -2.8568e-23)
(0.999321 -0.000578529 -2.87181e-24)
(1.00001 -3.10043e-05 2.21048e-26)
(1.00174 -0.00652478 -6.78e-24)
(0.974797 -0.0841759 -6.90183e-23)
(0.990571 0.130182 2.16417e-22)
(0.999943 -6.85059e-06 -4.39834e-25)
(1.03053 -0.107922 1.83952e-22)
(1.21743 0.154336 3.3718e-23)
(0.999978 -0.000159085 8.27323e-25)
(0.999975 -3.25651e-05 -4.15595e-25)
(1.02387 0.00945539 1.60365e-22)
(0.990173 -0.0957406 5.82247e-22)
(0.990571 -0.126697 -4.14281e-22)
(1.19883 0.121148 -5.26028e-22)
(0.978406 -0.0153122 -2.79362e-22)
(1.03165 0.0112564 -5.76825e-22)
(1.01681 -0.0154617 1.26366e-22)
(1.30386 0.0338019 -2.70141e-22)
(1.09211 0.0128661 9.13338e-22)
(1.23043 -0.138234 -2.08441e-21)
(0.980416 -0.00275112 1.08653e-22)
(0.981812 -0.0120335 1.4998e-22)
(1.05591 -0.00107922 6.54994e-22)
(1.12287 -0.0660826 -1.71506e-24)
(1.01301 0.0478669 -3.24116e-22)
(0.995577 -0.0194986 -1.24249e-22)
(1.00001 -2.62294e-06 1.62459e-27)
(1.10755 0.0900352 -1.72503e-21)
(1.03088 -0.0114287 -9.28959e-22)
(0.99999 -1.2829e-05 1.04991e-25)
(0.996782 -0.00505738 -3.01703e-23)
(0.989841 -0.00921272 -7.35653e-23)
(0.976903 -0.0477403 -2.6302e-24)
(1.00482 -0.000888724 5.47669e-23)
(1.0272 -0.0103184 -2.91693e-22)
(1.02201 0.173049 5.55445e-23)
(1.0038 -0.0708439 2.4883e-22)
(1.12725 -0.151128 9.11426e-22)
(0.996995 -0.00615667 7.89689e-23)
(0.998413 -0.012391 6.13522e-24)
(0.999964 -0.000477611 -3.00095e-26)
(1.01244 0.144863 5.78369e-22)
(1.0442 0.180048 -9.62944e-22)
(1.00116 -0.0160711 -2.47518e-23)
(1.07028 -0.0217557 3.32997e-22)
(0.999923 -7.30147e-05 -9.21222e-25)
(1.00899 0.0790572 -1.90646e-22)
(0.941681 -0.0193852 -1.1073e-22)
(0.999707 -0.000218751 1.96958e-24)
(1.12977 -0.140944 -1.79471e-21)
(1.29184 0.0037748 -6.46797e-22)
(0.999988 -1.11283e-06 0)
(1.11961 0.0199772 6.28206e-22)
(0.99985 -1.14646e-05 -4.08276e-25)
(0.973659 -0.0768745 -5.4908e-22)
(0.984268 -0.0161795 -1.16937e-22)
(1.01594 -0.0164487 5.82969e-23)
(0.999344 -0.000469694 -3.56142e-24)
(1.01387 -0.0123291 2.10183e-22)
(1.07277 -0.0216734 -1.51586e-22)
(0.974271 -0.00371989 -1.37382e-22)
(0.974513 -0.00203737 -1.5382e-22)
(1.00218 -0.0074998 1.14127e-23)
(1.01518 -0.104826 -3.7507e-22)
(0.999459 -5.27221e-06 8.75623e-24)
(1.09444 0.130346 -5.35059e-22)
(1.00001 -3.51778e-06 1.15533e-27)
(1.00424 -0.0179843 4.49378e-24)
(1.00045 -0.0015212 5.33194e-24)
(0.990698 -0.00400224 -5.20431e-23)
(0.991577 -0.00480098 4.85792e-23)
(0.999959 -8.54888e-05 2.50597e-25)
(0.999365 -0.000241869 -6.9783e-24)
(0.990875 -0.00513172 6.45253e-23)
(1.01837 -0.131405 1.60048e-22)
(1.01981 0.064943 -3.49211e-22)
(1 -6.12077e-06 1.29541e-26)
(1.01968 -0.0146124 -5.39835e-23)
(1.29989 -0.0474323 1.99467e-21)
(1.00394 -0.0260819 2.8995e-23)
(1.00715 0.0200446 4.32965e-22)
(1.02353 0.109672 6.58177e-22)
(1.1673 0.00405471 2.58521e-22)
(0.997675 -0.00344268 3.05146e-23)
(1.04233 -0.113124 -5.90817e-22)
(0.995169 -0.000502911 -2.75816e-23)
(1.00579 0.0810018 4.57512e-21)
(0.980761 -0.0287078 3.23255e-23)
(0.99465 -0.0133681 1.00999e-22)
(1.00166 -0.00063515 -1.31853e-24)
(0.982281 -0.00504255 6.52714e-23)
(0.999941 -7.80633e-05 6.25509e-25)
(0.999349 -0.000265421 -1.40315e-24)
(1.00045 -0.0017892 -1.42339e-24)
(0.99774 -0.0131481 -6.42545e-23)
(0.997045 -0.000886838 1.19201e-23)
(0.999961 -7.54202e-06 1.74318e-25)
(1.01417 -0.045005 -9.87047e-23)
(1.00404 -0.0405902 -2.36886e-22)
(1.29693 -0.0364137 -3.56724e-22)
(1.00001 -9.64939e-05 8.95203e-26)
(0.999941 -7.31426e-05 -1.17973e-25)
(0.983069 -0.040693 -2.83825e-22)
(1.00156 -0.000656109 5.53871e-24)
(0.993255 -0.00485203 1.2081e-23)
(0.99999 -0.000167311 1.43068e-25)
(0.999977 -3.15333e-05 7.89976e-25)
(1.07173 -0.0893549 4.25623e-22)
(1.0048 -0.00048539 8.39339e-24)
(1.01526 -0.0460091 1.47595e-22)
(1.06595 0.0162793 2.03672e-22)
(0.996109 -0.00349995 -7.48326e-24)
(0.999938 -2.4278e-05 -2.03598e-25)
(1.29965 0.0241638 5.48741e-22)
(0.983616 -0.0416893 7.66969e-23)
(1.02657 -0.0193422 2.00647e-22)
(1.00173 -0.000714242 9.63417e-24)
(0.981216 -0.104108 7.18064e-22)
(0.998532 0.102203 4.69058e-21)
(1.12364 -0.181807 -5.52409e-22)
(1.02288 0.00615671 7.23414e-22)
(0.999319 -0.000526298 8.7639e-24)
(1.00527 -0.000492526 -8.83645e-23)
(0.974618 -0.00267696 3.6894e-22)
(1.01092 0.0588725 -5.64289e-22)
(0.999089 -0.00399752 1.07237e-23)
(1.02208 -0.0317389 -5.24915e-23)
(1.21417 0.162967 5.59825e-22)
(1.02825 -0.0144433 -3.10764e-22)
(0.999985 -1.60541e-05 -4.85614e-26)
(1.01512 0.00374923 -1.28068e-21)
(1 -0.000108943 -5.13207e-27)
(1.04964 -0.0331479 8.95267e-23)
(1.23142 -0.15415 -1.25762e-22)
(1.00024 -9.57294e-05 -7.87714e-25)
(1.00152 -0.000511149 1.34067e-23)
(1.22087 -0.0850474 8.85711e-22)
(1.01603 -0.015567 -2.5873e-22)
(0.952761 -0.0317929 -3.36106e-22)
(1.20496 0.164242 -8.37214e-22)
(0.999407 -0.000221128 8.91956e-25)
(1.00863 0.0708889 -1.36042e-21)
(0.99897 -0.00139039 -4.68577e-24)
(1.02007 0.00393594 -2.89632e-22)
(1.00006 -1.43725e-05 -6.52241e-25)
(0.977867 -0.0148379 7.52927e-23)
(1.08616 0.0778844 8.02464e-22)
(0.939816 -0.0158406 -1.70084e-22)
(1.01451 -0.0598377 3.17938e-24)
(0.99512 -0.0544223 1.64392e-22)
(0.978851 -0.0120182 -3.16132e-22)
(0.999981 -6.30357e-05 1.43216e-25)
(0.998987 -0.000423449 -8.08647e-24)
(1.15235 -0.175993 1.62773e-21)
(0.989086 -0.0524925 -2.30904e-22)
(1 -0.000521283 -1.19585e-25)
(1.02137 0.00301184 -1.1011e-21)
(0.999337 -0.00101328 -7.01101e-24)
(1.00024 -0.000244944 -7.4701e-25)
(1.00105 -0.000574514 -1.21282e-23)
(1.00934 -0.0294018 -7.74849e-25)
(1.03403 -0.143046 -6.19828e-22)
(1.00371 -0.0688044 -1.49029e-22)
(0.992429 -0.00398328 8.17544e-23)
(1.14083 0.00967699 -4.0532e-22)
(1.00141 -0.000601402 2.01238e-23)
(1.03343 0.00381529 -1.48193e-22)
(1.00028 -3.20908e-05 -1.70798e-24)
(1.01945 -0.0159329 1.14773e-22)
(0.999986 -0.000132363 -8.87723e-27)
(1.02123 -0.034779 9.77999e-24)
(0.973208 0.0909188 1.12268e-21)
(0.999569 -0.000933746 4.07613e-24)
(0.975643 -0.00832665 -2.55171e-22)
(0.999253 -0.000591865 -1.07866e-24)
(1.07615 -0.11091 -6.94345e-22)
(0.999017 -0.000213311 1.4639e-23)
(0.999922 -7.71611e-05 4.37175e-25)
(0.999986 -0.000174602 -1.35057e-25)
(1.00031 -0.000115324 -9.7834e-25)
(0.995918 -0.00372702 -6.49955e-23)
(0.99946 -0.000890787 -5.92468e-24)
(1.09968 0.0212168 -7.10996e-22)
(1.00206 -0.00443228 -1.00895e-24)
(1.12587 0.155347 -3.39176e-23)
(1.00287 0.0519413 1.61038e-21)
(1.20029 -0.188499 -7.69633e-22)
(0.998973 -1.41605e-05 -3.24991e-24)
(1.06479 -0.0303625 -2.0425e-22)
(0.955665 -0.0300369 1.19249e-22)
(0.999912 -7.5439e-05 2.37708e-25)
(1.08876 -0.0584174 -4.9164e-23)
(0.999946 -7.07527e-05 1.7445e-25)
(1.30318 -0.0811958 1.45055e-21)
(1.03346 0.0193943 -1.03752e-21)
(0.99998 -5.9706e-05 2.07346e-25)
(0.994655 -0.00171892 4.9326e-23)
(0.990365 -0.00824993 -2.11779e-22)
(1.00005 -9.01542e-05 9.9559e-26)
(0.974686 -0.007846 -9.89083e-23)
(1.05394 -0.00076765 -5.02634e-22)
(0.999897 -0.000845853 -8.9437e-25)
(1.00197 -0.00700734 2.26775e-24)
(0.991849 -0.00757181 -5.14613e-23)
(0.975023 -0.00167341 -3.19627e-22)
(0.994441 -0.02516 1.91285e-22)
(0.97874 -0.0486158 2.75252e-22)
(0.986831 -0.0989062 1.64577e-22)
(0.991913 -0.000499547 1.18673e-22)
(1.00012 -0.000855474 3.1609e-26)
(1.11693 0.0268145 -5.13434e-22)
(1.00885 -0.057202 1.08836e-22)
(1.01683 0.138761 -3.33167e-23)
(0.99899 -0.000242273 -1.59343e-23)
(0.974136 -0.00304986 1.41377e-22)
(0.974336 -0.0804436 -7.93089e-22)
(0.999374 -0.00103125 -6.27049e-24)
(1.01999 0.00330454 7.38183e-22)
(1.21328 -0.0941406 -2.07273e-21)
(0.997438 -0.00194488 2.38704e-23)
(0.999998 -0.000866477 -4.65338e-25)
(0.999974 -0.000455145 -2.11415e-25)
(1.02499 -0.105012 -1.61086e-22)
(1.11495 -0.0717452 -1.93355e-22)
(1.00006 -1.80745e-05 1.4602e-25)
(0.961052 -0.000361284 -7.1848e-23)
(1.22207 -0.155444 9.69244e-22)
(0.974527 -0.00880882 -5.63707e-23)
(1.00507 -0.016332 2.22894e-23)
(1.03669 0.005337 2.9889e-22)
(1.11939 0.0595355 -5.04079e-22)
(0.977862 -0.0283119 -1.18418e-22)
(0.999926 -8.04939e-05 7.72087e-25)
(0.991663 -0.00185953 -2.62128e-23)
(0.999974 -5.13474e-05 -4.02361e-25)
(1 -8.15972e-05 1.77851e-26)
(1.00053 -0.00205687 -1.83276e-24)
(1.29081 -0.0153754 4.26685e-22)
(0.999989 -2.07641e-06 6.18574e-27)
(1.02376 -0.0377583 6.2186e-25)
(0.999336 -0.000961666 1.22739e-23)
(0.999972 -6.86833e-05 5.187e-25)
(0.986626 -0.00632287 1.90861e-23)
(1.12156 -0.135589 4.72944e-22)
(1.03409 0.0146768 1.87167e-21)
(0.951643 -0.0389533 -4.0923e-22)
(1.00359 0.00681309 2.30299e-22)
(1.0001 -1.85191e-06 0)
(0.973016 -0.0735546 -3.85483e-22)
(1.05254 0.0594793 1.65407e-21)
(0.98448 -0.00582364 -5.95908e-23)
(0.954987 -0.0323539 1.79931e-22)
(0.999986 -3.35761e-07 1.44123e-27)
(1.00001 -5.17431e-06 2.18889e-26)
(1.0497 -0.0353896 -1.00345e-22)
(0.998533 -1.35714e-05 2.0441e-23)
(1.0567 -0.00338517 -1.59138e-22)
(0.986805 -0.00594031 -9.07949e-23)
(0.993269 -0.00194296 5.37148e-23)
(1.01705 -0.0146963 -8.84443e-23)
(0.882322 0.0311226 6.55657e-21)
(0.981749 0.131466 2.1792e-21)
(0.999084 -0.000766426 4.53265e-24)
(0.999971 -6.16319e-05 6.59585e-26)
(1.0989 -0.0798535 -5.2369e-23)
(0.999992 -1.79977e-05 1.13234e-25)
(0.936624 -0.00930758 -3.42728e-22)
(1.04638 -0.112506 -1.42303e-22)
(1.26423 0.105912 -2.55807e-23)
(0.957628 -0.0127922 6.87658e-22)
(1.13362 -0.132304 1.19121e-22)
(1.00037 -0.00161335 3.2836e-24)
(0.99746 -0.00182861 1.29875e-23)
(0.978916 -0.110875 -6.78993e-22)
(0.991359 -0.00127598 -6.85357e-23)
(0.99724 -0.000513432 2.46419e-24)
(0.999749 -0.0448988 1.38797e-22)
(0.997555 -0.0447045 2.79225e-22)
(0.999983 -1.04666e-06 1.52875e-25)
(1.04313 -0.0188353 -2.17546e-22)
(1.17493 -0.0524956 2.04564e-22)
(0.999392 -0.000243668 3.17899e-24)
(0.997155 -0.000401593 1.93121e-23)
(0.820894 0.0353701 -1.27281e-21)
(1.00697 0.0710437 3.61247e-21)
(1.00168 -0.000563888 1.39612e-23)
(1.0022 -0.000498018 8.70951e-24)
(0.994914 -0.0184864 -1.73647e-22)
(0.999982 -0.000927548 -5.21107e-25)
(0.992774 -0.0960829 1.4005e-22)
(0.958463 -0.0243022 9.65171e-23)
(1.00551 0.0192459 2.38777e-21)
(0.99891 -0.000691215 1.04009e-23)
(1.12089 -0.0358992 1.95664e-23)
(1.04032 0.0253063 -2.3364e-22)
(0.999983 -5.69849e-05 -9.67898e-26)
(1.02648 0.00725373 -1.67931e-22)
(1.01133 -0.00751339 2.08709e-22)
(0.997504 -0.0040992 1.74758e-23)
(1.00046 -0.00143968 1.24676e-24)
(1.00489 0.0141102 -1.57256e-21)
(1.00151 -0.00174842 -2.15028e-23)
(1.00003 -7.63971e-05 -5.07961e-26)
(0.999853 -0.000956003 -8.99966e-25)
(1.09898 0.0779567 -1.52475e-21)
(1.03001 -0.0537322 6.17531e-23)
(0.993528 -0.00459701 1.04783e-22)
(1.05766 -0.100138 -5.75657e-22)
(0.99929 -0.00103995 3.42186e-24)
(0.99993 -2.06384e-05 -2.33929e-25)
(0.995631 -0.00043175 6.59374e-24)
(1.00032 -3.74222e-05 -2.59217e-24)
(1.00411 0.105451 -5.11971e-22)
(1.00003 -8.51477e-05 -1.97757e-25)
(1.00618 -0.000891836 -5.16712e-23)
(1.00171 0.107245 1.5201e-21)
(0.997205 -0.000657351 4.0844e-23)
(0.997888 -0.000297583 1.58899e-23)
(1.29554 -0.100723 -4.1143e-23)
(0.999502 -7.12799e-05 6.43651e-26)
(1.03997 -0.110163 5.10376e-22)
(1.30569 0.0855902 -4.40475e-22)
(0.996558 -0.00215616 -1.24141e-24)
(0.989999 -6.07012e-05 1.27521e-22)
(1.00042 -0.00110478 -7.2402e-24)
(1.02427 -0.0209533 7.03521e-23)
(0.9871 -0.0416875 1.8622e-22)
(0.979501 0.133807 3.24427e-21)
(1.07193 -0.0929532 -3.10929e-22)
(1.07266 -0.0723759 -1.12007e-22)
(0.990664 -0.00218154 -1.6284e-22)
(1.0701 -0.0311025 -2.75498e-22)
(1.00002 -2.82916e-06 -1.08431e-26)
(0.999864 -3.24174e-05 -1.59992e-24)
(1.00681 -0.0332246 1.20645e-22)
(0.990617 -0.00717641 -3.85573e-23)
(0.999904 -0.000203449 1.99817e-25)
(0.999938 -6.76836e-06 -1.30787e-25)
(1.00803 -0.00612499 -5.36591e-23)
(0.999736 -4.16095e-05 1.70997e-24)
(1.00002 -5.08325e-06 -1.95752e-26)
(0.937378 -0.00270946 -3.97234e-22)
(1.0004 -0.00140001 4.0818e-25)
(0.988413 0.00954173 2.27123e-21)
(0.933234 -0.00319344 1.13552e-24)
(0.999005 -0.000279672 2.74955e-24)
(0.999424 -0.000868365 5.07713e-24)
(1.00991 -0.0122077 9.65326e-23)
(1 -9.90988e-05 4.50855e-26)
(0.992878 -0.00317412 1.22737e-22)
(1.04863 -0.0167407 -1.39416e-22)
(0.999987 -0.000247175 -8.58618e-27)
(1.01772 0.0244759 2.29906e-21)
(1.05138 -0.0233038 7.28547e-23)
(1.00011 -1.66384e-05 8.39373e-25)
(1.0647 -0.113086 1.61451e-22)
(1.12696 -0.101947 -5.26886e-22)
(0.997738 -0.00357818 2.25946e-23)
(0.998354 -0.0116323 -3.42829e-23)
(1.05659 0.0265807 8.63971e-22)
(0.999945 -3.18127e-05 1.50246e-25)
(1.00149 -0.000583689 -5.15642e-24)
(0.999996 -6.18058e-06 1.2325e-26)
(0.998642 -0.000161873 4.86668e-24)
(1.00817 0.0949887 4.18021e-22)
(1.01086 -0.0127285 1.64675e-22)
(1.18739 0.100577 6.46409e-22)
(1.00667 -0.000955693 -3.99644e-23)
(1.00038 -0.000904995 -1.90436e-25)
(0.837031 0.0308907 -2.43817e-21)
(0.993034 -0.00613192 -1.93778e-23)
(1.13471 -0.0324841 2.31907e-23)
(1.07434 -0.0240274 -1.09133e-22)
(0.991653 -0.00409817 1.7392e-23)
(1.01478 0.00273627 -2.08672e-21)
(0.972122 -0.0307374 -1.91646e-22)
(1.00042 -0.00218424 6.4685e-24)
(0.998725 -0.00014725 -6.81228e-24)
(0.961878 -0.000675988 1.21793e-22)
(0.997006 -0.0253049 4.0903e-23)
(1 -3.13925e-06 4.62208e-28)
(1.00024 -0.000333642 8.716e-25)
(1.10455 0.0854438 -1.39711e-21)
(0.998238 -0.0109465 -1.22061e-23)
(1.2445 -0.14255 1.05912e-21)
(1.07042 -0.0263981 3.80918e-23)
(1.00078 -0.000729709 2.21287e-24)
(0.977971 -0.0141183 5.36811e-23)
(0.989624 -0.120047 -4.89927e-22)
(1.06696 0.0482422 3.10764e-22)
(1.00004 -0.000226777 -2.27219e-25)
(0.979637 -0.00265038 9.36936e-23)
(0.979244 -0.0125697 8.2588e-23)
(1.0054 0.0255968 3.91738e-22)
(1.00025 -0.000889516 4.46886e-24)
(0.997046 -0.00479673 4.21954e-23)
(1.04775 -0.0322176 3.5681e-23)
(0.997032 -2.46049e-05 9.30255e-24)
(1.06008 -0.0121101 4.99062e-22)
(1.00368 -0.0177224 -3.24918e-24)
(0.998946 -0.0172675 -3.8006e-23)
(1.03136 -0.00969263 -6.38735e-23)
(1.00155 -0.00610137 -8.61182e-24)
(1.04475 0.0731978 -1.15435e-21)
(0.942012 -0.00466784 -7.85655e-22)
(1.01303 0.0500688 -2.46033e-21)
(1.01841 0.0459035 -2.39103e-21)
(0.951541 -0.0332697 -2.76142e-22)
(1.06542 0.00390293 -1.41707e-22)
(1.01364 -0.0193989 2.12542e-23)
(0.934937 -0.00145895 9.78927e-23)
(1.13199 -0.0768676 -3.96665e-22)
(0.993161 -0.124867 -2.88349e-22)
(1.00391 -0.0394281 1.43881e-22)
(0.999936 -1.07661e-05 1.70245e-25)
(1.1391 -0.00928862 6.06847e-23)
(0.994843 -0.0239445 3.05717e-23)
(0.999451 -0.000166928 2.62251e-24)
(1.17917 -0.17911 -5.66274e-22)
(0.987229 -0.121677 1.31892e-21)
(1.03714 -0.0172583 3.53585e-22)
(1.00282 -0.00579421 -1.25501e-23)
(1.11888 -0.0548365 -1.08598e-22)
(0.998306 0.105564 -4.21011e-21)
(1.00142 -0.00145206 -1.0206e-23)
(0.999404 -0.00052119 8.76504e-25)
(1.00987 -0.0463243 -1.86453e-22)
(0.999992 -1.90725e-06 -2.3993e-27)
(1.01286 0.0541636 -1.93164e-21)
(1.00001 -0.000433327 1.07691e-25)
(0.999401 -0.000261393 6.64907e-24)
(1.01741 -0.00221804 -2.07148e-22)
(1.13681 -0.148531 -4.93514e-22)
(1.00003 -4.30414e-07 0)
(1.11485 0.0617844 3.67485e-22)
(1.00007 -0.000304726 3.36857e-25)
(1.00042 -0.00093557 5.44609e-24)
(1.06594 0.14409 2.25147e-21)
(1.29537 -0.0891141 2.46848e-22)
(0.950975 0.036973 -5.92307e-22)
(0.997857 -0.00149687 -3.86292e-23)
(0.999968 -3.64639e-05 3.42815e-25)
(1.09489 0.0248207 -8.81986e-23)
(0.999963 -4.23409e-07 1.26017e-25)
(0.9989 -0.00725782 -2.63331e-23)
(1.00002 -0.000315566 1.85103e-26)
(0.999783 -0.00174768 1.37545e-24)
(1.00025 -0.000820148 -1.25843e-24)
(0.997628 -0.00382704 1.20078e-23)
(1.00375 0.101728 2.01003e-21)
(0.910135 0.00687778 -4.23057e-21)
(1.00038 -0.000856856 6.48094e-24)
(0.971227 -0.053277 7.61882e-23)
(0.997185 -0.000938474 -6.53644e-23)
(0.997369 -0.00438708 4.08739e-23)
(0.994125 -0.0022605 1.13553e-23)
(0.999511 -0.000159143 2.28691e-24)
(1.00753 0.0438305 -8.09548e-22)
(1.03624 -0.0183076 1.16403e-22)
(1.23547 -0.144557 -4.84935e-22)
(0.977846 -0.00131106 2.87599e-23)
(0.998683 -0.00013137 -7.14513e-25)
(0.981269 -0.0457524 5.44798e-22)
(0.998831 -0.00404554 1.87588e-23)
(1.00321 -0.00683945 1.30667e-23)
(1.00367 0.0311944 -2.81385e-22)
(0.994024 -0.00502367 -2.93605e-23)
(0.999979 -2.23639e-05 1.97059e-25)
(1.00016 0.000550952 2.3721e-21)
(0.962591 -0.000206437 2.39861e-22)
(1.00001 -3.6608e-07 -7.75735e-28)
(1.00014 -1.56394e-05 7.03381e-25)
(1.00001 -4.0586e-06 7.1035e-27)
(0.962114 -0.012747 3.65198e-23)
(0.991648 -0.00327475 -6.61858e-23)
(0.999985 -2.92366e-07 3.99789e-27)
(1.25881 0.0147228 -3.89696e-22)
(1.0268 0.10983 -1.06286e-21)
(1.12863 -0.137165 1.11671e-21)
(1.00072 -0.000577362 1.04927e-25)
(1.03251 0.00757368 4.25828e-22)
(0.986592 -0.0011319 2.01138e-23)
(1.07853 0.149693 -3.20623e-21)
(0.938741 -0.00323183 4.39865e-22)
(1.05648 0.0109811 -1.99532e-22)
(0.922682 0.109198 -3.45007e-21)
(0.997217 -0.0179643 1.65213e-23)
(0.973967 -0.0433779 -1.89482e-22)
(0.973025 -0.0178209 1.471e-24)
(0.988121 -0.0289759 -1.36545e-22)
(1.00002 -0.000219063 5.40117e-26)
(0.995047 0.133238 -6.28996e-22)
(0.999984 -1.21876e-06 -6.35291e-26)
(0.999042 -0.000100361 -8.66573e-24)
(0.993717 -0.00534891 1.23191e-22)
(0.985376 -0.0249422 1.25149e-22)
(0.983648 -0.0171535 -2.10051e-22)
(0.987221 -0.00591725 4.49782e-23)
(1.05897 -0.0275899 1.41979e-22)
(0.991523 -0.00349859 1.22615e-22)
(1.08753 -0.0717414 3.26628e-23)
(1.00312 -0.00592253 9.70226e-24)
(1.00009 -1.8642e-05 9.4903e-25)
(1.18839 -0.0454925 3.67353e-22)
(1.02841 -0.104769 2.29438e-22)
(0.985898 -8.97923e-05 1.59071e-22)
(0.9519 -0.0309054 1.78834e-22)
(1.08939 0.0100984 -3.77365e-22)
(0.999935 -2.89263e-05 2.5119e-26)
(1.00057 -0.000769468 1.7859e-24)
(0.999991 -7.70447e-05 3.12767e-25)
(0.999625 0.0357329 2.7663e-22)
(1.0489 -0.11563 -2.49126e-22)
(1.05397 -0.136791 3.64453e-22)
(0.999938 -8.66011e-06 -6.91008e-25)
(1.00131 0.0307404 -5.09809e-21)
(0.982375 -0.108222 -8.1014e-23)
(0.9749 -0.00827739 -1.11234e-22)
(1.06732 0.0309663 1.66952e-21)
(1.03366 -0.0934017 -3.0407e-22)
(1.00281 -0.00552813 5.67729e-24)
(1.01738 0.172124 -2.01261e-21)
(1.00036 -0.00029009 -8.05878e-24)
(1.0386 0.0780259 2.02761e-21)
(0.939833 -0.00247277 -1.69017e-22)
(1.0023 -0.00475368 -1.39199e-23)
(0.995984 -0.00289214 1.44543e-23)
(0.977522 -0.0168915 3.47062e-23)
(1.2576 -0.128988 -3.18512e-22)
(0.995361 -3.27616e-05 -6.97782e-26)
(1.21055 0.176824 -1.5716e-22)
(0.984175 -0.120165 -8.84648e-22)
(1.02815 0.0066972 6.15742e-22)
(0.990478 -0.000837503 -2.44074e-23)
(0.936037 -0.0108401 2.80108e-22)
(0.997834 -0.00173035 3.02855e-23)
(1.00439 -0.000245648 -5.95849e-23)
(1.00172 -0.00115338 4.65715e-23)
(0.971401 -0.00805856 4.95049e-23)
(0.999973 -2.47687e-05 5.45887e-25)
(1.01654 -0.0167239 1.42851e-22)
(0.999497 -0.00086537 6.50945e-24)
(0.999965 -1.20727e-06 1.49549e-27)
(0.976459 -0.00185909 1.35564e-22)
(0.997981 -0.00152923 -1.65169e-23)
(0.999945 -1.9654e-05 -2.0334e-25)
(1.09972 0.0859684 1.07927e-21)
(1.02935 -0.06728 1.88266e-22)
(0.996071 -0.0131969 -5.1876e-23)
(1.01652 -0.00225975 -1.13621e-22)
(0.99891 -0.000415576 -2.03495e-23)
(0.978298 -0.0269932 -6.79173e-23)
(0.979927 -0.0124232 -1.86758e-22)
(1.01165 -0.011196 -7.89497e-23)
(0.999956 -4.71772e-05 -9.2314e-25)
(0.992958 0.04628 -9.24743e-22)
(1.04441 -0.0974343 -9.93171e-23)
(0.940585 -0.014665 -6.56547e-22)
(0.969633 -0.0744108 1.19779e-22)
(0.999958 -2.27778e-05 5.93729e-25)
(1.03739 0.0827661 2.41657e-21)
(1.01566 0.00209227 6.23208e-22)
(1.0024 -0.00573801 -1.04709e-23)
(0.999939 -5.40952e-05 -1.32761e-25)
(1.00466 -0.0349071 5.72588e-23)
(0.997411 -0.00601803 1.5862e-23)
(1.00062 -0.00046938 -8.50575e-24)
(0.993461 -0.00195163 4.61881e-23)
(1.00279 -0.00950127 -2.11365e-24)
(0.991919 -0.00328139 -2.93396e-23)
(0.997282 -0.0244466 1.02802e-22)
(0.999948 -5.2473e-05 -9.14924e-25)
(0.997181 -0.000494188 -6.66461e-24)
(0.999975 -2.41033e-05 -1.31325e-25)
(0.961918 0.135632 1.6889e-21)
(1.00145 -0.00196004 -8.4764e-24)
(0.999969 -1.73505e-05 1.51728e-25)
(0.996489 -0.00574616 -5.74766e-23)
(0.96425 -0.00292939 -2.18076e-22)
(1.12111 -0.0790131 1.36394e-22)
(0.97722 -0.00765015 1.33645e-22)
(1.00286 -0.000121941 3.17063e-23)
(1.05932 -0.00562649 -1.35317e-21)
(0.968624 -0.0431789 -2.53669e-22)
(0.997957 -0.00161485 -5.49673e-24)
(1.03867 -0.0959698 8.7908e-23)
(0.974381 -0.000498462 1.98355e-22)
(0.999984 -8.70728e-07 -7.39764e-27)
(0.997861 -0.00163539 1.14789e-23)
(0.998072 -0.00151346 -1.19518e-23)
(0.999948 -1.95711e-05 -7.91719e-25)
(0.982564 -0.00468178 -1.40818e-22)
(0.998786 -0.000469157 -1.92133e-24)
(1.21786 -0.149155 9.86485e-22)
(1.21741 -0.164629 1.08097e-23)
(0.98597 -0.0243609 -1.00921e-22)
(0.971628 -0.0197272 -4.53394e-23)
(0.999949 -1.71792e-05 -3.41741e-25)
(0.999267 -0.000505954 -1.68857e-23)
(1.14047 -0.206598 4.48732e-22)
(1.00974 -0.00754768 3.98322e-23)
(1.14606 0.169887 -1.39386e-21)
(0.953455 0.0692273 -2.78618e-21)
(0.970612 -0.0521785 6.86696e-22)
(1.00506 -0.00598579 -8.33708e-23)
(0.999066 -3.04757e-05 -8.70417e-25)
(1.07388 -0.019322 2.0426e-22)
(0.976429 -0.00102476 9.80441e-23)
(1.00005 -7.07121e-05 2.83113e-25)
(1.08631 0.103755 -3.33356e-21)
(1.05326 0.120936 -6.13676e-22)
(1.00612 -8.47689e-05 7.40387e-25)
(1.05712 0.00739075 -1.17642e-23)
(0.999817 -0.000195237 -4.74781e-24)
(1.24834 -0.131355 -1.21208e-21)
(1.02382 -0.0130293 1.36738e-22)
(0.999254 -0.000536443 9.13e-24)
(0.999966 -4.9134e-07 1.57171e-25)
(0.992895 -0.00277114 1.18602e-22)
(1.00001 -4.86318e-06 -1.78047e-26)
(0.99999 -1.84841e-05 -9.23326e-26)
(1.00245 -0.003674 -2.17189e-23)
(0.977011 -0.00702981 2.34772e-22)
(0.996617 -0.0173405 -4.25973e-23)
(0.999984 -9.68435e-07 -1.24781e-25)
(0.962669 -0.027082 3.72321e-22)
(0.994924 -0.0141316 -1.0969e-22)
(0.985721 -0.023578 9.04617e-23)
(1.00372 -0.0170573 -1.85808e-25)
(1.02818 0.00514388 -9.68354e-22)
(0.989595 -0.0298663 -1.47748e-22)
(1.02038 0.00203882 1.70546e-21)
(0.935736 -0.0180215 -2.34943e-23)
(0.999942 -4.31729e-05 8.44925e-25)
(0.999807 -0.00235022 2.20138e-24)
(1.00271 -5.90292e-05 2.70686e-23)
(1.09021 0.00700389 -3.68493e-22)
(1.00025 -0.00127627 3.07484e-24)
(1.02672 0.00532178 -8.33369e-22)
(1.0064 0.0150487 2.74273e-21)
(0.99854 -0.0454904 -2.56345e-22)
(1.03749 0.000381686 6.72773e-22)
(0.999038 -0.000597043 2.14067e-24)
(0.980869 -0.096237 1.46801e-22)
(0.999751 -3.1708e-06 -3.55763e-24)
(1.00677 -0.000108588 -5.13093e-24)
(0.952162 -0.0298488 3.4074e-22)
(0.999526 -4.55157e-06 -4.23763e-24)
(1.0231 0.0262161 -6.75835e-22)
(1.06898 -0.0286088 2.48227e-22)
(1.02448 -0.135235 5.0056e-22)
(1.03226 -0.0201036 -2.82924e-22)
(1.00319 -0.0103321 2.08698e-23)
(1.00644 -0.000467534 7.28752e-23)
(1.00299 -3.65116e-05 0)
(1.00005 -7.93501e-05 3.24262e-26)
(1.0037 -5.7769e-05 -2.26381e-23)
(0.999986 -1.93109e-05 -1.39535e-25)
(0.997115 -0.000556073 1.63678e-23)
(1.00008 -0.000340915 -1.08214e-24)
(0.992619 -0.00294778 2.45934e-23)
(1.02409 0.169571 -1.886e-21)
(1.00245 -0.00347848 -1.58398e-23)
(0.993502 -0.0141135 -6.11051e-24)
(1.02946 -0.0177921 -2.03578e-22)
(1.04121 -0.106975 -8.22454e-23)
(0.966977 -0.0459476 -5.59032e-22)
(0.999941 -4.99579e-06 -3.39443e-25)
(0.993616 -0.00498285 -7.46289e-23)
(1.03163 -0.0396606 3.43407e-24)
(0.981965 -0.00432869 5.42282e-23)
(0.997795 -0.000325572 -1.00061e-23)
(0.991825 -0.00591493 8.53393e-23)
(1.00577 0.0419169 -4.03834e-22)
(1.00764 0.0218144 -1.55292e-21)
(0.999437 -0.000394494 8.41378e-24)
(0.982459 -0.00442965 -2.29825e-22)
(0.98483 -0.0416839 -1.44421e-22)
(1.11827 -0.105633 6.48301e-22)
(0.960765 -0.0267467 -3.05167e-22)
(0.989098 -0.0289944 8.93539e-23)
(0.974129 -0.0168132 2.30098e-22)
(0.99927 -0.000557747 1.34406e-24)
(1.03701 -0.0934572 -7.04836e-23)
(0.999975 -2.2286e-05 3.1543e-25)
(0.998198 -0.00129545 -9.45211e-24)
(0.999985 -6.50075e-07 4.5503e-26)
(1.11609 0.0481265 4.9403e-22)
(0.995844 -0.0188762 7.25127e-23)
(0.999996 -2.19126e-05 -8.4194e-26)
(1.00005 -7.56536e-05 -8.29336e-25)
(1.0065 0.00252047 -1.93e-22)
(0.999997 -2.07031e-05 -1.09165e-25)
(1.00059 -0.000528621 -3.79488e-24)
(1.07541 -0.0946662 -3.54157e-22)
(1.00025 -0.000300545 -4.61595e-24)
(0.993575 -0.00180596 -1.08042e-23)
(1.02235 0.00549215 -4.89194e-22)
(0.974989 -0.0165931 1.08587e-22)
(1.05665 0.0217424 -1.15209e-21)
(0.99998 -9.64435e-06 1.47731e-25)
(1.06953 0.0144354 -4.50927e-22)
(0.999241 -0.000100429 1.58552e-24)
(0.992937 -4.13757e-05 -8.25356e-24)
(0.995806 -0.0178822 1.52465e-23)
(1.02405 -0.00233045 -5.47921e-23)
(1.05763 0.0152952 -9.62559e-22)
(0.999942 -9.60062e-06 6.78746e-25)
(1.04188 -0.0952239 9.19095e-23)
(0.992462 -0.00557563 -7.1333e-23)
(1.00031 -6.69391e-05 1.74561e-24)
(1.00021 -0.000248886 1.60062e-24)
(1.00159 -0.00470695 -1.69806e-23)
(0.99056 -0.00300854 8.69538e-23)
(0.985359 -0.0407486 4.07804e-22)
(1 -4.46587e-06 3.66266e-27)
(0.999986 -1.79643e-05 -7.65133e-27)
(1.00031 -0.00104351 -1.18872e-24)
(0.999923 -6.70021e-06 6.58288e-25)
(1.00063 -0.00166825 1.65816e-24)
(1.03533 0.0127514 -4.60607e-23)
(1.0215 -0.0326227 1.8589e-23)
(0.973936 -0.0175887 1.1564e-22)
(1.02724 -0.0679548 1.07056e-22)
(0.997746 -0.000377091 -9.62969e-25)
(1.02741 0.00621757 -1.3596e-21)
(1.00903 -0.0589337 -2.62408e-22)
(0.999987 -1.72148e-05 9.30971e-26)
(0.99922 -0.000116537 9.56947e-25)
(0.999973 -1.56235e-05 0)
(0.999968 -3.3176e-05 -9.72892e-27)
(0.999996 -7.41418e-05 -1.1024e-25)
(0.996593 -0.00478687 -1.77138e-23)
(1.0003 -5.48564e-05 -2.62444e-25)
(1.10632 -0.116749 3.95764e-22)
(1.02421 0.0274655 2.60222e-21)
(0.999951 -3.51753e-05 -5.01129e-25)
(0.999784 -0.000176631 -2.52053e-24)
(1.00203 -0.000750093 2.08802e-23)
(1.14508 0.123659 6.71557e-22)
(0.999981 -1.11922e-05 1.18893e-25)
(0.975194 -0.00735463 -1.672e-23)
(1.00213 -0.000425551 -1.05464e-23)
(1.00267 -0.000700814 3.22506e-26)
(0.916821 0.0601628 -1.52592e-21)
(0.999999 -1.93135e-05 -2.49828e-26)
(0.999992 -2.01322e-05 9.88609e-26)
(1.00118 0.097495 2.21207e-22)
(0.971184 -0.0104984 -4.03325e-23)
(1.00634 0.00447875 -8.41435e-23)
(1.17386 -0.185574 -1.18266e-22)
(0.999992 -1.87959e-05 -6.94742e-26)
(0.973619 -0.00226254 9.08149e-23)
(0.999986 -1.01947e-06 -1.03601e-26)
(0.961446 -0.0430033 2.5681e-22)
(1.0003 -0.000375253 -3.29436e-24)
(1.07821 0.121238 -1.33191e-21)
(0.999994 -7.07123e-05 -8.42015e-26)
(1.06617 -0.126778 -1.22648e-22)
(0.999999 -2.06049e-05 2.07544e-26)
(0.986322 -0.0272263 1.20245e-22)
(1.24872 0.102746 5.95367e-23)
(0.992775 -0.00294523 -5.04346e-23)
(0.983299 -0.00442401 2.35098e-22)
(1.0004 0.0368348 -2.34943e-21)
(1.18025 0.103462 5.5275e-22)
(0.994211 -0.00402843 -2.36845e-24)
(1.00146 -0.00720298 -1.07798e-23)
(0.995938 0.0703029 5.5111e-22)
(0.997838 -0.00033874 8.91191e-26)
(1.00103 -0.0427977 -1.5817e-22)
(0.990452 -0.00499349 5.00542e-23)
(1.10477 0.0735088 4.23176e-23)
(1.08668 0.0108401 1.2093e-21)
(1.00312 -0.00929275 6.86416e-24)
(0.941753 -0.00110681 6.55625e-22)
(1.0001 -1.93658e-05 -4.99799e-26)
(0.941862 -0.0022779 4.40867e-22)
(1.08366 -0.190749 -1.96926e-21)
(0.977791 -0.00768353 2.48779e-22)
(0.999218 -0.000545124 7.27326e-24)
(0.852745 0.122137 5.03167e-21)
(0.991328 -0.00309208 -4.90057e-23)
(1.05272 -0.140718 4.69111e-22)
(0.97405 -0.0336106 -6.75236e-23)
(1.12227 -0.202393 -1.44077e-22)
(1.27079 0.120683 9.06923e-23)
(1.02747 0.0056181 1.83355e-21)
(0.991758 -0.00293613 1.05596e-22)
(1.0557 -0.118045 6.45424e-22)
(1.00011 -3.6327e-05 5.6693e-25)
(0.945649 0.0342628 -6.31357e-21)
(0.997989 -0.0014064 -8.91454e-24)
(1.00003 -9.07347e-06 1.56198e-25)
(1.00172 -0.00739478 -3.507e-24)
(1.02023 -0.015829 6.09134e-23)
(0.971038 -0.100458 -2.87941e-22)
(1.09559 -0.0560155 -5.58481e-23)
(1 -1.90767e-05 1.09453e-26)
(0.999855 -1.47848e-05 4.31269e-25)
(0.982747 -0.00409624 9.46999e-23)
(0.989836 -0.0547629 -4.13789e-22)
(1.00554 0.00776302 3.38356e-21)
(1.05985 -0.00212843 4.5557e-22)
(0.957824 -0.0345292 -4.85108e-22)
(1.06062 -0.0316321 -2.6616e-24)
(1.0003 -4.28661e-05 -1.31428e-24)
(1.1007 -0.115194 -4.77579e-22)
(0.984055 -0.116838 1.24359e-22)
(0.999964 -1.07726e-05 -3.48179e-25)
(1.09825 0.0246123 -7.12641e-22)
(0.999972 -9.90779e-06 1.67685e-25)
(0.999559 -0.000819095 6.34339e-24)
(1.18687 0.183738 -1.33696e-21)
(1.00012 -3.51967e-05 -6.92383e-25)
(1.08412 -0.128283 -1.73175e-22)
(1.04232 0.0713715 1.24868e-21)
(1.00023 -0.000273955 -2.36598e-24)
(1.02185 0.0453901 2.2312e-21)
(0.991704 -0.00619534 -5.13094e-23)
(0.999995 -6.45195e-05 4.83562e-27)
(1.01004 -0.0079589 6.23706e-23)
(1.01009 -0.0129691 -8.53622e-23)
(0.999564 -0.000855077 -3.70478e-24)
(0.971697 -0.00870262 -2.21578e-22)
(1.01335 0.00430146 -1.54969e-21)
(0.986831 -0.00534925 6.64196e-23)
(0.975165 -0.015842 -1.61878e-22)
(1.00167 -0.00769351 1.0944e-23)
(0.995548 -0.0184441 -3.92451e-23)
(0.961884 -0.0263606 -1.51184e-22)
(0.99708 -0.000714123 6.09994e-23)
(1.01831 0.00350759 1.30003e-22)
(1.02024 -0.0325162 2.31352e-23)
(1.00127 -0.0067367 -6.06019e-24)
(1.00064 -0.000661906 7.81205e-24)
(0.985297 -0.102597 -5.05544e-24)
(0.999972 -0.000548297 -1.43884e-24)
(0.993761 -0.00510479 -5.10132e-23)
(0.989424 -0.0284246 -8.10835e-24)
(0.999984 -1.79259e-05 4.2095e-27)
(1.00225 -0.00846305 -1.89828e-23)
(1.09834 -0.0618691 -6.0839e-23)
(1.19409 -0.17319 -1.26931e-21)
(0.981378 -0.115428 -2.2935e-22)
(1.05459 0.0230216 1.94322e-21)
(0.98544 -0.0427202 -1.41148e-22)
(0.998735 -0.00470432 2.11493e-23)
(0.989869 -0.00575027 -1.04245e-22)
(0.984776 -0.039693 -7.12977e-23)
(0.997138 -0.000639171 -7.64215e-23)
(0.998713 -3.68694e-05 -1.80334e-24)
(1.07305 -0.076204 8.00815e-23)
(1.0237 -0.00226922 -9.5259e-22)
(0.999986 -3.7134e-07 1.14575e-27)
(0.991611 -0.000743671 -4.7008e-23)
(1.00192 -0.00489764 1.68124e-23)
(1.00645 -0.000259131 -1.24312e-22)
(0.991403 -0.00625381 -4.14411e-23)
(1.03656 -0.0762869 6.37951e-22)
(1.00159 -0.00145004 5.38354e-24)
(1.17448 0.188017 -2.71674e-21)
(1.03983 -0.0554297 1.11737e-22)
(1.00313 -0.00889485 1.89768e-23)
(0.990433 -0.0298379 -9.10472e-23)
(1.00022 -0.000254955 7.17603e-25)
(0.996455 -0.00551307 1.88388e-23)
(1.06627 -0.0283612 -2.90943e-22)
(0.996637 -0.00225056 2.30071e-23)
(0.998717 -7.48075e-05 6.71416e-24)
(0.93472 -0.00296349 3.20472e-22)
(1.0022 -0.00584214 -9.22742e-24)
(1.01909 0.00297419 2.21619e-22)
(0.952042 0.0599834 1.87977e-21)
(1.00001 -0.000191616 -4.24261e-26)
(0.987435 0.00499916 7.93418e-22)
(0.970655 -0.0810583 8.64092e-23)
(0.999996 -6.75242e-05 -2.72513e-26)
(1.05697 0.0613681 1.18702e-21)
(1.03248 -0.00838346 -1.06158e-22)
(1.02653 0.0775468 5.03627e-21)
(1.00114 -0.0063139 -7.32367e-24)
(0.983675 -0.0396792 8.7483e-23)
(1.00634 0.0998596 2.00444e-21)
(1.00324 -0.000670289 6.97056e-23)
(0.996646 -0.00539061 -3.47955e-23)
(0.79305 0.0185599 -2.60029e-21)
(1.00012 -4.04759e-05 1.26346e-24)
(1.00529 -0.000948955 -8.24684e-23)
(1.05255 -0.115036 3.17795e-22)
(0.994615 -0.0121791 -2.31271e-23)
(1.08998 -0.188375 8.37207e-22)
(1.00331 -0.037081 -1.1296e-22)
(1.05821 -0.0927388 -2.67185e-22)
(0.995119 0.0678254 -3.70802e-21)
(1.25913 0.135329 1.37378e-22)
(0.950473 -0.032522 2.56164e-22)
(0.997827 -0.0113286 -1.08402e-23)
(1.00193 -0.00731329 -1.12303e-23)
(0.997515 -0.00363192 1.3053e-23)
(0.990814 -0.0291778 1.39814e-23)
(1.00952 -0.0129858 1.15916e-22)
(1.09965 -0.111415 -7.71668e-22)
(1.03521 0.00658583 -2.59594e-23)
(0.976334 0.0567091 9.72678e-21)
(0.976108 -0.0149869 -1.11078e-22)
(0.999834 -0.000844211 -1.49276e-24)
(0.99662 -0.00516551 1.06027e-22)
(1.00406 0.0369421 3.00831e-21)
(0.996651 -0.0182215 1.3775e-22)
(1.0015 -0.00690569 1.59175e-23)
(0.999206 -0.000167456 -3.36826e-24)
(0.999591 -0.000797256 -7.7226e-24)
(0.997374 -0.00370994 -9.65267e-24)
(1.14578 -0.0691698 -3.23946e-22)
(0.999226 -0.000148295 -1.866e-23)
(1.26644 0.089822 -7.56784e-23)
(1.01384 0.0670282 1.57508e-21)
(1.01027 -0.012644 -9.98799e-23)
(1.05292 0.0222023 2.05763e-22)
(1.00004 -0.00091244 -7.91308e-26)
(0.986663 -0.00501771 -1.70898e-22)
(0.974661 0.146327 -4.82528e-21)
(1.00887 0.0643442 1.56284e-21)
(0.997227 -0.00395841 3.54219e-23)
(0.999982 -2.29473e-06 1.88811e-25)
(1.00015 -2.20979e-05 2.05641e-25)
(0.991961 -0.00450237 -2.95416e-25)
(1.11347 -0.0924315 2.20512e-22)
(0.996769 -0.00222541 -1.68427e-23)
(1.26198 0.125279 -3.66662e-22)
(1.00629 0.0608896 1.60553e-21)
(0.983177 -0.00416042 2.82274e-23)
(1.00431 -0.0338124 -3.84569e-23)
(1.02597 -0.0121782 -3.98047e-22)
(0.971407 -0.0511889 -2.71799e-22)
(0.999992 -1.69877e-05 -9.94686e-26)
(0.997614 -0.0116704 1.8971e-23)
(1.00033 -0.00112491 4.89005e-24)
(1.06918 0.0289474 -1.5246e-22)
(1.07916 -0.186827 1.03749e-21)
(1.02972 -0.0139127 -2.33235e-22)
(0.974677 0.0516116 -3.53795e-21)
(0.997604 -0.00367297 -3.43354e-23)
(1.01417 -0.0470895 6.69293e-23)
(1.05247 -0.0289438 -2.7992e-22)
(1.11578 -0.114149 2.92516e-23)
(0.802587 0.00781808 -2.21383e-22)
(1.00169 -0.00442258 3.86866e-24)
(1.0017 -0.00682977 -6.69933e-24)
(1.0233 -0.0339995 -2.829e-23)
(0.830096 0.101355 2.45298e-21)
(1.07278 -0.18836 1.26702e-21)
(1.08005 -0.182056 5.25214e-22)
(0.998112 -0.0113094 2.02464e-24)
(0.99472 0.0588631 -2.37989e-21)
(0.975968 -0.015647 -5.92965e-24)
(0.989748 -0.0466699 -2.89139e-22)
(1.16847 0.100636 5.43611e-22)
(0.970037 -0.0775915 -3.96054e-22)
(0.997522 -0.0034798 -3.79526e-23)
(1.02902 -0.0148447 4.13554e-22)
(0.986783 -0.0265562 -1.13341e-22)
(1.00021 -0.000177901 -9.46371e-25)
(1.05023 0.0595243 5.20705e-23)
(1.11975 -0.109757 6.18054e-23)
(0.983469 -0.00385587 -1.72627e-22)
(0.999989 -0.000152548 7.9767e-27)
(1.24245 0.0377082 7.76073e-24)
(1.00001 -4.39288e-06 -2.10802e-26)
(0.978372 -0.0261445 -6.88072e-23)
(1.03201 -0.0189151 -1.93579e-22)
(1.09413 0.0664599 4.06841e-22)
(0.971391 -0.0790576 1.84701e-22)
(1.06117 -0.0745057 -1.1409e-22)
(1.00227 -0.00068886 2.57822e-23)
(0.999986 -9.35756e-07 -3.62011e-27)
(1.02322 0.0291129 -8.79145e-22)
(1.03121 -0.0425123 -5.26364e-24)
(0.992525 -0.00317629 2.97745e-23)
(1.03871 0.109024 -1.94587e-21)
(0.997624 -0.0109997 1.53847e-23)
(1.06848 -0.0951444 4.13529e-22)
(0.997381 -0.00387384 -1.49968e-23)
(0.977185 -0.0157564 -6.53686e-23)
(0.99711 -0.0174294 -3.98581e-23)
(0.991746 -0.000796098 1.40207e-22)
(0.876972 0.129184 -4.17447e-21)
(0.997632 -0.0123986 -2.67612e-23)
(1.11026 -0.112853 -7.38309e-22)
(0.971298 -0.00928685 7.96891e-24)
(1.02461 -0.0128458 -1.86065e-22)
(1.06135 -0.00548436 5.39478e-22)
(0.959185 0.149967 4.46003e-21)
(0.99947 -0.000204927 -2.79126e-24)
(1.02376 0.00771318 -1.00797e-22)
(0.972053 -0.0825182 1.38751e-22)
(1.09071 -0.183863 -1.41798e-21)
(1.03054 -0.0123315 3.39596e-22)
(1.17393 0.00989869 2.4584e-23)
(0.984226 -0.0168004 2.57275e-22)
(1.06905 0.14843 1.4899e-21)
(1.12145 -0.0410027 1.55732e-23)
(0.999916 -7.92746e-05 7.51822e-26)
(1.04806 -0.141706 -7.54498e-22)
(0.967392 -0.0449788 -3.77956e-22)
(1.01039 -0.0218169 -1.57694e-23)
(1.00371 0.0388052 -3.15929e-22)
(1.04932 -0.0295308 -2.22591e-22)
(0.934998 -0.00558921 -5.13274e-23)
(1.00079 0.0481055 5.9111e-22)
(1.09664 -0.11904 4.9141e-22)
(1.00438 0.00809525 -4.13267e-22)
(0.997781 -0.000259552 -2.27026e-23)
(0.999985 -0.000159322 5.52266e-26)
(0.802042 0.016276 6.04695e-21)
(0.939999 0.0373659 -1.31374e-21)
(0.997484 -0.00392103 -1.32161e-23)
(1.00019 -0.000200388 -2.97235e-24)
(0.987369 -0.0436354 3.7542e-22)
(1.1254 -0.110736 6.45665e-22)
(0.993103 0.00879575 1.65954e-21)
(1.03633 0.1147 -1.51172e-21)
(0.978089 -0.0301507 2.47384e-23)
(1.00144 0.0361444 2.22973e-21)
(0.997786 0.0689793 -1.93538e-21)
(1 -3.6457e-06 -4.92371e-28)
(1.05585 0.00902926 1.54336e-22)
(1.11809 0.0318574 -1.02267e-21)
(1.05562 -0.144034 -4.47866e-22)
(0.999587 -0.000762473 2.66512e-24)
(0.918075 0.144565 2.53923e-21)
(1.03324 0.115784 -2.87084e-21)
(1.01651 0.0497615 -2.41472e-22)
(0.999926 -8.20479e-06 1.45932e-24)
(1.03126 0.112982 -1.54842e-21)
(1.06583 0.00146243 -8.59704e-22)
(1.0005 -0.00164178 6.24937e-24)
(1.04354 0.076082 -1.74829e-21)
(1.08951 0.111259 -5.14929e-22)
(0.997096 -0.00421736 3.03482e-24)
(1.00263 -0.00371997 3.61078e-23)
(1.06359 -0.0722853 -2.71028e-22)
(0.999983 -1.38714e-06 -9.41036e-26)
(0.972844 -0.0788192 1.12279e-21)
(1.02055 0.0028163 7.3089e-22)
(0.997843 -0.0120292 -5.47734e-23)
(0.973614 -0.0822748 -2.87119e-22)
(1.0004 -0.00173671 1.94806e-24)
(1.03124 -0.0207301 4.32247e-22)
(1.00001 -0.00020822 -9.62927e-27)
(1.221 -0.0935804 1.22946e-21)
(0.999801 0.146702 7.19675e-21)
(0.999891 -0.000212803 -1.04071e-24)
(0.999503 -0.000189512 8.15775e-24)
(1.16999 0.00977779 -1.18121e-22)
(1.10894 -0.108814 -3.4538e-22)
(1.00953 -0.0208519 1.6611e-23)
(1.0017 0.0526304 8.72443e-23)
(0.990725 -0.00537359 1.14095e-23)
(1.02431 -0.00193321 2.58955e-23)
(1.1347 -0.10635 -6.12064e-22)
(0.980039 -0.00339472 3.34478e-22)
(1.0254 -0.0116166 2.53729e-22)
(0.999449 -0.000414311 2.54558e-24)
(1.02046 -0.015001 1.54755e-22)
(1.10132 0.0709882 4.69025e-22)
(0.992626 -0.00576849 1.40227e-23)
(0.979468 -0.108436 9.68534e-22)
(1.09473 -0.192358 4.63871e-23)
(1.05431 0.057077 4.10654e-22)
(0.96956 0.053604 2.72899e-21)
(1.02238 0.00695414 -8.5479e-22)
(0.997819 -0.000157318 5.32756e-23)
(0.98657 -0.0426443 -3.55577e-22)
(0.971439 -0.084568 -1.04368e-21)
(0.97413 -0.00772479 2.85958e-22)
(0.998145 -0.0120172 2.12303e-23)
(1.26262 0.0991405 2.05912e-24)
(1.03081 0.0770713 -2.90541e-21)
(1.08582 0.109261 1.53427e-21)
(0.977685 -0.0161896 -1.32635e-22)
(0.996323 -0.0178483 -5.45023e-23)
(0.985624 -0.0256906 -1.51036e-22)
(1.0685 0.0168401 1.73076e-21)
(1.11953 0.0246309 6.49927e-22)
(1.17706 0.00479178 9.09289e-23)
(1.00991 -0.00721285 1.25347e-22)
(1.00001 -0.00019121 -4.08369e-26)
(1.01087 0.0960205 2.27456e-21)
(1.00001 -0.000207419 -5.40142e-27)
(0.999935 -5.44057e-06 1.09028e-24)
(0.991284 -0.00483344 6.38862e-23)
(0.973276 -0.00321579 -2.24484e-22)
(1.02889 0.0790929 3.38565e-21)
(1.09286 0.107419 -4.68837e-22)
(0.845024 0.0200088 9.16095e-21)
(1.0263 -0.131583 -5.28491e-22)
(0.971147 -0.0117511 1.93365e-23)
(1.12873 -0.106271 -2.28728e-22)
(1.05078 -0.0301738 4.12122e-22)
(1.10349 0.0776518 -2.88641e-22)
(0.981435 -0.112616 9.9607e-23)
(1.08725 0.15081 -5.47385e-22)
(1.01875 0.0435655 1.70296e-21)
(1.00009 -1.321e-05 -2.25158e-24)
(1.0104 -0.0134472 7.90808e-23)
(0.845126 0.0274822 -7.35404e-21)
(0.978269 -0.0160257 1.55909e-22)
(1.00209 0.0477834 -1.36713e-21)
(1.17665 0.0151966 -2.68947e-23)
(1.0293 0.102376 1.40069e-21)
(1.00028 -6.13033e-05 -2.16814e-24)
(1.12409 0.0263156 3.42349e-22)
(1.05144 0.183577 -5.52124e-22)
(0.997714 0.0468346 2.51361e-21)
(0.991012 -0.0306072 -2.66582e-23)
(0.997204 0.00229164 -5.85498e-21)
(0.986442 -0.0258024 3.48684e-23)
(0.999366 -0.000488279 1.23978e-23)
(0.926927 0.145948 -4.04431e-21)
(0.952055 0.146375 -9.87582e-22)
(1.01414 0.00608319 1.21759e-22)
(1.18254 -0.0573774 7.3361e-23)
(1.05473 0.0256145 -1.72569e-21)
(1.11197 0.0466955 2.54085e-22)
(0.94954 0.103599 1.60437e-21)
(0.997184 0.13583 -4.38117e-21)
(0.922882 0.143207 1.18186e-21)
(1.09746 0.0733516 9.61055e-23)
(1.00027 -0.00031093 5.5932e-24)
(1.00299 -0.0106506 -3.7118e-23)
(1.05511 0.012328 6.66576e-22)
(1.00001 -3.31212e-06 1.68383e-26)
(0.999534 -0.000919969 -6.42407e-24)
(1.00217 -0.000621298 -2.15503e-23)
(1.03295 -0.042261 1.04075e-24)
(1.17515 0.0984451 -8.50685e-22)
(1.00001 -5.70541e-06 -5.11363e-27)
(1.00669 0.141724 2.11029e-21)
(1.03422 0.00829894 1.53224e-23)
(1.12575 -0.145488 1.29463e-21)
(1.05832 -0.00374369 3.24908e-22)
(1.11613 0.0526415 2.52591e-22)
(0.9993 -0.000555569 -3.89755e-24)
(0.9934 -0.00503 6.89797e-23)
(0.975643 0.132551 4.01637e-21)
(0.972229 -0.00988994 2.6281e-23)
(0.999996 -8.13705e-05 -2.54583e-25)
(1.05441 0.032718 -1.52784e-21)
(0.99698 -0.00197762 -2.62395e-23)
(1.1294 -0.0733157 -1.52559e-22)
(1.00001 -0.000223504 -3.43533e-26)
(1.00926 -0.00759005 -2.86075e-23)
(1.08815 0.0168101 -1.89703e-22)
(0.95793 0.13697 -3.76472e-21)
(1.00583 -0.0347277 -1.32629e-22)
(1.02202 -0.0338666 -4.99038e-23)
(1.04901 -0.027817 -1.35477e-22)
(1.03622 0.110793 4.29515e-21)
(0.997828 -0.000221333 -1.71716e-23)
(0.980073 -0.002987 -9.90102e-23)
(0.993652 -0.0145258 -1.55212e-22)
(0.93753 -0.00495915 3.4507e-22)
(1.00069 -0.000605842 7.26855e-24)
(1.09122 0.0160617 2.29439e-22)
(0.997876 -0.000236682 5.3194e-24)
(0.974418 -0.00101919 -5.47154e-23)
(1.03047 -0.0410284 -3.30996e-24)
(1.02826 0.107513 2.24937e-21)
(1.03707 0.00635641 -3.35639e-22)
(1.00007 -0.00031857 -1.68381e-25)
(0.974309 0.0875257 -5.6457e-21)
(0.974941 -0.00116653 -3.25578e-22)
(1.03313 0.109951 -4.04236e-22)
(0.962602 -0.0428092 -6.007e-22)
(0.923707 0.139216 4.16867e-21)
(1.00042 -0.00166351 -1.915e-25)
(0.99367 -0.00475485 2.82351e-23)
(1.0067 -0.000661635 -1.38377e-22)
(0.999994 -7.71806e-05 2.20437e-25)
(1.02671 0.00657233 6.59737e-23)
(0.971594 -0.00984306 1.05032e-22)
(0.99953 -0.00088058 4.54324e-24)
(1 -0.000216126 -4.37769e-26)
(0.999977 -2.31179e-05 -3.26798e-25)
(0.954904 0.133763 4.23914e-21)
(0.999188 0.0302164 3.36265e-21)
(0.999038 -7.13582e-05 -5.13404e-24)
(1.05328 0.011746 -8.77822e-22)
(1.0062 -0.000615065 -3.19322e-23)
(0.999516 -0.000175602 4.77311e-24)
(1.0021 0.144685 1.59608e-21)
(0.994135 -0.014584 6.47468e-23)
(0.940999 -0.00418243 -1.05096e-22)
(1.13574 -0.142699 1.57126e-21)
(1.00001 -0.000897687 2.22833e-25)
(0.996753 -0.00486926 -4.88201e-23)
(0.999976 -2.20181e-05 -4.48223e-25)
(1.10894 0.0502191 -1.08789e-22)
(1.04773 -0.0305478 -4.84876e-23)
(0.997693 -0.00169228 -5.24763e-24)
(0.998961 -0.00408132 4.15923e-24)
(0.98913 -0.0981743 3.03626e-22)
(0.999942 -5.36819e-05 3.16522e-25)
(0.99774 -0.00175122 8.54245e-24)
(1.00174 -0.00461755 1.29987e-23)
(0.940876 -0.00295497 -2.0633e-22)
(0.951815 0.139608 1.58017e-21)
(1.05874 -0.116166 -5.80924e-22)
(1.00107 0.141729 -2.64639e-21)
(1.00005 -8.38917e-05 3.32345e-25)
(1.00005 -8.51393e-05 -2.76106e-25)
(0.999065 -5.74279e-05 7.87998e-24)
(0.996893 -0.00474826 5.82476e-23)
(1.00008 -0.000325892 -1.50139e-25)
(1.00038 -0.00108557 9.31172e-24)
(1.25496 0.0976476 -1.00169e-22)
(1.25319 0.0896628 -4.5161e-23)
(1.08301 0.14807 -2.13979e-22)
(1.08403 0.14332 -2.2203e-21)
(0.930534 0.0183998 -1.7241e-21)
(0.612924 0.351329 -6.78502e-23)
(0.937935 -0.163896 -7.61059e-22)
(0.718595 -0.326731 -4.02376e-22)
(0.696314 0.325974 6.65782e-21)
(0.66673 0.294529 -6.07885e-21)
(0.405569 0.220388 2.02315e-21)
(0.752397 0.280395 4.49266e-23)
(1.34682 -0.0540043 1.6989e-23)
(0.212012 -0.119426 7.52469e-24)
(0.920827 -0.1388 3.9196e-22)
(0.0386745 -0.00423141 9.28425e-22)
(0.773242 -0.309225 1.91567e-21)
(0.352655 0.213305 2.55119e-21)
(0.0377123 -8.66749e-05 2.46291e-21)
(1.12434 -0.325793 -3.4381e-21)
(0.628242 -0.00265937 5.01407e-21)
(0.0474505 -0.0234557 -2.71292e-21)
(0.0203138 2.15756e-05 3.40025e-21)
(0.266613 -0.146745 -2.23919e-21)
(1.06057 -0.295628 -4.35455e-21)
(0.908296 -0.168621 -6.66328e-22)
(0.885637 0.402773 2.85118e-21)
(0.0419171 -0.026371 -3.25243e-21)
(0.815915 -0.310417 6.39745e-22)
(0.726635 -0.113275 3.92665e-21)
(0.925011 0.171397 -1.49643e-21)
(0.883076 0.401127 -1.88914e-21)
(0.01663 -4.65269e-05 -1.77188e-21)
(1.31232 -0.122922 -2.08839e-21)
(0.0136785 -5.44569e-05 1.58594e-21)
(0.705204 -0.233749 -5.5901e-22)
(0.767563 -0.0187496 6.75108e-22)
(0.0612128 -0.0324476 3.71105e-21)
(0.279159 -0.154296 -1.50394e-21)
(0.980837 -0.181752 -1.13818e-21)
(0.0139613 1.44537e-05 4.1202e-21)
(0.453783 0.130101 8.56652e-23)
(0.315173 -0.139973 -2.33524e-21)
(1.02572 -0.185017 -4.21036e-22)
(0.942287 -0.161063 3.25242e-22)
(0.0162843 0.00968289 1.32885e-21)
(0.977563 -0.19766 -1.63228e-21)
(0.234979 -0.0707267 2.58796e-22)
(0.131881 -0.0767773 1.32305e-22)
(0.23464 -0.126657 6.81971e-22)
(0.237759 0.138313 4.31711e-21)
(1.31696 -0.113236 1.92078e-21)
(0.354121 0.197115 -6.78336e-22)
(1.04313 0.22733 6.27963e-21)
(0.886259 -0.035866 -2.65386e-21)
(0.675279 0.322474 -4.47442e-21)
(0.0975034 -0.0564829 5.13694e-21)
(0.034628 -0.0207452 2.45308e-21)
(0.819291 0.298074 -3.71336e-23)
(0.763094 -0.361598 -2.95585e-21)
(0.0484413 -0.000210362 -1.03438e-21)
(0.0252686 -0.00452409 1.09494e-21)
(0.210829 0.122483 -3.11615e-21)
(0.99441 0.18339 -6.49196e-22)
(0.0182587 -0.000252189 -6.74233e-22)
(0.3294 -0.105771 -1.26145e-21)
(0.220554 -0.120466 -2.95548e-21)
(0.668454 0.307495 5.99176e-21)
(0.327108 -0.136967 -7.51365e-22)
(0.135444 0.0221594 -5.21177e-22)
(0.429207 0.229583 -4.89463e-23)
(0.894195 -0.0255778 4.94886e-21)
(0.0451771 -8.80087e-05 2.64678e-21)
(0.87781 -0.213605 1.75418e-21)
(0.643986 -0.00735488 -2.75964e-21)
(0.407231 0.281633 6.92153e-21)
(0.174304 0.0998229 1.07615e-21)
(1.10202 -0.292818 -7.52271e-22)
(0.452352 -0.239774 7.5672e-22)
(0.0643737 0.0369002 -9.27309e-22)
(0.047924 -0.0270045 -1.83086e-21)
(1.05073 -0.210672 -2.40934e-22)
(0.815723 -0.0131744 -1.67453e-22)
(0.718015 -0.235144 1.60327e-21)
(0.223433 -0.128629 -5.43589e-23)
(0.784822 -0.365819 9.44721e-23)
(0.622484 -0.289906 4.68171e-22)
(1.03856 -0.300007 7.13764e-22)
(0.447891 -0.271641 -1.35741e-21)
(0.0482258 0.00013623 1.1187e-21)
(0.766675 -0.118131 2.17232e-21)
(0.987074 -0.18178 1.4912e-21)
(1.04722 0.223929 8.99742e-22)
(0.814856 0.292522 -1.40138e-21)
(0.771916 -0.315161 3.14008e-22)
(0.0964839 -0.0500033 2.40745e-21)
(0.858156 0.399875 -2.65168e-21)
(0.817668 -0.00984043 7.7755e-22)
(1.34536 -0.0456238 -4.57003e-22)
(0.08355 0.0481 4.05864e-22)
(0.0374474 -0.0221103 -9.14923e-22)
(1.13024 -0.330641 3.91778e-22)
(0.0970323 0.0192789 -1.0865e-22)
(0.125348 -0.0725959 1.49549e-21)
(1.00575 -0.368124 -7.23111e-22)
(0.460033 -0.0373326 1.30394e-21)
(0.218685 -0.0894845 -3.3995e-21)
(1.25526 -0.0313889 2.67581e-21)
(0.925986 -0.360699 -1.19943e-21)
(0.04372 -0.0262978 -1.27664e-21)
(0.514636 -0.0114251 2.85569e-22)
(0.0178304 -0.000456664 -1.61668e-21)
(0.037958 -0.0209888 1.82782e-21)
(0.422094 0.198622 1.23182e-20)
(0.038331 0.000238085 2.4748e-22)
(0.271099 -0.149345 1.48992e-21)
(1.29895 -0.148845 -4.53863e-22)
(1.02867 0.288736 1.42021e-22)
(0.977533 0.120356 1.79478e-21)
(0.098574 0.0550421 9.09024e-22)
(0.111649 -0.0203281 2.98707e-21)
(0.696469 0.332079 3.92638e-21)
(0.946612 -0.188775 -4.06855e-22)
(0.460898 0.260957 4.12268e-22)
(0.476712 0.142265 -6.45492e-22)
(0.199453 0.116138 -2.66347e-22)
(0.95094 -0.188278 -1.13967e-21)
(0.975087 0.169522 -1.98151e-21)
(0.386301 -0.227851 3.54634e-21)
(0.358312 0.201006 -2.75908e-21)
(0.974475 -0.132413 -4.25532e-22)
(0.349646 0.195979 1.15048e-21)
(0.466804 0.265067 1.08993e-21)
(0.0178204 -0.000382334 -4.16224e-21)
(0.0515271 -0.0273147 1.26062e-21)
(1.01748 -0.366895 1.09707e-21)
(1.10458 -0.286358 3.41498e-22)
(0.95073 0.377557 -1.06603e-21)
(0.457042 -0.242405 -1.7166e-21)
(0.780183 0.291345 5.93561e-23)
(0.108527 -0.0631081 -2.958e-21)
(0.861914 0.401112 6.65013e-21)
(0.90322 -0.170076 7.33216e-22)
(0.286874 -0.157533 2.77012e-21)
(0.959277 -0.193708 -7.84645e-22)
(1.03247 -0.259262 1.26253e-21)
(0.954471 0.372686 1.97578e-21)
(0.790371 -0.364223 2.12369e-21)
(0.0650494 -0.0303529 -2.29077e-21)
(1.22475 -0.2711 -2.02208e-21)
(0.359989 -0.110365 5.86211e-22)
(0.120672 0.000752357 -4.09287e-21)
(0.0415336 -0.0224791 2.35342e-23)
(1.30993 -0.147095 -5.20932e-22)
(0.189923 0.0866059 -3.97909e-21)
(0.954531 -0.194308 -2.30677e-22)
(0.0142642 0.000122363 -3.72913e-21)
(1.33958 0.141537 -2.8649e-22)
(0.864254 0.388368 -5.41432e-22)
(1.13731 -0.325927 -1.50148e-21)
(0.627776 0.358616 -4.19585e-21)
(0.354156 0.199627 2.25905e-21)
(0.986442 -0.364011 9.61822e-22)
(0.203454 0.0544105 -6.91247e-22)
(0.822877 -0.366706 -2.98225e-21)
(0.0752249 -0.0394062 -1.40149e-21)
(1.05838 0.23084 -2.59523e-21)
(0.561987 -0.0747272 1.09641e-21)
(0.0140306 -2.34956e-05 -3.67976e-23)
(0.724625 -0.353171 5.11145e-22)
(0.767405 -0.0248643 1.22776e-21)
(0.586973 -0.293905 3.95913e-21)
(1.0807 0.227698 5.31507e-22)
(0.822657 0.381851 -7.33826e-22)
(0.0432442 -0.0243285 -4.48964e-21)
(0.0319887 -0.0190957 -1.31519e-21)
(0.0590009 -0.0336945 3.13407e-21)
(0.260762 0.131446 3.05767e-21)
(1.00556 0.203483 6.22978e-21)
(0.954771 0.124951 -1.37175e-21)
(0.705938 -0.322574 6.95079e-22)
(0.204726 0.0988999 1.89846e-21)
(1.21276 -0.221299 2.41782e-21)
(0.185554 0.0671868 -1.6564e-21)
(0.475461 0.267509 -1.65648e-22)
(0.55655 -0.0844573 -7.74475e-22)
(0.0432334 -7.3712e-05 7.9362e-21)
(0.268645 -0.12428 8.95258e-21)
(0.754155 0.336396 3.2166e-22)
(0.456604 0.242346 1.39277e-21)
(0.338792 0.188109 3.91539e-21)
(1.08296 0.134392 1.82316e-21)
(0.327317 -0.0860232 2.65486e-21)
(0.90619 0.319829 -3.04614e-22)
(0.0565413 -0.0333446 1.04537e-21)
(0.327409 0.196106 -6.65482e-22)
(1.04839 -0.225916 -1.43515e-22)
(1.2364 0.259617 -8.29303e-22)
(1.34497 0.0190328 1.47502e-21)
(0.0728257 -0.0410235 -3.37743e-21)
(0.738015 -0.228856 1.44663e-21)
(0.905398 -0.152888 1.42113e-21)
(0.633693 -0.311257 -2.84633e-22)
(0.0919283 -0.0516652 -1.75606e-21)
(0.720096 0.0252468 5.81873e-21)
(0.95545 -0.0698889 -2.60973e-23)
(0.62126 -0.0187903 2.33969e-21)
(0.0516557 -0.030387 -4.02228e-23)
(0.0437163 -0.0229167 -6.48294e-23)
(0.972064 -0.198347 1.38211e-21)
(0.832452 -0.368048 2.62957e-21)
(1.09541 0.37288 -1.10627e-21)
(0.0172699 -0.000296484 6.00184e-22)
(0.33969 0.115398 -1.22638e-20)
(0.918871 -0.00403586 2.93457e-22)
(0.0838513 0.0484986 2.95252e-21)
(1.19067 -0.249629 2.78151e-21)
(0.25129 -0.114904 -8.64356e-21)
(0.731414 0.376306 8.60739e-22)
(0.107212 -0.0432374 -2.08168e-21)
(0.910182 -0.151309 -5.06589e-22)
(0.0374897 0.000131402 4.52341e-21)
(0.0384274 -0.000113961 -8.2695e-22)
(0.0375468 -8.6878e-05 -4.53407e-22)
(0.347919 -0.149886 -1.12599e-21)
(0.493569 -0.216739 -2.59515e-21)
(1.16375 0.137793 1.70078e-21)
(0.871664 0.175785 -7.94836e-22)
(1.22504 -0.261274 -1.42377e-21)
(0.625602 -0.295598 8.7529e-22)
(0.0397278 6.75311e-05 -2.59667e-22)
(0.980114 -0.260152 1.10461e-21)
(0.55268 -0.0610912 -2.35645e-22)
(0.341879 -0.0927914 -3.2135e-21)
(1.03545 -0.349342 2.41721e-23)
(0.0915677 -0.0535478 -9.70836e-22)
(1.01227 -0.356064 3.28101e-21)
(0.269037 -0.115799 3.76063e-21)
(0.0184704 -0.0147538 6.1248e-21)
(0.855438 -0.00818358 1.30442e-21)
(0.21278 -0.120084 3.83362e-21)
(0.0236094 -0.00229782 -1.15525e-20)
(0.559873 -0.301465 7.79846e-22)
(0.808482 -0.291915 1.77286e-21)
(0.637293 -0.310123 1.12001e-21)
(1.10369 -0.306876 3.89584e-22)
(0.362893 -0.14807 1.17056e-21)
(0.19551 0.00512867 -1.45691e-21)
(1.23163 0.239651 4.20891e-22)
(0.575327 0.229395 -2.85528e-21)
(0.0405846 -0.0233159 -1.3865e-21)
(0.591502 0.239706 1.2518e-21)
(0.758156 0.0453324 4.10729e-21)
(0.403359 0.236469 -4.73868e-21)
(0.0180473 0.00031487 2.76618e-21)
(0.923135 0.167058 1.38798e-21)
(0.111642 0.0058829 -1.6581e-21)
(0.0946426 0.0333908 1.82271e-22)
(0.878731 0.388807 -1.03846e-21)
(0.529756 -0.290162 -1.05159e-21)
(0.592496 -0.276097 -1.68691e-21)
(0.838717 0.223184 -5.66583e-22)
(0.845222 0.307045 3.47745e-22)
(0.222411 -0.08439 -7.53976e-22)
(1.07847 0.234822 1.74737e-21)
(0.799308 -0.365644 -2.19382e-21)
(0.0177061 0.000165423 1.03425e-20)
(0.15338 0.158047 1.1637e-21)
(0.275486 0.0311547 7.08123e-21)
(1.238 -0.253588 1.36688e-21)
(0.111917 0.0619727 4.95092e-22)
(0.0667142 -0.0321329 1.87337e-21)
(0.90073 0.242501 9.78317e-22)
(0.200863 -0.0796497 2.20217e-22)
(0.408569 0.225433 -4.62728e-21)
(0.0188353 0.000461712 -2.34877e-21)
(1.25374 -0.0465553 1.78668e-21)
(0.715209 0.374219 -4.35332e-21)
(0.556151 -0.297638 -4.6131e-22)
(0.0398114 -0.00485961 3.55396e-21)
(0.827506 0.228404 2.76621e-22)
(0.929231 -0.00959855 -4.8645e-22)
(0.523399 -0.284747 2.40534e-22)
(0.0374335 -0.000241683 -2.59749e-21)
(0.86708 0.170644 2.74846e-21)
(1.14041 0.141315 -2.7947e-21)
(0.58114 0.107175 -2.89335e-22)
(0.0386861 -6.72749e-06 -3.78921e-21)
(0.0376559 5.77872e-05 2.9348e-21)
(0.0376743 7.97185e-05 7.85411e-21)
(0.0379197 -0.00077479 7.05799e-21)
(1.24628 -0.242619 -2.71893e-21)
(0.899765 -0.209672 -2.2322e-21)
(0.691652 0.315082 -6.8722e-21)
(0.0435236 -7.1824e-05 -2.902e-21)
(0.0196897 -7.26948e-05 7.07922e-23)
(0.783925 -0.32568 -1.06179e-21)
(0.238942 0.114971 -1.08365e-21)
(1.12108 0.0170364 -1.10734e-22)
(0.220789 -0.0963818 4.35666e-21)
(0.773332 0.344725 -1.66325e-22)
(0.157972 0.0674871 3.10956e-22)
(1.34202 0.0122322 -1.37304e-21)
(0.442546 0.217004 3.76542e-21)
(0.0186267 -0.000136247 1.15128e-21)
(0.0756192 0.0425955 7.8803e-22)
(0.0602807 -0.028679 -1.04095e-21)
(0.13863 0.150448 -6.79081e-21)
(0.0178126 0.000408051 -1.15795e-21)
(0.0987267 -0.0564276 -4.17177e-22)
(0.16145 0.00254399 2.44744e-21)
(1.16939 0.246745 1.09491e-21)
(0.995 -0.362704 -1.31688e-21)
(0.0914891 -0.0399589 2.87944e-21)
(0.499618 0.278588 -3.95113e-21)
(0.91966 -0.357921 -1.79421e-21)
(0.04427 -0.026032 -1.12052e-21)
(0.764991 -0.253822 1.60206e-21)
(0.0385792 -0.0209699 2.26479e-21)
(0.282635 0.135356 -7.05693e-22)
(0.0498435 -0.0281597 -1.36829e-21)
(0.0183556 6.76599e-05 6.72279e-22)
(0.942054 0.176014 5.6574e-21)
(0.323563 -0.21704 8.48592e-22)
(0.891336 -0.0739003 -9.34711e-22)
(0.936538 -0.0429813 -1.42931e-22)
(1.00483 0.198761 -7.69077e-21)
(0.557422 -0.052573 5.33327e-22)
(0.740324 -0.304358 -4.65066e-21)
(1.24119 0.262708 4.31542e-22)
(1.12278 -0.329173 -4.28455e-21)
(0.505201 -0.223129 -1.38808e-21)
(0.0175546 0.000449561 -6.98102e-22)
(0.868704 0.289727 -1.79658e-23)
(0.605755 -0.302796 -4.26523e-21)
(0.727737 0.0329357 -6.63353e-21)
(1.01515 0.357303 -4.40366e-21)
(0.998555 0.181087 -2.43254e-21)
(1.17847 -0.205272 -1.37099e-21)
(0.0241519 -0.000118614 -2.30417e-22)
(0.0340659 -0.000524968 -1.86448e-21)
(0.0345311 9.56978e-05 5.27758e-22)
(0.0340982 0.000531056 1.4835e-21)
(0.0245163 -0.000400119 -4.74684e-21)
(0.316894 -0.212911 -5.40209e-22)
(0.976577 -0.255347 8.29597e-22)
(0.920198 -0.00489639 -7.19719e-22)
(0.826265 0.293914 9.01695e-21)
(0.598795 -0.28317 2.30729e-22)
(0.0196171 0.000240553 -2.29494e-21)
(0.0252489 -0.000104888 2.17908e-21)
(0.417148 -0.235631 8.83549e-22)
(0.685735 0.331558 1.13085e-21)
(0.450374 0.17917 -2.09176e-23)
(0.0482346 -6.59422e-05 -1.2571e-21)
(0.221983 -0.121467 -1.29427e-21)
(1.25671 -0.0783903 -1.14115e-21)
(0.706359 -0.350126 -1.46196e-21)
(0.208097 -0.117839 -2.44551e-21)
(0.301197 -0.127797 -9.85006e-22)
(0.0185494 -0.000153872 6.09433e-21)
(0.976481 -0.340076 4.27391e-22)
(0.0183521 -0.000166422 1.02078e-20)
(0.926959 0.257049 -4.37335e-22)
(1.33 -0.103774 -6.80352e-22)
(0.1589 0.00160518 1.88224e-21)
(0.0685742 0.0395184 -3.31732e-21)
(0.606682 -0.185555 1.03518e-21)
(0.0435569 0.000216529 5.89906e-22)
(0.0182614 9.75885e-05 -2.50855e-21)
(1.10333 0.372917 3.40508e-22)
(0.769242 -0.245994 -1.20299e-21)
(0.150775 0.081709 -1.79391e-21)
(1.20574 -0.214802 -5.64711e-22)
(0.0157181 -2.85861e-05 5.49664e-21)
(0.456551 -0.2738 2.02281e-21)
(0.588155 -0.0307073 -7.11708e-21)
(0.927807 -0.0144965 1.17303e-21)
(0.0830579 0.0380269 -3.0875e-22)
(0.963484 -0.148958 6.43255e-23)
(1.13081 -0.227546 2.00561e-21)
(0.83878 0.382892 1.19345e-21)
(0.597363 0.150149 -4.01157e-21)
(0.741515 -0.164646 9.97549e-22)
(1.05545 0.236321 9.25373e-22)
(0.724232 -0.22757 -2.93281e-23)
(1.03843 -0.346228 -3.77342e-22)
(0.0745565 0.0401635 4.83725e-22)
(0.0681231 0.0410973 2.79264e-21)
(0.126737 0.0717359 2.58811e-21)
(0.188579 0.0637198 6.34204e-23)
(0.938882 0.400795 4.06408e-23)
(0.744033 -0.157804 -1.22359e-21)
(0.91126 -0.146088 4.00183e-22)
(0.952315 -0.139877 3.05213e-22)
(1.02897 -0.333252 3.96717e-22)
(1.26247 -0.225691 -3.13447e-21)
(0.0719214 0.0394408 5.11964e-21)
(0.938989 0.178506 -1.67352e-21)
(1.15689 -0.213303 1.78264e-21)
(0.932854 0.254692 4.82357e-21)
(0.327149 0.133166 3.02259e-22)
(0.767488 0.273612 -1.35759e-23)
(0.0501802 -0.0275408 -4.28237e-21)
(1.23938 0.201293 -2.00259e-22)
(0.524043 -0.208443 -4.52991e-21)
(0.0462936 0.000136718 3.86525e-21)
(0.937929 -0.168314 -5.24995e-22)
(0.952095 -0.136246 1.94372e-22)
(0.13776 0.0791201 -4.18713e-21)
(0.104534 0.0608642 1.00357e-21)
(0.055535 -0.0305548 2.46736e-21)
(0.994922 -0.332415 2.73958e-21)
(0.281623 0.0525665 -4.70074e-22)
(0.699126 -0.00574637 2.90456e-21)
(0.107189 0.126702 1.88e-21)
(0.131288 0.00956989 6.91971e-23)
(0.0165885 -0.0073476 2.06747e-21)
(0.684178 0.288416 4.76036e-21)
(0.45236 -0.193824 -1.70809e-21)
(0.0451703 0.000239028 -1.92621e-21)
(0.0452171 -0.000265008 2.92089e-22)
(0.0251489 0.000268316 3.34956e-21)
(0.530743 -0.184398 -8.45904e-22)
(0.801746 0.376333 1.62438e-21)
(1.25589 0.259039 1.21762e-21)
(0.204209 -0.115871 -9.82168e-22)
(0.398716 -0.0965829 1.71625e-21)
(0.0421384 -3.89773e-05 1.02512e-21)
(0.915488 -0.144834 1.32457e-21)
(0.609807 -0.0151865 -2.77427e-21)
(0.899627 -0.33264 -1.80938e-22)
(0.802482 -0.312752 -3.23767e-22)
(0.593924 -0.31941 -4.14503e-21)
(0.941441 0.0886123 -1.12601e-21)
(0.298556 -0.132192 8.37785e-22)
(0.963693 0.257335 8.89351e-22)
(0.963668 -0.0491596 -7.74116e-22)
(0.489506 -0.257582 2.35778e-21)
(0.904387 0.24891 1.63832e-21)
(1.30554 -0.125351 -4.52516e-21)
(0.962911 -0.0996861 1.74691e-22)
(0.564823 0.324233 2.91408e-21)
(0.817441 -0.303811 -2.14009e-21)
(0.0177646 -0.000262555 4.46519e-21)
(0.0468754 -0.0236205 3.0738e-21)
(0.786428 0.386958 4.38171e-21)
(0.103639 -0.0975258 4.44069e-21)
(1.02016 -0.354555 -2.56951e-21)
(0.86905 -0.197323 -7.24151e-23)
(0.913954 -0.338855 2.14178e-21)
(0.0139766 6.74178e-05 1.85067e-22)
(0.501854 -0.0191767 -1.93175e-21)
(0.431643 0.231111 -4.60168e-22)
(0.938023 -0.04355 -2.77495e-22)
(0.811394 -0.370052 6.06268e-22)
(1.08192 -0.283256 -4.80754e-21)
(0.076955 -0.0449594 -3.89685e-21)
(1.02294 -0.331126 -1.13416e-21)
(0.928204 -0.00857299 3.27119e-22)
(0.53075 -0.206277 5.61714e-21)
(0.0346743 -2.37598e-05 -2.54079e-22)
(0.668819 -0.332907 1.43676e-22)
(0.179699 0.0975331 7.87256e-22)
(0.0195415 -4.72637e-05 -6.65817e-21)
(0.54324 -0.190155 -3.98039e-22)
(0.406436 -0.22875 -1.49819e-21)
(0.966341 -0.153406 -8.47415e-22)
(0.0731714 0.0398631 -3.07528e-21)
(1.16348 0.242651 -1.69195e-21)
(0.33108 -0.121519 -1.97842e-21)
(1.32883 0.131884 7.19395e-22)
(0.135465 0.0951321 -1.56284e-21)
(0.958304 -0.343054 -2.6513e-21)
(0.0861555 0.0490376 -2.4916e-21)
(0.100338 -0.0569518 7.8806e-22)
(0.835487 0.286086 -5.21044e-21)
(0.854758 0.27884 3.41284e-21)
(0.785146 0.102045 -1.70758e-22)
(0.0941737 -0.0159482 -2.07078e-21)
(0.531085 0.260978 -2.11916e-21)
(0.732904 0.00255851 -4.12618e-21)
(0.0491265 0.000142327 -1.2821e-21)
(0.789438 0.107492 7.00779e-22)
(0.921587 -0.134499 1.49989e-22)
(0.0351024 5.73551e-05 1.69395e-21)
(0.0343417 0.000511245 3.23275e-22)
(0.0343516 -0.000361749 -8.80407e-21)
(0.0424337 0.000294029 -8.9298e-21)
(0.38577 0.212395 4.79678e-21)
(0.876548 -0.220406 -1.21333e-21)
(1.33261 0.119462 2.29392e-22)
(0.217028 -0.121738 1.77937e-21)
(0.964201 -0.0499976 1.01585e-21)
(0.0934771 -0.0522361 3.83093e-21)
(0.0730792 -0.04388 6.64218e-22)
(0.0302081 -0.00569758 2.16011e-21)
(0.0180761 0.000314545 1.25052e-23)
(0.956166 0.191291 -2.54058e-22)
(0.0421407 -0.00357264 2.04774e-20)
(1.02361 -0.179888 1.40111e-22)
(0.0138285 2.36735e-05 -1.3176e-22)
(0.81787 -0.113919 -8.60001e-22)
(0.423047 0.282661 -2.30821e-21)
(0.926579 -0.0133987 -4.43711e-22)
(0.0586517 0.0353369 -8.5149e-23)
(0.879637 0.247547 -5.75382e-22)
(0.0432156 5.39812e-05 1.70279e-22)
(0.0431946 -0.00011174 5.09534e-21)
(0.0431714 1.01729e-06 2.99038e-21)
(0.0431957 -0.000106451 -5.91139e-22)
(0.544647 0.220919 1.61051e-22)
(1.21046 -0.231234 1.81365e-21)
(0.96008 -0.0506501 3.55889e-22)
(1.13486 -0.222264 -7.40082e-22)
(0.759081 -0.0291514 2.60947e-22)
(1.31686 -0.117356 1.23799e-21)
(0.889195 -0.0760542 5.02213e-22)
(0.329826 0.252958 -6.8122e-22)
(0.496647 -0.0337461 8.31367e-22)
(0.579672 -0.0260887 7.36291e-23)
(0.594068 -0.320854 2.07519e-21)
(0.586033 0.333066 -5.14996e-21)
(0.493024 -0.260491 -1.87957e-21)
(0.890671 -0.0697034 -1.05163e-22)
(1.24693 0.20335 4.58177e-22)
(0.366477 0.0267864 -1.21046e-22)
(0.217993 0.0548302 -1.02748e-20)
(0.245198 0.106362 7.95868e-23)
(0.0867033 -0.0291896 6.5986e-22)
(1.12351 0.363573 -9.10714e-22)
(0.892974 -0.067699 -2.54592e-22)
(0.0133186 3.37996e-05 -4.64113e-22)
(1.06077 -0.28847 3.33531e-21)
(0.839459 0.158801 -1.00785e-21)
(0.440613 -0.224719 2.0974e-21)
(0.112187 0.0152144 1.61029e-21)
(0.263137 -0.149973 2.14604e-21)
(0.806123 -0.298864 -1.08795e-21)
(0.847949 -0.0437996 -5.72907e-22)
(0.256419 -0.136983 -2.27178e-21)
(0.970143 -0.153339 1.01555e-21)
(0.314273 0.247892 -3.73679e-23)
(1.02375 0.344138 -4.7798e-22)
(1.10254 -0.268839 4.41936e-21)
(0.88741 -0.082723 -3.795e-22)
(0.845044 0.287225 5.37122e-22)
(0.117082 -0.0670639 -8.74711e-23)
(1.06961 0.212728 -9.36848e-22)
(0.571175 -0.176264 6.09419e-21)
(0.0350091 -0.020879 -1.33562e-21)
(0.239282 -0.126822 -4.32573e-21)
(1.25255 0.255529 -4.5329e-22)
(0.822679 0.359489 -1.09391e-21)
(1.2065 -0.22367 -1.16373e-21)
(1.09773 -0.273942 -6.37117e-22)
(0.61379 0.304678 -5.24915e-21)
(0.0456786 8.74859e-05 3.70902e-21)
(0.0456404 1.72925e-05 1.04906e-20)
(0.0456751 -1.92617e-05 2.04896e-21)
(0.0453948 -0.000224391 8.38781e-22)
(0.0453983 9.11094e-06 -4.89103e-22)
(0.0454858 -0.000480623 6.94164e-21)
(0.738997 -0.307061 1.41602e-21)
(0.154896 0.0503171 -4.61977e-23)
(0.916512 -0.14023 2.60355e-22)
(0.386127 -0.0849435 -1.11149e-21)
(0.941786 -0.15613 4.40718e-23)
(0.216628 0.152898 -1.21412e-21)
(0.475583 0.185609 -7.67706e-23)
(0.848314 -0.0400659 1.68417e-22)
(1.10927 0.129835 8.30187e-23)
(0.508882 0.241296 1.02411e-21)
(0.0430926 -0.000305382 -1.14865e-25)
(0.0604043 0.0348399 -1.87408e-21)
(0.797585 0.27861 -2.95605e-23)
(0.221213 -0.0724536 -3.1452e-22)
(0.518955 0.241713 -6.22375e-22)
(0.48798 0.257352 2.87633e-21)
(0.0467113 -0.0283663 -1.56678e-21)
(0.282783 0.12199 -2.14328e-22)
(1.12858 0.359515 -3.53735e-22)
(0.696222 0.0361074 1.8652e-21)
(0.888708 -0.332954 -7.76418e-23)
(0.550641 -0.30839 2.68443e-21)
(0.241051 0.0744692 1.56511e-20)
(0.82616 -0.100369 5.60966e-22)
(0.043191 2.38736e-05 -1.72948e-21)
(0.0434575 -8.89842e-05 4.99066e-21)
(0.0432046 0.000114484 9.21561e-21)
(0.0432307 -0.00079566 -1.72018e-20)
(0.247311 0.119487 1.99235e-21)
(1.07215 0.204855 1.30567e-21)
(1.33187 -0.0908771 7.1241e-22)
(1.04223 -0.248616 -5.70635e-22)
(0.88188 -0.0391067 4.52706e-22)
(1.25411 -0.237714 3.03286e-21)
(0.377981 0.222512 1.3347e-21)
(0.245619 -0.179843 4.03732e-21)
(1.28159 0.161063 3.31025e-23)
(0.882244 0.311818 1.17868e-22)
(0.0937923 -0.0914436 1.02695e-21)
(0.152699 -0.106654 -1.01671e-21)
(0.37797 0.226127 -1.18806e-21)
(1.32922 0.141767 1.67056e-21)
(0.100286 0.0470863 1.28244e-21)
(0.13334 0.0751133 -2.2415e-21)
(0.538378 0.217281 5.0419e-22)
(0.937114 -0.149375 3.42206e-22)
(0.0409585 -0.0219579 2.23837e-21)
(0.0760952 -0.0342118 -5.08871e-21)
(0.0277794 0.0161182 -3.27556e-21)
(0.726272 0.34534 1.2152e-21)
(0.861836 -0.199203 -2.44195e-22)
(0.409465 -0.239958 -3.76953e-21)
(0.703533 0.0259712 5.59073e-22)
(1.09124 -0.062967 8.70403e-21)
(0.0277221 0.016763 -1.85989e-21)
(0.0433756 -7.861e-05 -2.965e-22)
(0.0432162 0.000219511 -6.17681e-21)
(0.0432262 -0.00015061 -6.38904e-22)
(0.013446 3.98193e-05 6.18519e-22)
(0.159458 0.0917499 4.08831e-21)
(0.0250111 0.00435601 1.95528e-21)
(1.21835 -0.26986 1.86571e-21)
(1.06114 -0.227647 -1.83592e-21)
(1.26916 -0.220743 4.9068e-21)
(0.4621 0.249706 -1.81368e-21)
(0.92487 0.402189 -4.2166e-21)
(0.715869 -0.350004 9.04081e-22)
(0.46563 -0.195027 7.45703e-21)
(1.26079 -0.183638 5.3225e-22)
(0.0453146 -7.44034e-05 -1.31557e-21)
(0.0453831 -5.72529e-05 2.90296e-21)
(0.0453274 0.000136086 6.99171e-21)
(0.198694 -0.0803183 -8.94612e-22)
(0.806284 0.175721 -2.49563e-21)
(0.751459 -0.253992 1.07545e-21)
(0.0459334 -4.38437e-05 -1.3682e-21)
(0.101862 0.027849 5.10198e-22)
(0.88343 -0.037093 -4.87628e-22)
(0.0160369 8.49655e-05 1.73231e-21)
(1.1029 -0.312984 1.31617e-21)
(0.355694 0.111877 -7.61728e-21)
(0.0875855 0.0354706 -1.42636e-22)
(0.0467946 -8.36616e-05 3.43561e-21)
(0.0464643 1.80929e-05 -7.52422e-21)
(0.241124 0.00451129 -8.45204e-22)
(0.016615 -4.00224e-05 -3.8589e-21)
(0.0274791 0.000411121 -3.10219e-22)
(0.519449 0.176767 1.25184e-22)
(1.33922 0.134503 1.8986e-21)
(1.02687 0.279484 2.35292e-22)
(0.83229 0.158965 -1.48406e-21)
(0.865757 -0.217663 4.15062e-23)
(0.0240144 -0.0111914 3.80089e-21)
(0.101586 -0.0594771 1.77602e-21)
(1.02293 -0.188962 -4.45045e-22)
(0.448329 -0.217452 -3.29123e-21)
(0.627677 0.0343289 3.2395e-22)
(1.34365 0.0351665 2.56185e-22)
(1.24023 0.232312 1.0798e-21)
(0.467108 -0.235795 1.37198e-21)
(1.02204 0.338602 -3.95547e-21)
(0.944353 0.18765 4.09471e-21)
(0.915338 -0.00206284 -6.76043e-22)
(1.09997 -0.0721641 -2.34065e-22)
(0.976596 0.173391 -1.56595e-21)
(0.0559203 0.033459 -5.29481e-22)
(0.0190892 -0.00114102 5.15675e-21)
(0.0396318 0.0179726 -3.27507e-22)
(0.815728 -0.141551 2.38181e-22)
(0.0408853 0.019344 -2.63015e-22)
(0.0191621 -8.19876e-05 -5.03784e-21)
(0.454238 0.0694675 1.02678e-20)
(0.511219 -0.251914 -2.63698e-21)
(0.101563 -0.0767342 3.32078e-21)
(0.86728 -0.211525 -1.65107e-21)
(0.11852 -0.0477927 3.7154e-21)
(0.709315 -0.350151 -6.26123e-22)
(0.258062 -0.138385 1.92683e-21)
(0.789275 0.392851 -5.84059e-21)
(0.751242 0.351415 -1.16129e-21)
(0.33026 0.163537 6.55469e-22)
(0.152868 0.11573 -8.82009e-22)
(0.0275279 0.000364 -2.48443e-22)
(0.82259 -0.11096 -6.95566e-22)
(0.426827 -0.263716 -3.12055e-22)
(1.02733 -0.322224 5.7086e-22)
(0.839836 0.279264 5.65219e-23)
(1.22161 0.303113 -9.72145e-24)
(0.0748205 0.0419299 1.39332e-21)
(0.928614 -0.00666943 4.19398e-22)
(0.0428422 -0.00233138 -7.00608e-21)
(1.05045 -0.245853 -5.17614e-22)
(1.01414 0.35161 4.14263e-21)
(0.925429 -0.0184324 -5.17186e-22)
(0.537175 0.0982037 3.26817e-21)
(0.293499 0.148207 -2.44552e-21)
(0.0170131 -0.000288886 1.58527e-21)
(0.86275 0.280004 1.06607e-21)
(1.05646 -0.214939 -5.99215e-22)
(1.2929 -0.0231565 -3.40453e-21)
(1.33263 -0.00218788 -1.36133e-21)
(0.852727 -0.0101832 -5.78137e-22)
(0.957132 0.260914 5.19401e-22)
(0.508986 0.134775 1.17727e-21)
(0.853866 -0.316634 -1.0927e-21)
(0.946618 0.357568 -4.31173e-23)
(0.25839 -0.120695 1.38735e-22)
(1.23516 -0.26056 2.8988e-21)
(0.0158061 9.6011e-06 1.75202e-23)
(0.693721 -0.12193 -3.88267e-22)
(1.25841 -0.234215 -2.01362e-21)
(0.0315443 -0.00621914 1.42972e-20)
(0.188204 0.0905937 1.21821e-21)
(0.215387 0.0311968 5.18426e-21)
(0.964824 -0.0536357 -8.78958e-23)
(0.977439 -0.186648 1.52473e-21)
(0.773393 -0.0144825 -8.57705e-22)
(1.05485 -0.223168 7.44887e-22)
(0.416864 0.288106 -5.99865e-21)
(0.972072 -0.13048 5.67125e-22)
(0.58714 -0.308795 1.12803e-21)
(1.0226 -0.311254 -1.25133e-21)
(0.515248 0.216154 -4.31105e-22)
(0.0689171 -0.0257884 6.30257e-21)
(0.463747 0.268565 3.82722e-21)
(0.0467173 3.66439e-06 2.09535e-21)
(1.27722 -0.206956 -2.68207e-21)
(1.21816 0.313885 3.35835e-23)
(0.901629 -0.364734 1.27578e-21)
(1.3054 0.082259 1.20907e-21)
(0.0451978 3.07219e-05 1.10085e-20)
(0.0453922 -9.70232e-05 -3.3241e-21)
(0.373015 -0.223388 2.37782e-22)
(1.25455 -0.189593 -6.36504e-22)
(0.111419 -0.00722503 2.28536e-21)
(0.250227 0.0642862 -2.80748e-22)
(1.31619 0.0861913 -2.26993e-21)
(0.974051 -0.335228 -5.20433e-21)
(0.0441584 0.000120663 -1.52791e-22)
(0.900801 0.324219 1.67905e-22)
(0.778296 -0.127627 1.65489e-22)
(0.360682 0.0298054 -6.15913e-22)
(0.0274725 -0.000244218 5.25484e-21)
(0.261986 -0.136481 1.47661e-21)
(1.27042 -0.0803464 -6.95085e-23)
(1.05064 -0.205052 -1.73286e-22)
(0.895941 0.345121 1.00191e-21)
(0.380758 0.156751 -5.68686e-23)
(0.803547 0.352302 5.33369e-22)
(1.06731 -0.225023 1.70395e-21)
(0.419921 -0.238528 -2.39094e-21)
(0.855467 -0.259877 -2.49201e-21)
(0.172015 -0.120212 1.20471e-21)
(0.0454593 -1.19083e-05 3.22123e-21)
(0.0454993 -0.000226118 -5.51181e-21)
(0.0455528 5.31485e-05 -1.16615e-21)
(0.045499 -2.49628e-06 7.42723e-22)
(1.0911 0.349714 1.41777e-21)
(0.01682 -0.000311576 4.26472e-21)
(0.945638 0.326207 1.65631e-21)
(0.0281459 -0.000897287 5.12709e-21)
(0.791741 -0.367209 -1.46723e-21)
(1.31014 0.198712 1.49023e-21)
(0.840335 -0.371964 -1.64505e-21)
(0.273316 -0.128005 -2.0286e-22)
(0.875105 -0.366207 -1.58145e-21)
(0.672181 -0.330583 -1.04604e-21)
(1.08769 0.286236 1.53616e-22)
(0.0299824 -0.0184159 -2.85847e-21)
(0.0312225 0.00403182 -3.07522e-21)
(0.0157271 -1.48661e-05 -4.66477e-22)
(1.21142 -0.274828 8.21438e-22)
(0.133755 0.0201307 -1.44833e-21)
(0.813676 0.175309 2.5319e-21)
(0.590084 -0.312087 -1.22646e-21)
(0.165807 0.0420318 -4.61697e-23)
(0.205808 0.120419 -3.59176e-22)
(0.161361 0.0948666 -7.07116e-22)
(0.75974 0.382374 -2.35401e-21)
(0.0175256 0.000160995 3.53219e-21)
(0.309618 0.18024 -2.21332e-21)
(0.92757 -0.005728 -3.61493e-22)
(0.892569 -0.0639938 -1.14829e-22)
(0.0168369 0.000285797 1.7764e-21)
(1.24129 0.294873 9.50208e-25)
(0.0385084 -0.00239678 -5.30161e-21)
(0.483479 -0.241065 -4.2427e-22)
(0.805405 -0.134047 4.02662e-22)
(0.913801 -0.36449 3.86735e-21)
(1.06998 0.339328 -1.09675e-21)
(0.266738 0.111777 1.53378e-22)
(1.3228 0.155028 -2.94468e-23)
(0.044758 0.000153261 7.23726e-23)
(0.0447434 -3.92032e-05 2.10343e-20)
(0.0446313 -8.18166e-05 -3.47584e-21)
(0.177531 -0.103585 1.3466e-21)
(0.0161553 0.000351522 4.76554e-21)
(0.799226 -0.132917 -1.14533e-21)
(0.173882 -0.0996816 -5.33199e-22)
(0.0975861 -0.0248894 -8.57566e-22)
(0.776706 0.392014 9.60875e-22)
(0.0969861 -0.0139824 -3.15966e-21)
(0.0492637 -0.0265632 -2.07864e-21)
(0.402967 0.0368202 2.06253e-21)
(1.05604 0.296157 3.13579e-22)
(0.0427047 -0.0246585 4.42296e-22)
(1.02542 -0.255403 6.21094e-22)
(0.148781 -0.0277798 1.41582e-21)
(0.894881 -0.0620815 5.30263e-22)
(0.759204 -0.0340849 -4.45339e-22)
(0.049542 -0.020938 -1.82138e-21)
(0.671551 0.0423533 -1.30113e-21)
(0.122597 -0.070334 -6.24981e-22)
(0.130779 0.0762152 -2.95578e-21)
(1.2766 0.154781 -1.29793e-22)
(0.316698 -0.203456 -4.37748e-21)
(1.01783 -0.209456 -3.39247e-21)
(0.252646 -0.108204 -2.17726e-21)
(0.915086 0.2487 -4.23314e-21)
(0.376641 -0.109463 -5.97827e-22)
(0.56056 -0.311014 9.63173e-22)
(0.0458056 -0.000124783 1.52257e-20)
(0.28732 -0.16252 -3.39524e-21)
(1.07658 -0.0946494 1.40739e-21)
(0.0273689 -0.000439551 3.79775e-21)
(0.364076 -0.10402 -3.97316e-21)
(0.719157 0.0306203 4.63195e-21)
(0.085021 0.0495668 4.79343e-21)
(0.680817 0.0206668 -3.98361e-21)
(0.331033 -0.108941 6.71016e-22)
(1.339 0.0413277 -3.10525e-22)
(0.0582435 -0.0282642 1.83496e-21)
(1.08585 0.349043 -2.66444e-21)
(0.047082 2.02877e-06 2.64014e-21)
(0.0471237 -2.08995e-05 -1.44262e-22)
(0.0803545 -0.0150277 5.35012e-21)
(0.0155404 -7.93888e-05 -1.12615e-21)
(0.0199591 -0.00236047 7.02311e-21)
(0.916288 -0.120371 3.72785e-22)
(0.882333 -0.365865 1.59742e-21)
(0.0243048 4.32552e-05 6.26129e-22)
(0.795973 -0.286054 -1.49865e-21)
(0.0177064 -0.000261136 3.50039e-22)
(1.09615 -0.281712 -1.8212e-21)
(0.0662283 0.0377173 7.29512e-23)
(1.08194 -0.304837 -3.63736e-21)
(0.770085 -0.326043 -1.26898e-21)
(0.0305235 -0.0138061 -3.56164e-21)
(0.306066 -0.116325 -1.28808e-21)
(0.0422707 0.00274772 -4.22652e-21)
(0.790569 -0.360801 -1.15304e-21)
(0.0770235 0.0446981 2.90856e-21)
(0.679746 -0.136506 -3.52169e-21)
(0.433529 0.236651 4.92845e-21)
(0.104429 -0.0604087 -1.51303e-21)
(0.0322565 0.0050288 5.10816e-21)
(1.07032 0.334419 -3.46746e-22)
(1.03983 -0.25626 -8.15472e-22)
(0.0486874 -1.6815e-05 -2.1614e-21)
(0.0487678 -4.6107e-06 -5.56994e-22)
(0.0490983 -0.000152813 -4.43466e-21)
(0.0489038 0.000166407 -9.15515e-22)
(0.0242675 1.78009e-05 6.80083e-23)
(0.980443 -0.192346 -3.214e-22)
(0.04921 -5.10376e-05 2.8923e-21)
(1.05968 0.331547 -1.78449e-21)
(0.954837 0.321526 1.06281e-22)
(0.265193 0.0738005 7.79835e-21)
(0.908801 0.247306 -7.02134e-22)
(0.764673 0.037099 2.77959e-22)
(0.188763 0.112929 1.66849e-21)
(0.0686261 0.0378261 4.04491e-21)
(0.244488 0.164783 -7.02231e-21)
(1.09631 0.242248 3.93558e-21)
(0.818109 -0.132341 -2.11443e-22)
(0.557026 0.189159 3.29472e-22)
(1.2724 -0.0206972 -4.09965e-21)
(0.194669 0.0672643 -1.03167e-22)
(0.0479794 -0.0235499 -1.33507e-21)
(0.718046 -0.296426 4.14434e-21)
(0.911104 -0.20033 6.27857e-22)
(0.230701 0.136613 -1.74387e-21)
(0.0485797 -0.000279071 9.23727e-21)
(0.0483705 0.000254766 2.2464e-21)
(0.960006 -0.149324 -4.60777e-23)
(0.204505 -0.0891003 1.88679e-21)
(1.2457 -0.243823 3.75257e-21)
(0.0792462 -0.0260506 1.56331e-21)
(0.827934 -0.0833882 1.61775e-21)
(0.454662 0.259372 7.41158e-21)
(0.632213 -0.274578 -8.86735e-22)
(0.104108 0.0429578 6.60611e-23)
(0.759987 -0.142319 -2.82105e-21)
(1.32205 -0.101095 1.46772e-21)
(0.046754 -9.59688e-05 2.04348e-22)
(0.0467317 0.000191918 -8.84365e-21)
(0.0465513 0.000120879 6.90682e-21)
(0.0383005 -0.00561691 -9.44938e-22)
(0.0893873 0.0453622 1.58406e-21)
(1.08733 0.281127 -2.14124e-21)
(0.157663 0.140523 1.79704e-21)
(0.160473 0.0692622 2.5316e-22)
(0.0159301 4.31952e-07 -9.63833e-23)
(0.623915 0.107916 -9.07788e-22)
(0.790602 -0.0796073 -2.1853e-21)
(1.02911 -0.307448 -7.92643e-22)
(0.0467336 1.48442e-06 -8.29501e-22)
(0.0466886 -2.82479e-05 -4.31773e-21)
(0.189535 0.0359871 2.63582e-21)
(0.0453294 7.10764e-05 -1.87251e-21)
(0.917235 0.254457 9.56418e-23)
(0.330482 0.191349 1.95683e-21)
(1.0115 -0.248939 6.39747e-23)
(0.0618934 -0.028079 6.39437e-21)
(0.863361 0.356183 1.37512e-22)
(0.225711 -0.12322 3.59314e-21)
(0.952617 -0.0463101 3.87275e-22)
(0.82935 -0.316251 -1.78622e-21)
(0.953219 -0.0475644 -1.61884e-22)
(0.0284294 0.000113617 -7.08217e-22)
(0.0149563 -4.48185e-05 1.66258e-21)
(0.907214 -0.364887 1.09888e-21)
(0.441171 -0.230248 4.00248e-21)
(0.915874 -0.207081 -2.43022e-21)
(0.652472 -0.144517 -1.41623e-21)
(0.905898 -0.200339 7.29344e-22)
(0.121843 -0.0406753 -7.29747e-23)
(0.193129 0.137818 -2.29746e-21)
(0.503209 0.250778 -6.87706e-22)
(1.21944 0.264832 6.12446e-22)
(0.113787 0.0414241 -2.57072e-22)
(0.275672 0.116414 -3.48538e-22)
(0.0280988 3.68441e-05 1.15417e-21)
(0.428519 0.25214 6.59291e-22)
(1.13883 -0.318447 3.80236e-21)
(1.30833 0.128695 3.90826e-22)
(0.0278239 9.15011e-05 -3.60232e-21)
(1.19441 -0.219142 -2.22183e-21)
(1.05886 0.326135 1.63951e-21)
(0.968874 -0.195389 -1.36142e-21)
(0.727578 -0.351081 -4.2441e-21)
(0.237764 -0.121013 -2.30323e-21)
(0.435177 0.238503 8.53124e-22)
(0.0433791 -4.56432e-07 4.21946e-22)
(0.0433635 3.51894e-06 7.60357e-23)
(0.0973459 0.0476085 -1.76874e-22)
(0.0395551 -0.0240719 -8.59009e-22)
(0.0587845 -0.036276 2.59593e-21)
(0.486839 -0.268083 9.02201e-22)
(0.0911923 0.0511644 -8.10632e-22)
(0.874991 0.354372 9.46884e-22)
(1.01067 -0.323627 6.60525e-21)
(0.630864 -0.259543 -1.1017e-21)
(0.0254478 0.000845747 1.07904e-21)
(0.955792 -0.0680274 -1.63612e-22)
(0.74668 -0.358283 2.22128e-21)
(1.31558 0.127484 -3.38982e-22)
(0.248406 -0.0988211 3.60803e-21)
(0.0431423 -0.0238894 -1.26778e-22)
(0.914377 -0.0822795 -3.70057e-22)
(0.944079 -0.124645 -1.16934e-21)
(0.0606275 0.0352092 -4.45649e-21)
(0.0271881 -9.59727e-05 -7.86915e-22)
(0.969284 0.0867514 2.63976e-21)
(0.914997 -0.211827 1.95607e-21)
(1.08056 -0.27531 -3.98159e-21)
(1.14531 0.352904 2.88439e-22)
(0.529188 -0.018231 1.02755e-21)
(0.115942 -0.0672798 -1.82592e-21)
(1.18301 -0.250971 2.78369e-21)
(1.22839 0.296088 -3.00454e-23)
(0.0189324 0.00015566 -3.32106e-21)
(0.220132 0.14864 1.49436e-21)
(0.0487985 -0.000164819 -8.50337e-22)
(0.0485066 3.7981e-05 -1.69541e-21)
(0.048657 3.55114e-06 1.64777e-21)
(0.0487153 -6.81824e-06 -1.57955e-20)
(0.768989 0.385587 9.89783e-21)
(1.30587 0.210307 -2.20798e-23)
(0.071804 0.0324359 1.80258e-22)
(0.607095 -0.164975 -3.62359e-21)
(0.0697864 0.031364 1.31344e-22)
(1.32333 -0.0134829 1.33e-21)
(0.0454326 0.000209284 -1.10002e-21)
(0.0453905 -0.000224392 -5.71901e-22)
(0.744064 0.3807 1.34644e-21)
(0.427161 -0.225038 -3.21156e-21)
(0.0425514 0.000194608 -6.17236e-22)
(0.29451 -0.167413 -2.30477e-22)
(0.432766 -0.212528 -5.99586e-22)
(0.0134053 -8.64356e-05 -4.88265e-21)
(1.01596 -0.24599 -2.19695e-22)
(0.0761625 -0.0449438 -2.44559e-22)
(0.0182827 0.00986238 1.58682e-22)
(0.0157812 -8.45129e-05 3.33641e-21)
(0.956512 -0.0711271 -3.3781e-22)
(1.29715 -0.138997 5.35626e-21)
(0.0236302 0.000206556 -3.6527e-21)
(0.991118 -0.327142 -4.47985e-21)
(0.788954 -0.307318 3.91892e-22)
(0.243847 0.17861 6.0911e-21)
(0.469165 0.127922 -1.20509e-21)
(0.92837 -0.0631762 1.01958e-21)
(1.33119 -0.0941758 7.99641e-22)
(0.103869 -0.0684833 -4.72751e-21)
(1.26107 0.0390411 2.22931e-21)
(0.780587 -0.127175 -8.00524e-22)
(0.91855 -0.1272 3.96003e-22)
(0.427365 0.240855 1.35574e-21)
(0.899143 0.227701 -4.35365e-21)
(0.034188 0.000334082 4.34037e-21)
(1.19832 -0.240931 -2.71765e-21)
(0.86122 -0.0262275 1.62294e-22)
(0.863643 -0.0269664 -2.03753e-22)
(0.109208 0.037012 -2.51397e-22)
(0.0427596 4.25923e-05 -1.98939e-21)
(1.28316 -0.202468 -4.72668e-22)
(0.0312679 0.0168887 5.73319e-22)
(0.0751758 -0.0331444 2.66621e-22)
(0.3716 0.20925 5.95775e-21)
(0.330608 0.0576272 -5.02665e-22)
(0.934253 -0.0200771 -6.10951e-22)
(0.239936 0.0824423 -6.14226e-23)
(0.880668 0.174255 -8.60091e-22)
(0.348652 -0.105333 7.06526e-21)
(1.30805 0.212189 3.86133e-23)
(0.944037 -0.128219 4.29422e-22)
(0.747227 -0.237646 2.38208e-22)
(0.118154 0.0649702 -7.34511e-23)
(0.0609864 -0.0342639 -4.27673e-22)
(0.524526 -0.223729 -8.07578e-21)
(0.915351 -0.00371114 -8.41924e-22)
(0.0792384 -0.0455951 3.27726e-21)
(0.368553 -0.133853 1.82077e-21)
(0.686952 0.319538 1.73395e-21)
(0.0938162 0.0475549 -2.1427e-21)
(0.929427 -0.0621454 -4.98198e-22)
(0.865912 -0.146618 1.11812e-21)
(0.72328 -0.0893919 1.17568e-21)
(0.877049 0.189564 -5.87267e-21)
(0.852974 -0.0377982 -7.48657e-22)
(0.0242645 3.53295e-05 -4.82915e-22)
(1.04652 -0.23302 -4.24651e-22)
(0.598853 -0.251574 -5.10197e-21)
(0.959399 -0.0497099 -3.60912e-22)
(1.27149 -0.153541 2.92723e-21)
(0.77905 0.392741 1.03775e-20)
(0.801835 -0.251325 -1.15943e-21)
(1.14337 0.0298875 6.25277e-22)
(0.646979 -0.173035 2.05255e-21)
(0.260883 0.158033 1.05407e-21)
(0.0891843 -0.0508594 8.87819e-22)
(0.262917 -0.165032 -3.78633e-21)
(0.983765 -0.202634 -1.58577e-21)
(0.728173 -0.33199 3.94242e-21)
(0.0486571 -6.42767e-06 -1.94196e-21)
(0.0485796 5.69484e-05 -3.51841e-21)
(0.048574 1.28288e-06 -8.22612e-21)
(0.0486829 4.45099e-05 -8.64195e-21)
(0.0485041 5.24083e-06 5.33245e-21)
(0.048548 4.672e-07 4.75697e-21)
(0.0484443 -0.000178431 -3.65528e-21)
(0.048583 3.69295e-05 4.77908e-23)
(0.0482287 -0.000283699 4.69366e-21)
(0.0486742 -8.23762e-06 3.35612e-21)
(0.048628 -0.000125904 -2.26885e-20)
(1.30678 -0.159247 3.88865e-21)
(0.924439 -0.334206 5.8153e-22)
(0.0472573 -9.04279e-05 6.66372e-22)
(0.0472079 7.15329e-05 -1.19454e-21)
(0.0144224 -6.37328e-05 -2.09999e-21)
(0.101281 0.0559481 4.01709e-21)
(0.937246 -0.153764 2.08017e-22)
(0.911076 0.352242 -1.00471e-21)
(0.148009 -0.00853529 2.29417e-22)
(1.23513 -0.143092 4.01418e-21)
(0.900849 -0.367273 -1.7471e-22)
(0.853393 -0.0344861 7.3481e-22)
(1.13239 -0.0422444 -2.15546e-21)
(0.352359 0.138791 -3.33131e-22)
(0.555121 -0.186543 -4.96355e-21)
(0.570844 0.225153 4.60202e-22)
(0.896959 -0.056845 -5.83173e-22)
(0.0413202 0.00454739 3.48606e-21)
(0.15182 0.0327069 -1.611e-21)
(0.111637 -0.0647418 -3.22666e-22)
(0.290151 0.120921 -3.74119e-23)
(1.31816 0.18727 -1.39445e-21)
(0.894535 -0.0586576 -4.61437e-22)
(0.781006 -0.245484 -9.63847e-22)
(0.0296791 -0.0174246 -9.44077e-22)
(0.42575 0.0612674 -2.19355e-21)
(0.786431 -0.320547 1.03725e-21)
(0.0657419 -0.0389782 4.37414e-22)
(0.0179753 0.000233735 -1.43521e-22)
(0.0944162 -0.0374415 -6.51215e-21)
(0.767012 -0.145047 7.98453e-22)
(0.91558 -0.069084 1.13029e-23)
(0.889979 -0.0805138 -5.92687e-22)
(0.667421 0.37131 7.91396e-21)
(0.353126 -0.229681 -5.04246e-21)
(0.498897 -0.267331 -4.002e-22)
(0.933828 -0.0538388 -5.99134e-22)
(0.0174535 0.000138894 -1.71696e-21)
(1.23117 -0.198783 -7.10635e-22)
(0.0240567 0.000341699 -9.20762e-21)
(0.907931 -0.361392 1.63904e-21)
(0.948908 0.256699 8.88157e-22)
(0.0730246 -0.0293048 -3.63624e-22)
(0.964655 0.181984 2.5305e-21)
(0.678078 0.0587611 -1.13268e-21)
(1.02205 -0.319754 1.66911e-21)
(0.932786 -0.0529962 -3.65413e-22)
(0.603045 0.207501 2.56045e-23)
(0.0893314 -0.051294 -2.22822e-21)
(0.663563 0.25292 -9.34792e-21)
(0.0531772 -0.0299317 -3.12339e-21)
(0.0332618 4.80045e-05 2.10495e-21)
(0.925731 -0.0168565 -8.29473e-23)
(0.68337 -0.116248 2.70041e-21)
(0.394992 0.192168 -7.6697e-21)
(0.422504 -0.245082 2.5434e-21)
(0.917156 -0.0685095 -4.51703e-22)
(0.459447 0.0638838 -3.01071e-22)
(1.2178 -0.275631 -1.25041e-21)
(0.130703 -0.0175415 -3.90823e-21)
(1.33078 0.11613 1.38052e-21)
(0.693845 -0.102048 -1.12632e-21)
(0.038224 -4.84339e-06 5.86513e-21)
(0.0380852 0.000102981 1.86041e-21)
(0.0384612 1.37977e-05 -2.25539e-21)
(0.0382098 -0.00033328 6.52692e-21)
(0.0378626 -0.000170607 4.98244e-22)
(0.892724 -0.375757 3.1649e-21)
(1.04957 0.126421 2.08583e-21)
(0.917705 -0.130946 5.2938e-22)
(0.778029 0.389115 -2.0786e-21)
(0.882278 0.188523 -6.28874e-22)
(0.59201 0.343832 4.68025e-21)
(0.0360175 -0.00611874 2.71466e-21)
(1.20964 0.320537 -8.3832e-22)
(0.394005 0.222788 -5.56399e-21)
(1.0909 0.0162886 1.74591e-21)
(0.810686 -0.36511 2.39586e-21)
(0.236786 0.0460595 -2.25194e-21)
(0.0770241 -0.0235761 -3.83587e-21)
(1.19641 0.32926 7.26121e-22)
(0.0254671 -0.000211756 -1.87168e-21)
(0.726911 -0.334241 2.9386e-22)
(0.371289 -0.0873729 1.11305e-22)
(0.649883 -0.137353 2.08096e-21)
(0.195722 -0.112349 -8.8794e-22)
(1.09127 0.238201 -2.83232e-21)
(0.834246 -0.108388 6.54475e-22)
(0.817239 -0.119302 1.12037e-21)
(0.236236 0.133478 2.84844e-21)
(1.1905 -0.242368 1.15707e-21)
(0.560394 0.218596 -3.04722e-22)
(0.342888 0.156584 3.27566e-22)
(0.76676 0.0297273 2.00539e-21)
(0.599752 0.182553 3.16407e-21)
(0.269262 0.186331 2.42355e-21)
(0.0703528 0.0385124 3.48003e-21)
(0.693977 -0.0927786 -6.15193e-23)
(0.0782854 0.0178815 4.99177e-21)
(1.09425 0.376528 5.01358e-22)
(0.622085 -0.264114 1.63983e-21)
(0.39126 -0.246719 -1.98502e-21)
(0.288029 -0.170428 -1.65791e-22)
(0.622238 -0.157358 -2.97095e-22)
(0.873265 -0.177866 -8.36162e-22)
(0.275045 -0.193686 2.24445e-21)
(0.107463 0.0608034 4.06e-21)
(0.606739 -0.149305 2.75122e-21)
(0.383245 -0.160837 -9.43506e-22)
(0.340553 -0.0847764 -5.17839e-21)
(1.16229 -0.31102 1.27094e-21)
(0.116338 0.0631795 -3.05834e-22)
(0.759602 0.38472 -1.44843e-21)
(1.08768 0.225757 -2.52997e-22)
(0.0348066 5.27431e-07 5.56149e-21)
(0.0347126 -0.000275371 4.24053e-21)
(0.786473 -0.129989 1.39014e-21)
(0.110634 0.0244953 1.83391e-21)
(0.0381897 -0.0225573 2.39163e-21)
(0.994349 0.188014 1.62431e-22)
(0.714662 -0.331268 -1.59556e-21)
(0.751069 -0.276574 5.23163e-22)
(0.999471 0.191075 -2.21785e-21)
(0.0254331 0.000239114 -2.86501e-23)
(0.328603 -0.178995 3.82585e-21)
(0.808919 -0.279319 2.56405e-21)
(0.9032 -0.33866 -4.04472e-21)
(0.964092 -0.0544161 -1.63305e-22)
(0.952225 0.38547 -6.91982e-23)
(1.02149 -0.218931 4.17656e-21)
(0.362666 -0.236056 2.32101e-21)
(0.240539 0.18357 -6.97127e-21)
(0.356836 -0.220512 -8.31228e-22)
(0.277684 -0.15773 -1.41783e-22)
(0.142237 -0.101527 -1.6168e-21)
(0.0455459 -3.22804e-05 7.82894e-22)
(0.0455973 5.58931e-05 1.89612e-22)
(0.72534 -0.097794 -1.10209e-21)
(0.123534 -0.0825721 -1.02503e-21)
(0.21362 0.122759 -6.4607e-22)
(0.314587 0.148071 1.15475e-22)
(0.831838 -0.0115752 1.62493e-21)
(1.23736 -0.253698 2.70435e-21)
(0.760645 0.0556502 2.91115e-21)
(0.597629 0.169907 1.53584e-22)
(0.0734533 0.0369178 4.75456e-23)
(0.809074 -0.140929 8.29968e-22)
(0.407957 -0.231456 5.31009e-22)
(0.961146 0.192141 -2.05007e-21)
(0.412666 -0.255726 -1.36072e-21)
(0.615274 0.315167 1.48263e-21)
(1.10994 -0.339492 -1.23006e-22)
(1.15505 0.351457 5.89225e-22)
(0.0382579 1.99445e-05 5.33142e-21)
(0.0381534 4.73128e-06 -5.89882e-22)
(0.0383541 -0.000154288 2.42497e-21)
(0.87262 -0.224166 4.92429e-22)
(0.858453 -0.374007 3.64383e-21)
(0.940058 -0.03313 2.88201e-22)
(0.107151 -0.0462334 -3.65196e-21)
(0.0280309 -0.000261102 4.59016e-21)
(1.13365 0.242009 -3.21569e-22)
(0.821863 -0.103736 1.30483e-21)
(0.0982766 -0.0561041 2.44031e-21)
(0.974516 -0.136172 1.02559e-21)
(0.0873226 -0.0504678 3.48625e-22)
(0.0349916 -0.00119877 -9.35576e-21)
(0.597516 0.188763 -1.78942e-22)
(0.31717 -0.139821 1.11386e-21)
(0.0230548 -0.000170208 -6.22487e-21)
(0.786359 -0.279891 -3.51632e-21)
(0.0298528 -0.00368184 1.74898e-21)
(0.942655 0.25991 -4.06329e-21)
(0.251861 -0.183092 -2.68418e-21)
(0.0382719 -0.000203605 1.42439e-22)
(0.443602 -0.217558 7.21758e-21)
(1.02776 -0.297907 -3.41131e-22)
(0.937355 0.312439 -2.93878e-21)
(0.0802349 0.0377318 -8.43104e-21)
(0.795466 -0.012346 -3.47673e-22)
(1.18994 -0.251279 1.72172e-21)
(0.0606656 -0.0263221 -1.91761e-21)
(0.2218 -0.116617 1.15634e-21)
(0.968168 0.178147 -2.83168e-21)
(1.03446 0.206122 -2.13356e-21)
(0.109795 0.0108983 2.34844e-23)
(0.16134 -0.0201539 7.62807e-21)
(0.0209719 -0.00685178 -1.01033e-21)
(1.12126 -0.25331 -3.24153e-21)
(0.111686 -0.0511077 -5.18463e-21)
(0.0290399 -0.000362817 -2.0676e-21)
(0.565858 -0.159124 1.70217e-21)
(0.826638 -0.141449 1.70638e-21)
(0.325109 -0.0939777 4.54556e-21)
(0.884755 0.179161 -2.29184e-21)
(0.915357 -0.123744 -4.45928e-22)
(0.100949 -0.0581476 -2.09325e-22)
(0.889335 -0.0238432 2.24973e-22)
(0.723229 -0.0816067 -1.17807e-22)
(1.10035 -0.260691 1.52594e-21)
(1.06168 0.258067 -6.52108e-22)
(0.519858 0.0916379 -2.54227e-21)
(0.987376 -0.352195 -2.05028e-21)
(0.904135 -0.00485737 -4.71559e-22)
(0.196915 -0.0462383 -2.19811e-21)
(0.0951932 -0.056038 8.37981e-22)
(0.390052 0.0399803 1.84787e-22)
(0.552654 0.252949 -2.33327e-23)
(0.251324 0.124679 -2.1998e-21)
(0.999607 0.19561 1.37371e-21)
(0.230174 -0.0370711 5.85938e-21)
(0.269052 -0.145233 -8.92507e-22)
(0.634143 -0.321649 -2.78844e-21)
(0.578279 -0.155354 -2.86682e-21)
(0.434745 0.0667904 6.54434e-21)
(0.074061 -0.041618 -5.0915e-22)
(0.51049 0.128569 -5.77096e-22)
(0.290258 0.000116592 -3.34986e-21)
(0.958957 0.390882 -4.34813e-24)
(0.146766 -0.0182779 -2.90866e-21)
(0.0846629 -0.0387753 1.67728e-22)
(0.553743 0.157014 9.5802e-22)
(0.950963 -0.363384 -2.53401e-21)
(0.132233 -0.0780281 -4.95619e-22)
(1.30531 -0.164956 1.00995e-21)
(0.0150914 0.000569504 3.34058e-21)
(0.518876 0.153983 1.58628e-22)
(0.589403 0.162505 1.49039e-21)
(0.957702 -0.0497862 -3.00712e-22)
(0.0434891 6.07491e-05 -4.94091e-21)
(0.0433858 -4.67125e-05 -1.62886e-21)
(0.043449 4.64136e-05 -1.41112e-20)
(0.0434283 -0.00033061 2.89667e-21)
(0.0432627 -0.000195833 3.15412e-23)
(0.0457087 6.46277e-05 -3.07564e-21)
(0.0456646 4.85833e-06 1.49937e-21)
(0.0451457 -0.00021657 -2.62399e-22)
(0.0454236 0.000143021 1.70551e-21)
(0.0454502 -0.000119305 3.07412e-22)
(0.0457271 -3.32985e-06 -1.41745e-21)
(0.350225 -0.152315 -7.35959e-21)
(0.234738 0.140052 -2.89327e-22)
(0.614635 0.151468 9.25535e-21)
(0.970777 0.246033 -3.38748e-22)
(0.184089 -0.0580841 -3.23306e-21)
(0.714457 0.327699 2.82292e-21)
(0.0131986 3.89607e-05 8.59156e-22)
(0.827374 -0.371669 1.49608e-21)
(0.864106 -0.283397 1.7668e-21)
(0.902885 0.220705 6.12921e-21)
(1.08293 -0.319737 1.98106e-22)
(0.587274 -0.314219 -1.73982e-21)
(0.634876 0.175268 -6.45211e-22)
(0.924846 -0.14204 8.49177e-22)
(0.758609 -0.0940742 1.97652e-21)
(0.833084 -0.267743 -1.45068e-21)
(0.493333 0.0568364 -5.8309e-22)
(0.8825 -0.0772512 -1.20829e-21)
(0.609408 -0.219977 4.82719e-21)
(0.637656 0.196015 5.17259e-22)
(0.991138 0.317428 6.95747e-22)
(0.0180078 5.25919e-06 2.88468e-22)
(0.964704 -0.0984452 -1.10675e-22)
(0.550031 -0.232465 1.93445e-22)
(1.28282 -0.143069 -1.46542e-21)
(0.164119 0.0940366 -2.16569e-21)
(0.94507 0.192564 -4.97705e-21)
(0.924395 -0.146579 4.48989e-22)
(0.988961 -0.177829 -1.40521e-21)
(0.456857 -0.0425491 -2.01909e-21)
(0.0431179 5.97001e-05 -4.57082e-21)
(0.025341 -0.000197746 6.05991e-21)
(0.911575 -0.0768656 -7.1036e-22)
(0.273443 0.148448 5.34322e-22)
(0.654423 -0.329287 5.51359e-21)
(0.663671 0.266665 -3.80728e-22)
(0.114851 0.0649513 -3.84716e-21)
(0.907983 -0.110972 -1.03685e-21)
(0.105421 0.0623751 -2.08581e-21)
(0.638281 0.21371 -4.26848e-22)
(0.142652 0.120025 1.31024e-22)
(0.250901 -0.137965 4.4796e-21)
(0.896699 -0.0536356 6.08347e-22)
(0.488593 0.0979303 -4.12926e-21)
(0.957179 -0.0487297 3.24439e-22)
(0.573047 -0.310439 9.46413e-22)
(0.514407 0.269043 1.00516e-21)
(0.0926171 0.0537515 -1.6914e-21)
(0.970917 0.238683 -2.3434e-21)
(0.0490213 4.36054e-05 -8.73637e-21)
(0.955508 -0.0486956 5.83302e-23)
(0.024981 0.000105768 -3.5865e-22)
(0.0180799 -0.000190712 2.16259e-22)
(1.22354 -0.208393 1.45758e-21)
(0.243227 0.141158 1.59862e-22)
(0.0459037 -0.000104867 2.93248e-21)
(0.0452399 0.000121709 -2.5878e-21)
(0.0452829 5.64984e-06 -6.16783e-21)
(0.245171 0.000805439 4.82951e-21)
(0.0447581 -0.00112884 8.97153e-21)
(0.624333 -0.278332 -1.86398e-21)
(0.0142571 7.03229e-05 -8.2631e-21)
(0.831892 -0.102259 -1.15428e-21)
(0.594711 -0.0301421 8.76681e-22)
(0.129769 0.0536724 -5.85543e-22)
(0.260673 -0.00821653 -7.7497e-22)
(0.345214 0.1328 -7.36546e-23)
(0.201211 -0.0592844 -3.34308e-21)
(0.275195 -0.146751 1.76216e-21)
(0.324749 -0.205525 4.1847e-21)
(0.56084 0.174676 2.09639e-22)
(0.54871 0.134224 -2.05386e-23)
(1.23037 0.247953 -1.12685e-21)
(0.644382 0.167899 -4.23904e-21)
(0.911252 -0.0823287 1.35907e-21)
(0.0157313 0.000102301 3.82582e-22)
(0.0375662 0.00174742 6.43953e-21)
(0.885108 -0.264543 -1.2941e-21)
(0.289944 0.126221 7.45222e-22)
(0.381015 0.143668 9.47655e-24)
(0.491214 0.26389 2.44405e-21)
(0.204693 -0.0251705 -4.08353e-21)
(0.532045 0.331618 -7.77065e-22)
(0.899052 -0.0519527 6.55366e-22)
(0.977456 0.165736 1.9514e-21)
(0.444992 -0.255937 -3.16167e-21)
(0.753109 0.376182 2.98857e-22)
(0.227102 -0.0136718 1.73234e-21)
(0.953077 -0.2058 -7.74887e-22)
(1.35542 0.00824292 1.82752e-21)
(0.556148 0.339095 3.46227e-21)
(0.973139 0.320028 2.04488e-21)
(0.0463309 5.37847e-06 -1.14071e-21)
(0.0465478 -0.000124846 1.09149e-21)
(0.0464589 -5.97468e-05 3.77819e-22)
(0.0464281 5.32984e-05 4.65729e-23)
(0.605356 0.0549881 3.07786e-21)
(0.550812 -0.036137 3.48597e-21)
(0.902518 0.206984 5.60767e-21)
(1.08473 -0.324991 -4.27297e-21)
(0.866687 -0.179456 -2.95693e-22)
(0.0991683 -0.00147417 1.59448e-21)
(0.423662 -0.212825 6.38536e-21)
(0.974626 0.386482 -1.87276e-21)
(0.0466089 0.000328759 2.07454e-21)
(0.0432786 -8.03789e-05 -3.64943e-21)
(0.0431711 1.07772e-05 1.93217e-21)
(0.0431118 9.91196e-05 -3.40974e-21)
(0.238074 -0.0571834 -1.65157e-22)
(1.10011 0.375965 -5.76906e-22)
(1.13233 0.156789 -2.69821e-22)
(0.0428136 0.000204937 -5.15349e-21)
(0.88783 -0.0254483 -9.30697e-22)
(0.145845 -0.0838811 -2.85472e-22)
(0.896256 -0.364743 -2.69139e-21)
(1.04802 0.324243 -6.53493e-22)
(0.680054 0.247668 -1.55988e-21)
(0.793804 0.389753 4.2114e-21)
(0.0587925 0.033129 3.19374e-21)
(0.411351 -0.255868 -1.51977e-21)
(0.910264 -0.0742157 9.19477e-22)
(0.198926 -0.115381 9.25792e-22)
(0.028898 -0.000108559 -9.06448e-22)
(0.954939 -0.0476049 -1.99954e-22)
(0.633733 -0.287743 1.2197e-21)
(0.515545 0.32634 2.60014e-21)
(0.782448 0.390561 -1.94586e-21)
(0.147597 -0.0472972 1.07584e-21)
(1.0545 0.34337 -3.58224e-22)
(0.388686 -0.242743 -9.28286e-23)
(1.04517 -0.192115 -1.27338e-21)
(0.938526 -0.0309362 2.55177e-22)
(0.43955 -0.221946 -1.72832e-21)
(0.93063 0.171815 3.36934e-21)
(0.302924 -0.160547 3.53612e-21)
(0.682594 0.275865 -2.92955e-22)
(0.286791 0.101255 3.83334e-22)
(0.0412187 8.82611e-05 7.55765e-21)
(0.293333 -0.0529159 -1.03274e-21)
(0.0252235 -0.000209754 -2.95318e-21)
(0.964517 0.324769 5.80732e-21)
(0.726452 0.011161 -5.81129e-21)
(0.0249969 -0.000280827 2.50686e-21)
(0.519829 0.279091 -3.45108e-21)
(0.0244226 0.000120511 4.06934e-21)
(0.870718 -0.229621 1.47456e-21)
(0.949302 0.392702 1.02552e-21)
(0.313892 -0.171257 7.89312e-22)
(0.744278 -0.353356 6.95502e-22)
(1.04625 0.318536 5.10533e-22)
(1.03747 0.208971 -2.22683e-21)
(1.30613 -0.0105066 3.54006e-21)
(1.18787 0.333726 -1.20417e-21)
(0.224311 -0.0093551 1.3005e-21)
(1.22545 0.267873 -2.90858e-22)
(0.0248423 0.000133569 -2.46655e-21)
(0.686729 -0.345665 5.69372e-23)
(0.868039 -0.247175 -1.26473e-22)
(0.452432 0.269766 2.01851e-21)
(0.909268 -0.162375 -1.34763e-21)
(0.862464 0.296055 5.88661e-23)
(0.0137065 -9.85788e-05 -1.60394e-21)
(0.0530554 0.0313302 -4.44355e-22)
(1.15701 -0.293421 2.91909e-21)
(0.619929 -0.144537 -6.38262e-21)
(0.320913 -0.133497 -3.36899e-22)
(0.936386 -0.334658 -5.79059e-22)
(0.9416 -0.212521 5.1834e-21)
(0.04328 8.39339e-06 -5.68198e-21)
(0.0485667 -0.027951 3.42723e-22)
(0.0457952 9.27759e-05 -9.02412e-23)
(0.0242252 -0.000102705 -3.86802e-21)
(0.287234 0.065844 -9.08812e-22)
(1.28815 0.223863 -1.39233e-23)
(0.317762 -0.174184 2.63399e-22)
(0.449593 0.251304 -1.68407e-21)
(0.0987302 0.0542738 -8.56359e-22)
(0.923254 -0.193201 -8.83871e-21)
(0.80025 -0.22944 -7.08812e-22)
(0.510823 0.212192 -6.88138e-22)
(0.734644 -0.275921 -3.86746e-22)
(0.13805 -0.0342538 -1.94767e-21)
(0.441607 -0.243808 2.82062e-21)
(0.0391449 0.00198998 -2.89141e-21)
(0.560499 0.275268 4.41753e-22)
(0.487725 -0.218568 -2.57902e-21)
(0.0336395 -0.00380103 -2.55134e-21)
(0.963059 -0.0581591 3.97882e-22)
(0.939823 -0.0344047 -6.55638e-22)
(0.746752 0.273486 -4.68043e-23)
(0.278694 -0.165914 -2.64611e-21)
(0.755167 -0.0545853 -5.05416e-22)
(0.669832 -0.231429 1.59051e-21)
(0.03486 0.00517133 7.08501e-21)
(0.79059 -0.252585 2.88473e-21)
(0.0351563 -6.75457e-05 -2.48413e-21)
(0.0349473 0.000178301 -2.61065e-21)
(0.0346288 0.000236258 -7.75357e-22)
(0.0347423 -0.000312925 -4.92232e-21)
(0.0349384 -4.63416e-05 -1.74309e-22)
(0.759778 -0.282957 -1.12529e-21)
(0.121007 0.0676328 -2.24972e-21)
(0.405846 0.163519 -2.58638e-23)
(0.0347582 0.00525113 -4.78426e-21)
(0.0927642 0.0526989 7.17765e-22)
(0.151722 -0.0435255 -1.09618e-21)
(0.136176 -0.0190491 -5.31269e-22)
(0.095937 -0.0550255 -4.70977e-22)
(1.35813 0.0922586 -1.25113e-21)
(0.730302 -0.352674 -3.6287e-21)
(0.0809985 0.0449624 2.43477e-21)
(0.931436 -0.0195401 9.77812e-23)
(0.115339 0.0656502 5.05386e-21)
(1.02696 -0.338196 -2.66112e-21)
(1.01159 -0.189677 1.74752e-21)
(0.0224116 -0.000122695 -1.19045e-21)
(0.0659431 0.0386066 -3.69571e-22)
(0.574486 0.341424 -6.01806e-21)
(0.884067 -0.366938 1.68669e-21)
(0.593743 -0.0401806 -3.53174e-22)
(0.875512 -0.374943 -1.77481e-21)
(1.03171 0.25849 1.11349e-23)
(0.142588 -0.0963728 7.24385e-22)
(0.0340862 0.00123051 -9.30609e-22)
(0.0328898 -0.00531523 -1.47536e-20)
(0.725651 -0.26855 3.11767e-22)
(0.867017 -0.0236879 1.99104e-22)
(0.929722 0.31036 4.29656e-21)
(0.0740775 -0.0330419 4.3223e-22)
(0.0226683 0.0024079 -1.96856e-21)
(0.875862 0.219437 5.0157e-21)
(0.830702 0.388367 -6.77608e-22)
(0.297086 -0.193293 2.37815e-21)
(0.812343 0.224217 1.00815e-20)
(0.501764 -0.225147 5.46116e-24)
(0.847749 -0.116098 1.41922e-21)
(0.874196 -0.249671 1.12919e-21)
(1.28708 0.232653 5.93219e-23)
(1.14843 0.242983 -4.26305e-22)
(0.56003 -0.259455 2.76324e-21)
(0.299318 -0.1483 2.30567e-21)
(0.034621 0.000107696 5.14536e-22)
(0.0567821 -0.032984 8.12365e-22)
(0.0352964 -4.63815e-05 -6.04422e-21)
(0.034832 0.000173941 3.33102e-23)
(0.984718 0.396929 6.61197e-22)
(1.29875 -0.168196 2.28797e-21)
(0.31349 0.0674958 -4.84183e-21)
(0.116211 -0.0618027 -1.37006e-21)
(0.957978 0.363769 1.01715e-21)
(0.398363 -0.158683 -8.77921e-22)
(0.0353572 -8.90711e-07 -1.22131e-21)
(0.0731325 -0.0528435 1.78488e-21)
(0.839723 -0.10939 -4.03463e-22)
(0.0360664 -0.000213777 8.43716e-23)
(0.0935207 0.0523981 -7.77086e-22)
(1.25047 0.287112 -8.49881e-23)
(0.370543 0.0262015 3.71955e-21)
(1.10805 0.158927 2.45617e-21)
(0.0431654 0.00275823 -3.74747e-21)
(0.898493 0.213385 -3.44899e-21)
(0.14513 -0.0543246 8.90546e-23)
(0.253985 -0.160994 3.50702e-21)
(0.748728 -0.0548493 8.46595e-22)
(0.0729062 0.0426626 8.28839e-22)
(0.920992 -0.199449 4.76769e-21)
(0.0885256 -0.0253578 2.14861e-21)
(0.932916 -0.0206526 4.28129e-22)
(1.15693 -0.017127 2.08267e-21)
(0.884347 0.300096 -2.82139e-21)
(0.0173464 -4.04531e-05 5.30683e-23)
(0.0286212 9.66119e-05 6.54069e-22)
(0.928058 -0.249853 -1.42828e-21)
(0.0435172 7.69775e-05 6.94865e-21)
(0.0434652 -0.000102958 -1.19365e-21)
(0.0435278 -3.06117e-05 1.83001e-21)
(0.296592 -0.165358 -6.68986e-22)
(1.16366 0.055944 -5.38751e-22)
(0.691516 -0.332852 1.52408e-21)
(0.130395 0.0154808 -3.9743e-21)
(0.0273865 0.000344103 -4.7765e-21)
(0.591558 0.192888 5.30233e-21)
(0.773842 -0.355452 1.13269e-21)
(0.970131 -0.367524 -1.82989e-21)
(0.643071 0.342948 -1.38096e-22)
(0.138467 -0.0902071 4.56766e-21)
(0.591288 -0.234185 -2.26697e-21)
(0.326607 0.141334 2.22376e-22)
(1.34122 0.086994 9.96379e-23)
(0.041048 -0.0236608 -7.45808e-22)
(0.0557298 -0.0291602 2.12286e-22)
(0.118356 0.0451405 -5.09091e-21)
(0.650688 0.152652 1.82701e-21)
(0.919691 -0.0903034 -1.64174e-21)
(0.0242807 -9.91776e-05 3.18249e-21)
(0.096983 0.122454 2.23743e-21)
(0.0347913 3.42378e-05 -3.15347e-21)
(0.0348927 6.65119e-05 -8.96725e-21)
(0.0354459 8.13758e-05 8.93423e-21)
(0.0350871 -0.000379699 -5.78303e-21)
(0.692912 0.0611975 -1.12855e-20)
(0.0435792 -0.0244642 3.07351e-21)
(0.03479 -4.0548e-05 -2.77641e-23)
(0.0348596 6.23382e-05 -4.95242e-21)
(0.0354818 -0.000139952 -9.32991e-22)
(1.00474 0.384234 2.72301e-22)
(0.0928186 -0.0081127 -2.84093e-21)
(0.0427637 -0.0474953 -4.15805e-21)
(0.0660437 -0.0382442 4.38992e-21)
(0.561773 -0.0957078 5.22719e-22)
(0.841861 -0.0110481 -1.18458e-21)
(1.2136 -0.206774 -1.60212e-21)
(0.84563 0.396244 9.64098e-22)
(0.464604 0.293082 -7.89838e-21)
(0.621664 -0.255022 2.91123e-21)
(1.13736 0.0446901 1.54821e-21)
(1.0276 -0.364084 4.67888e-23)
(0.958514 -0.357983 2.26123e-21)
(0.323758 -0.191229 -3.82321e-21)
(0.178607 -0.103606 8.81837e-23)
(0.755882 -0.354123 1.23605e-21)
(0.492425 -0.288966 -1.23471e-21)
(0.834925 -0.299178 2.97639e-21)
(0.0609744 -0.0275142 -8.7295e-23)
(0.16577 -0.0380286 1.52954e-21)
(0.540369 0.278727 -8.5308e-22)
(0.0285747 0.000322903 -5.7668e-21)
(1.00606 -0.318443 3.83462e-21)
(0.0423062 -0.00177106 -3.19546e-21)
(0.0237128 0.000199266 -6.55433e-22)
(0.148844 0.049371 -2.82079e-22)
(0.118508 0.0313343 -2.02036e-22)
(0.930104 -0.0201756 7.32684e-23)
(0.0287726 0.00504192 -4.59907e-21)
(0.293011 0.200487 -1.6776e-21)
(0.742222 0.373514 -4.86936e-21)
(0.938556 -0.366298 2.87288e-21)
(0.186596 -0.0152687 -1.45557e-21)
(1.32512 0.164559 -3.33833e-22)
(0.0950128 -0.055428 1.12526e-22)
(0.0436453 -0.000279393 8.50625e-22)
(1.05296 -0.341166 -1.09521e-21)
(0.126627 -0.0725799 -1.43083e-21)
(0.887229 -0.0603906 1.96469e-21)
(0.0659588 0.0379824 -2.05518e-21)
(0.0436958 -0.000267611 2.93352e-21)
(0.0436211 0.000436482 2.4541e-21)
(0.248059 0.141951 -1.16422e-21)
(0.0707617 -0.0396867 4.18363e-22)
(0.448189 -0.271502 -8.33298e-22)
(0.566367 -0.241762 -4.88221e-22)
(0.422485 -0.235716 -3.09375e-22)
(0.321182 -0.177675 3.90248e-22)
(0.272994 -0.130308 1.29213e-21)
(0.929061 -0.0664603 1.58871e-22)
(0.24623 0.0588662 -6.74134e-22)
(0.668083 -0.019497 3.60805e-21)
(0.634658 -0.222921 -1.69484e-21)
(0.696944 -0.188808 9.53851e-22)
(0.145271 0.0597024 -1.17058e-23)
(0.0210145 0.000264344 5.93195e-21)
(0.489531 0.22639 4.65583e-22)
(0.785353 0.375496 1.56563e-21)
(0.0372366 -0.000227382 -8.18572e-22)
(1.10599 -0.0493855 -1.01961e-21)
(0.39474 -0.126162 -6.35225e-21)
(0.90131 -0.0473573 5.61825e-22)
(0.309562 0.143913 7.12422e-22)
(0.0484647 1.90466e-05 -4.27666e-21)
(0.0485695 3.17159e-05 -2.97248e-21)
(0.0485089 9.84678e-05 2.45717e-21)
(1.20085 -0.185795 2.08487e-21)
(0.039269 -0.00220257 -1.37991e-21)
(0.0484324 3.35261e-06 9.05536e-21)
(0.41948 -0.118924 -1.59458e-21)
(0.0231845 0.000316852 -2.62404e-22)
(0.621041 0.332992 -2.21844e-21)
(1.30139 -0.0690633 1.41157e-22)
(0.046609 0.00107723 -4.92019e-21)
(0.277246 -0.148703 1.28763e-21)
(1.10696 -0.292355 -1.40813e-21)
(0.0346268 -0.000274078 7.1837e-21)
(0.0911897 -0.0523252 3.80289e-21)
(0.454792 -0.110775 1.873e-21)
(1.14957 -0.285127 1.79583e-23)
(0.577716 -0.22681 2.81919e-21)
(0.277905 -0.194098 -2.33937e-21)
(1.10324 0.368897 9.68008e-22)
(0.124455 -0.0592868 6.15847e-21)
(0.712258 0.0600479 1.9197e-21)
(0.733144 -0.0203006 -5.95087e-22)
(1.10964 -0.0969351 5.02856e-22)
(0.0375704 0.00473901 -1.22122e-22)
(0.794826 0.375366 -1.27737e-21)
(0.308155 -0.0516997 -2.48094e-21)
(0.361469 -0.138437 -3.72986e-21)
(1.10695 -0.268224 2.30678e-21)
(0.640696 -0.210861 4.06054e-22)
(1.34333 0.139232 -7.84703e-22)
(0.354451 -0.14576 3.32693e-22)
(0.221882 0.013389 1.9166e-21)
(0.0681765 -0.0397375 2.20355e-21)
(0.51429 -0.0894499 4.53697e-21)
(0.0278931 -0.000206625 -1.52622e-21)
(0.0275177 -1.42641e-05 3.35643e-22)
(0.0457193 -0.0249407 -6.28369e-22)
(0.956654 -0.142533 -6.98839e-22)
(0.0383072 -0.0207208 8.43044e-22)
(0.0222982 0.000187637 -9.40125e-22)
(1.31665 0.102967 -8.34965e-22)
(0.158177 -0.0912518 -2.56849e-21)
(0.0451699 0.000259743 -2.55974e-21)
(0.349746 0.200508 2.37861e-22)
(0.0762223 -0.0422634 4.67763e-22)
(0.127981 -0.026995 3.3304e-21)
(0.519789 0.236411 -1.10724e-22)
(0.765898 -0.158241 -3.82364e-22)
(0.0387858 0.00308428 1.6222e-21)
(0.0957256 0.0422617 2.29728e-22)
(0.085457 -0.0470995 9.79107e-22)
(0.877119 0.299234 -6.27743e-22)
(1.04198 0.376912 -7.57028e-21)
(0.534836 -0.0793402 3.06554e-21)
(1.17673 -0.160592 -2.877e-21)
(0.640677 0.364685 -6.82912e-21)
(0.842364 -0.115405 -1.9619e-22)
(0.0357639 -0.00604899 7.56805e-21)
(0.100029 0.0465349 3.12455e-23)
(1.33831 -0.0925409 5.23771e-22)
(0.03686 -0.0119776 5.00675e-21)
(1.32672 0.104651 -2.23933e-22)
(0.10884 -0.0589189 1.35265e-21)
(1.0662 0.229935 -8.56997e-22)
(0.826515 0.290306 -1.45582e-22)
(0.186884 0.110249 -1.61305e-21)
(0.725261 0.218851 -1.56537e-21)
(0.911748 -0.00426043 1.98037e-21)
(0.550175 -0.151741 -1.12122e-21)
(0.773572 -0.309556 4.72482e-21)
(0.601385 0.0398195 -2.22253e-21)
(0.986851 0.368153 3.28391e-23)
(0.346761 -0.16121 -2.1073e-21)
(0.0212378 -0.000159343 2.67863e-22)
(1.30329 0.142376 -1.29764e-22)
(0.898156 -0.14173 -2.06027e-21)
(0.867431 0.320497 3.55935e-23)
(0.965822 -0.145632 3.0237e-22)
(0.759737 -0.358952 5.31646e-21)
(0.91404 -0.0632047 -7.69422e-22)
(0.651959 0.366182 -7.1637e-21)
(0.848625 -0.370418 1.44414e-21)
(0.682219 -0.0200628 1.86701e-22)
(0.535664 -0.177646 -6.57898e-22)
(0.153953 -0.11896 -5.21092e-21)
(0.976751 0.110719 4.11227e-21)
(1.15435 0.247278 1.03712e-21)
(0.561299 0.271704 -1.57313e-21)
(0.424607 -0.211917 -3.56202e-21)
(1.00028 0.290479 -9.93713e-23)
(0.0628206 0.0364324 5.48513e-22)
(0.345566 -0.212506 -2.57744e-21)
(0.592644 0.147075 9.76892e-22)
(0.163585 -0.0945396 -1.70766e-21)
(0.278378 0.0521095 -1.51003e-21)
(1.04713 0.373869 3.79794e-21)
(0.158144 -0.1287 1.24545e-21)
(0.469439 0.0513044 -9.771e-21)
(1.09107 -0.262303 1.86609e-21)
(0.284917 0.173263 5.66969e-21)
(0.959343 -0.254128 -1.0238e-21)
(1.31963 0.0818466 -3.44579e-22)
(0.914011 0.401459 4.01357e-21)
(0.303489 0.163046 -2.12301e-21)
(0.920973 -0.278059 -2.31654e-21)
(0.3785 0.171908 -3.93564e-23)
(1.1212 0.284413 9.09965e-22)
(0.112212 -0.0583133 -1.4019e-21)
(0.585465 -0.0604677 -2.90499e-23)
(0.913721 -0.0167131 -6.13344e-22)
(0.241984 -0.0184424 4.35686e-22)
(0.625339 -0.243938 -5.63407e-22)
(0.347975 -0.217934 7.2825e-22)
(0.0551055 0.0321657 -9.24577e-24)
(0.130224 0.0766408 -2.90635e-21)
(0.102169 -0.0565541 -4.87177e-21)
(0.454421 -0.248333 -1.65498e-21)
(1.00774 -0.348324 4.13037e-21)
(0.910443 0.207022 4.59893e-22)
(1.13491 -0.0254974 3.1198e-22)
(0.863982 0.323916 -3.34668e-22)
(0.83777 -0.0568913 -2.39255e-22)
(0.428939 0.255202 -2.15592e-21)
(0.172692 0.101052 -1.11352e-21)
(0.711849 -0.321437 -1.14308e-21)
(0.103523 -0.0581433 6.21824e-23)
(0.533915 0.261216 2.95641e-21)
(0.301242 -0.142042 1.19718e-21)
(0.0433137 -9.20893e-05 2.38097e-22)
(0.99653 0.39786 5.22086e-22)
(0.866377 -0.305376 6.43687e-22)
(0.804374 0.0383325 -3.74872e-21)
(0.0144628 -5.31587e-05 2.61326e-21)
(0.924942 -0.0631961 6.22379e-21)
(0.873773 -0.279032 -6.24568e-22)
(1.20387 0.318403 3.86025e-22)
(0.20194 0.116586 2.42462e-21)
(0.112322 -0.064301 -2.69112e-21)
(0.775019 -0.282593 -9.41971e-22)
(0.216683 0.133513 -4.78198e-21)
(0.544547 0.335887 6.70602e-21)
(1.26797 -0.0548349 -2.39685e-21)
(1.14838 -0.292309 -4.08305e-22)
(0.938066 0.288977 1.91307e-22)
(0.972923 -0.158072 -1.02741e-21)
(0.701685 0.33686 -4.79239e-23)
(0.0283569 -3.40732e-05 -1.62436e-21)
(1.21879 -0.152404 -2.58561e-21)
(0.0149271 -0.000178439 -2.78063e-21)
(0.246406 0.0866996 -4.62952e-22)
(0.0182229 0.00131927 4.1473e-21)
(0.306653 -0.12165 -1.09665e-21)
(0.12743 -0.0525196 -2.04042e-22)
(0.870036 0.351673 4.63566e-22)
(0.0653858 0.0374621 -6.6754e-22)
(0.982791 0.322863 -3.25782e-23)
(0.816977 -0.329994 5.56829e-21)
(0.791191 -0.0154083 -5.2627e-22)
(0.0365602 0.00392605 1.19765e-23)
(0.805901 0.299404 3.73703e-21)
(0.915116 -0.0583519 -1.38939e-22)
(0.902602 -0.0060424 6.39187e-23)
(0.290453 0.162643 -1.4436e-21)
(0.795443 -0.336535 -2.59343e-21)
(0.765564 -0.358702 -2.82087e-21)
(0.967908 -0.114261 -2.56627e-22)
(0.0459206 -6.77606e-05 -4.72047e-21)
(0.622164 0.358784 6.51437e-21)
(0.525289 -0.259007 -8.54727e-22)
(1.12823 -0.292619 -1.1044e-21)
(0.775772 0.380797 -1.93321e-21)
(0.119575 0.0307744 -6.61657e-22)
(0.122874 -0.0716886 -2.58362e-23)
(0.306652 -0.0107095 2.02805e-21)
(0.903915 0.234952 -1.49431e-21)
(1.31347 -0.158107 -3.21463e-21)
(0.082481 -0.0480456 -1.41569e-21)
(1.32436 -0.113768 2.4408e-21)
(0.95497 -0.365943 9.146e-22)
(1.02216 -0.296767 1.49336e-21)
(1.05487 -0.336944 1.65414e-21)
(0.0362125 -0.0221137 -2.59215e-21)
(0.0753223 -0.0458255 -4.24884e-21)
(0.866797 -0.0215852 -3.85973e-22)
(0.10407 0.0572275 2.2762e-21)
(0.266839 -0.117749 -2.25022e-21)
(0.300143 -0.136037 -2.86951e-21)
(1.0364 -0.33928 -5.72507e-22)
(0.912351 0.170903 7.19352e-21)
(0.0550678 -0.0199639 -1.46628e-21)
(0.804943 -0.119806 4.08718e-22)
(0.804596 0.230948 -8.77595e-21)
(0.511288 -0.295843 -2.08506e-21)
(0.190939 -0.111368 2.41699e-21)
(0.309566 -0.167371 2.56813e-21)
(0.912486 -0.0648361 1.08521e-21)
(0.940649 -0.171213 1.45819e-21)
(0.725061 -0.327622 -8.21752e-22)
(0.0488795 3.20881e-05 8.81327e-22)
(0.301705 -0.144277 1.59557e-21)
(1.29529 0.144457 4.64161e-23)
(0.326382 -0.127397 7.12894e-22)
(0.248162 -0.140513 -2.07664e-22)
(0.0488312 -3.78476e-05 -5.95798e-21)
(0.631206 0.151594 1.07017e-21)
(0.185547 0.101217 1.63771e-21)
(0.939817 0.185355 -5.57781e-21)
(1.08366 0.266863 -4.31078e-22)
(0.915113 -0.0158989 -2.86132e-23)
(0.0474213 0.000631086 -2.69343e-21)
(0.048583 7.47832e-05 1.77898e-22)
(0.0487309 -4.08164e-05 -5.54792e-21)
(0.048258 -0.000108929 2.30945e-21)
(0.0486276 2.96992e-05 -4.84148e-21)
(0.0484863 -1.97906e-07 -1.06157e-21)
(0.0485631 3.45299e-05 2.32482e-21)
(0.0474045 -0.000688155 -1.30125e-21)
(0.0484662 0.000256186 1.79821e-20)
(0.0485151 -8.9645e-05 2.8964e-23)
(0.0484534 6.48238e-05 -7.33203e-22)
(0.0486664 1.34103e-05 -6.12786e-22)
(1.10628 0.338079 6.57784e-22)
(0.0429336 -0.000180093 2.52771e-21)
(0.367341 0.0166544 4.70334e-21)
(1.08547 -0.297976 5.99788e-21)
(0.827524 -0.172412 -5.79099e-22)
(0.895258 -0.375639 -2.25912e-21)
(0.804868 -0.243798 -5.42787e-24)
(0.121794 0.0349806 4.64964e-22)
(1.18057 -0.194344 -2.7428e-21)
(1.07857 0.342599 6.40356e-22)
(0.844277 0.231557 -2.409e-21)
(0.42071 -0.241375 -3.06032e-21)
(0.731634 -0.261087 -2.922e-22)
(0.699355 0.366952 -2.75335e-21)
(0.0285489 2.19677e-05 1.25018e-21)
(1.16602 -0.305626 9.15663e-22)
(0.549443 -0.112056 -1.94162e-23)
(0.934487 -0.228926 -1.64521e-21)
(0.114657 -0.0665567 6.66631e-22)
(1.0701 -0.0850371 -5.7079e-22)
(0.898912 -0.0489086 -5.25099e-22)
(0.963916 0.249764 8.62932e-22)
(0.35633 0.178209 -1.14326e-21)
(0.151976 0.088807 2.28191e-21)
(0.276698 -0.138732 -1.48263e-21)
(0.492379 0.265875 4.14067e-21)
(1.04451 -0.335716 -1.44809e-21)
(1.01514 -0.367347 -2.41173e-21)
(0.421925 0.221105 -1.93585e-21)
(0.0278871 -0.0161763 1.4141e-21)
(0.321082 0.0164029 -2.73611e-21)
(0.324535 0.112008 -1.00236e-23)
(0.849428 0.393908 -1.57467e-21)
(1.02975 -0.244079 -1.50104e-21)
(0.129773 -0.074341 -1.57695e-21)
(1.10419 0.200305 4.53394e-22)
(0.694838 -0.329924 -2.52549e-21)
(1.2769 -0.213954 -6.43326e-22)
(1.08443 0.293378 -7.83889e-22)
(0.529817 -0.239341 2.52264e-21)
(0.948896 -0.364073 -2.04278e-21)
(0.0243366 0.000172365 -2.06398e-21)
(0.871995 -0.0989568 -3.57892e-21)
(0.463831 0.0274718 -6.85693e-21)
(0.0312797 -0.0189824 1.71828e-21)
(1.27452 0.0480553 -2.10122e-21)
(0.956804 0.353627 6.3209e-22)
(1.21633 -0.26923 8.54147e-22)
(0.498886 -0.203944 2.42822e-21)
(0.514465 0.309329 -2.95361e-21)
(0.0775691 -0.035319 2.73452e-21)
(0.452473 0.214289 -1.16316e-21)
(0.479518 -0.259672 -5.76593e-21)
(0.0283679 -8.46342e-06 5.68121e-21)
(0.466309 0.288038 -2.35912e-21)
(0.51361 0.267513 -3.18412e-21)
(1.14211 0.225399 -4.62089e-22)
(0.236556 -0.1321 -2.05127e-22)
(0.426146 -0.262696 -2.16472e-21)
(0.0351146 -0.000296645 -4.13073e-21)
(0.1514 0.0886197 4.31203e-22)
(0.540188 0.0649076 -1.16458e-21)
(0.269683 0.14712 -1.00421e-21)
(0.848134 0.34378 -2.01736e-22)
(0.170141 0.0934942 -1.84255e-21)
(0.201782 0.11688 -2.18531e-22)
(0.113124 -0.0333584 5.68655e-21)
(0.0188473 -5.46338e-05 5.83235e-22)
(0.809497 -0.122402 -1.20637e-21)
(0.559416 -0.028985 1.4584e-21)
(1.12749 -0.269379 1.81735e-22)
(0.290556 -0.145228 -8.99104e-22)
(0.476364 0.281413 2.93384e-21)
(0.289019 0.164369 2.01534e-21)
(0.391659 -0.246931 1.43513e-21)
(0.938485 -0.0321552 1.62716e-23)
(0.900557 0.398658 -4.09268e-21)
(1.02862 -0.349014 -5.68517e-21)
(0.209079 -0.0474061 2.51676e-22)
(0.916389 -0.0538833 -9.02115e-22)
(0.571389 -0.255825 -1.31058e-21)
(1.02518 -0.248932 -1.05537e-21)
(0.0377655 -0.00457347 7.95175e-22)
(0.857838 -0.0322744 4.99467e-23)
(0.0279016 -0.000340707 -2.37845e-21)
(0.296731 -0.16688 4.69041e-21)
(0.688747 0.376401 -3.4895e-21)
(0.19002 -0.0313207 -3.11245e-21)
(0.134254 0.0764134 6.23851e-21)
(1.29014 -0.162573 2.6682e-21)
(0.360578 0.26738 -3.83689e-21)
(0.114709 0.0227245 -4.6832e-21)
(0.870696 -0.190947 1.55206e-22)
(0.478355 -0.265716 1.23022e-21)
(0.375592 -0.23786 1.94233e-21)
(0.22641 0.132197 -3.76501e-21)
(0.933765 -0.101819 -1.12512e-21)
(0.906613 -0.114494 9.31212e-22)
(0.0243922 -9.77236e-05 6.43782e-22)
(0.856151 -0.121912 -2.51954e-22)
(0.194771 -0.0633554 -1.30704e-21)
(0.0781597 -0.0179614 2.15788e-21)
(1.17726 -0.172231 2.96598e-21)
(0.798716 -0.286661 -3.77507e-22)
(1.32634 0.085508 4.79971e-22)
(0.337743 -0.191559 5.9816e-22)
(0.868689 -0.282814 9.33429e-22)
(0.916468 -0.0906874 1.42762e-21)
(1.18654 -0.301469 -4.2166e-21)
(0.901945 -0.193831 -2.06436e-21)
(0.564671 0.195786 1.34859e-22)
(0.176906 -0.139224 3.00254e-21)
(0.956646 -0.146061 1.28783e-21)
(0.239577 -0.0406306 -1.73521e-21)
(0.935758 -0.107487 4.08457e-22)
(0.0342314 -3.15445e-05 -1.73752e-21)
(0.31802 -0.135909 -3.6185e-21)
(0.74399 -0.204409 -2.06074e-21)
(0.672069 0.051141 -3.11049e-21)
(0.914006 0.200735 5.64958e-21)
(0.594048 -0.163895 8.67851e-23)
(0.945573 -0.329476 2.15708e-21)
(0.0953988 0.00999341 8.08823e-21)
(0.961098 0.40137 -1.00654e-22)
(0.94679 -0.185397 -2.00872e-21)
(0.144712 -0.0874516 -4.85057e-21)
(1.26538 -0.231765 -2.3823e-21)
(0.976572 -0.15792 5.33237e-22)
(0.161851 0.0508332 3.15131e-21)
(0.870637 0.226846 -6.98675e-21)
(0.920998 -0.0872514 1.21948e-21)
(0.976025 -0.366789 3.29582e-21)
(1.30491 0.0566393 1.9641e-21)
(0.0920907 -0.0510289 -1.78252e-21)
(0.796951 0.384471 -3.32012e-21)
(0.0280156 0.000230443 -7.35641e-22)
(0.109338 -0.0634473 3.12095e-21)
(1.04242 -0.360739 2.07154e-21)
(0.902034 0.293517 9.35112e-26)
(0.277849 -0.153134 -1.24955e-21)
(0.646866 0.272067 1.00607e-20)
(0.794507 -0.271688 1.18727e-21)
(0.107606 -0.0598128 3.03626e-22)
(0.548011 -0.10336 -3.08773e-22)
(0.977822 -0.267524 -1.80567e-21)
(0.182951 -0.123982 2.03195e-21)
(0.211645 0.112828 1.2261e-21)
(0.991662 0.24887 -6.63178e-22)
(0.585279 0.260593 7.92767e-23)
(0.546434 0.290381 5.50076e-21)
(0.878035 -0.160076 -4.25354e-22)
(1.03864 -0.203161 8.54115e-23)
(0.014762 7.68592e-05 -2.3692e-21)
(0.028189 -0.00120754 3.96286e-21)
(0.970186 -0.350144 -3.42633e-21)
(0.796675 -0.236925 1.55942e-21)
(0.273877 -0.132674 -1.78529e-21)
(0.647263 0.285369 8.29095e-23)
(0.0832511 -0.0475997 -3.28289e-21)
(0.129057 0.0722952 -2.99113e-21)
(0.0185017 4.29636e-05 -1.57237e-22)
(1.32497 -0.080419 2.36826e-21)
(0.140802 0.0803681 -3.18074e-21)
(0.935186 -0.11084 1.30283e-22)
(0.0707222 0.0398084 1.09271e-21)
(0.834065 -0.0948547 -7.05425e-21)
(0.241347 0.149732 -4.87003e-21)
(0.819695 -0.172795 6.63003e-22)
(0.178179 0.0135285 -1.01278e-21)
(0.207603 -0.119808 -5.71301e-22)
(0.498707 -0.227945 -2.30335e-22)
(0.597516 0.347842 1.38912e-21)
(0.333804 0.0033299 1.31178e-21)
(0.197342 0.108025 2.40611e-21)
(0.852717 0.350298 2.00764e-21)
(0.17955 -0.025679 -2.57053e-21)
(0.883249 -0.0811403 1.13901e-21)
(1.33107 0.139192 -1.67092e-22)
(0.823166 -0.370374 -1.84495e-21)
(1.11786 0.292715 -2.12419e-21)
(0.919785 0.399662 2.17396e-21)
(1.08907 -0.348095 8.49074e-22)
(1.01803 0.386611 -1.81781e-21)
(0.111828 0.0370834 -7.56133e-22)
(0.161809 -0.0937856 1.90944e-21)
(0.636231 0.354023 6.1122e-22)
(0.95697 -0.354085 2.98782e-22)
(1.29973 0.225522 -5.97058e-22)
(1.09014 -0.270164 2.53331e-21)
(0.028699 -0.000143024 -2.82032e-22)
(0.12281 -0.052359 5.82871e-21)
(0.521085 -0.260113 2.19887e-21)
(0.0282016 4.14508e-05 2.22555e-21)
(0.936694 -0.100925 -4.37069e-22)
(0.866876 -0.00926871 -4.20305e-22)
(0.68052 0.233679 6.34778e-21)
(1.05073 0.305122 4.62429e-22)
(0.946789 -0.237343 -1.69161e-21)
(0.451705 0.235226 3.20058e-21)
(0.561917 -0.0428738 -8.79709e-22)
(0.466914 0.0938278 -4.94332e-21)
(0.833881 -0.0080455 -1.1831e-21)
(1.03682 0.370047 8.26164e-23)
(0.126092 -0.0581098 -5.03634e-21)
(0.123807 -0.112231 2.3688e-21)
(0.8852 -0.0747163 4.05775e-23)
(1.29132 -0.142865 6.0088e-22)
(0.78112 -0.163506 5.13731e-22)
(0.126077 0.0591494 1.28552e-21)
(1.02169 -0.33402 4.60007e-22)
(0.680205 -0.238319 -1.50447e-21)
(0.836186 -0.370647 -2.0133e-21)
(0.135117 -0.0786574 -2.47036e-21)
(0.884632 -0.303374 -1.84367e-21)
(1.03876 -0.167218 -2.31958e-21)
(0.828375 -0.367179 -2.66596e-21)
(0.927659 -0.0674143 -7.91668e-22)
(0.856956 0.156647 3.35096e-21)
(0.981046 0.297791 3.45215e-21)
(0.732729 -0.076325 -8.01015e-22)
(1.30349 0.201401 3.8703e-23)
(1.35563 0.104942 3.32861e-22)
(0.49712 -0.204067 -1.11175e-21)
(1.10181 0.221677 -2.90405e-21)
(1.28683 -0.154648 1.23148e-22)
(0.940208 -0.0970015 7.10264e-22)
(0.131676 0.0659363 2.80939e-22)
(0.0138674 -6.93342e-05 1.25547e-21)
(0.555709 0.251354 1.90026e-23)
(0.240864 -0.0251558 2.10081e-21)
(0.916579 -0.00239235 5.80647e-22)
(0.966211 0.172715 5.24349e-21)
(0.947669 -0.1304 -1.44884e-21)
(0.0169606 -0.000229044 4.3279e-22)
(0.105332 -0.0608879 -9.52827e-22)
(0.319141 0.244647 -2.54306e-21)
(0.221761 0.128507 1.8442e-22)
(0.914326 0.23759 1.21575e-21)
(0.0675347 0.0372604 -2.43157e-22)
(0.802891 0.343481 8.99857e-22)
(0.317349 -0.157048 -1.19791e-21)
(0.0484469 7.6581e-05 -4.54043e-21)
(0.0484033 -2.26837e-05 -1.54246e-21)
(0.0482454 8.5999e-05 -6.11802e-22)
(1.22812 -0.251892 -3.49413e-21)
(1.23615 0.192931 -3.77936e-22)
(0.490127 -0.0735676 6.23779e-22)
(0.0631463 0.00699671 -1.12566e-20)
(0.539165 0.202458 -2.28381e-22)
(0.502357 -0.21321 -1.03796e-21)
(0.0467073 0.0279773 -2.10844e-21)
(0.676762 -0.19616 -3.61687e-21)
(0.777722 -0.155418 -1.08165e-21)
(1.35112 0.116112 1.6304e-21)
(1.11118 0.265245 -3.26864e-22)
(0.796148 -0.316482 -1.89428e-21)
(0.144575 0.07007 -1.03729e-21)
(0.228962 0.131881 -2.5902e-21)
(0.990561 0.309208 3.05294e-22)
(0.231636 -0.133494 -6.03696e-22)
(0.0264248 0.000644959 -1.26276e-22)
(0.744638 -0.0639111 -2.09958e-21)
(0.866521 -0.0599969 -1.04663e-21)
(0.913365 -0.0599794 -1.55565e-23)
(0.738377 -0.1954 2.01224e-21)
(0.0469234 -0.0264587 1.51958e-21)
(1.12799 -0.277355 -1.55903e-22)
(0.367404 -0.161168 3.95084e-21)
(0.982582 0.347173 3.58359e-22)
(0.637472 0.189405 -9.02815e-22)
(1.15825 -0.228553 -1.51001e-21)
(1.15697 0.338733 -1.31056e-21)
(0.58123 0.246504 3.06995e-22)
(0.764178 -0.071783 2.08495e-21)
(0.0485037 -7.20983e-05 -6.74453e-21)
(0.0485793 -0.00020985 1.10866e-20)
(0.0486298 9.17851e-05 5.84388e-22)
(0.0486167 7.14383e-05 -2.52788e-21)
(0.716389 -0.218108 -6.73895e-22)
(0.948461 -0.16802 -8.81948e-22)
(0.450289 0.278355 3.78692e-21)
(1.05437 -0.115179 3.62671e-21)
(0.0788864 0.0448946 -5.17084e-21)
(0.947368 -0.177341 -1.43922e-21)
(0.0492203 -8.87439e-06 7.76726e-21)
(0.0492638 7.38052e-05 1.33796e-22)
(0.0493188 4.54764e-06 3.73495e-21)
(0.0495829 -1.35266e-05 -2.55714e-21)
(0.0493423 3.73194e-05 -3.27165e-21)
(0.0496065 6.46581e-06 3.55072e-22)
(0.04909 -0.000142295 2.21502e-21)
(0.0492704 -1.35133e-06 6.90099e-21)
(0.0490043 0.000126054 -3.0173e-21)
(0.0463646 0.000609579 -1.78057e-21)
(0.0493878 -2.03069e-06 -7.23295e-22)
(0.0492569 -9.79777e-05 -2.28053e-21)
(0.0493976 1.64987e-05 4.74612e-21)
(0.0495307 -1.48919e-05 1.05705e-20)
(0.0494536 3.10816e-05 3.22002e-21)
(0.0493268 7.80689e-06 -4.5746e-21)
(0.0494645 5.14664e-05 -1.21726e-21)
(0.0493476 -3.17757e-05 -7.19081e-21)
(0.0494 -5.70458e-05 -1.34872e-21)
(0.0491303 4.15188e-05 3.26961e-21)
(0.0494881 -5.9105e-05 1.26678e-22)
(0.0492146 -9.93693e-05 -1.13858e-20)
(0.0495856 -5.91926e-07 -9.09671e-22)
(0.0492901 0.000160223 -1.65437e-20)
(0.0412037 -0.00109948 8.18484e-21)
(0.0474259 -0.000545009 1.88893e-20)
(0.0494614 -1.29821e-06 1.2147e-20)
(0.0494636 1.81384e-05 -1.24277e-22)
(0.0491235 -0.000110161 1.01023e-21)
(0.0496824 -1.26964e-05 4.07252e-23)
(0.0494141 2.04107e-05 -6.56147e-22)
(0.0494859 -1.62984e-05 -8.26004e-23)
(0.049302 3.52029e-05 -4.72136e-21)
(0.049538 -6.59333e-05 -6.75637e-22)
(0.0495279 1.24111e-05 3.03867e-22)
(0.509025 0.260978 3.84566e-23)
(0.724853 0.23164 2.28688e-22)
(0.969385 0.168825 -1.05431e-21)
(0.56 0.27733 9.69968e-22)
(0.99971 0.36482 2.47815e-22)
(0.632753 -0.24436 1.1595e-22)
(1.21124 0.309533 -3.08453e-23)
(0.268458 0.192678 -5.68862e-22)
(0.380288 -0.132639 1.93706e-21)
(0.507796 -0.25359 -2.47726e-22)
(1.17072 0.337229 4.3941e-22)
(0.613158 -0.183466 2.04645e-21)
(0.963052 -0.102544 3.42088e-22)
(1.00798 -0.172506 4.77886e-22)
(1.31929 0.053792 -2.42618e-21)
(0.872032 -0.161346 5.13638e-22)
(0.550999 -0.0382993 -1.57679e-21)
(0.155182 0.0904184 -2.69759e-23)
(1.06561 -0.148982 -1.70935e-21)
(0.0847563 -0.0472132 1.61973e-21)
(0.0743385 -0.041204 -2.18592e-21)
(0.59108 0.282908 -8.09935e-21)
(0.394571 0.0129452 6.15453e-21)
(0.084738 -0.0679358 5.37971e-21)
(0.457129 -0.263259 8.04522e-22)
(0.917504 -0.0168511 -3.81005e-22)
(0.136802 -0.0702403 3.07421e-21)
(0.726571 -0.193467 -3.8517e-22)
(0.493512 -0.233116 -1.36636e-21)
(0.584837 0.348296 -8.22841e-21)
(0.622945 -0.249319 6.64283e-22)
(0.380782 -0.236139 -2.16469e-21)
(0.52315 -0.244272 2.68905e-21)
(0.0446679 -7.04162e-05 -1.42372e-20)
(0.990914 -0.356222 1.13948e-21)
(0.347096 0.198339 1.77123e-21)
(0.376721 -0.240004 4.14415e-21)
(0.150271 -0.0157782 5.55484e-22)
(0.0180522 -0.000497666 -1.34695e-21)
(0.90167 -0.288288 -1.37082e-21)
(0.853249 -0.37206 3.06147e-21)
(0.902006 -0.286818 1.32428e-22)
(0.333607 0.179732 2.78512e-21)
(0.685082 -0.346165 3.13661e-21)
(0.519497 -0.272156 2.18208e-21)
(0.479658 0.246948 -3.08867e-22)
(0.0291502 0.000148469 -1.42582e-21)
(0.967255 -0.349412 2.05688e-21)
(0.113608 -0.0772697 -3.15699e-22)
(1.15465 -0.318133 -6.43829e-22)
(0.945821 0.308357 4.9297e-21)
(0.138271 0.0724429 -7.97908e-22)
(0.243193 0.0155497 -2.27942e-21)
(0.298991 -0.129969 9.45302e-21)
(0.100223 -0.0555769 2.348e-21)
(0.810883 -0.228344 2.00935e-22)
(1.13463 0.234754 -2.27005e-22)
(0.0909219 0.0498026 4.26058e-22)
(0.634568 0.16766 7.35284e-22)
(0.103388 -0.0607336 -6.8244e-22)
(0.638527 0.208339 -9.77352e-23)
(0.293127 0.0755813 8.5638e-22)
(0.893325 -0.291484 -1.73217e-21)
(0.0282398 1.35339e-05 -2.35494e-23)
(1.29122 -0.181083 -1.52521e-22)
(0.0267922 0.000190233 1.09668e-21)
(0.661947 0.363194 3.38214e-21)
(0.117847 -0.065148 1.92063e-21)
(0.203319 -0.00344585 8.96003e-22)
(0.318272 -0.16768 2.30348e-21)
(0.940696 -0.118882 -7.24301e-22)
(0.129126 -0.0713637 1.60797e-21)
(0.162563 0.0981453 -2.44739e-21)
(0.58277 -0.317343 -2.11776e-22)
(0.160706 0.0756264 1.77743e-22)
(0.65006 -0.264307 -9.47214e-22)
(1.07104 0.236223 -1.98541e-21)
(1.07039 0.311367 -3.9346e-22)
(0.0234726 -0.000185986 1.80112e-22)
(0.251284 0.145701 2.55603e-21)
(0.139672 0.0206216 -2.16387e-22)
(0.470069 0.225163 1.84015e-21)
(0.0733974 -0.0421401 1.30478e-21)
(0.345141 -0.16853 -3.15239e-21)
(1.29975 0.228024 5.35296e-22)
(0.134424 0.080514 1.1107e-21)
(0.0837187 -0.0747011 -1.99078e-21)
(0.971497 0.401983 -1.27298e-21)
(0.700033 -0.349716 6.25741e-22)
(1.21678 0.312697 -4.78614e-23)
(0.243619 0.133 1.37978e-21)
(0.680609 0.346132 4.90745e-21)
(0.858057 -0.0291488 -1.73729e-22)
(0.982224 0.0368695 -1.51958e-21)
(1.31597 -0.0557646 -1.54428e-21)
(0.116831 0.0665355 -2.56863e-21)
(0.253607 0.149324 5.96994e-22)
(1.30418 -0.125842 9.67416e-22)
(0.158539 0.0792497 -1.16845e-21)
(0.982212 0.355024 2.01444e-21)
(0.970829 0.160862 -1.78118e-21)
(0.794667 -0.127612 5.07408e-22)
(0.410901 0.271398 -5.07916e-21)
(1.35303 0.0173621 -2.31442e-22)
(1.33483 -0.0755412 -1.34453e-21)
(0.228392 -0.130813 2.97537e-21)
(0.666864 0.151591 1.15092e-22)
(0.0270596 -4.78094e-05 -2.62465e-22)
(1.33055 0.0114348 4.19562e-22)
(0.576509 -0.21119 -5.05519e-22)
(0.474062 0.288482 -2.0486e-21)
(1.02434 -0.338942 -3.06499e-21)
(0.760311 -0.348405 -5.90873e-21)
(0.672949 0.357138 -5.86329e-22)
(0.469688 0.258643 -2.01193e-21)
(1.1186 -0.245279 -4.80186e-21)
(0.333003 0.0772381 1.83088e-21)
(1.29429 0.21341 1.39283e-21)
(0.17948 0.0707774 -6.78403e-23)
(0.419299 0.028662 -3.25686e-21)
(0.459026 -0.274305 -2.14918e-21)
(0.0752052 -0.0443451 3.81267e-22)
(0.838379 -0.165332 1.53627e-22)
(0.0299117 0.00186706 -7.30051e-21)
(1.32761 0.160987 4.42801e-22)
(0.775148 -0.343565 2.57997e-21)
(1.19206 -0.275728 -1.39272e-21)
(0.885278 0.220029 2.21439e-21)
(1.07125 -0.183514 7.74711e-22)
(1.21619 -0.274096 -2.51987e-21)
(0.541066 0.0730755 -1.73186e-23)
(0.850743 -0.121617 -5.94174e-23)
(0.894349 -0.298795 4.14494e-22)
(0.142642 -0.10772 3.68674e-22)
(0.242716 -0.167209 -3.07993e-22)
(0.255543 -0.18376 -1.79666e-21)
(0.678377 0.362459 1.84206e-21)
(0.643709 -0.330939 -3.81184e-22)
(0.570365 0.209525 -1.80633e-23)
(0.528465 -0.25696 2.30919e-21)
(1.33148 -0.00996767 -2.39812e-21)
(0.570623 0.344408 -3.1692e-21)
(0.0419332 0.00352437 1.72784e-21)
(0.206747 -0.118723 -2.20226e-21)
(0.746643 -0.261613 9.61375e-22)
(0.678198 -0.173184 3.32265e-22)
(0.0782164 -0.0435224 2.69599e-22)
(0.182382 -0.0505038 2.38905e-22)
(0.0933358 -0.0200233 -1.01318e-21)
(0.983957 -0.19482 -2.02876e-21)
(0.126087 -0.0718126 2.26853e-21)
(0.374738 0.0833578 -2.10117e-22)
(0.947748 0.238917 -3.95934e-22)
(0.0173465 -5.98098e-05 6.73544e-21)
(0.0854223 0.0496077 8.81697e-22)
(0.460706 0.0998955 3.61706e-23)
(0.0861529 -0.0415699 1.93619e-21)
(0.926415 0.362784 -1.07483e-22)
(0.0321462 -0.00253413 -6.67436e-21)
(0.404563 0.246165 -1.54329e-22)
(0.0313389 -1.04254e-05 2.59084e-21)
(1.14087 -0.312626 8.56994e-23)
(1.04373 0.274424 -5.41267e-22)
(0.0418841 0.00161006 3.11506e-21)
(1.31815 -0.0765804 1.04067e-21)
(0.452035 0.272706 -4.16319e-22)
(0.254882 -0.0046135 4.23277e-21)
(0.0320004 0.000646024 3.93819e-21)
(0.107973 -0.047086 -1.14925e-21)
(0.206765 0.0575716 8.6497e-22)
(0.160998 0.0905519 -1.06021e-21)
(0.862899 0.396135 -9.749e-22)
(0.412049 0.0214662 -8.37564e-21)
(0.239661 0.0515866 -1.7815e-22)
(0.741743 -0.245778 -1.09229e-21)
(0.114867 -0.0538558 3.88802e-21)
(0.272028 0.154371 3.1316e-22)
(1.23964 0.294739 8.45707e-24)
(0.442636 -0.249946 2.7682e-21)
(0.212369 0.126784 -2.39719e-21)
(0.997147 -0.225795 -3.32271e-21)
(0.226021 0.0361968 1.09776e-21)
(0.194255 0.0440372 3.22296e-22)
(0.356049 0.217024 -4.2953e-21)
(0.371965 0.0117436 -2.51157e-21)
(0.210328 0.115069 2.19185e-21)
(0.0278194 0.000270804 3.8911e-22)
(1.02644 0.22162 1.48757e-21)
(0.568509 0.29165 -1.13186e-21)
(0.494413 0.0484843 -2.76357e-21)
(0.295817 -0.00294325 -4.41914e-21)
(1.33886 -0.0462556 2.98808e-22)
(0.119889 -0.0736878 -1.8223e-21)
(0.428405 0.261479 1.07127e-21)
(0.982346 -0.144323 1.23604e-21)
(0.548978 -0.270861 -6.2835e-22)
(0.800844 0.337403 -1.16753e-21)
(0.232475 0.0761076 1.35922e-23)
(0.954497 -0.169239 1.4074e-22)
(0.881863 0.365664 -3.09917e-22)
(0.582979 0.0814786 -3.53767e-22)
(0.639616 -0.18793 -2.26784e-21)
(0.30596 0.18455 -3.49671e-21)
(0.441998 -0.0626337 2.81307e-21)
(0.923407 -0.00496051 -2.24798e-22)
(1.22828 -0.258447 1.04837e-21)
(0.628562 0.360305 -2.61989e-21)
(0.394024 -0.139324 6.72418e-22)
(0.602502 0.351721 4.62987e-21)
(0.88274 -0.37438 -2.02233e-21)
(0.546432 0.11608 -1.86095e-22)
(0.380887 0.233435 4.0083e-21)
(0.331733 0.202489 -1.80737e-21)
(0.28373 0.00761764 -1.3428e-21)
(0.97766 0.234963 4.01008e-21)
(1.28278 -0.211566 9.05231e-22)
(0.557493 -0.267948 -4.08226e-21)
(0.418705 0.09426 -1.03183e-21)
(1.17868 0.329006 1.82607e-21)
(1.29969 -0.118125 -1.07607e-22)
(0.680086 -0.200792 -6.09192e-22)
(1.25376 -0.0690824 -3.95775e-21)
(0.504589 0.111036 -1.47416e-22)
(0.0421314 0.000250777 -6.64441e-22)
(0.0418664 4.17922e-05 -1.52788e-21)
(0.0430555 0.000124443 2.28445e-21)
(0.0156499 0.000551728 3.23537e-21)
(0.214555 0.0800027 7.86513e-23)
(0.427651 0.24707 -2.32067e-21)
(0.58483 0.267776 -3.84182e-22)
(0.662244 0.370274 -5.76258e-21)
(0.4854 0.0122937 -4.00463e-21)
(0.0598566 -0.0264192 -3.178e-21)
(0.276879 -0.0212709 5.22677e-21)
(0.780072 0.0773105 -2.94893e-21)
(1.22668 -0.269789 -3.71399e-21)
(0.887612 0.217335 -1.53124e-21)
(0.953723 0.229709 4.79894e-22)
(0.291356 0.105281 4.9485e-23)
(0.941195 0.282037 1.04461e-21)
(0.0449947 -0.00471028 8.1263e-22)
(0.218004 -0.0289901 5.06293e-21)
(1.15852 -0.277526 1.37696e-21)
(0.456387 0.169333 3.09661e-23)
(0.37432 0.0517083 1.10066e-21)
(0.829748 -0.0899134 5.07609e-24)
(0.182537 -0.106567 -8.79014e-22)
(0.635729 0.347977 2.74054e-22)
(0.993871 -0.176202 1.35488e-22)
(0.978539 -0.142359 -6.4979e-23)
(1.28648 -0.135526 -1.33887e-22)
(1.03216 0.0812439 6.3832e-24)
(0.030266 -9.09364e-05 -6.16979e-24)
(0.924029 -0.0868921 -4.65771e-22)
(1.29091 -0.183065 -2.99507e-21)
(0.934015 -0.226798 1.01853e-21)
(0.479268 -0.27348 -4.004e-21)
(0.917929 -0.0180483 -4.21818e-23)
(0.378495 -0.239188 -1.24574e-22)
(0.263517 0.161723 1.01844e-21)
(0.0284379 -0.000247542 3.00862e-21)
(1.33213 0.168717 5.53467e-22)
(0.121547 -0.04447 1.58093e-21)
(0.296238 0.14408 -1.37744e-21)
(0.0329552 -0.00566448 -1.08355e-20)
(0.0354051 -0.0194894 2.89604e-21)
(0.235684 -0.0206852 -3.81425e-21)
(0.804361 -0.112351 -5.96768e-21)
(0.965312 -0.139669 5.50826e-21)
(0.555816 0.337868 -3.1184e-21)
(0.262064 -0.140589 -2.74292e-21)
(0.33529 -0.185659 3.06782e-21)
(1.34371 -0.0638219 2.72043e-21)
(0.126706 -0.0739195 8.25341e-23)
(1.01126 -0.352762 8.36665e-22)
(0.254996 0.07108 -1.81358e-21)
(1.02995 -0.135094 1.73021e-21)
(0.0384023 0.000649988 7.50431e-22)
(1.09184 0.0887648 2.14629e-21)
(0.856541 0.20697 2.55356e-21)
(0.0638023 -0.0371606 2.44151e-21)
(0.239383 0.146082 4.36246e-21)
(0.923952 0.219326 -1.85162e-21)
(0.411862 0.119366 1.08169e-21)
(1.01373 0.240548 -5.20267e-22)
(0.143878 0.0813166 2.16252e-23)
(0.0222207 0.000163857 1.80045e-21)
(0.840304 0.352144 8.29175e-21)
(0.349201 -0.156607 -2.68353e-21)
(1.27613 0.111832 -1.80152e-21)
(0.621037 -0.323091 -6.6461e-22)
(0.10435 -0.0401268 -3.13421e-21)
(0.168942 -0.0613367 -2.15158e-21)
(0.714469 0.365799 2.40436e-21)
(1.1703 -0.260747 -1.35876e-21)
(0.0340164 -1.22141e-05 4.21413e-21)
(0.0334828 -6.88732e-06 -7.68396e-22)
(0.033498 5.29855e-05 9.87295e-21)
(0.0336827 -5.93878e-06 2.18344e-22)
(0.719039 -0.142119 -1.64199e-21)
(0.685361 0.0135273 3.78685e-21)
(1.34536 0.0980668 1.36569e-22)
(1.06879 0.249091 -8.29142e-22)
(0.801588 -0.154614 5.03663e-21)
(0.190644 -0.0401454 -4.39004e-21)
(1.01067 -0.356671 -3.7493e-21)
(1.3292 0.0646596 8.10007e-22)
(0.840101 -0.17746 2.91053e-22)
(0.292743 -0.161463 -3.1585e-22)
(0.295378 0.0797785 1.84053e-21)
(1.16466 -0.314505 4.73306e-21)
(0.0290719 -0.000163857 2.19532e-21)
(0.265602 0.151 1.11972e-21)
(0.495439 0.270516 -1.87244e-21)
(0.0716721 0.0353305 -7.73973e-23)
(0.0149532 -9.24477e-05 -2.48017e-22)
(0.564566 -0.229487 1.27398e-21)
(0.200321 0.114152 5.21155e-22)
(0.284342 0.0619431 -9.67981e-22)
(0.0283779 -0.000317562 1.03209e-21)
(0.531335 0.192731 9.13589e-23)
(0.987565 0.230891 -1.66089e-24)
(0.915138 -0.0463222 6.17682e-22)
(0.877884 0.160393 -6.72678e-22)
(0.655272 0.356842 -4.69792e-21)
(0.403449 0.234196 2.38181e-21)
(0.0466517 -0.0257113 -4.03152e-21)
(0.156795 0.0898042 3.4548e-21)
(1.29727 -0.0384085 2.69393e-21)
(0.459133 -0.241765 1.98222e-21)
(0.231959 0.106006 -3.35677e-22)
(0.668542 0.11775 -2.42863e-22)
(0.624265 0.357482 -3.66499e-21)
(1.17328 0.343594 -1.34301e-21)
(0.0155318 -0.00715705 -9.21986e-23)
(0.105877 0.0629387 2.86036e-22)
(0.589148 0.126976 -9.73171e-22)
(0.992495 0.256297 1.13261e-21)
(0.272202 0.0889186 1.36552e-22)
(0.175213 0.0671202 2.11263e-22)
(0.254445 0.0944332 -7.14791e-23)
(0.475248 0.286446 3.50812e-21)
(0.180291 0.10453 1.42029e-21)
(0.330962 0.162266 -5.54026e-22)
(0.223272 -0.00788914 8.39555e-22)
(1.20424 0.209206 6.21331e-22)
(0.889774 -0.00545614 -1.63991e-21)
(0.302608 0.136846 -9.38816e-22)
(0.0496754 5.90698e-05 5.91949e-21)
(0.802085 -0.367413 -2.10323e-21)
(1.24462 -0.178869 1.80716e-21)
(0.953305 0.029597 3.67843e-21)
(1.33782 -0.0458824 1.03535e-22)
(0.129623 0.0609862 7.66725e-22)
(0.734261 0.368385 -1.56852e-21)
(0.689606 -0.0241396 -5.31418e-22)
(1.13367 0.34108 7.65319e-23)
(0.270542 0.146378 -3.99639e-21)
(0.303322 -0.158579 4.10037e-22)
(0.449266 0.201793 7.80852e-22)
(1.04498 0.240464 1.18567e-21)
(1.09224 0.284421 -4.5864e-22)
(0.222105 0.109413 -1.31161e-22)
(1.0367 -0.242657 2.82953e-21)
(0.127181 0.0713039 -3.0062e-21)
(0.755187 0.0602489 2.50137e-21)
(0.937418 -0.0978296 -1.64663e-21)
(0.0358934 -4.5668e-05 -3.27747e-24)
(0.841377 -0.159414 -3.1008e-22)
(1.06951 -0.172151 1.09501e-21)
(0.50237 -0.256954 2.68597e-21)
(0.476446 0.278775 -6.77075e-22)
(0.200609 -0.0513868 -2.67931e-22)
(0.316253 0.175298 3.74654e-21)
(0.97768 0.2279 1.46567e-21)
(0.329396 0.00746942 4.39799e-21)
(0.526486 -0.217553 -1.04872e-21)
(0.384384 0.107678 1.51668e-25)
(1.08956 0.218884 1.42227e-21)
(0.422908 0.159737 -2.1025e-23)
(0.120584 0.0690902 5.39244e-21)
(0.83764 0.239242 -6.65934e-22)
(0.120358 0.0605462 8.37813e-22)
(0.378922 0.21891 3.16639e-21)
(0.919824 -0.242114 1.84186e-21)
(0.963884 -0.059243 -4.9704e-22)
(0.287264 0.138532 -7.85596e-22)
(1.06375 0.0786701 -3.37012e-21)
(1.03468 0.319938 -4.1294e-23)
(0.984118 0.312496 2.49594e-24)
(0.224919 0.130402 1.19922e-21)
(0.0529813 -0.0576979 2.33608e-22)
(0.762461 0.374904 -5.19655e-21)
(0.569111 0.335524 6.70004e-21)
(0.0290385 -0.000140364 -6.45142e-22)
(0.77156 -0.0693809 3.57054e-22)
(0.848611 -0.31105 -3.35276e-21)
(1.21191 -0.197681 1.87011e-21)
(0.540117 0.319506 1.76804e-21)
(0.149496 -0.0860879 1.23333e-21)
(0.495475 0.18384 -9.07698e-23)
(1.01405 0.313013 1.04207e-22)
(0.0771586 -0.0267369 -3.33461e-21)
(0.155182 -0.0339856 1.991e-21)
(0.643345 0.00572128 -1.93724e-21)
(0.0254185 -0.000862242 -6.69177e-21)
(0.727809 -0.188805 -2.77226e-21)
(0.159452 -0.0473044 1.29799e-21)
(0.71789 0.288894 4.79635e-21)
(0.41166 0.227864 2.3257e-21)
(0.703845 0.295912 1.69677e-21)
(0.323701 -0.180769 -1.98195e-21)
(0.888494 0.30579 -1.41278e-22)
(0.143667 0.144587 -2.82263e-23)
(0.347411 0.0132055 3.37586e-21)
(0.914583 -0.0555169 3.84689e-22)
(1.0493 -0.104946 -1.8419e-21)
(0.293047 0.194748 -3.61351e-21)
(0.155985 0.0642217 7.06461e-23)
(0.0821178 -0.0388818 6.4348e-22)
(0.812299 0.390638 -2.76676e-22)
(1.33342 0.156807 -1.11496e-22)
(0.516482 0.2267 -4.07141e-22)
(1.09782 0.247828 -6.02205e-22)
(0.511904 0.29972 -3.51066e-22)
(0.0486557 0.000213894 8.1426e-21)
(0.0484504 -0.000257092 -6.08107e-21)
(0.946691 0.299115 1.51704e-21)
(1.12367 0.0862436 -6.90319e-22)
(0.0869307 -0.0514815 2.14928e-21)
(0.0244524 -0.0117978 -5.71135e-22)
(0.236832 0.128648 -1.2319e-21)
(0.188136 -0.012798 5.8331e-22)
(0.322717 -0.130147 -4.90366e-21)
(0.546408 -0.144534 9.36941e-22)
(0.30532 -0.162102 2.22077e-21)
(1.13974 0.246775 -6.44719e-22)
(0.0723918 -0.0241074 -2.04109e-21)
(1.1025 0.332786 -1.9686e-21)
(0.710351 -0.104942 -7.31759e-21)
(1.18846 0.215346 2.19414e-22)
(0.332497 0.119939 4.63399e-23)
(0.0238349 0.000151539 -1.10591e-21)
(0.0949742 -0.0451302 -3.0481e-21)
(0.940488 -0.122352 9.88914e-22)
(0.115077 -0.0898345 -1.86766e-21)
(0.142481 0.0786344 1.75591e-21)
(0.0326963 0.000167677 2.76492e-21)
(0.032097 -9.69147e-05 -1.33606e-21)
(0.0325636 5.52309e-05 2.89345e-22)
(1.19948 -0.207776 -2.56939e-21)
(1.33326 -0.0578329 -1.32517e-21)
(0.801364 0.392735 1.90172e-21)
(0.0343115 -5.32746e-05 1.86762e-21)
(0.0339982 -4.70629e-05 5.65176e-23)
(0.828051 -0.0208521 4.40399e-23)
(0.0287163 -6.79828e-05 -5.41885e-21)
(0.0278735 0.000105656 3.39196e-21)
(1.12383 -0.33483 2.92392e-21)
(0.223255 0.0102586 2.02098e-21)
(0.0303285 -0.000143402 -4.76455e-21)
(0.0296252 6.06396e-05 8.10834e-21)
(0.0299902 -0.000151288 4.54775e-22)
(0.100941 -0.0503837 -3.426e-21)
(0.0312083 7.21537e-05 5.21741e-21)
(0.0308349 0.000178983 -7.66041e-22)
(0.0311508 0.000143123 -7.61714e-22)
(0.466596 0.255165 5.89653e-22)
(0.451801 0.261717 4.26704e-22)
(0.049929 -0.00371301 -3.65455e-21)
(0.184615 0.159037 7.86927e-22)
(0.0288608 -0.000195533 9.10346e-21)
(0.396285 0.211325 3.50757e-21)
(0.453752 0.237763 -2.72725e-21)
(0.753355 -0.139795 2.43176e-21)
(1.09057 -0.213181 -4.23794e-22)
(0.590459 -0.207589 1.06374e-23)
(1.15704 0.201357 -1.36387e-22)
(0.113837 0.0650459 -5.31918e-22)
(0.319154 0.107442 4.81181e-22)
(0.33598 0.182614 1.39228e-21)
(0.963357 -0.0567984 -5.28254e-23)
(1.05111 0.230983 -9.68113e-22)
(0.92001 0.177065 1.83163e-21)
(0.20189 0.110141 -3.07996e-21)
(0.179767 -0.062033 -1.53203e-22)
(0.352688 0.265 -5.75206e-22)
(0.999073 -0.179294 2.14673e-21)
(1.06219 0.319179 -1.43881e-22)
(0.304496 -0.117316 7.00455e-22)
(1.19535 -0.20424 -6.38494e-22)
(0.546408 0.228962 3.83043e-22)
(0.923305 -0.124846 -4.09646e-21)
(0.976108 -0.160205 -4.7915e-21)
(0.134555 0.078399 1.72832e-21)
(0.207841 -0.0173131 -2.72832e-21)
(0.988899 0.292674 1.44272e-21)
(0.266012 0.122385 5.53736e-22)
(0.0403671 0.000538562 -4.10472e-21)
(0.49869 0.241468 -5.90916e-22)
(0.194065 0.0909263 -8.21259e-22)
(0.248415 -0.112814 -2.86714e-21)
(0.784126 0.379775 3.09907e-21)
(0.890326 0.331888 -7.86167e-23)
(0.206771 0.119307 9.00435e-22)
(0.376107 -0.221658 3.05981e-21)
(0.0961155 0.0578636 -1.15239e-21)
(0.140591 -0.0673587 -4.03452e-22)
(0.170311 0.0969624 -2.41587e-22)
(0.0780188 -0.0479342 -4.47759e-22)
(0.878957 -0.109821 2.1323e-22)
(0.158258 0.0908682 -2.72394e-21)
(0.913499 0.365406 -5.47436e-22)
(0.0433493 -5.50721e-05 -8.72546e-22)
(1.14932 -0.22848 -9.02247e-22)
(0.133449 -0.0623042 1.64755e-21)
(0.975627 -0.149021 -2.75623e-22)
(0.282426 -0.157213 -1.51804e-21)
(0.137456 0.0118284 3.21055e-21)
(0.872328 -0.155795 -2.40625e-21)
(0.757839 -0.174654 7.12449e-22)
(0.698215 -0.163198 -8.26596e-22)
(0.626288 0.350757 -1.37193e-21)
(0.510538 0.26333 -1.77647e-21)
(0.437937 0.214902 1.11206e-22)
(0.0704731 -0.0399265 8.02303e-22)
(1.30085 -0.0835267 -8.68216e-22)
(1.32315 0.0392866 1.78273e-21)
(0.124353 -0.0542221 5.43333e-21)
(0.156385 -0.0586925 7.17936e-22)
(0.614146 0.348541 1.89206e-21)
(0.650719 -0.318676 2.57397e-22)
(0.957589 0.373086 -3.94095e-23)
(0.172735 -0.0460032 3.46992e-21)
(0.488684 0.258788 -3.59373e-21)
(1.24645 -0.21873 7.75019e-22)
(0.901812 -0.175011 1.51713e-22)
(0.707729 0.358361 -1.91427e-21)
(0.231508 0.133193 1.69276e-21)
(0.203126 -0.0379324 1.01473e-21)
(1.05299 -0.356499 -3.17401e-22)
(1.0518 -0.294872 -1.10699e-21)
(1.06537 -0.330405 8.40321e-22)
(0.600774 -0.229247 -1.78339e-21)
(0.090175 -0.0498936 1.75965e-21)
(0.729066 0.340452 9.42148e-22)
(0.417125 0.190813 6.38279e-22)
(0.0251859 0.000134671 -2.1359e-22)
(0.0443061 -0.027172 2.7425e-21)
(0.192331 0.0957983 3.88501e-22)
(0.326006 0.156916 1.05045e-21)
(1.34554 0.0725379 1.59887e-21)
(1.27355 -0.205617 -1.26524e-21)
(0.992671 0.363098 -3.60795e-21)
(0.484135 0.216286 -5.09368e-23)
(0.932409 0.371179 -3.72416e-23)
(0.88692 0.362168 5.20727e-22)
(1.27152 0.244831 3.02437e-22)
(1.34285 0.123146 -1.37607e-21)
(0.257172 0.12567 6.62858e-22)
(0.962289 -0.0942729 3.15406e-22)
(0.361565 0.202976 2.55273e-21)
(1.09021 -0.128939 3.31318e-23)
(0.85095 0.268734 3.02104e-21)
(0.76394 -0.357926 3.79727e-23)
(0.569104 0.20544 -3.86481e-23)
(0.837755 0.39346 6.4626e-21)
(0.891501 0.17915 9.49074e-22)
(0.0202746 0.00150372 -4.69647e-21)
(0.214978 -0.15431 -3.32396e-22)
(0.539223 0.326111 -3.40773e-21)
(0.610704 0.34058 1.04986e-22)
(0.612507 -0.0464004 -5.53751e-22)
(0.486405 -0.111066 -5.16579e-21)
(1.14303 0.222937 -8.50816e-22)
(0.570558 -0.078054 -4.27776e-21)
(1.32705 -0.0582747 -5.99529e-22)
(0.669518 -0.211937 -1.712e-21)
(0.753439 0.3749 -1.64577e-21)
(0.922606 0.309097 4.42089e-23)
(0.123355 -0.0664957 2.66996e-21)
(0.622228 -0.0557852 4.6022e-22)
(0.014896 -0.000103867 -3.66018e-21)
(0.974425 0.377468 -2.8741e-22)
(0.284138 -0.15948 -1.60802e-21)
(0.353472 0.16687 -3.47497e-22)
(0.11184 0.0605412 -1.72031e-21)
(0.12783 0.0749757 7.17288e-22)
(0.750633 -0.178847 2.26681e-22)
(0.159892 0.0753657 -7.10045e-22)
(0.908245 0.396921 -3.3668e-22)
(0.861587 -0.274784 1.78161e-21)
(0.854885 -0.280318 -1.00878e-21)
(0.829428 -0.113462 -2.98237e-22)
(0.0262936 -3.48346e-05 2.63092e-21)
(0.339357 0.152717 9.53391e-22)
(0.92003 -0.0504844 -4.39398e-22)
(0.97213 -0.149988 -4.73414e-22)
(0.121816 -0.0520533 -3.30798e-21)
(1.00079 -0.143086 -7.27929e-21)
(0.544901 0.327571 -7.46601e-21)
(1.06249 -0.137602 2.20843e-21)
(1.13074 0.363593 1.04267e-21)
(0.440657 0.242702 1.89182e-23)
(0.0417369 -0.00115541 2.33494e-22)
(0.948276 -0.229556 -1.81209e-21)
(0.071637 -0.0397271 -1.92186e-22)
(0.947843 -0.0450763 -1.78387e-21)
(0.880276 0.153217 -4.78145e-21)
(1.15913 -0.305528 -2.00794e-21)
(0.935676 -0.14607 5.5584e-22)
(0.27549 -0.140622 -1.5799e-21)
(0.175804 0.0960975 -2.82656e-21)
(0.928925 -0.0888987 -7.62552e-23)
(0.448623 -0.121576 -3.05793e-21)
(0.0446591 5.95109e-05 1.2831e-20)
(0.0442322 3.69324e-05 -1.34591e-21)
(0.270175 0.0415952 1.69677e-22)
(0.998104 0.378292 -1.46468e-22)
(0.534709 0.330526 5.40634e-21)
(0.956614 -0.0550373 -2.99955e-21)
(0.322352 0.154272 5.23289e-22)
(0.0932154 -0.0537965 7.74124e-22)
(0.0333242 -5.73887e-06 -5.784e-21)
(0.0332493 2.13445e-05 -9.12573e-23)
(0.524675 0.289377 1.83596e-22)
(0.285512 0.120984 -4.73882e-21)
(0.416008 -0.127695 7.69297e-21)
(0.960518 -0.180092 3.47515e-21)
(0.0269965 0.000240883 1.46568e-21)
(0.0270662 -5.14811e-05 4.08522e-23)
(0.0286303 0.000182312 -1.40083e-22)
(0.0286503 -8.30513e-05 5.18608e-23)
(0.0297703 0.000216511 4.88394e-22)
(0.0297682 -0.000218096 -7.60915e-23)
(0.42777 -0.264354 1.57038e-21)
(0.0306695 -2.92873e-05 2.01935e-21)
(0.03073 1.1462e-05 -7.28386e-23)
(0.886773 0.396889 -2.66515e-21)
(0.449715 -0.273433 6.41189e-21)
(0.0317388 -3.56566e-05 2.08124e-21)
(0.0319153 -3.24931e-05 2.71571e-22)
(0.0321979 -2.68908e-05 2.26038e-21)
(0.0323088 7.45521e-05 -5.25064e-22)
(1.32316 0.19032 4.73163e-22)
(0.470608 0.230729 1.5592e-21)
(1.31485 -0.0395011 2.86412e-21)
(0.0283543 -0.00019474 -9.9191e-22)
(0.185707 0.179438 7.27792e-21)
(1.01904 0.323474 2.15962e-21)
(0.78867 0.38059 -6.88748e-21)
(0.219611 0.0306696 1.42803e-21)
(0.818889 0.113873 5.25317e-21)
(0.864889 -0.0096254 -8.57838e-22)
(0.337965 -0.188855 1.1546e-21)
(0.432683 -0.125125 3.50399e-21)
(0.628096 0.246419 3.00876e-21)
(0.251223 0.143214 1.84594e-21)
(0.368695 0.199023 -3.00996e-21)
(0.426012 0.225749 -2.58232e-22)
(0.518628 0.311836 -2.2772e-21)
(0.183524 0.0578594 1.21064e-21)
(0.443599 0.228915 -1.59054e-21)
(0.0862855 -0.0496099 -1.2707e-21)
(1.01056 0.206232 1.01531e-21)
(0.706766 -0.196931 1.71277e-21)
(0.293801 0.165064 9.50127e-22)
(0.0270451 6.53673e-05 -1.30403e-21)
(0.0181082 0.000168716 2.70943e-21)
(1.2846 -0.0962761 7.39084e-24)
(0.844604 -0.11642 2.54866e-21)
(0.153403 0.076314 -9.2856e-22)
(0.219719 -0.0520729 -1.03001e-21)
(0.905082 -0.0920362 5.42592e-21)
(0.127142 -0.0571872 7.02959e-21)
(0.314237 -0.206305 2.8371e-21)
(1.16215 -0.300015 4.02501e-21)
(0.310484 -0.211292 -1.34893e-21)
(0.170166 0.0614164 1.20163e-22)
(0.311633 -0.0153135 -1.38867e-22)
(0.0427392 3.44579e-05 -5.28307e-21)
(0.120531 -0.0759366 1.60998e-21)
(0.483056 0.251812 2.90576e-21)
(0.311306 0.172087 3.99682e-23)
(0.106667 -0.0548112 7.11049e-22)
(1.10712 -0.284413 -1.72462e-21)
(1.15019 0.356387 1.39789e-21)
(0.133789 0.0694818 -1.49896e-21)
(1.34554 -0.0486489 -2.21793e-21)
(0.686679 -0.204105 4.06024e-21)
(0.898645 -0.0809835 2.44084e-21)
(0.41335 -0.133703 1.57639e-21)
(0.389423 0.151276 -5.87903e-21)
(0.214376 -0.0410477 -7.7493e-22)
(1.18413 0.333633 7.34927e-22)
(0.993974 0.173803 1.80033e-21)
(0.754629 0.349764 -5.99971e-22)
(0.842784 -0.171192 -2.80756e-22)
(0.117097 -0.0660427 -1.36689e-21)
(0.171732 0.0890066 2.58385e-21)
(0.313754 -0.152725 -4.90553e-21)
(1.12188 0.282062 -8.91584e-22)
(0.816514 0.361579 9.08676e-22)
(0.365358 -0.164556 -3.60454e-21)
(0.326534 0.0678017 5.45062e-22)
(0.0147993 -4.60024e-05 2.09694e-21)
(0.268611 0.152484 2.08282e-22)
(0.838739 0.141828 -3.68601e-22)
(0.467708 -0.117724 -1.97898e-21)
(0.278091 0.164212 3.79174e-21)
(0.181867 0.105754 2.27065e-21)
(0.156341 -0.0557015 -1.23952e-22)
(1.0988 -0.164056 -9.01151e-22)
(0.461879 0.246406 -3.18999e-22)
(0.385369 -0.246371 3.41546e-21)
(0.499414 0.275172 1.82955e-22)
(0.310839 -0.210237 1.29111e-21)
(0.0787654 0.0436327 3.46142e-21)
(0.136305 -0.0646883 -4.60964e-21)
(0.747757 0.0233202 -6.31697e-21)
(0.550595 0.240539 2.95821e-22)
(0.562223 0.170933 6.89696e-23)
(0.871331 0.397362 -1.72124e-22)
(0.809382 -0.298386 -1.32777e-21)
(0.125604 -0.071623 -8.36177e-22)
(0.379431 -0.146511 -1.15624e-22)
(0.777356 -0.0737228 1.48411e-21)
(0.381871 -0.141302 2.41864e-22)
(0.826823 -0.293036 1.79745e-22)
(1.14871 -0.284616 -1.71818e-21)
(0.362911 -0.168656 1.12547e-21)
(0.55968 -0.0707289 2.96597e-21)
(0.890362 0.164839 -1.56419e-21)
(0.374886 -0.150511 -9.26528e-22)
(1.32485 -0.0281065 -1.38002e-21)
(0.947822 -0.134016 -5.61859e-22)
(0.83956 -0.159813 -2.62981e-22)
(0.15223 0.0866306 -7.57385e-22)
(0.497499 0.296674 -9.66536e-22)
(0.370729 -0.153626 -2.01384e-21)
(0.546219 -0.0872611 -3.81878e-21)
(0.937936 0.404306 1.28388e-22)
(1.2782 -0.158395 -7.30274e-22)
(0.806874 0.101114 7.80102e-22)
(0.368298 -0.157031 -2.71861e-22)
(0.4768 -0.228175 4.01478e-21)
(0.533352 0.0863915 1.41086e-21)
(0.475921 0.273968 -1.71002e-21)
(0.123585 0.0693625 1.55445e-21)
(0.613238 0.251655 -5.19469e-23)
(0.6511 -0.218424 -3.35329e-21)
(0.144298 -0.0710535 4.58481e-21)
(0.503603 -0.103649 -1.86719e-21)
(0.906862 0.402542 -1.44085e-21)
(0.788793 0.0723181 1.4135e-21)
(0.627544 0.261565 -3.42927e-21)
(0.714297 0.197002 -8.71785e-22)
(0.494678 0.269148 -1.8362e-22)
(0.465899 -0.201274 1.14516e-21)
(0.842677 -0.0501621 1.15083e-22)
(0.368959 0.130207 -6.76209e-23)
(0.233056 0.126423 2.66538e-21)
(0.548351 0.233279 -7.35013e-22)
(1.00471 -0.342217 3.40277e-21)
(1.02614 -0.232673 5.53211e-22)
(0.78201 0.356203 7.55146e-22)
(0.870356 0.397664 4.49055e-22)
(0.528974 0.255151 1.82856e-21)
(1.0045 -0.153888 -1.31615e-21)
(0.0638502 -0.0380035 -2.39322e-21)
(0.310532 0.0983913 -2.21233e-22)
(0.66402 -0.16517 7.19603e-21)
(0.9389 -0.0523312 -1.43653e-22)
(1.09652 -0.151869 1.03841e-21)
(0.302517 0.162529 2.55972e-21)
(0.996589 0.298029 -3.39364e-22)
(1.33977 0.0611245 -1.74216e-21)
(1.14894 0.0969381 -1.22546e-21)
(1.2611 0.27646 -3.78529e-23)
(0.0954592 0.115649 1.17417e-20)
(0.967737 0.164244 1.37762e-21)
(1.34009 0.112516 -3.55024e-23)
(0.102378 -0.0398932 -5.0854e-22)
(0.589082 0.350289 3.91084e-21)
(0.132446 0.0575213 -2.40831e-22)
(1.35403 -0.00486277 -1.26575e-22)
(0.134071 -0.0510532 1.2547e-21)
(1.32435 0.183009 -2.64699e-22)
(0.984634 0.245833 5.87352e-22)
(0.539785 0.0497716 2.48278e-21)
(0.0426528 -0.00233863 -6.55756e-21)
(0.413023 0.149316 -3.87224e-23)
(1.33324 -0.0692053 8.58913e-22)
(0.887592 -0.086141 6.83096e-22)
(0.581951 0.0660078 5.68257e-22)
(0.182408 0.0896618 2.13588e-22)
(1.12876 0.223451 1.72382e-21)
(0.10804 0.0627514 -2.99632e-21)
(0.0174457 1.19013e-05 -1.41795e-24)
(0.363777 -0.166543 5.0305e-21)
(0.191588 0.0882989 9.26842e-22)
(0.792957 0.0700901 -3.67036e-21)
(0.47989 -0.244824 3.08258e-22)
(0.37953 -0.0357438 -1.06478e-21)
(0.11853 -0.0637399 7.44667e-22)
(0.984965 -0.249997 1.93422e-21)
(0.484846 -0.237856 -5.57865e-21)
(0.0494766 1.07612e-05 5.29651e-22)
(0.0493505 -1.996e-05 1.18725e-20)
(0.0493205 3.31226e-05 -3.30303e-22)
(0.0493342 1.417e-05 -5.54467e-21)
(0.049467 8.66142e-06 6.71491e-21)
(0.0491915 -6.07159e-05 4.82442e-21)
(0.0493396 1.46952e-05 -3.47049e-22)
(0.049293 -3.05199e-06 -9.11712e-21)
(0.0486677 -0.000218591 -9.0708e-21)
(0.0493505 -2.8032e-05 -1.20626e-21)
(0.0492857 4.32155e-05 2.85534e-21)
(0.387121 -0.234426 -3.78541e-21)
(0.940085 -0.0508226 -1.31847e-22)
(0.473768 -0.103821 2.58079e-21)
(0.947562 -0.274995 1.26083e-21)
(0.154618 -0.0890763 3.64102e-21)
(0.164324 0.094492 2.68902e-21)
(0.133207 -0.0767957 1.18988e-21)
(0.0474378 0.0281104 1.02842e-21)
(0.122959 -0.0706702 -8.27155e-22)
(0.0486228 -8.55065e-05 9.46906e-21)
(0.0487108 0.000110832 2.18511e-21)
(1.12819 0.206428 1.05543e-21)
(0.864826 -0.0577581 1.12543e-21)
(0.964338 0.234357 2.10178e-21)
(1.21955 -0.198459 2.61008e-21)
(1.14719 0.357668 -1.46332e-23)
(0.649895 -0.246653 5.60212e-24)
(1.23449 -0.209422 -1.25963e-22)
(0.860118 -0.205694 -3.11825e-24)
(0.127753 -0.0699598 -1.29858e-21)
(1.23532 0.295918 9.05438e-23)
(0.248852 0.145307 1.24578e-21)
(0.202542 -0.116069 -1.54959e-21)
(0.988152 0.39974 -1.45641e-21)
(0.167926 -0.0970053 1.72585e-21)
(0.597665 -0.176439 8.2691e-23)
(0.497898 0.0330492 1.34281e-21)
(0.192468 0.110568 -6.2445e-21)
(0.625161 0.0829111 3.42586e-21)
(0.884884 0.235333 -1.98254e-21)
(0.934456 0.402447 -1.07712e-21)
(1.35269 -0.0366831 -3.10047e-23)
(0.539377 0.276765 1.55272e-21)
(0.0996736 -0.0583433 1.58752e-21)
(0.377004 -0.0185786 2.13175e-22)
(0.804783 -0.267314 -2.59331e-21)
(0.237793 -0.13574 -1.46877e-21)
(0.0367223 0.000144781 1.89737e-21)
(0.644401 0.358752 1.98233e-22)
(0.37654 -0.209043 1.80701e-21)
(0.192621 0.12065 7.16824e-21)
(0.415225 -0.228151 -2.08439e-21)
(0.110507 0.0637866 2.54803e-21)
(0.61474 0.255919 -7.27007e-22)
(0.891548 -0.30457 9.83648e-23)
(1.32137 -0.133272 7.67037e-22)
(0.66385 -0.24217 3.6687e-21)
(1.16874 0.121315 1.35849e-21)
(0.0148795 0.000112068 1.83568e-21)
(0.885944 0.400795 2.56104e-21)
(0.718103 -0.180286 -7.21306e-22)
(0.259179 -0.00870937 -1.55011e-23)
(0.278593 -0.0206995 6.56795e-23)
(0.840637 0.222145 2.54537e-21)
(1.00521 -0.235747 -2.36678e-21)
(0.517449 0.273083 -9.26512e-22)
(0.951385 -0.190026 5.71239e-21)
(0.316507 0.134752 2.40121e-22)
(0.889485 0.227768 2.25949e-21)
(0.647666 -0.0414464 3.63268e-21)
(0.136939 0.0796813 -5.33532e-21)
(0.51835 -0.261641 -3.68849e-21)
(0.101004 0.0667484 1.23795e-21)
(0.150797 0.0882162 2.03792e-21)
(0.454263 -0.246301 7.86789e-22)
(1.03022 0.24733 5.23025e-21)
(0.843441 0.134419 1.12686e-22)
(1.24849 0.287588 4.01187e-22)
(0.361118 -0.170908 -4.05277e-21)
(0.688463 -0.199143 2.13502e-22)
(0.918249 -0.315712 8.34618e-22)
(0.772071 0.378108 -2.82595e-21)
(0.435818 -0.116046 -6.28358e-22)
(1.11958 -0.217078 2.18002e-21)
(1.05495 -0.286989 4.98262e-22)
(0.597806 0.176778 2.30666e-22)
(0.321577 -0.170131 3.69985e-21)
(0.626417 -0.33083 -8.65368e-22)
(1.19027 0.322648 2.55746e-22)
(0.562441 0.341684 -6.02742e-21)
(0.107267 -0.0627646 -4.38328e-22)
(1.29378 -0.192114 2.84349e-21)
(0.92761 -0.285961 2.4672e-21)
(0.965537 -0.262584 -3.39123e-21)
(1.13007 0.272205 6.00862e-22)
(0.657374 -0.334342 -1.71988e-22)
(0.372134 0.164415 -7.107e-22)
(0.815183 0.391105 -1.20815e-21)
(1.25895 -0.21722 -1.54291e-21)
(0.619399 -0.194333 2.96372e-21)
(0.629916 0.130889 -6.40802e-22)
(0.187165 -0.108744 2.68298e-22)
(0.159011 0.0815029 -3.10087e-22)
(0.349485 -0.218918 -3.54803e-21)
(0.667803 0.101455 -1.6454e-21)
(0.730105 -0.356147 2.83115e-21)
(0.411441 0.183424 -4.97177e-22)
(0.605092 0.213211 4.00091e-23)
(0.31884 -0.160501 -6.03941e-21)
(0.165192 -0.0968243 8.27267e-22)
(1.1695 -0.268507 -1.62172e-21)
(0.635623 -0.251204 2.04052e-21)
(0.108014 -0.0655182 -5.1311e-22)
(0.41017 -0.237267 2.97828e-21)
(0.112397 -0.0626085 -1.71019e-21)
(0.201225 -0.136203 -1.03034e-21)
(0.90933 -0.295933 -2.53295e-21)
(0.826941 -0.0122137 -2.88607e-22)
(0.880313 -0.375081 3.25683e-21)
(0.455959 0.0210585 7.41785e-22)
(0.994132 0.169619 -1.08208e-21)
(0.621348 0.0994088 -1.21516e-21)
(1.16257 0.187753 1.98388e-21)
(0.651578 0.352673 1.64793e-21)
(1.26457 -0.224694 -2.90122e-21)
(0.402892 -0.121446 1.45912e-21)
(0.221597 0.126988 2.0905e-21)
(0.408627 -0.234147 1.57655e-22)
(0.0283907 0.000900018 5.4378e-21)
(0.0958452 -0.0550387 1.15292e-21)
(0.630454 0.301495 1.13727e-20)
(1.19302 0.325145 -6.65242e-22)
(0.199413 0.101625 2.50804e-21)
(0.118382 0.0700861 -8.96444e-22)
(0.593947 -0.0678166 1.7638e-22)
(0.321739 -0.174535 2.35626e-21)
(0.629842 0.214407 5.92315e-21)
(0.417234 0.0114848 -6.23236e-22)
(1.2286 -0.230151 -4.89701e-21)
(0.127071 -0.0735681 1.37625e-21)
(0.507284 0.0230768 1.76421e-21)
(0.217219 -0.126594 1.57413e-21)
(0.6878 -0.344412 -2.02315e-21)
(1.13729 -0.0860518 1.27448e-21)
(0.993941 -0.280436 -1.01922e-21)
(0.0486475 0.000272861 1.98371e-21)
(0.0487973 0.000105454 2.30937e-21)
(1.18491 0.33594 6.52836e-22)
(1.28222 -0.203863 2.26872e-21)
(0.931253 -0.0737437 -2.65646e-21)
(1.32588 0.0799643 3.02887e-21)
(0.120983 -0.068951 2.5923e-21)
(0.943381 -0.234866 -7.1277e-22)
(0.386624 -0.225618 -2.61235e-21)
(0.872979 -0.311306 3.49874e-21)
(0.147934 -0.0747635 -5.44274e-21)
(0.918907 0.404202 1.48049e-21)
(1.01756 0.315723 1.38543e-21)
(0.747535 -0.0949961 1.29306e-21)
(0.0690689 -0.0393323 4.58195e-22)
(0.61077 -0.258255 4.55624e-21)
(0.837149 -0.331369 -1.95032e-21)
(0.460373 -0.277193 3.26307e-21)
(0.43984 0.230883 -6.5964e-21)
(0.774768 -0.167488 -2.32027e-21)
(0.316918 -0.166236 -2.82799e-21)
(0.360243 -0.173449 1.07376e-21)
(0.0148713 -0.000160931 -5.18581e-21)
(0.813069 -0.337591 6.58396e-23)
(1.11865 0.255389 1.0903e-22)
(0.0148886 9.64887e-05 -4.28523e-22)
(0.466383 0.225166 -1.99894e-21)
(0.979315 0.391325 -1.86974e-21)
(0.0223759 0.00405722 8.60097e-22)
(0.597134 0.194948 -4.24325e-22)
(0.520794 0.280754 2.51943e-22)
(0.825949 -0.335072 -1.10914e-21)
(0.363582 0.194077 7.18476e-22)
(0.913427 -0.00505918 -1.52712e-21)
(0.294839 0.157956 8.04429e-22)
(0.0864674 -0.0494481 1.42813e-21)
(1.33265 0.159673 6.71894e-22)
(0.130269 -0.0740131 -2.60685e-21)
(0.275006 0.0477694 -8.86076e-22)
(0.11108 -0.064401 -6.85123e-22)
(0.110655 -0.0493742 -4.95574e-21)
(0.0152827 8.68307e-05 8.86446e-22)
(0.139058 -0.0809373 4.19987e-22)
(0.582727 0.250233 3.32446e-22)
(1.12244 -0.14329 5.19988e-22)
(1.22977 0.260301 1.48644e-21)
(0.273401 -0.156085 1.03818e-21)
(0.259721 0.139924 5.42868e-22)
(1.19672 -0.213015 -9.92389e-23)
(0.241659 -0.138644 -1.60166e-21)
(0.550775 0.148667 -2.02468e-21)
(0.806921 -0.342431 2.15681e-22)
(0.754928 -0.360566 1.63451e-21)
(0.120772 -0.0572505 1.64006e-21)
(0.657984 -0.203045 -4.0266e-21)
(0.574254 0.345439 1.71288e-21)
(0.0725428 -0.0431268 3.03564e-21)
(0.329588 0.175722 5.56476e-22)
(0.867085 -0.0531657 4.63984e-22)
(0.449116 0.256367 -5.77517e-21)
(0.128773 -0.0630546 2.72291e-21)
(0.985509 -0.142287 9.91092e-22)
(0.379009 0.00303526 -4.26063e-21)
(0.0252238 -0.000417954 2.89652e-21)
(0.978599 0.257735 -5.27311e-21)
(0.836041 0.387281 -6.89879e-22)
(0.256834 -0.144217 2.27672e-21)
(1.05038 -0.202963 3.93687e-21)
(0.795735 -0.346015 1.85948e-21)
(0.0289329 0.000184249 -7.11569e-21)
(0.978983 -0.241365 4.79825e-21)
(0.558469 0.265831 -4.20942e-22)
(0.324524 -0.173482 -8.62113e-22)
(0.837993 -0.0527013 -6.10629e-23)
(0.360861 0.266312 2.84774e-21)
(0.983105 0.384059 -1.45136e-22)
(1.16294 0.349203 4.78949e-22)
(0.944111 -0.0066071 1.75277e-21)
(0.10816 -0.0625984 -2.60457e-21)
(0.544093 0.284483 1.52318e-21)
(0.0220279 -2.26574e-05 -2.87726e-21)
(0.97815 -0.0346922 -2.99659e-22)
(0.341573 -0.00416372 -1.6654e-22)
(0.783664 -0.348039 -2.38031e-21)
(0.971471 -0.361564 1.22437e-21)
(0.452615 0.264505 2.1575e-21)
(1.1173 0.334877 2.04316e-21)
(0.393514 -0.212688 -1.58836e-21)
(0.652909 -0.335033 1.27036e-21)
(0.182651 -0.131653 1.18765e-21)
(1.12739 -0.299531 9.96351e-22)
(0.97156 0.224072 1.6889e-22)
(0.85918 -0.117293 1.98916e-22)
(0.63378 0.199068 -4.49118e-21)
(0.537013 0.272081 3.27594e-21)
(0.134054 0.00472644 1.57404e-21)
(0.492252 -0.266939 -3.44098e-21)
(0.132112 -0.0727491 -1.31762e-21)
(0.432407 0.180777 -7.77353e-21)
(0.30642 -0.174036 2.23904e-21)
(0.940496 -0.369113 5.32798e-21)
(0.324108 -0.176541 -1.47289e-21)
(0.978179 0.250042 9.07697e-23)
(0.763549 -0.183786 4.55556e-22)
(0.0968723 -0.0310382 -3.24657e-21)
(0.777589 -0.350647 4.02497e-21)
(0.566547 0.287555 -2.41277e-21)
(0.340852 -0.191765 8.41867e-22)
(0.717794 -0.352641 -3.41597e-21)
(0.81624 -0.370268 -9.65284e-22)
(1.17321 -0.291955 -2.42535e-21)
(0.925123 -0.218431 -5.34284e-22)
(0.0447935 7.02585e-05 -1.01769e-20)
(0.0443024 -2.42225e-05 5.59818e-21)
(1.03801 -0.156679 1.50315e-21)
(0.20396 -0.144605 -2.5461e-21)
(0.378235 0.0936411 -3.58735e-22)
(0.967303 -0.116777 7.11851e-22)
(0.904031 0.159651 -2.27042e-21)
(1.19556 0.0367638 6.95536e-22)
(0.830161 -0.260823 3.67742e-21)
(0.113339 -0.061963 -1.87499e-21)
(0.122038 -0.0707188 -1.44374e-22)
(1.2943 -0.172457 -2.44247e-21)
(0.992428 0.341218 -1.14012e-21)
(0.780924 -0.365353 3.82092e-21)
(0.499401 0.289838 -4.23433e-22)
(0.131099 -0.0761406 1.45695e-21)
(0.148516 -0.0930518 -3.02347e-21)
(0.228957 -0.126354 -1.93832e-21)
(0.825077 -0.0933579 4.14758e-22)
(0.900823 0.393267 5.62291e-21)
(1.07986 0.324602 8.3305e-23)
(0.911307 0.397733 -5.51452e-21)
(0.490275 -0.272056 -1.81394e-21)
(0.455156 -0.257051 2.42255e-21)
(1.34402 0.119316 2.47433e-22)
(0.442119 0.0159694 4.64475e-21)
(1.04864 -0.344392 4.69471e-21)
(1.06077 -0.356838 7.35719e-22)
(0.940683 -0.265919 2.22453e-21)
(0.83525 -0.092059 1.78942e-22)
(0.220206 0.118543 -1.32015e-21)
(0.332119 -0.182126 1.21563e-21)
(0.622834 -0.216204 4.04478e-21)
(1.05943 -0.309006 -4.74391e-22)
(1.20077 -0.292112 5.24469e-21)
(0.716053 0.0404113 8.1578e-22)
(1.08445 0.213991 -1.88953e-21)
(0.138376 -0.0760719 -3.32798e-21)
(0.962658 -0.0858716 3.94296e-22)
(0.316047 0.0535952 1.13152e-21)
(0.469111 -0.216808 -3.05306e-21)
(1.18245 0.0802482 -1.59659e-21)
(0.810388 0.310922 -2.92563e-21)
(0.358455 -0.142427 -5.9919e-23)
(1.18042 -0.21829 9.72077e-22)
(0.796947 -0.362794 2.24663e-22)
(0.631143 0.144806 -6.98781e-22)
(1.2057 -0.00928498 -6.51439e-21)
(0.769542 0.0192091 3.35231e-21)
(0.455381 -0.255165 -4.75508e-22)
(0.104876 -0.0568401 2.6519e-21)
(0.931397 -0.358525 7.05517e-22)
(1.14933 -0.277091 4.63466e-21)
(0.0355452 -0.0190969 -1.17482e-22)
(1.28563 -0.0514544 -1.0355e-21)
(0.9466 0.317368 4.29862e-23)
(0.383944 -0.230518 2.53925e-21)
(0.39661 -0.10812 -4.56826e-21)
(0.352137 -0.148851 1.35698e-21)
(0.533101 -0.254764 3.07235e-21)
(0.213748 -0.123894 -7.171e-22)
(0.0982857 -0.0546494 -2.50217e-23)
(1.13067 -0.298136 -6.80856e-22)
(0.744841 -0.35897 -1.40956e-21)
(0.926775 0.33212 -2.42919e-22)
(1.06675 -0.335096 -7.73526e-22)
(0.56115 -0.27677 -1.33107e-21)
(0.215508 0.0221462 2.38769e-21)
(1.14095 -0.284019 2.11361e-21)
(0.492193 -0.264191 5.20026e-21)
(0.347691 -0.159311 5.13948e-21)
(0.607019 -0.325941 -2.76322e-21)
(0.428867 -0.222103 -8.38154e-22)
(0.691893 -0.298243 -8.49146e-22)
(0.565444 -0.275579 -6.01147e-22)
(0.502921 -0.223318 1.27546e-21)
(0.303376 -0.125198 8.67903e-21)
(0.981371 0.306186 -3.36262e-21)
(0.639185 0.137043 -8.60981e-22)
(0.927129 -0.251174 -1.79211e-21)
(1.09624 0.216757 5.01696e-22)
(0.530893 -0.24248 -3.54435e-22)
(1.09179 0.334816 1.02621e-21)
(1.12344 -0.282156 -6.4216e-22)
(0.514774 -0.26327 -2.10409e-21)
(0.0256232 0.000100546 2.54803e-21)
(0.638834 -0.239567 -1.27053e-21)
(0.884103 -0.297892 5.30209e-22)
(0.869967 -0.0525466 -1.27853e-22)
(0.665831 0.366753 -1.9709e-21)
(0.161734 0.0417635 9.87193e-22)
(0.0344073 0.000106405 -6.15273e-22)
(0.528639 -0.0973567 -1.71527e-21)
(0.707994 -0.0132904 -2.46505e-21)
(0.310407 0.191331 -2.19541e-21)
(0.107673 -0.0615728 1.83846e-21)
(1.05524 0.386499 2.05532e-21)
(0.916104 -0.0848946 2.16965e-23)
(0.134917 -0.0764127 4.20719e-23)
(1.16296 0.347727 1.06925e-21)
(0.950922 0.2329 -3.1609e-21)
(0.107825 -0.0378355 4.02161e-21)
(0.346029 -0.163567 2.0394e-21)
(0.068722 -0.0382477 3.26983e-21)
(1.08851 0.327455 1.58203e-21)
(0.850069 -0.363021 4.42644e-21)
(0.33986 0.0918813 -1.22701e-21)
(0.354107 0.117042 -1.75139e-22)
(0.194859 -0.114666 -4.2688e-21)
(0.491337 -0.269901 -1.36256e-21)
(0.170498 0.0761161 2.06581e-22)
(1.3454 -0.0190683 5.70056e-22)
(0.116933 -0.0667302 2.6477e-21)
(0.839564 -0.371043 1.57347e-21)
(0.541296 -0.212333 3.02702e-22)
(0.253772 0.145806 -6.05549e-22)
(0.301957 -0.152152 4.43149e-21)
(0.186283 -0.141304 1.31867e-21)
(0.732012 -0.0695348 -3.52166e-22)
(0.170833 -0.099014 -9.83893e-22)
(0.255836 -0.145537 -2.12352e-22)
(0.24486 -0.141366 5.64826e-21)
(0.611221 -0.248 2.43313e-21)
(1.1577 0.229563 5.65603e-22)
(0.225095 0.121981 -2.35844e-21)
(0.303175 -0.171188 -2.39599e-21)
(0.69536 -0.131936 -1.97406e-21)
(0.945222 -0.171628 6.23387e-22)
(0.83581 0.0585764 -1.09188e-21)
(0.896775 0.357811 4.32312e-21)
(0.972443 -0.357287 2.04811e-21)
(0.0263148 -0.000212961 1.53539e-20)
(0.610895 -0.323726 1.12591e-21)
(0.28531 -0.167101 3.93149e-21)
(1.22173 0.302309 -5.40269e-22)
(1.23711 -0.23981 4.07756e-21)
(0.994444 -0.364668 -1.75772e-21)
(0.925959 -0.0893972 -4.66641e-22)
(1.32307 -0.144673 1.92375e-21)
(0.270543 -0.180302 1.25117e-21)
(1.11549 -0.271163 1.48707e-22)
(1.20651 -0.286001 4.47649e-22)
(0.800865 0.0492926 2.17835e-21)
(0.964857 -0.344841 -1.49529e-21)
(0.670833 0.171591 5.42354e-22)
(1.02967 -0.352961 4.01429e-22)
(0.140078 -0.0822431 4.20563e-22)
(0.933018 -0.146934 -1.37435e-21)
(1.29292 -0.19977 3.38413e-21)
(0.906381 0.286863 4.76134e-22)
(0.548828 0.298539 -1.99769e-21)
(0.111911 -0.0644967 1.91185e-21)
(1.23897 -0.25965 4.20127e-21)
(0.0876405 -0.0513261 6.62301e-22)
(0.864548 -0.117578 8.5464e-23)
(0.0963454 -0.0560052 -9.71477e-22)
(1.19718 0.169825 -3.02755e-21)
(0.155564 -0.0901748 2.07016e-21)
(1.35489 -0.0537096 -1.84428e-21)
(0.18962 -0.109012 1.60589e-21)
(1.20317 0.268361 -5.98456e-22)
(0.73789 -0.0632663 1.64066e-21)
(0.732039 -0.121513 -1.79742e-21)
(0.360315 0.153359 -9.74874e-22)
(0.670552 0.14841 -1.5375e-21)
(0.224704 -0.128315 1.18845e-23)
(1.01185 -0.359429 -3.91107e-21)
(0.142673 -0.0820707 -3.41005e-21)
(0.675224 0.19458 8.1702e-22)
(0.296111 0.144218 9.04359e-22)
(0.362925 -0.201498 -1.30392e-21)
(0.401905 -0.221208 7.13134e-23)
(0.549193 0.303817 1.53398e-21)
(1.22024 -0.276354 1.62245e-21)
(0.642279 0.229453 1.87032e-22)
(0.762158 0.215271 -4.7829e-21)
(1.27643 -0.220699 2.83262e-21)
(0.221913 0.0867047 2.18123e-23)
(0.991042 -0.242709 5.93417e-22)
(0.575008 -0.103131 -1.97702e-21)
(1.2457 -0.23576 -1.43609e-21)
(0.570117 -0.274296 5.1879e-21)
(0.0494632 -1.88047e-05 7.63453e-22)
(0.0493633 -3.10998e-06 -4.50133e-21)
(0.0495061 1.518e-05 -5.00541e-22)
(0.0495491 -4.37099e-05 4.89873e-21)
(1.2736 -0.184417 -1.53984e-21)
(0.547845 0.294755 -1.29829e-21)
(1.153 0.242825 -7.71456e-22)
(0.934759 0.162102 -3.73558e-21)
(0.441228 -0.239861 -3.29364e-23)
(0.267398 0.169943 2.50977e-21)
(0.121266 -0.0691228 1.20087e-22)
(0.901273 0.371724 -1.23284e-21)
(1.17679 0.208792 -2.36783e-21)
(0.977877 -0.368501 2.86873e-21)
(0.67657 0.214533 -5.84783e-23)
(1.18081 -0.305575 -4.13315e-22)
(0.174946 -0.101288 -1.347e-21)
(0.490464 -0.274473 -5.05729e-21)
(0.66602 0.365532 3.19767e-21)
(0.644203 0.244153 6.20147e-23)
(0.0992757 -0.05773 -9.42657e-22)
(1.18418 -0.276516 -1.72806e-21)
(0.591624 -0.222446 1.87443e-21)
(0.28227 0.169719 -4.03965e-21)
(0.535598 -0.228035 2.53141e-21)
(0.741266 0.0314734 -2.76473e-21)
(0.289077 0.180497 -3.98997e-21)
(0.260217 -0.148324 1.06455e-21)
(0.309477 -0.165129 6.62572e-23)
(0.96085 0.357694 3.23435e-22)
(0.818178 -0.361349 -3.59642e-21)
(0.942015 -0.350094 -2.97097e-22)
(0.997069 -0.177963 1.03908e-21)
(0.114722 0.06767 -1.19735e-21)
(1.04097 0.056171 -8.73423e-22)
(0.792165 -0.14512 -2.21469e-21)
(0.327139 -0.183918 1.59542e-21)
(0.322685 -0.024921 4.02296e-21)
(0.236286 0.122349 6.98582e-22)
(1.06672 -0.352291 -2.19725e-21)
(1.13465 0.236059 9.834e-22)
(1.13266 -0.274617 2.81386e-21)
(0.493377 -0.0973706 -2.49487e-21)
(0.119035 -0.0692169 -8.827e-22)
(0.0850595 -0.0490287 -1.85148e-21)
(1.00111 0.327978 3.89963e-21)
(0.616579 0.266656 9.49058e-22)
(1.10381 -0.342637 5.38607e-22)
(0.247831 0.131745 -1.94444e-21)
(0.434911 -0.209115 1.35723e-21)
(1.07325 0.275451 6.23709e-22)
(0.284476 -0.118351 3.63994e-21)
(0.805001 0.384499 4.09617e-22)
(0.278238 0.0934253 -5.00524e-22)
(0.482901 -0.285672 -3.62721e-21)
(0.288143 0.0998409 -3.48126e-21)
(0.79669 -0.0996088 6.86507e-21)
(0.389378 0.216275 2.34189e-22)
(0.787534 -0.358525 -1.9945e-21)
(0.309253 -0.169509 -2.49672e-21)
(0.941975 0.401191 -4.47305e-22)
(0.153566 -0.0893274 -1.94247e-21)
(0.269484 -0.153374 -2.64406e-21)
(0.463299 -0.230041 -4.19947e-23)
(1.12347 -0.335368 -2.92903e-21)
(0.864385 -0.290755 -1.62834e-21)
(0.80447 -0.332654 -2.03577e-21)
(0.130879 0.0763588 4.9961e-22)
(0.960614 -0.183898 3.22252e-22)
(0.960187 -0.128874 5.60652e-21)
(0.184699 0.106611 4.29863e-21)
(0.183224 -0.106373 1.00471e-21)
(0.290374 -0.0302088 9.16754e-22)
(0.601497 -0.272098 -6.93714e-22)
(0.647425 0.122983 1.92667e-21)
(1.16098 -0.317322 -4.72381e-21)
(0.955187 -0.183177 8.58622e-22)
(0.571778 0.299174 1.86694e-21)
(0.323085 -0.213535 -1.37324e-21)
(1.20167 -0.266279 1.7066e-21)
(0.190116 -0.0472807 -8.42745e-22)
(1.14946 -0.268488 1.39875e-21)
(1.01283 0.381391 9.7139e-22)
(0.644156 0.340243 -3.53985e-21)
(0.865146 -0.358029 6.91879e-22)
(0.73745 -0.212255 1.42755e-21)
(0.861235 0.391903 -2.65691e-21)
(0.693979 0.342232 -7.19507e-21)
(0.0887229 -0.0462661 2.51846e-21)
(0.180154 -0.0369165 2.04135e-21)
(0.248134 -0.144108 -8.35821e-22)
(0.945375 -0.0977948 3.93493e-22)
(0.235409 -0.136384 -1.05192e-21)
(1.09049 0.379315 5.59857e-22)
(0.589097 0.280161 -9.39992e-22)
(0.779071 -0.19272 -1.35342e-21)
(0.0358384 0.00220042 -3.54183e-21)
(0.933699 0.246438 -5.35649e-21)
(0.786578 -0.340562 -1.56553e-21)
(0.47955 -0.257524 8.94003e-22)
(0.287625 -0.103199 -2.71838e-21)
(0.258042 -0.18128 1.64116e-22)
(0.93949 0.358738 -1.21845e-21)
(0.646374 0.259608 2.93261e-22)
(0.70981 0.119518 1.14777e-21)
(0.618358 0.277985 -4.81416e-22)
(0.687971 0.357014 5.05838e-22)
(0.19177 0.0790052 -1.42669e-22)
(0.260003 -0.0344782 2.46009e-21)
(0.505236 -0.255075 -1.53876e-21)
(0.679583 -0.341095 9.61791e-22)
(1.04751 -0.339762 1.25864e-21)
(0.774793 -0.169903 1.2276e-21)
(0.923629 -0.0192697 -4.58168e-22)
(0.917698 -0.354099 1.88072e-21)
(0.929957 -0.0861043 6.3233e-22)
(0.752911 -0.358341 4.71495e-21)
(0.0903705 0.0518084 -1.15868e-21)
(1.26413 0.236544 3.56694e-23)
(0.365005 -0.0456412 2.05532e-21)
(0.591149 0.286633 -2.04469e-21)
(1.34603 -0.0801917 6.1396e-22)
(0.38803 -0.22265 -6.04142e-22)
(0.595299 0.302208 3.71052e-22)
(0.690303 -0.153121 9.69567e-22)
(0.523195 0.249148 2.10659e-22)
(1.08486 -0.348084 2.54057e-21)
(0.892091 -0.356543 1.65719e-21)
(1.02891 0.374592 2.96317e-23)
(0.269061 0.154004 8.39092e-22)
(1.11259 -0.336975 -2.40163e-21)
(1.1135 0.314752 -1.60745e-23)
(1.04542 0.332597 6.9771e-23)
(0.773788 -0.18495 -1.67183e-22)
(0.32262 -0.118514 -1.80313e-21)
(0.843193 0.394885 2.53659e-21)
(0.947754 -0.0995307 -8.49885e-22)
(0.869155 0.370915 1.08805e-21)
(0.710314 -0.350346 1.9619e-21)
(0.0487401 3.65289e-05 5.40258e-21)
(0.0487098 9.8513e-05 2.87135e-21)
(0.0489427 0.000121526 6.33844e-21)
(0.0489295 -6.81033e-05 -2.397e-21)
(0.0488087 4.62037e-05 -8.19444e-21)
(0.0488565 -5.06181e-05 -1.94941e-21)
(0.269551 0.0181424 -3.07466e-21)
(0.636114 0.36391 4.57656e-21)
(1.01443 0.0335527 1.31174e-21)
(1.13906 0.28836 6.52701e-22)
(0.345249 -0.165986 5.59861e-21)
(0.334442 0.246199 -3.09797e-22)
(1.17456 -0.285357 2.78978e-21)
(1.17557 0.32585 -2.32972e-21)
(0.917185 -0.00490466 1.07718e-21)
(0.537516 -0.251856 -2.40498e-21)
(0.696555 0.256449 3.34149e-21)
(1.32899 -0.0323664 8.90712e-22)
(0.677767 0.37364 1.61561e-21)
(0.687347 0.354457 2.46123e-22)
(0.466382 -0.232965 3.90839e-21)
(1.21035 -0.265437 2.014e-21)
(1.25302 -0.224041 -2.80048e-23)
(0.412517 -0.252766 -1.58011e-21)
(1.21622 0.223945 -1.6193e-21)
(0.99703 -0.275144 6.2219e-22)
(1.19112 0.284168 3.93295e-22)
(0.47921 -0.262868 -2.63112e-22)
(0.714187 -0.0215393 -4.32889e-22)
(0.936919 -0.0520647 1.40973e-22)
(0.132013 -0.0666646 -6.39061e-21)
(0.972986 0.344721 2.02058e-22)
(0.995742 -0.351451 -9.44134e-22)
(1.32493 -0.0549991 1.5074e-21)
(0.742253 -0.170235 -1.99996e-21)
(0.703181 -0.214633 -9.30818e-22)
(0.770691 0.379752 3.05122e-21)
(0.29191 0.213056 -9.85317e-22)
(0.359821 -0.131052 -6.18868e-22)
(0.774659 -0.364466 -1.18273e-21)
(0.490767 -0.277224 2.75556e-21)
(0.0794212 -0.0438152 -1.61456e-21)
(0.571915 -0.215228 -2.64949e-21)
(0.952246 0.225577 7.32875e-23)
(1.13246 -0.290632 -2.449e-21)
(0.395537 -0.250279 -2.21927e-21)
(0.917479 -0.113825 1.92872e-22)
(1.28047 0.225601 8.36842e-23)
(1.31001 -0.0981653 5.59191e-22)
(0.913151 -0.0478191 3.53016e-22)
(0.456427 -0.259974 9.43124e-22)
(0.766449 -0.346353 -1.27865e-22)
(0.769898 -0.092134 8.2272e-22)
(0.836674 -0.357961 1.03967e-21)
(0.257958 0.147663 -1.97018e-21)
(0.836375 0.368144 7.04156e-22)
(0.156843 -0.0921193 -9.90638e-22)
(0.101601 0.0591665 1.8237e-21)
(0.87495 -0.171914 -7.97263e-23)
(0.923618 -0.369648 -6.34928e-21)
(0.0148854 -6.1796e-06 -5.91204e-22)
(0.99225 0.333684 -3.53137e-21)
(0.545203 -0.2721 1.40799e-21)
(1.00845 0.313981 3.76619e-21)
(1.00926 0.3893 -5.29656e-22)
(0.885114 -0.323546 -1.44624e-21)
(0.382068 0.175892 -1.5632e-22)
(0.115444 -0.0245804 -2.17719e-21)
(0.0631999 0.0361064 -7.19273e-22)
(0.805337 0.363849 -6.41193e-22)
(0.97115 -0.334299 -1.65246e-21)
(1.14133 -0.275782 -7.40032e-22)
(0.498117 -0.258133 -7.75113e-22)
(1.08715 -0.345729 -3.57758e-21)
(0.764387 -0.296402 -6.05446e-22)
(0.388449 0.18239 1.07813e-22)
(1.10894 -0.341809 1.46962e-21)
(0.907786 -0.321246 -3.6019e-22)
(1.05668 0.20755 -6.76721e-22)
(1.09304 0.347315 -8.46259e-22)
(0.443192 0.222044 3.89025e-22)
(0.154237 0.0856066 -4.73875e-22)
(0.491589 0.247259 3.22203e-22)
(0.514987 -0.249978 8.05632e-22)
(0.0834129 -0.0471105 6.38431e-22)
(0.815167 -0.363534 2.79392e-21)
(0.559151 0.336328 6.83885e-21)
(0.561846 -0.13293 -9.35341e-22)
(0.607876 0.225152 -8.8093e-23)
(0.924746 -0.00482994 1.2355e-22)
(0.114939 0.0652974 5.18785e-22)
(0.960306 0.304583 -3.22103e-23)
(0.957108 0.23768 4.91708e-21)
(1.28686 0.214896 -3.25897e-24)
(0.567018 -0.231205 -1.10254e-22)
(0.827344 0.209961 -6.56554e-21)
(0.112166 -0.0720505 -6.24134e-22)
(0.963806 0.402901 -5.08926e-22)
(1.26746 -0.189761 1.35585e-21)
(0.864859 0.155714 -2.10402e-21)
(0.754051 -0.290233 2.23679e-22)
(0.992742 -0.362195 5.18893e-21)
(1.27363 -0.150691 -2.69771e-21)
(1.07977 -0.349727 1.26027e-21)
(1.05611 -0.318728 9.11389e-22)
(0.0649812 -0.0363394 -2.38709e-21)
(0.980048 -0.348481 9.53496e-23)
(0.0782205 -0.0448857 -8.37942e-22)
(0.0872436 -0.0498666 -9.91439e-22)
(0.811554 0.396519 5.36979e-21)
(0.947993 0.362469 -1.29274e-21)
(0.321793 -0.216452 -1.27566e-21)
(0.147625 0.0797535 9.7896e-22)
(0.415743 0.231132 -2.03574e-21)
(0.918235 0.359043 -1.38281e-21)
(0.870684 -0.37219 -9.09396e-22)
(0.960705 -0.369998 -3.28157e-21)
(0.843258 -0.285022 2.04372e-21)
(0.96845 0.368077 -4.34169e-22)
(0.992798 0.394162 2.23266e-21)
(0.962457 0.349884 1.75756e-21)
(0.249972 0.144043 4.25939e-22)
(0.478609 -0.267899 4.12958e-21)
(1.22009 -0.254914 -1.46167e-21)
(1.24677 0.253649 -2.88869e-22)
(0.271951 -0.0168098 -1.7768e-21)
(0.114531 -0.0656733 3.58337e-22)
(0.373581 0.26768 4.95154e-22)
(0.662769 -0.287943 -1.50212e-21)
(0.667246 0.208542 -7.09967e-21)
(1.06882 0.364643 -8.41893e-22)
(0.208388 -0.121515 -3.35487e-21)
(1.31515 0.178119 -4.88661e-22)
(1.00042 0.3199 -1.76432e-21)
(0.666445 0.351351 1.83289e-21)
(0.755454 -0.0914151 -1.79154e-22)
(0.28871 -0.199581 9.21044e-22)
(0.545034 0.020632 9.83127e-22)
(1.16404 -0.222561 1.52225e-21)
(1.17578 -0.269224 -1.85488e-21)
(0.584902 0.257375 7.8019e-22)
(0.776969 -0.0961965 -4.00016e-22)
(0.451596 0.0395849 6.56015e-22)
(0.184245 0.0313826 1.78741e-21)
(0.790989 0.395399 3.90186e-21)
(0.864464 -0.361964 1.55319e-21)
(0.903451 -0.189641 1.8806e-21)
(0.104922 0.0586909 -4.02859e-21)
(1.19405 0.274189 -1.62498e-21)
(0.202422 -0.000539841 -2.91294e-21)
(0.329762 -0.179532 -1.97369e-21)
(0.262379 -0.178246 -1.60563e-21)
(0.0294572 -0.0134824 2.49278e-21)
(0.835553 -0.371765 -1.38984e-21)
(0.590423 -0.314559 -1.00844e-21)
(0.186604 -0.110046 2.16389e-21)
(1.2594 -0.165919 -7.16984e-22)
(0.722804 -0.116708 8.17862e-23)
(0.0673952 0.0407339 6.34024e-22)
(0.230722 0.131452 -3.1169e-21)
(0.481712 -0.2827 8.36646e-22)
(0.479767 -0.255987 2.2138e-21)
(0.83965 -0.0884282 3.35576e-22)
(0.942949 -0.323597 -3.83648e-22)
(0.362445 -0.220665 -3.17156e-21)
(0.586556 0.114126 1.00986e-21)
(0.49565 -0.275285 -1.16347e-21)
(0.969183 -0.357808 3.35712e-22)
(0.0254841 -0.000402331 3.87416e-21)
(1.05402 0.212588 4.01572e-21)
(0.823355 -0.075518 -1.65787e-22)
(1.04985 -0.314314 1.58573e-21)
(0.972043 0.217311 -8.6289e-21)
(0.129036 0.072954 1.21413e-21)
(1.31282 -0.0851126 -1.78882e-21)
(0.0934259 -0.00914116 -4.24495e-21)
(0.343903 0.189373 -4.45285e-21)
(0.694262 0.376953 2.90395e-21)
(0.09445 -0.0348275 -4.99916e-21)
(1.00719 0.30601 -5.16153e-21)
(1.2494 -0.208684 1.13057e-21)
(0.88823 -0.232912 -6.73631e-22)
(0.327645 -0.208675 -1.23679e-21)
(1.07062 -0.352925 -2.73221e-21)
(0.231406 -0.047657 8.4779e-21)
(0.120281 0.0687325 -1.00227e-21)
(0.255551 -0.047373 -2.05313e-21)
(0.207417 0.108989 4.36004e-22)
(0.821869 0.387993 -2.79061e-24)
(0.753393 -0.0252326 -1.89593e-22)
(0.0247672 -0.000315582 -2.87054e-21)
(0.830896 -0.165729 -1.3144e-21)
(0.899357 -0.0345446 6.62644e-22)
(0.444378 0.074079 5.71566e-23)
(0.880887 -0.0872603 -8.37033e-22)
(0.989621 -0.148215 -2.56063e-22)
(0.0974636 0.0238286 2.13057e-22)
(0.159568 -0.0924002 7.89198e-22)
(0.277962 0.157186 -1.47121e-22)
(0.12186 -0.0693949 2.08045e-21)
(0.905649 0.362204 1.59965e-21)
(0.298393 0.167972 -1.14866e-21)
(0.0914352 -0.0539008 -4.58473e-21)
(0.0783891 -0.0453967 -6.76806e-22)
(0.646129 0.242386 -4.79671e-22)
(0.263846 -0.151021 2.05372e-21)
(0.259119 0.146396 2.75776e-21)
(0.738553 -0.357421 1.96385e-21)
(0.858697 -0.00964184 5.56689e-22)
(0.67393 -0.341405 1.84545e-22)
(0.846367 0.390906 -6.32585e-22)
(1.0583 0.383073 -2.16665e-21)
(0.103793 -0.0597384 1.24761e-21)
(0.320611 0.17889 -1.14906e-21)
(1.13191 -0.0744231 -1.36883e-21)
(1.32396 0.130871 -1.82339e-22)
(0.425917 0.244291 2.3701e-21)
(0.441319 -0.241246 1.00069e-21)
(1.15916 -0.0475281 -1.68907e-22)
(0.422529 -0.258442 -1.40845e-21)
(0.131219 -0.0762867 -2.18301e-21)
(0.356517 -0.0180924 2.55314e-21)
(0.140196 -0.0894615 1.71077e-21)
(0.943429 -0.354368 8.39058e-23)
(0.773851 -0.199747 -5.59178e-22)
(0.423735 -0.0088191 -2.70971e-22)
(0.973659 -0.360898 -1.13078e-21)
(1.10554 0.300385 7.89404e-22)
(0.63906 -0.331631 -3.02422e-21)
(0.980639 -0.225804 3.20193e-22)
(1.22008 0.201545 8.54156e-22)
(0.918064 -0.358417 -1.38722e-21)
(0.801462 -0.368175 7.0104e-22)
(0.943545 -0.0930545 -3.1983e-24)
(0.492423 -0.262111 -1.7246e-21)
(0.783826 0.304168 2.75111e-21)
(0.936946 -0.366812 -4.43755e-21)
(0.0476541 0.0214717 8.75563e-21)
(0.872125 -0.0186958 -9.42239e-22)
(1.33795 -0.0306825 3.02689e-22)
(0.364617 0.259301 7.38365e-22)
(0.873638 -0.0665537 4.65293e-22)
(0.815409 -0.10092 -1.55733e-21)
(1.22803 -0.188812 -7.4195e-23)
(0.588253 -0.097673 -6.15467e-22)
(0.82505 -0.0171237 -5.41457e-22)
(0.576932 -0.199827 4.87744e-21)
(0.0649886 -0.0384664 4.51734e-22)
(1.23655 -0.198646 -1.79736e-22)
(0.731508 -0.103119 -2.22517e-21)
(0.522952 0.284638 -2.89689e-21)
(0.365354 -0.20425 -3.44244e-22)
(1.06348 -0.212533 -1.36121e-22)
(0.847334 0.214952 2.34807e-21)
(0.29647 -0.168908 -2.20273e-21)
(0.65181 0.357632 1.34864e-21)
(1.04321 0.377118 -9.54326e-22)
(0.115995 0.0579347 -1.14041e-22)
(1.04378 -0.200623 -2.27084e-22)
(0.870961 0.392993 3.70689e-21)
(1.01118 0.337136 -7.18536e-22)
(0.442481 -0.220809 5.95144e-22)
(0.189492 -0.00760276 6.49722e-22)
(0.951547 0.195058 1.80224e-21)
(0.123571 -0.0680326 4.27549e-21)
(0.911593 -0.28886 3.63543e-22)
(0.547905 -0.223957 -1.11481e-21)
(0.40503 0.252724 9.24919e-22)
(0.929454 -0.316813 -2.45051e-21)
(0.230341 -0.139897 -6.66252e-22)
(0.765725 -0.36269 -1.24074e-21)
(0.810413 -0.104958 -2.69248e-22)
(0.399232 0.228575 -3.97778e-22)
(0.84143 0.399832 -2.23112e-21)
(0.615326 -0.32821 1.4267e-21)
(1.14008 -0.259253 2.41244e-21)
(0.0454472 -0.0266999 -1.55998e-21)
(1.09718 0.309357 3.78708e-22)
(0.941878 -0.0510299 3.04162e-22)
(0.963811 0.307508 1.87259e-21)
(1.12006 -0.131617 2.57239e-21)
(0.209126 0.0754335 -4.88572e-23)
(0.823258 0.329511 1.03209e-21)
(0.497471 0.302498 -4.63288e-22)
(0.883117 -0.143905 3.81931e-22)
(1.12558 0.36701 -5.64576e-22)
(0.607516 0.221721 -1.82401e-22)
(0.592391 -0.193988 -2.05489e-21)
(0.659259 -0.180994 -1.14971e-21)
(0.216575 0.106249 -1.79032e-22)
(1.26841 -0.120708 1.22197e-21)
(0.480241 0.208886 -2.13773e-23)
(0.278308 0.0117984 1.3987e-21)
(0.813976 -0.220944 5.7723e-22)
(1.32786 0.00258422 3.65774e-22)
(0.515905 -0.22001 -1.20559e-21)
(0.890609 -0.269541 1.02094e-21)
(0.0993762 0.0531033 3.91896e-21)
(0.57493 -0.0514907 -9.25991e-22)
(1.2748 -0.200804 -7.25124e-22)
(0.630366 0.350011 -4.55257e-21)
(0.401481 -0.223023 -2.434e-21)
(0.474997 0.27152 2.52842e-21)
(0.404614 0.242739 -1.10134e-22)
(0.238917 -0.139246 4.3312e-21)
(0.133882 -0.0420128 -4.799e-22)
(0.887843 0.282476 -3.18142e-21)
(0.238007 -0.0602168 -2.42808e-21)
(0.895149 0.393853 -5.52192e-21)
(0.619084 0.351999 3.59677e-21)
(0.525659 0.0108575 3.53116e-21)
(1.30436 0.108624 -1.30742e-22)
(0.712497 0.210237 -1.79051e-21)
(0.330282 -0.186789 -2.2446e-21)
(0.917746 -0.0496898 7.82748e-22)
(0.553905 -0.207863 6.72374e-22)
(1.02116 0.390893 1.42828e-22)
(0.762672 -0.0958347 1.46774e-21)
(0.0539804 -0.0313086 -1.83175e-21)
(0.464908 0.253538 -1.47862e-21)
(0.982596 -0.352821 1.2516e-22)
(0.904266 -0.158397 8.81552e-22)
(0.938018 -0.113143 7.52963e-22)
(0.658712 -0.259037 1.05608e-21)
(0.0490129 0.000102802 -3.21162e-22)
(0.049006 0.000174865 1.28912e-22)
(0.0489751 -0.00011439 -3.46396e-21)
(0.0490655 -0.000186322 -1.42009e-22)
(1.08551 0.101583 -2.17401e-21)
(1.04858 0.384526 -1.04688e-21)
(0.840656 -0.147978 7.99237e-22)
(0.939968 0.158815 2.58283e-21)
(0.471518 -0.0552952 4.0222e-22)
(0.545776 0.28852 -3.19853e-21)
(0.125278 0.0587816 -4.09742e-22)
(0.997478 0.39967 -8.61138e-22)
(0.553028 -0.269619 -2.04815e-21)
(1.17278 0.219214 -2.38433e-21)
(0.974179 -0.339323 2.31444e-21)
(1.31028 -0.0848968 4.96007e-23)
(0.837465 -0.153604 -4.7894e-22)
(1.17932 -0.209438 -1.6577e-21)
(0.423624 0.267954 5.95846e-21)
(0.952611 -0.345306 1.37496e-21)
(0.832881 -0.0643036 -3.6088e-22)
(0.942574 -0.0989508 4.22994e-22)
(0.619801 0.0265096 1.10071e-21)
(0.775733 0.0370628 -3.87804e-21)
(1.08162 0.313308 -3.29577e-21)
(0.81946 -0.147674 -1.33219e-21)
(0.464014 0.0825136 1.52227e-22)
(0.227523 0.103601 -1.46577e-21)
(0.218455 -0.0593015 -2.79572e-21)
(0.209277 0.123882 -1.11695e-21)
(1.25829 -0.240599 -2.82015e-22)
(0.910023 -0.161092 3.94811e-21)
(0.0153836 0.000111434 2.22286e-21)
(0.851254 -0.111498 -6.75145e-22)
(0.226993 0.071227 -1.04897e-21)
(1.20169 -0.174107 1.55931e-21)
(0.601343 -0.217244 2.45445e-21)
(1.13701 0.328898 -1.6341e-21)
(0.819946 0.392987 6.8853e-21)
(0.673236 0.137576 6.22976e-22)
(0.909774 -0.327362 2.912e-21)
(0.921785 -0.0489316 4.57708e-22)
(1.09517 0.319158 3.69397e-22)
(1.12321 0.326993 1.4427e-21)
(0.407471 -0.212059 1.25064e-21)
(1.10914 0.323752 -2.41113e-21)
(1.03268 -0.281536 -2.00756e-22)
(0.0662642 -0.0366028 -1.94358e-21)
(1.24574 -0.25155 3.9545e-22)
(0.452866 0.164391 4.79228e-23)
(0.955274 0.312143 -1.0943e-20)
(0.664936 0.223251 1.24393e-20)
(0.762072 0.20347 4.75036e-21)
(0.540756 0.324031 3.35857e-21)
(0.636937 -0.27728 -3.51777e-21)
(0.973867 -0.0233232 2.86817e-21)
(0.858334 0.398892 1.87266e-21)
(1.25497 0.171545 4.2777e-23)
(1.32464 -0.120069 5.14379e-22)
(0.834949 0.203183 7.80269e-21)
(0.0756724 -0.043543 -1.8205e-21)
(0.477302 0.265189 -4.52222e-22)
(0.33533 0.0825703 -5.76978e-22)
(0.782486 -0.360217 2.61057e-21)
(0.199958 -0.0582478 2.41843e-21)
(0.904251 -0.0161429 1.91342e-22)
(0.830814 0.125163 -2.54501e-21)
(0.883489 0.166503 -3.63757e-21)
(1.33293 0.0142971 1.35371e-21)
(0.945854 -0.223038 -1.48444e-21)
(0.423927 0.11453 9.81624e-22)
(0.14109 0.0768454 -8.80506e-22)
(1.32395 0.04761 5.47551e-22)
(0.303563 0.181019 -1.08703e-22)
(0.844613 0.205899 -1.88934e-21)
(0.893808 0.39851 2.98479e-21)
(1.25369 0.243098 -9.08228e-22)
(1.00261 0.343273 4.04256e-21)
(0.256573 0.152491 3.0807e-21)
(0.797625 0.396118 9.89759e-22)
(0.395091 -0.142781 1.80219e-21)
(1.3231 -0.0421204 -1.69953e-21)
(1.15754 0.221316 1.52211e-21)
(0.828485 -0.233022 -2.41935e-21)
(0.818562 -0.173278 8.1097e-22)
(0.877308 -0.18907 -7.88193e-22)
(1.16166 -0.0619095 -3.47273e-21)
(0.446619 0.198117 2.62231e-22)
(0.444004 -0.252776 -2.04259e-21)
(0.522585 -0.275176 2.37514e-21)
(0.49955 0.287721 1.61317e-21)
(0.234431 -0.165281 1.2038e-22)
(1.06419 0.218012 -1.50642e-21)
(0.177391 0.103238 -1.95653e-21)
(0.371903 0.0784124 5.7802e-22)
(0.0288379 7.60666e-05 5.32046e-22)
(0.815932 0.39649 -1.58188e-22)
(0.896746 -0.0356761 3.64733e-22)
(0.157713 0.0568596 7.41051e-22)
(0.806004 0.39247 -8.45829e-23)
(1.19713 0.313764 1.13574e-21)
(0.947144 -0.119389 7.86591e-22)
(0.851749 0.149228 -6.19663e-21)
(1.32717 -0.132754 1.53744e-21)
(0.968859 0.400286 -3.49907e-21)
(0.967862 -0.256132 -1.76836e-22)
(1.26402 -0.154233 1.10723e-21)
(0.891225 -0.131048 7.30546e-22)
(0.393727 0.208874 -2.26609e-21)
(0.956374 -0.174193 3.63593e-22)
(0.543031 0.282594 -1.83644e-21)
(1.02539 0.195317 -7.0099e-22)
(0.780166 0.0551602 -3.96707e-21)
(1.22473 0.303995 4.94686e-22)
(0.917373 -0.0472486 -1.92486e-22)
(0.280236 0.160356 1.08315e-21)
(0.818156 -0.0726733 8.25355e-22)
(0.832031 0.395873 -1.80368e-21)
(0.036523 -0.0120065 -1.14423e-22)
(0.316613 0.180264 1.64053e-21)
(0.496574 0.238513 7.37425e-22)
(1.29868 -0.19015 -3.53725e-21)
(0.482629 -0.214292 -4.27384e-22)
(1.33637 0.0355144 2.90693e-21)
(0.358376 -0.202082 1.39063e-21)
(0.586215 0.335676 -3.66845e-21)
(0.89226 0.156813 -1.01128e-20)
(0.448771 -0.20718 5.80891e-22)
(0.37322 -0.225068 -6.18355e-22)
(0.938273 0.294259 2.40086e-22)
(1.26746 0.268578 4.71708e-23)
(0.174711 -0.130974 1.50938e-21)
(1.24148 0.287053 -6.44328e-22)
(0.955795 0.294676 7.54411e-21)
(1.03402 0.310657 4.88693e-21)
(0.857881 -0.371182 1.27766e-21)
(1.18267 0.316221 -6.89411e-22)
(1.35344 -0.0217245 -7.36617e-22)
(0.872971 -0.271452 -2.92174e-22)
(1.01445 0.300055 3.86914e-21)
(0.893117 -0.094534 -5.36447e-22)
(1.00149 -0.170026 -7.47963e-23)
(1.31576 0.203616 -8.96719e-24)
(1.13866 -0.299095 -1.09824e-21)
(0.796828 0.0883235 1.08191e-21)
(0.963956 -0.17968 -1.70459e-22)
(1.33669 0.162773 -8.29133e-22)
(1.0601 0.270118 -3.21133e-21)
(1.2899 -0.123632 1.80542e-21)
(1.25498 0.279109 -6.88668e-23)
(0.0494756 -2.26726e-05 -6.33037e-22)
(0.0495822 2.21969e-05 -2.45802e-22)
(0.0151185 -0.000110007 -3.54503e-22)
(0.829026 -0.32104 -5.17276e-21)
(0.929406 -0.349985 -1.67157e-21)
(0.650512 -0.249141 4.45752e-22)
(0.519854 0.309474 -9.55631e-22)
(1.32806 0.182257 1.2536e-22)
(0.415359 -0.229705 -4.69573e-22)
(0.47645 -0.228222 3.1907e-21)
(1.19533 0.207935 -1.33828e-21)
(0.804405 -0.358944 2.2611e-21)
(1.29215 0.105055 6.60952e-22)
(1.33088 0.0377705 1.4224e-22)
(0.763308 0.290802 8.44624e-21)
(1.27045 0.234662 7.29907e-22)
(0.887459 0.151736 5.86114e-21)
(0.973113 0.402442 2.72779e-21)
(0.344718 -0.121869 -1.31381e-21)
(0.470549 -0.0173147 4.67618e-22)
(0.593144 -0.262545 7.27122e-22)
(0.903947 -0.048697 -6.00393e-22)
(0.881287 -0.259589 -1.19426e-21)
(0.186645 0.0849029 -7.41423e-22)
(0.270951 0.156172 -1.89656e-21)
(1.19204 0.0521629 2.73568e-21)
(1.0072 0.249421 8.828e-22)
(0.944422 -0.107171 -1.47798e-21)
(0.834606 -0.360938 -2.17456e-21)
(0.129408 0.0743981 -2.48595e-21)
(0.747747 -0.103743 -1.14215e-21)
(0.945766 -0.0948638 -1.02328e-21)
(0.548086 -0.195861 -9.10092e-22)
(0.728869 -0.0142002 4.62632e-23)
(0.581554 0.0891243 3.27558e-21)
(0.372158 -0.202122 4.31998e-21)
(0.544211 0.110217 -3.9383e-22)
(0.478998 -0.270468 5.71918e-21)
(0.281996 -0.0461473 -2.74217e-22)
(0.950346 -0.340258 5.88207e-22)
(0.629027 -0.217733 -3.56999e-22)
(0.870256 0.162018 5.1881e-21)
(0.393345 -0.238502 -3.94108e-22)
(0.44228 -0.248065 5.12455e-22)
(1.27222 0.236426 1.26739e-22)
(0.612338 -0.211964 -2.23549e-22)
(0.660719 0.342316 6.17926e-21)
(0.927218 0.239724 5.26967e-21)
(0.193757 0.0984462 -1.69013e-22)
(0.308046 0.130699 2.58095e-22)
(1.04828 -0.28275 1.75164e-21)
(1.05088 0.379777 2.02176e-22)
(0.880526 0.225258 -9.13073e-22)
(0.936271 -0.233615 1.00421e-21)
(1.17349 0.339445 -1.92845e-21)
(0.218056 0.137596 5.03824e-21)
(0.143486 0.0808835 -2.84892e-21)
(0.852244 -0.356425 -1.69289e-21)
(0.789558 -0.185262 -3.04234e-21)
(0.889118 0.242948 -1.26674e-21)
(1.1148 -0.254208 -1.74147e-21)
(0.681575 -0.344278 1.96825e-21)
(0.947968 0.404203 -1.82301e-21)
(0.897693 -0.25746 -7.1011e-23)
(0.930765 -0.0151575 3.43998e-22)
(0.22675 0.192426 -7.66126e-21)
(0.521046 -0.213484 -1.14569e-21)
(1.20246 -0.196424 -1.23378e-21)
(0.164726 0.0728822 -4.98153e-22)
(0.205866 -0.152441 -3.56667e-21)
(0.867967 0.148258 -6.73141e-22)
(1.34392 0.14112 -1.3995e-21)
(0.638829 -0.184502 8.59685e-22)
(0.179234 0.103781 -1.8458e-21)
(0.993495 -0.149872 8.05402e-22)
(0.681167 -0.290746 -3.16188e-22)
(0.901907 -0.0532658 7.1115e-22)
(1.20785 -0.249823 1.19009e-21)
(0.21547 -0.0731827 -3.27597e-21)
(1.15825 -0.269141 -1.72735e-21)
(0.937584 0.230068 2.0383e-22)
(1.3487 0.11819 -1.48593e-21)
(0.904753 -0.353332 -9.32922e-22)
(1.03888 -0.317945 1.97735e-21)
(0.549149 0.297474 1.42166e-21)
(0.837488 -0.0668943 1.5578e-22)
(1.3516 0.0942035 2.18607e-21)
(0.620968 -0.315111 2.55591e-21)
(0.550429 0.337697 5.71016e-21)
(0.353436 -0.211648 -1.48505e-21)
(1.34893 -0.0658159 -1.47883e-21)
(1.35276 0.0693822 2.29911e-21)
(1.12128 0.367846 4.20836e-22)
(1.35692 -0.039428 2.4137e-21)
(0.977316 0.249095 3.75665e-22)
(0.364964 0.126164 -2.32497e-22)
(0.498528 0.294529 -3.18284e-21)
(0.190039 0.109097 7.51493e-22)
(1.13988 0.361112 -1.56617e-22)
(0.918611 -0.0614941 -9.42016e-22)
(0.547372 0.293361 -2.22904e-22)
(1.04877 0.262862 3.63256e-21)
(0.706116 -0.136824 1.33409e-21)
(0.263053 0.14861 -3.46706e-21)
(0.820246 0.390087 2.11349e-21)
(0.947559 0.186855 -1.50868e-21)
(0.416487 0.159243 -2.10778e-22)
(0.891479 -0.277043 -1.50536e-21)
(0.201449 -0.0719779 1.48741e-21)
(0.550614 0.302295 6.3603e-22)
(0.879001 -0.355418 -2.31777e-21)
(0.147192 0.0863296 -8.81276e-22)
(1.20313 0.00643261 -2.08363e-21)
(0.325957 0.173419 -1.78245e-21)
(0.255595 0.137639 1.01691e-21)
(0.162378 0.0951824 1.72384e-21)
(0.941804 0.243544 -3.96498e-21)
(0.938543 -0.34027 -6.12991e-22)
(0.275015 0.161948 -7.82498e-22)
(0.136615 -0.0833165 4.64293e-21)
(0.82324 -0.0642551 -5.55722e-23)
(0.950099 -0.117554 4.07998e-22)
(0.290948 0.155761 -7.29867e-22)
(0.368081 0.160524 -3.89529e-22)
(1.10406 -0.215381 2.97365e-22)
(0.409422 0.144689 1.33269e-23)
(0.964182 0.29884 1.18001e-22)
(0.916973 -0.106157 3.64361e-22)
(0.149282 0.0842813 5.6245e-21)
(0.360425 0.191198 5.57783e-23)
(0.408175 0.179414 8.34164e-22)
(0.744306 -0.220901 -1.19444e-21)
(0.470979 -0.247448 -5.32125e-22)
(1.23412 -0.179612 -1.52881e-21)
(0.592872 0.154822 7.51031e-23)
(0.490251 -0.259422 -5.27927e-22)
(0.776781 0.360009 4.52593e-22)
(0.778176 -0.360286 -1.68989e-21)
(0.268312 0.144887 1.97018e-21)
(1.13604 0.219271 1.02126e-21)
(0.101744 -0.0541269 1.15996e-21)
(1.16063 -0.312953 -1.7361e-21)
(0.947165 -0.108991 -2.9809e-23)
(0.90625 0.170439 -1.97312e-21)
(0.913333 -0.106851 -1.36751e-21)
(0.65317 0.196571 -5.54384e-21)
(0.818548 -0.234766 1.10113e-21)
(0.921166 -0.0618711 9.77539e-22)
(0.997368 0.295478 -2.34228e-21)
(1.15458 -0.313588 4.26324e-21)
(0.5681 -0.29273 3.45992e-21)
(0.116334 0.0686826 -5.72887e-22)
(0.57131 0.297367 2.29311e-21)
(1.22624 0.192837 9.58955e-22)
(0.120135 -0.0331725 2.11767e-21)
(1.11488 0.223056 1.3437e-21)
(0.946807 0.220687 -2.65636e-22)
(0.171958 -0.0991684 2.167e-21)
(1.01314 -0.0133331 1.41743e-21)
(0.677657 -0.277252 -1.12375e-21)
(0.925652 -0.132896 -3.34706e-22)
(0.555447 0.262992 -6.95541e-22)
(1.18425 -0.268553 -1.13985e-22)
(0.901269 -0.0444976 4.4287e-22)
(1.0564 0.262992 -5.29833e-22)
(0.982333 -0.148578 -1.13178e-21)
(0.864598 -0.126974 3.00807e-22)
(0.669768 -0.168735 1.07954e-21)
(0.855434 0.142067 -2.30561e-21)
(0.316884 -0.151654 -7.74643e-21)
(0.867342 -0.113231 -4.85948e-22)
(1.17781 0.0937772 2.16325e-21)
(0.0246694 -0.000349943 -8.16211e-21)
(0.972586 0.294134 -2.81435e-21)
(0.565724 0.285135 -1.92377e-21)
(0.23186 0.118008 -1.8773e-21)
(0.323964 0.0625588 2.22049e-21)
(0.815488 0.196393 2.2287e-21)
(0.315841 0.219233 1.59933e-21)
(0.111968 0.0665322 -5.57844e-22)
(0.931611 -0.323224 8.41299e-22)
(0.709313 -0.30019 6.46047e-22)
(0.765935 -0.195773 7.17043e-21)
(0.499041 0.273846 9.49674e-22)
(0.1889 -0.0698605 -2.54358e-21)
(0.396877 -0.231901 -5.3773e-24)
(1.14442 0.337635 6.11196e-22)
(0.0268221 0.000106418 2.14335e-21)
(1.06564 -0.206119 8.58817e-22)
(0.243582 0.128782 -6.4173e-22)
(0.898603 -0.265007 -1.56015e-21)
(0.99856 0.176593 1.86389e-21)
(1.1783 -0.301727 -3.85138e-22)
(0.624185 -0.326431 -1.92741e-22)
(0.354612 0.149696 3.99372e-23)
(0.522783 0.28381 2.33676e-21)
(0.719084 -0.306881 -1.42316e-21)
(0.218608 0.125966 4.62909e-21)
(0.269796 -0.0863597 -2.02245e-21)
(0.771929 -0.0360257 1.893e-21)
(0.987858 -0.225892 2.15887e-22)
(0.267261 0.0381171 -1.62275e-21)
(0.755605 -0.108158 1.85732e-21)
(1.23827 0.251037 1.87053e-21)
(0.964288 -0.249618 2.52464e-21)
(0.667785 -0.341192 -1.99365e-21)
(0.83956 0.126383 6.18826e-22)
(0.757295 -0.221874 -3.79414e-22)
(0.0462813 -0.0264161 1.33359e-21)
(0.877658 -0.144899 -3.09711e-23)
(1.07807 -0.209422 5.46822e-22)
(1.00515 -0.166955 -5.16016e-22)
(0.246987 0.14296 -3.48032e-21)
(0.832916 0.193724 1.36611e-23)
(0.649704 -0.179353 -4.74032e-22)
(0.127409 0.0739922 -9.63058e-22)
(0.98918 -0.14395 -5.9917e-22)
(0.575877 -0.142685 9.79982e-22)
(0.965645 0.297624 -2.44308e-23)
(0.921039 0.200448 1.27801e-21)
(0.875524 -0.202716 -4.11036e-23)
(0.2582 -0.0603064 -5.41663e-21)
(0.859135 0.171125 -4.71517e-23)
(0.308645 -0.16748 -1.91828e-21)
(0.776895 -0.04081 -7.09502e-24)
(0.809991 0.396611 -2.76448e-21)
(0.714977 0.276538 -8.41416e-21)
(0.982154 0.00147858 -5.24256e-21)
(0.0148457 -3.35919e-05 -2.20254e-21)
(0.583696 -0.210502 -2.25235e-21)
(0.137349 0.0844136 1.84717e-21)
(0.289382 -0.191194 -1.18588e-21)
(0.616022 0.26314 -2.62011e-22)
(1.06881 0.223879 -1.24977e-22)
(0.782852 0.0454623 6.51289e-21)
(1.1486 -0.260226 -5.40581e-22)
(0.481738 -0.285689 1.9756e-21)
(0.350355 0.111881 1.44799e-22)
(0.557982 -0.310446 -2.32033e-22)
(1.18711 -0.267301 -4.89413e-21)
(0.7769 -0.0810683 -2.10407e-21)
(0.0316944 -2.75282e-05 -1.3656e-22)
(0.936974 -0.259594 5.47089e-22)
(0.800559 0.396682 1.32108e-21)
(0.744205 -0.204215 1.58493e-22)
(1.11561 0.371009 1.63608e-21)
(0.832745 0.0696654 5.06763e-21)
(0.378125 -0.211387 2.06722e-21)
(1.03368 -0.230427 -1.54308e-22)
(0.977367 0.31905 -4.67125e-23)
(1.19041 0.183225 1.6422e-21)
(0.734187 0.3373 -1.57387e-21)
(0.216477 0.0284599 9.31999e-23)
(0.103866 -0.060128 -1.52989e-21)
(0.594494 0.300215 3.66788e-21)
(0.659773 -0.274101 1.0207e-21)
(0.816868 0.104242 -9.26951e-21)
(0.948873 0.15817 1.93316e-21)
(0.588816 0.278188 8.16413e-22)
(0.408531 0.0266275 4.20734e-21)
(0.885272 -0.0439026 8.79343e-22)
(1.0246 0.360055 -1.04214e-22)
(1.17076 -0.207067 4.49347e-22)
(0.633059 -0.200943 -3.07472e-22)
(0.519711 -0.247269 -7.94096e-22)
(0.679941 -0.163169 1.50495e-21)
(0.842939 -0.0460871 1.65308e-22)
(1.12649 -0.21305 -2.54871e-22)
(0.472002 -0.0333918 -1.0182e-21)
(0.617822 -0.195157 3.59601e-22)
(0.641391 0.224965 -1.54758e-23)
(0.844866 -0.0902582 2.2974e-22)
(0.998977 -0.231281 1.07875e-23)
(0.624555 -0.178392 6.97165e-22)
(0.561812 -0.119762 1.38653e-21)
(0.762956 -0.21425 3.21934e-22)
(0.618474 0.273961 -9.50482e-22)
(0.986205 -0.150607 -6.08531e-22)
(0.933406 -0.0564562 9.88785e-23)
(0.973578 0.336711 -4.47733e-23)
(0.954844 0.211686 -3.36801e-21)
(0.313583 0.0499018 -9.24186e-22)
(0.632226 -0.161787 -2.94347e-22)
(0.878644 -0.182719 9.20858e-22)
(0.945579 0.403526 1.13198e-23)
(0.163061 -0.0942341 -4.16388e-21)
(0.791368 -0.300905 2.49812e-21)
(0.590874 0.284135 2.13695e-21)
(0.162085 -0.0940758 1.4703e-21)
(0.920221 0.362244 3.29241e-22)
(0.214492 0.0195108 -2.23174e-21)
(0.332636 -0.201532 5.38707e-21)
(0.476085 0.24358 -8.14043e-22)
(0.420387 -0.247605 3.20951e-21)
(0.978561 -0.150787 3.57059e-22)
(1.06681 0.211904 -3.23867e-22)
(0.409912 -0.244754 -1.69048e-21)
(0.168071 -0.0797329 4.20104e-21)
(0.724127 -0.211796 1.07594e-21)
(0.991085 -0.231523 -2.32891e-22)
(0.580825 0.0179322 -1.93659e-21)
(0.82254 0.398949 -1.03576e-21)
(0.896188 -0.235751 6.86831e-22)
(0.666531 0.349903 -3.98901e-22)
(0.970623 0.360704 -5.21163e-22)
(0.929273 -0.0811577 -4.2606e-22)
(1.16482 0.216036 1.75248e-22)
(0.514273 0.222746 -2.47258e-22)
(0.100102 -0.0898354 -6.0375e-21)
(0.642028 0.238209 1.66296e-23)
(0.698228 0.074413 -9.09762e-21)
(0.228069 0.0382643 3.77331e-23)
(0.381612 -0.102052 -5.69309e-22)
(0.360793 0.237858 5.23007e-21)
(1.16806 -0.283189 1.33736e-21)
(0.0295016 0.000142099 -7.70437e-22)
(1.11501 -0.280006 -7.33603e-22)
(0.797308 0.0779796 -9.9202e-22)
(0.991076 0.357061 7.93807e-22)
(0.052768 0.0291864 -5.68453e-22)
(0.941941 0.351301 -1.86899e-21)
(0.6099 0.279594 1.20235e-20)
(0.164194 -0.0771105 2.98891e-21)
(0.779685 -0.275116 6.60371e-22)
(0.887725 -0.225469 -1.40602e-21)
(0.26165 -0.132061 4.11873e-21)
(0.542459 -0.236992 1.53078e-21)
(0.143562 -0.0757396 2.09425e-21)
(0.874248 -0.0212945 4.66612e-22)
(0.956954 -0.32935 -2.10225e-21)
(0.139963 -0.0729999 2.32371e-21)
(1.22082 0.255261 -1.48939e-22)
(1.15929 0.0699913 1.14002e-21)
(0.461213 -0.277564 -6.31042e-21)
(1.07326 0.210838 -9.8749e-22)
(0.147429 -0.0785066 2.61497e-21)
(0.932399 -0.0146882 7.0269e-22)
(1.31769 0.200556 5.83173e-22)
(0.75618 -0.269103 2.20081e-21)
(0.674483 0.187697 9.22984e-22)
(1.22401 0.227131 1.85806e-22)
(0.303189 -0.103369 2.85383e-21)
(0.171168 -0.0830422 -3.13759e-22)
(0.783553 -0.0925192 -1.05627e-24)
(1.09916 -0.257135 -1.69602e-21)
(0.670374 0.163172 -1.0538e-21)
(0.906194 -0.0471515 -4.28075e-22)
(0.646562 0.255102 -1.96012e-22)
(0.293598 -0.0119364 -1.31825e-21)
(0.150678 -0.081449 2.45139e-21)
(0.16131 -0.0744678 2.89662e-21)
(0.87757 0.39647 -1.17207e-21)
(1.14507 -0.298745 1.95219e-21)
(0.883291 -0.193773 1.55936e-21)
(0.740214 -0.116817 1.18037e-21)
(1.31331 0.169516 -1.68512e-22)
(0.447503 -0.268187 3.27182e-21)
(0.408139 -0.186209 -1.7133e-21)
(1.12388 -0.264556 2.39949e-22)
(0.663906 -0.185192 5.84629e-22)
(0.676274 0.208224 -1.1434e-22)
(0.959155 0.22295 -4.58512e-21)
(0.578507 -0.22681 1.59327e-21)
(0.589678 0.133408 4.99994e-22)
(0.995754 -0.163257 9.27983e-22)
(0.852852 -0.102155 7.84401e-22)
(0.704784 -0.219611 8.01291e-21)
(0.928481 0.302715 1.99675e-23)
(0.774788 -0.214821 2.03707e-22)
(0.158984 -0.0720132 1.26026e-21)
(1.16809 0.317346 -1.03149e-21)
(1.03889 -0.286283 -2.02467e-21)
(0.155369 -0.0849294 3.49087e-21)
(0.198302 0.0474933 3.50804e-22)
(0.134137 -0.0744026 3.51859e-21)
(0.779737 -0.207519 4.88181e-22)
(0.0893784 -0.0518174 -2.26987e-22)
(0.638949 0.107246 -4.40309e-21)
(0.675993 -0.262591 -1.59409e-21)
(1.04063 0.304161 -4.89238e-22)
(1.22765 0.293321 -2.75259e-22)
(0.366849 -0.206327 -3.75234e-21)
(1.00491 0.375382 -1.54713e-21)
(0.09047 0.029358 4.11519e-22)
(0.154964 -0.0660976 -1.40745e-21)
(1.06173 -0.200755 -1.80713e-21)
(0.968325 -0.18984 1.10846e-21)
(0.0636564 -0.0220033 -1.44907e-21)
(0.340641 -0.116716 -5.90875e-22)
(0.0150782 0.00010731 6.91491e-22)
(0.138788 -0.0776279 -2.87319e-22)
(0.0239931 -6.3086e-05 -6.79089e-21)
(0.699579 -0.152718 2.49185e-21)
(0.143024 -0.0807296 3.64227e-21)
(0.533726 0.268731 -4.6714e-21)
(0.929835 0.231953 -5.85381e-21)
(0.15701 -0.0695018 7.7508e-22)
(1.12426 -0.312242 -1.4659e-21)
(0.331799 0.145243 8.38677e-22)
(0.928492 -0.206906 9.36481e-22)
(1.36293 0.0380305 -5.00389e-22)
(0.147577 -0.0834205 -4.69956e-21)
(0.646209 -0.168364 -3.95857e-22)
(0.879212 -0.0546209 1.68118e-23)
(0.42063 0.0996406 -1.34235e-23)
(1.02005 0.193961 4.4307e-21)
(0.376351 -0.129346 -9.67855e-22)
(0.0188614 -0.000199061 -1.44801e-21)
(0.151398 -0.0874923 -3.3069e-21)
(0.889407 -0.247244 9.2623e-22)
(0.889036 -0.0942381 6.4079e-22)
(1.16949 0.221525 -1.15395e-21)
(0.862472 0.200446 1.48561e-21)
(0.901383 -0.0240313 -1.04506e-22)
(1.02057 0.305826 -5.89582e-23)
(0.928161 -0.0837781 -1.06691e-21)
(0.154815 -0.0645394 -5.55039e-22)
(0.456022 0.0568995 1.45982e-21)
(1.14549 0.252714 7.43352e-23)
(0.715239 -0.13121 2.47809e-22)
(1.23797 0.296658 -2.74445e-22)
(0.669662 0.365156 3.73216e-22)
(0.641316 0.358638 2.37979e-21)
(1.29403 0.236273 2.66889e-22)
(0.876799 -0.0642654 4.83813e-22)
(0.936991 -0.0286355 -5.32531e-22)
(0.796371 -0.12201 -2.64531e-22)
(0.47172 -0.240448 -2.24921e-22)
(0.925885 0.374184 -2.17014e-24)
(0.96269 -0.188551 -5.05418e-22)
(1.10577 -0.32391 5.16045e-21)
(1.08542 -0.207861 -1.38169e-22)
(1.06849 0.306467 -4.35135e-21)
(0.152247 -0.0858273 -1.74652e-21)
(0.890025 -0.254823 7.26658e-22)
(0.493479 -0.288276 -3.49782e-22)
(1.04562 0.255956 -3.83008e-22)
(1.16722 -0.277534 8.32121e-22)
(0.151509 -0.0632324 1.02556e-21)
(0.992933 0.221699 -5.93077e-22)
(1.10278 0.288631 -1.19491e-21)
(0.881889 -0.266809 3.24595e-22)
(0.939649 0.222674 -1.33114e-21)
(1.32581 -0.0200005 5.02489e-22)
(0.541424 0.0412029 1.5211e-21)
(0.231203 -0.0740952 -2.30677e-21)
(0.582369 0.0582462 -1.34581e-21)
(0.686437 -0.226367 -2.22218e-21)
(0.670322 0.141144 2.64371e-21)
(0.895138 -0.0749155 1.6011e-21)
(0.896949 -0.243012 1.20445e-21)
(0.628754 0.123852 2.30062e-22)
(0.79832 0.376565 1.46669e-22)
(0.918774 0.394413 9.43743e-22)
(0.216981 0.126328 7.84487e-22)
(0.709558 -0.351615 -3.44577e-21)
(0.883525 -0.088434 3.00528e-22)
(0.725216 -0.135604 6.99033e-22)
(0.939015 -0.221825 -1.28333e-22)
(0.624797 0.0749666 3.17486e-21)
(0.68306 0.371959 2.96631e-21)
(0.773634 0.283132 -8.46809e-21)
(0.12956 -0.074287 -4.18942e-21)
(0.0277504 -5.42148e-05 2.10676e-21)
(0.0666671 -0.0383554 -1.47918e-22)
(0.921218 0.35169 3.26236e-21)
(0.758062 0.0499234 -1.40867e-21)
(0.91445 -0.189731 7.8839e-22)
(1.31781 -0.0639732 -1.54089e-21)
(0.708685 -0.146945 -1.22469e-21)
(0.917753 -0.0590551 1.02042e-21)
(0.0551959 -0.0205396 6.8147e-21)
(0.377934 0.139172 -9.96042e-23)
(0.93689 -0.215277 8.9976e-22)
(1.13067 0.297657 -3.70797e-22)
(0.853248 -0.352543 2.97416e-21)
(0.800845 0.315177 6.06282e-22)
(0.748409 -0.0776303 8.41601e-23)
(0.874128 -0.293547 -2.87758e-22)
(0.279712 -0.192391 9.74018e-22)
(0.790597 -0.207741 -7.44642e-22)
(1.10494 0.238169 -1.62193e-22)
(1.26436 0.254822 -5.7526e-22)
(0.762979 -0.104048 -9.60388e-22)
(0.8859 -0.174629 7.29045e-23)
(0.133078 -0.0767617 -1.51304e-21)
(0.692904 -0.16846 1.99202e-21)
(0.142968 -0.082524 -4.03264e-21)
(0.990569 0.15493 -4.55465e-21)
(0.137741 -0.0796086 1.56857e-21)
(0.751507 0.196745 2.01864e-21)
(0.562501 0.00886963 -7.52598e-22)
(0.0439593 0.00191958 -1.82976e-21)
(1.0982 -0.210745 -2.66451e-22)
(0.395182 -0.178258 -1.41814e-21)
(0.35014 0.163875 -7.13992e-22)
(0.94295 -0.0495611 4.3563e-22)
(0.346041 -0.171671 1.76168e-21)
(1.01865 0.188837 -3.98833e-21)
(0.890007 -0.0299185 7.68196e-22)
(0.939756 0.322952 1.07657e-22)
(0.147453 -0.0848948 -2.58845e-21)
(0.178605 0.101464 -3.29832e-21)
(0.943267 0.235565 2.13814e-21)
(1.08692 -0.334391 -5.1599e-23)
(0.898182 -0.0633244 -3.61371e-22)
(1.04577 -0.360747 2.85409e-21)
(0.439744 -0.017734 1.82293e-21)
(1.00452 0.289942 4.50784e-21)
(0.722082 -0.252661 -1.05861e-21)
(0.904153 -0.0515856 3.8218e-22)
(0.0436628 -0.0242371 -3.16137e-21)
(0.789821 -0.0818295 4.19215e-22)
(0.538497 -0.252089 -3.0126e-22)
(0.584007 -0.0627929 -7.19633e-22)
(0.988839 0.389396 5.72567e-22)
(0.900696 0.350701 6.76618e-22)
(0.398225 -0.176724 1.61644e-21)
(0.698241 -0.250726 -2.17514e-21)
(0.70777 -0.038068 -3.03462e-22)
(0.393561 -0.180174 2.45626e-21)
(0.733334 -0.130753 4.47273e-23)
(0.722148 -0.107538 1.31301e-21)
(1.1232 -0.256179 -2.2788e-22)
(0.346567 -0.174466 2.02407e-21)
(0.944641 0.161223 1.51611e-22)
(0.972114 0.261746 -4.75071e-21)
(0.028664 8.83246e-05 1.97146e-24)
(0.663933 0.123866 6.00016e-21)
(0.801899 -0.0820592 4.52507e-22)
(0.588612 -0.254198 -2.60398e-21)
(0.882313 -0.200228 -1.41134e-22)
(0.955146 -0.0763403 -1.04983e-21)
(0.796031 -0.0854352 9.44629e-22)
(0.667897 0.0927379 -1.7768e-21)
(1.01043 0.330034 -2.33513e-21)
(0.92057 -0.0528955 -6.36951e-22)
(0.345896 -0.176934 3.95189e-21)
(0.12186 -0.0612267 -1.93264e-21)
(0.817725 0.206911 -2.90592e-21)
(0.932799 -0.0856117 -7.05283e-22)
(0.360292 -0.198084 -6.00744e-22)
(0.748814 -0.121027 1.98911e-22)
(1.02487 0.309165 -1.21606e-21)
(1.30246 -0.105368 -7.35337e-22)
(0.399272 -0.173101 -2.37059e-21)
(0.966623 0.213405 1.13214e-21)
(0.948451 0.213843 1.1934e-21)
(0.391853 -0.182729 5.98064e-21)
(1.10502 0.322324 -1.5452e-22)
(0.820109 -0.135355 -5.88205e-22)
(0.0287988 -0.000254864 -2.02705e-21)
(0.770612 -0.107979 8.16987e-22)
(0.344735 -0.178407 8.64755e-22)
(0.737371 -0.309034 5.68192e-22)
(0.34667 -0.181965 -5.01202e-21)
(1.27754 -0.139554 -2.13059e-22)
(0.78341 -0.0851498 4.35701e-22)
(0.884929 0.33523 -1.75106e-22)
(0.684026 -0.255797 1.61018e-21)
(0.685564 -0.340708 -4.34421e-21)
(0.596956 0.00712573 3.9776e-21)
(0.755649 -0.0828986 -9.48225e-22)
(0.348658 -0.184645 -1.06419e-21)
(0.756302 -0.116486 -1.03525e-21)
(0.9016 -0.0361759 -1.20123e-21)
(0.499499 0.0268149 3.9117e-21)
(0.609168 0.265344 -8.99688e-21)
(0.319337 -0.187361 2.91582e-21)
(0.034306 -0.00177443 1.61085e-20)
(0.0254744 -2.29228e-06 -1.26511e-21)
(1.36283 0.0683917 1.53167e-22)
(0.946122 0.398678 -2.95109e-21)
(0.80176 -0.279489 -2.25858e-21)
(1.31553 0.148971 5.92505e-22)
(0.358225 -0.118158 -2.40826e-21)
(0.512409 -0.284227 5.46931e-21)
(0.345813 -0.180007 -2.85192e-21)
(0.759689 -0.237912 -9.71555e-22)
(0.777445 -0.103711 -4.53684e-22)
(1.3349 -0.106542 -5.20984e-21)
(0.349093 -0.187103 8.03311e-22)
(1.06735 -0.3438 -1.23082e-21)
(0.961842 -0.174783 -4.39648e-22)
(0.947308 -0.163102 7.68921e-22)
(0.409798 -0.16217 -1.13795e-22)
(0.96944 -0.18033 -2.57141e-22)
(1.36549 0.0340037 1.54305e-21)
(1.00327 -0.23732 -2.90718e-22)
(0.813198 -0.0818401 -3.70686e-22)
(1.21056 0.200882 -1.53187e-21)
(0.353268 -0.232321 -8.30604e-22)
(0.807819 -0.0852157 -8.81367e-22)
(0.70966 0.111108 1.51303e-21)
(0.378818 -0.231825 1.98993e-21)
(0.414356 -0.15752 -1.37228e-21)
(0.569643 0.293598 4.93808e-21)
(0.923108 -0.0451994 5.38213e-22)
(0.823722 -0.0813488 3.12053e-22)
(0.405392 -0.16587 -4.82129e-21)
(1.3171 -0.101893 -4.91093e-24)
(0.351239 -0.189657 4.86222e-22)
(0.498687 0.188433 3.18007e-22)
(0.416059 -0.258958 -1.91505e-21)
(0.516904 -0.275069 -2.50355e-21)
(1.08534 0.353849 1.08958e-21)
(0.772523 -0.061881 -1.51497e-21)
(0.513028 -0.281955 -1.75698e-21)
(0.863409 0.141658 -1.5601e-21)
(0.558622 0.319505 7.87014e-21)
(0.889516 -0.157229 7.99561e-23)
(0.929553 -0.0139951 -3.7999e-22)
(0.402132 -0.169442 -4.79142e-22)
(1.13583 -0.329963 4.01349e-22)
(0.421481 -0.152972 5.35175e-21)
(0.516085 -0.277333 6.8271e-22)
(0.333661 0.20566 1.80477e-21)
(0.884782 -0.180587 -1.0426e-21)
(0.514075 -0.279542 1.75313e-21)
(0.669721 -0.260634 -2.90522e-21)
(1.17995 0.213092 2.01989e-21)
(0.975357 -0.124756 -7.70974e-22)
(0.458783 0.0160225 -2.64603e-21)
(0.930037 -0.213737 -5.26007e-22)
(0.560819 0.270155 1.20984e-21)
(0.258577 0.0979987 1.05375e-22)
(0.442486 -0.19466 1.48545e-22)
(0.97308 0.31123 -4.45668e-21)
(1.21869 -0.188891 1.00433e-21)
(0.353613 -0.191478 -4.56455e-21)
(0.996607 -0.168089 -6.98717e-22)
(1.25038 -0.168684 2.80661e-22)
(0.0502368 0.028313 -7.39095e-23)
(0.287343 0.16341 1.51104e-21)
(1.10884 0.218732 6.67292e-23)
(0.929529 -0.135823 1.11411e-22)
(1.03946 -0.235298 7.15052e-22)
(0.943871 -0.11728 -5.99522e-22)
(0.356597 -0.194228 -5.81895e-22)
(0.0235679 0.00013416 -3.35422e-22)
(0.833655 -0.0806092 -9.24837e-22)
(0.470837 0.181075 -6.13828e-23)
(0.677024 -0.0279303 3.29429e-21)
(0.158336 0.0910763 -7.79841e-22)
(0.87901 -0.0174637 8.75298e-22)
(0.818792 -0.0846295 2.33313e-22)
(1.18652 -0.202285 1.05964e-21)
(0.426256 0.164528 1.46898e-22)
(0.5676 -0.268469 -1.06863e-21)
(0.868193 -0.373468 1.23252e-21)
(0.873586 -0.0153618 2.84634e-22)
(0.907964 -0.04369 2.86592e-21)
(1.02918 0.190766 7.79383e-22)
(0.922845 -0.0535121 1.02182e-22)
(0.574572 -0.241968 -1.79321e-22)
(0.875693 0.147407 3.4275e-21)
(0.829034 -0.083854 -7.40999e-22)
(0.827129 -0.136047 3.36425e-22)
(0.794968 -0.20056 1.39613e-21)
(0.375953 0.269102 -9.24938e-22)
(0.548266 -0.244004 1.10266e-21)
(0.954673 0.184823 1.73165e-21)
(0.846084 -0.0956382 8.59866e-23)
(0.991315 -0.161427 -5.78901e-22)
(0.780529 0.0271897 4.00579e-21)
(0.952828 -0.374092 6.70097e-22)
(0.792604 0.29669 -4.78255e-23)
(1.02214 0.185 -2.81218e-21)
(0.763367 -0.0798746 -1.27513e-21)
(0.87159 -0.0124391 6.00104e-22)
(0.810889 -0.207082 6.07116e-22)
(0.208943 0.120543 1.93753e-21)
(0.656266 -0.26513 -3.33826e-21)
(0.938356 -0.0277607 -8.94924e-23)
(1.05052 -0.351807 -4.3453e-22)
(0.813169 -0.0637435 -4.06477e-22)
(0.867103 -0.0713442 1.08356e-21)
(0.926207 -0.128952 4.68863e-22)
(0.958854 0.180657 -4.47916e-21)
(1.06903 0.0662942 -3.06122e-21)
(0.30701 -0.179315 4.48198e-22)
(1.15025 0.218029 -5.66948e-22)
(0.494246 -0.290311 4.47003e-21)
(0.704022 -0.116578 -2.97551e-22)
(0.358186 -0.226042 3.94275e-21)
(0.644342 -0.268524 4.04886e-21)
(0.77328 0.37078 8.71732e-22)
(0.885883 -0.323351 -1.56121e-21)
(1.26705 -0.206993 3.92796e-21)
(0.882512 -0.164542 8.41303e-22)
(0.874455 -0.33175 2.87626e-21)
(0.848401 -0.158936 8.00196e-22)
(0.972965 -0.118966 6.04873e-22)
(0.948829 -0.0446484 -3.63786e-22)
(0.420429 0.00711282 7.94388e-21)
(0.863701 -0.0740332 7.62094e-22)
(0.894857 -0.0310182 -9.05642e-22)
(0.872798 -0.0586276 -8.7292e-23)
(0.92125 -0.115446 9.92012e-22)
(0.863338 -0.337247 -2.9914e-21)
(0.947507 -0.102613 2.0868e-22)
(0.83878 -0.0828545 -1.09057e-22)
(0.842062 -0.0994896 2.57143e-22)
(0.894676 0.37443 1.35207e-21)
(0.499289 0.283874 1.3333e-21)
(1.06057 0.368944 1.05867e-21)
(0.427127 0.264434 1.12161e-21)
(0.797332 0.278783 -7.25879e-22)
(1.0381 -0.324695 -4.34913e-21)
(0.851718 -0.340445 2.1119e-22)
(0.818209 -0.0669661 9.94738e-23)
(0.687068 0.00725994 -6.87321e-21)
(0.840676 -0.343818 2.08218e-21)
(1.03024 -0.358692 -9.14925e-23)
(0.916877 -0.0637307 1.75052e-22)
(0.898858 -0.0401504 3.14563e-23)
(1.0128 -0.363969 5.93329e-23)
(0.995303 -0.367855 6.36189e-22)
(0.84925 -0.106181 7.24624e-23)
(0.0684119 0.039458 3.0831e-21)
(0.430156 -0.149663 2.34771e-21)
(1.03295 -0.185647 -5.25733e-22)
(0.870943 -0.0729324 2.49154e-22)
(0.960156 0.216005 3.91098e-21)
(0.851317 -0.0971002 -3.08629e-22)
(0.981655 -0.136405 5.24244e-22)
(0.18105 0.0277111 1.17155e-21)
(0.318098 -0.149945 2.24545e-21)
(0.91032 0.157797 -6.03198e-22)
(0.8763 -0.0603386 4.54386e-22)
(0.792848 -0.222315 1.22926e-21)
(0.922728 -0.0599919 -8.12654e-22)
(1.03581 -0.190994 1.64592e-21)
(0.161222 -0.0882239 -2.68149e-21)
(0.674621 0.330574 -4.31451e-21)
(0.8306 -0.347907 -7.16547e-22)
(1.12219 0.219324 -6.00168e-22)
(0.888223 -0.162861 -5.10561e-22)
(1.00932 0.190745 -1.06922e-21)
(0.964362 0.212564 3.39058e-22)
(0.859138 -0.127018 -1.12134e-21)
(1.20488 0.258415 -1.85097e-21)
(0.935484 -0.0277562 3.12911e-22)
(0.807701 -0.0664466 -1.49779e-21)
(1.18546 -0.295089 1.93156e-22)
(1.01088 -0.00209925 2.6886e-21)
(0.541177 -0.273518 -7.23437e-22)
(0.522435 0.291653 1.69816e-22)
(0.827848 0.116626 1.69153e-21)
(0.899735 -0.0318073 -2.3646e-22)
(0.933091 -0.14265 5.84756e-22)
(0.892623 -0.0290141 6.93697e-22)
(0.783519 -0.0392207 -6.76895e-23)
(0.874112 -0.0705276 -4.37328e-22)
(1.06072 -0.31115 -6.27789e-22)
(0.174176 -0.0866163 -8.47655e-23)
(0.858016 -0.103139 -9.93066e-22)
(0.785395 -0.0328166 -8.05128e-22)
(0.967998 -0.103475 4.98738e-22)
(0.881023 -0.170368 -5.34616e-22)
(0.805568 0.0930112 1.26952e-21)
(0.96088 0.171583 -2.39936e-21)
(0.81008 -0.12871 1.94667e-22)
(0.954645 -0.130275 4.16168e-22)
(0.561118 -0.190948 6.51332e-22)
(0.439324 -0.146717 -2.8779e-21)
(0.851359 0.134788 4.509e-21)
(0.820402 -0.351556 9.92894e-23)
(1.05762 0.218697 1.50856e-21)
(0.879352 -0.0582386 2.55069e-22)
(0.721079 -0.152054 3.70606e-23)
(0.964932 0.227233 2.44117e-21)
(1.14635 0.34179 -1.78399e-22)
(0.897673 -0.0300747 -5.05992e-22)
(0.828218 -0.0724906 -9.9811e-22)
(0.697816 0.269508 5.95399e-22)
(0.882397 -0.052716 -1.0727e-22)
(1.07778 0.215913 1.39944e-22)
(1.14697 -0.253114 -3.91264e-23)
(0.382826 -0.00108433 2.62289e-21)
(0.789667 0.0624948 1.40283e-21)
(0.883582 -0.0141315 6.35609e-22)
(0.784111 -0.0708693 7.30352e-22)
(0.787943 0.286252 2.18645e-21)
(0.590419 -0.0858117 2.33134e-22)
(1.11225 -0.212009 -1.7509e-21)
(0.472599 0.233729 8.04318e-22)
(0.877045 -0.0149027 -5.51224e-22)
(0.653664 -0.235834 4.8013e-21)
(0.27206 0.127272 -1.02172e-21)
(0.83103 -0.130852 8.47643e-22)
(0.889498 -0.0332536 1.23198e-22)
(0.810709 -0.353979 -1.14331e-21)
(0.179787 0.0986761 -6.26913e-22)
(0.779356 -0.0596454 1.54835e-21)
(0.360114 -0.00931169 1.24137e-21)
(0.0624793 0.0363683 -1.28106e-21)
(1.03603 -0.27302 2.42558e-22)
(0.819208 -0.160107 -5.83553e-22)
(0.775313 -0.0480636 -1.5927e-21)
(0.846872 -0.373359 4.69762e-22)
(0.733937 0.00631873 8.57132e-21)
(0.646901 -0.0649455 1.12152e-21)
(0.445082 -0.25932 -2.8062e-22)
(0.115604 0.120039 -1.03596e-21)
(0.694435 -0.0481354 -8.88864e-23)
(0.823248 0.19027 -2.7565e-21)
(1.02075 0.131164 -3.17107e-21)
(1.02188 -0.270682 1.64793e-21)
(0.380217 0.0985961 -1.76484e-23)
(0.551484 0.243826 -3.89597e-22)
(0.921379 -0.0466177 -1.1924e-21)
(0.840644 -0.136954 -1.00526e-21)
(0.420157 0.194321 -7.95878e-22)
(0.919525 -0.108966 3.30137e-22)
(0.783935 -0.288142 4.28856e-22)
(0.916031 -0.0793292 -9.70087e-22)
(0.512091 -0.286816 -1.76007e-21)
(0.970386 0.282389 9.07525e-23)
(0.810273 0.394556 -4.45654e-21)
(0.0170718 0.000114272 2.27824e-21)
(0.346832 -0.00854742 -2.44049e-21)
(0.65185 -0.278953 1.38627e-21)
(0.984098 -0.371895 1.97458e-21)
(0.761866 -0.159259 -8.6288e-22)
(0.964274 -0.141365 2.63571e-22)
(0.58895 -0.28691 2.56949e-22)
(0.903709 -0.0403765 4.92349e-22)
(0.877819 -0.0205613 -5.83032e-22)
(0.9533 -0.119161 -6.66863e-22)
(1.06431 -0.356191 2.4218e-21)
(0.259938 0.127467 -1.12866e-22)
(0.957223 0.175407 5.84614e-22)
(0.156664 -0.0879955 -8.27245e-22)
(0.375518 0.207388 1.57639e-21)
(0.606455 -0.159455 4.62375e-22)
(0.999268 -0.160291 3.38152e-22)
(0.779112 -0.177895 3.68955e-22)
(0.7034 0.379304 4.54714e-21)
(0.742858 -0.134777 5.3354e-22)
(0.948377 -0.0432995 2.10142e-22)
(0.496282 0.281465 -1.65495e-21)
(0.922847 0.405309 1.77258e-21)
(0.943279 -0.0342978 -5.12901e-24)
(1.0206 0.180284 6.03558e-22)
(1.03727 0.196959 2.42509e-21)
(0.863005 0.372952 -8.65057e-22)
(0.864052 -0.0651607 9.52875e-22)
(0.893919 -0.0815409 -2.83844e-22)
(1.03486 0.380662 1.17659e-22)
(1.08428 0.230201 6.93569e-22)
(1.01292 0.393347 1.06665e-21)
(0.100388 -0.0480126 -1.5879e-21)
(0.826656 -0.212287 2.00378e-21)
(0.929214 -0.14 -7.06783e-22)
(0.953611 -0.122776 7.48544e-22)
(0.73954 -0.107813 7.32639e-22)
(0.842955 -0.0797296 1.49077e-21)
(0.84909 -0.086629 8.84578e-22)
(0.441941 0.244401 -4.04025e-23)
(1.03761 0.338144 2.19075e-23)
(0.854956 -0.0935285 -4.97435e-22)
(0.353552 -0.231552 -7.86646e-22)
(0.176339 0.0930846 5.06452e-22)
(0.896559 -0.0689212 -5.03518e-22)
(0.1769 -0.00727995 -3.13765e-21)
(0.454814 -0.00859867 -3.18221e-23)
(0.769942 -0.0843802 -6.94636e-22)
(0.341474 0.0960457 -2.64233e-23)
(0.0644212 0.0368107 -3.50716e-22)
(0.882385 -0.0169856 4.17329e-22)
(0.899696 0.202878 1.60517e-21)
(0.713946 -0.246266 -1.30794e-22)
(0.861251 -0.0992705 8.99952e-22)
(0.599732 -0.0606557 1.21663e-22)
(1.13241 -0.266182 -3.57363e-21)
(0.896911 -0.3201 3.22905e-22)
(0.831493 0.369409 -6.28471e-22)
(0.764208 -0.120329 -3.27184e-22)
(0.605671 0.343021 8.31903e-21)
(0.593638 -0.285742 6.05192e-25)
(0.891738 -0.0350542 3.68742e-22)
(0.989379 -0.342717 -1.51257e-21)
(0.219409 0.0644088 1.74837e-22)
(0.449899 -0.143154 -2.13166e-21)
(0.790326 -0.0961287 -1.81613e-22)
(0.589706 -0.138453 2.44961e-21)
(0.575969 -0.11608 2.89387e-21)
(0.998339 -0.354894 1.07625e-21)
(1.00804 -0.26776 4.36764e-22)
(0.635549 -0.228646 -4.71019e-22)
(0.483959 0.253599 -2.38538e-22)
(0.914848 -0.155379 -5.6741e-22)
(0.950148 -0.059101 -4.25258e-22)
(0.783907 -0.149873 1.56393e-22)
(0.957024 -0.124218 1.07047e-22)
(0.317906 -0.147665 -5.51522e-21)
(0.899996 -0.0581357 -6.67927e-23)
(0.972009 -0.186455 -6.48687e-22)
(0.895104 -0.0846837 4.59224e-22)
(0.460676 -0.138473 -1.70589e-21)
(1.05306 0.202458 -1.56584e-21)
(0.370875 0.201532 9.59007e-22)
(0.473992 -0.13372 -2.05614e-21)
(0.0787341 -0.0438609 -2.706e-21)
(0.886878 -0.147953 -8.52442e-22)
(0.888442 -0.0391812 -1.49345e-22)
(0.939947 -0.0458437 3.12578e-22)
(0.78461 -0.107161 -3.38655e-22)
(0.931666 -0.0119067 8.24787e-22)
(0.828088 -0.0671225 9.66021e-22)
(0.843197 0.149867 3.35504e-21)
(0.876313 -0.0528969 -9.03418e-22)
(0.98945 0.400716 -1.04907e-22)
(0.305096 -0.155965 6.66205e-21)
(0.920477 -0.0768158 -6.55159e-22)
(0.392416 0.278838 3.34484e-21)
(0.965015 -0.323559 9.67033e-22)
(0.744447 -0.314252 2.49909e-21)
(1.10716 -0.260142 3.64804e-22)
(1.07363 -0.204502 4.69181e-22)
(0.232081 -0.158338 1.90894e-21)
(0.501876 0.0999135 -1.79102e-21)
(0.489524 -0.128999 1.26457e-21)
(1.31856 0.157084 -1.26657e-22)
(0.951139 -0.317928 7.15891e-22)
(0.38357 -0.244908 1.72065e-21)
(0.789606 0.123956 -1.58754e-21)
(1.04369 -0.31064 -1.60619e-21)
(0.704525 -0.046749 -6.98637e-22)
(0.921908 -0.0576005 1.009e-21)
(0.966007 0.397203 1.20248e-22)
(1.02079 -0.227359 -1.44497e-21)
(0.168263 -0.0569859 2.03037e-21)
(0.923515 -0.0557985 -5.33416e-22)
(0.904052 -0.316695 -2.0538e-21)
(0.899038 0.154788 8.68379e-21)
(0.436651 -0.232293 -9.4992e-22)
(0.921983 -0.064294 -7.17103e-22)
(0.994012 -0.263787 -1.31012e-21)
(0.658723 -0.0630254 7.20714e-22)
(0.2612 0.116862 4.22753e-22)
(0.998284 -0.155659 -1.38207e-22)
(0.88536 -0.0542818 2.0123e-22)
(0.826488 -0.148015 -3.50583e-23)
(1.0231 0.301777 -1.97899e-21)
(0.390831 -0.185745 1.72967e-22)
(1.2057 0.320167 4.96649e-22)
(0.792199 -0.0315704 9.04316e-22)
(0.882669 -0.0598057 4.8078e-22)
(0.950066 -0.104297 -2.20222e-22)
(0.448427 -0.214425 3.69182e-21)
(0.94999 -0.114068 2.64256e-22)
(1.00633 -0.34503 1.87311e-22)
(0.773723 0.19847 -1.1109e-20)
(0.897408 -0.072383 3.97324e-22)
(0.901383 -0.0388834 1.11437e-21)
(0.914088 -0.16053 1.10414e-21)
(1.00748 0.180929 -4.86254e-22)
(1.29768 -0.110272 6.35735e-22)
(1.01976 -0.347763 1.55645e-21)
(0.3923 -0.00908651 -4.08312e-22)
(0.5479 -0.305258 -9.51456e-22)
(0.562327 -0.265584 -1.92822e-21)
(1.01338 0.187398 -1.76215e-21)
(0.919015 -0.0793211 -2.11291e-22)
(0.880148 -0.065667 -1.09957e-21)
(0.293053 -0.166378 3.49206e-21)
(0.924489 -0.0518608 -2.00712e-22)
(0.821521 -0.124024 -6.63178e-22)
(0.482501 -0.0679202 3.08933e-21)
(0.939158 -0.300214 2.34541e-21)
(0.770518 -0.268833 -8.9354e-22)
(0.850365 -0.142396 -1.78303e-22)
(0.921294 -0.30901 -2.09515e-22)
(0.957265 -0.290078 1.50936e-21)
(1.22112 -0.187028 -6.48721e-21)
(0.867237 -0.122275 -6.28389e-22)
(0.877748 -0.0719644 1.12672e-21)
(0.931041 -0.00456344 1.59015e-22)
(0.21188 -0.124165 -2.4135e-21)
(0.90044 -0.0613297 7.31077e-22)
(0.591687 -0.321236 3.06765e-21)
(0.807314 -0.214354 -4.61371e-22)
(0.97928 -0.328264 -2.99013e-22)
(1.23917 -0.176586 3.75336e-21)
(0.638955 -0.212112 -2.59102e-21)
(0.246358 -0.177533 1.17158e-21)
(1.00683 0.176103 2.1785e-21)
(0.643437 -0.195553 4.87052e-22)
(0.79322 -0.274034 9.65313e-22)
(0.976123 -0.279011 -2.14967e-21)
(1.32547 -0.0728718 1.78658e-22)
(0.851132 -0.153176 3.30657e-22)
(0.0178776 -5.29865e-05 -2.82224e-21)
(0.554705 -0.288473 -2.18965e-21)
(0.596387 -0.30345 2.83101e-21)
(0.695527 0.0992342 -5.49825e-21)
(0.924618 -0.0743402 -6.99877e-22)
(0.0451399 -0.000837655 -2.63573e-21)
(1.22544 0.304132 1.90495e-23)
(0.518459 0.275473 2.99691e-21)
(0.998371 0.30363 3.79665e-21)
(0.959473 0.166579 3.64861e-21)
(0.606496 -0.0832045 -1.15181e-21)
(0.867994 -0.104579 5.29658e-22)
(0.8794 0.4016 -2.84308e-21)
(0.842069 -0.0641793 6.57379e-22)
(0.226156 0.0910151 1.25139e-22)
(0.995374 -0.266754 -2.71624e-21)
(0.0461023 -0.00140165 -9.9863e-21)
(0.719758 -0.353977 -7.14557e-22)
(0.550467 -0.308456 -2.10092e-21)
(1.34454 -0.00500605 -1.10235e-21)
(1.05013 0.305231 -1.36817e-21)
(1.04602 0.202959 4.13176e-21)
(0.959189 -0.0764863 -1.20483e-22)
(1.05066 -0.274836 -7.06272e-23)
(1.00975 -0.167861 1.69659e-21)
(0.923336 -0.0767597 7.10248e-22)
(0.906072 -0.0444231 -1.35054e-22)
(0.6476 0.227616 -4.13238e-21)
(0.940845 -0.0939655 6.87882e-22)
(0.918819 -0.0546154 5.82054e-22)
(0.833116 -0.0200188 -7.30625e-22)
(0.932121 -0.0102959 -3.39351e-22)
(0.948288 -0.0592602 -6.67169e-22)
(0.928815 -0.0763246 2.54071e-24)
(0.923945 -0.0496296 3.17232e-22)
(0.673711 0.047248 -4.74491e-21)
(0.685181 -0.271424 2.03511e-21)
(1.0154 -0.253787 -4.19566e-21)
(0.579485 -0.0745575 -9.71303e-22)
(1.18323 -0.0200812 1.94086e-21)
(0.90527 -0.25285 6.0591e-22)
(1.02735 0.185908 -3.21052e-21)
(0.204762 -0.119111 -2.60599e-21)
(0.105211 0.0617342 8.72893e-23)
(0.888074 -0.0491619 6.78692e-22)
(0.904376 -0.0209252 -7.48426e-22)
(0.403805 -0.137127 2.70052e-21)
(0.673734 -0.179976 -1.06485e-22)
(0.625611 -0.234015 -1.54561e-21)
(0.978329 -0.130416 -8.86811e-22)
(0.902235 -0.0308348 4.57676e-22)
(0.632549 -0.330964 7.52159e-22)
(0.196185 0.0825221 1.38164e-22)
(0.583942 0.270832 -4.33503e-22)
(0.939306 -0.0489839 7.49912e-22)
(0.936901 -0.0253684 -3.65916e-22)
(0.687989 -0.285435 1.61037e-21)
(0.138861 0.0932384 1.40833e-21)
(0.976493 0.153946 2.67774e-24)
(0.874138 0.333831 -7.27526e-22)
(0.885434 -0.0476805 4.71439e-23)
(0.717085 -0.0370648 1.11727e-21)
(0.933592 -0.0158109 -5.94403e-22)
(0.904012 -0.0350454 1.27039e-21)
(0.361297 0.172975 3.91764e-22)
(0.756617 -0.205923 1.29688e-21)
(1.1952 0.329388 -3.79011e-22)
(0.850987 -0.0502639 7.54413e-23)
(0.640726 0.359266 4.19821e-21)
(0.536693 -0.275951 -2.61951e-22)
(0.215623 -0.12752 4.83473e-22)
(0.969415 0.156363 -5.49593e-23)
(1.04435 0.0430513 1.87733e-21)
(1.06288 0.20677 2.77382e-21)
(0.919417 -0.283699 -8.37749e-25)
(0.652903 0.311444 -9.79885e-21)
(0.507256 -0.124324 1.23497e-21)
(0.899099 -0.373685 4.89291e-21)
(1.03652 -0.239218 9.16185e-22)
(1.0544 -0.307128 -1.43172e-21)
(0.940462 -0.0475539 5.2615e-22)
(0.943433 0.34305 4.23769e-23)
(0.674046 -0.288469 6.38491e-22)
(0.444912 0.223959 -8.37766e-22)
(1.17946 0.231586 -3.27774e-22)
(0.589385 0.332071 -3.35687e-21)
(0.896484 -0.0784453 -1.22462e-21)
(0.906049 -0.0391013 1.48962e-22)
(1.09138 0.312367 -2.45879e-22)
(0.936915 -0.0237131 -1.02145e-22)
(0.0256868 0.000254351 -7.12351e-22)
(0.0615487 -0.0368248 1.62692e-21)
(0.837252 -0.142275 -3.19561e-22)
(0.852766 0.32866 4.86108e-21)
(0.52252 -0.204195 5.95741e-22)
(0.926622 -0.0524094 1.72694e-22)
(0.962961 0.163072 -1.6329e-21)
(0.268497 0.17474 2.44962e-21)
(0.864536 -0.0334084 3.1898e-22)
(0.157229 0.0882038 3.00991e-21)
(0.98422 0.238486 -2.25071e-21)
(0.907158 -0.104272 1.16912e-21)
(0.947052 -0.112361 -6.97438e-22)
(0.942265 -0.0478698 -6.21422e-22)
(0.957583 -0.12802 7.7511e-22)
(0.918444 -0.112705 -3.92252e-22)
(0.865088 -0.108594 -4.86446e-22)
(0.525353 -0.0465637 6.9539e-22)
(0.971135 -0.113446 3.47608e-22)
(0.949982 -0.107454 1.16817e-21)
(0.817495 -0.13015 8.2443e-22)
(0.837701 -0.0720661 -7.36994e-22)
(0.890332 -0.191087 -9.53124e-22)
(0.898878 -0.0666932 7.52855e-22)
(0.943089 -0.253943 9.2415e-22)
(0.408454 -0.0179846 -5.75331e-22)
(0.525848 -0.117435 3.20064e-21)
(0.933079 -0.0782951 -2.12783e-22)
(0.713689 -0.121562 -1.28967e-22)
(0.122466 0.0699908 1.43116e-21)
(0.391653 0.185273 -8.46132e-22)
(1.28452 -0.108963 -1.0159e-22)
(0.14144 0.0653412 -7.98373e-23)
(0.981543 -0.132408 4.03248e-22)
(0.0703723 -0.0645198 4.75737e-21)
(0.161091 -0.0962245 -1.64082e-21)
(1.05815 -0.299268 2.63577e-21)
(0.0244341 -0.000511779 -5.78298e-21)
(0.873313 -0.0244349 1.88423e-22)
(0.804912 -0.200382 -1.76831e-21)
(0.82428 0.121115 -1.2812e-21)
(0.925764 -0.0562557 9.65016e-22)
(0.731237 -0.0943392 3.50798e-22)
(0.967532 0.207 5.07123e-21)
(0.969648 -0.108522 -5.61055e-22)
(0.789351 -0.193284 -1.97377e-22)
(0.888444 -0.211258 9.69673e-23)
(1.01285 0.292107 -2.35668e-21)
(0.0847788 -0.034631 1.7409e-21)
(0.941658 -0.210475 9.61009e-23)
(0.678395 0.164679 1.00044e-21)
(0.925174 -0.0603736 2.56473e-22)
(0.745573 -0.188403 -2.38227e-22)
(1.11236 -0.337416 -3.01407e-21)
(0.0703736 -0.0386482 7.20569e-22)
(0.269277 -0.106431 -1.01652e-21)
(0.797126 0.369716 9.62715e-22)
(0.847426 -0.147844 -1.08027e-21)
(1.13116 -0.330222 4.09905e-21)
(1.09381 -0.342681 1.64805e-21)
(1.05754 -0.222814 -5.63002e-21)
(0.131016 0.0738898 -9.45354e-22)
(0.806613 -0.368149 -9.72599e-22)
(0.902263 -0.0563229 -1.66402e-22)
(0.545206 -0.10986 4.68597e-22)
(0.982956 0.331326 1.62395e-21)
(0.820374 -0.20621 1.01893e-22)
(0.919648 -0.249695 1.47111e-21)
(0.266981 -0.153828 -1.71775e-21)
(0.70093 0.370521 2.27527e-21)
(0.764709 -0.22996 1.30669e-21)
(0.827676 -0.124375 -1.64254e-22)
(0.288624 -0.200991 1.61509e-21)
(0.886766 -0.0137667 -7.17079e-23)
(0.0538023 0.0227919 -3.0986e-22)
(0.836532 -0.0979099 -4.00403e-23)
(0.0147032 4.27998e-06 1.66376e-21)
(0.282478 0.16131 -2.62648e-21)
(1.13332 0.323924 -1.01135e-23)
(0.757733 -0.316604 -1.98972e-21)
(1.10508 0.317426 1.69825e-21)
(1.11916 0.3213 6.19993e-23)
(0.0801186 0.0479157 -1.67597e-21)
(0.328766 -0.0299714 -4.40923e-21)
(0.934911 -0.0692633 -1.19933e-22)
(0.41759 0.234059 1.16614e-21)
(0.790007 -0.0749126 -1.43302e-21)
(0.965649 -0.0900364 -5.10343e-22)
(0.92759 -0.0487199 7.61096e-22)
(0.95311 -0.178364 5.39589e-22)
(0.985203 -0.138203 0)
(0.874173 0.268037 -4.34804e-21)
(0.045884 5.54179e-05 1.99994e-22)
(0.837568 -0.131358 9.33645e-22)
(0.0618048 0.0299473 -1.41007e-21)
(0.933744 -0.202513 6.00474e-22)
(1.07787 0.306066 3.39621e-21)
(0.951704 -0.0638313 -1.85864e-22)
(0.924678 0.167945 7.69854e-22)
(0.916276 0.227159 -1.90727e-21)
(0.919025 -0.0740612 -4.25711e-22)
(0.924661 -0.0646745 3.67195e-22)
(0.895134 -0.221467 2.43059e-22)
(0.938304 -0.0594035 2.91126e-22)
(0.894392 -0.0339184 2.43804e-22)
(0.953626 0.16006 3.03829e-21)
(0.876087 -0.0826383 -3.04714e-22)
(0.936078 -0.067144 3.42572e-22)
(0.924422 -0.0279826 -4.73546e-22)
(0.961209 -0.0766071 4.6289e-22)
(0.702107 -0.162552 -1.65593e-21)
(0.903794 -0.023363 1.15308e-21)
(0.812962 -0.0756783 8.37065e-23)
(0.95954 -0.0693335 -1.95302e-23)
(1.15064 -0.322219 1.8931e-22)
(1.06234 -0.322657 5.43419e-22)
(0.926251 -0.194579 -6.99816e-23)
(0.943014 -0.032898 1.37067e-22)
(0.318715 0.181766 -2.31678e-21)
(0.975507 -0.121235 -3.81586e-22)
(0.994133 -0.154232 -9.92157e-22)
(0.886898 -0.371383 -3.48872e-21)
(0.90298 -0.231638 -1.05489e-21)
(0.260726 0.147315 -3.72743e-21)
(0.83318 -0.0750316 3.73334e-22)
(0.45692 -0.192318 -7.85882e-22)
(0.830866 -0.225542 4.11696e-22)
(1.00549 0.390064 3.39728e-22)
(0.361986 -0.0233732 -4.64041e-21)
(0.566854 -0.102608 -1.1497e-21)
(0.481187 0.300792 -2.44758e-22)
(0.301244 0.169489 -6.65624e-22)
(0.92586 -0.0364069 5.37536e-22)
(0.847072 -0.137118 5.11298e-22)
(0.776685 -0.291136 1.22704e-21)
(0.884927 -0.00294753 4.32268e-22)
(0.796158 -0.0719605 9.20215e-22)
(0.956163 0.204416 -2.33297e-21)
(0.895193 -0.0914033 9.74699e-22)
(0.928832 0.211864 -2.01653e-21)
(0.858048 0.260334 -9.72185e-21)
(0.598728 -0.284509 -3.75388e-21)
(0.82996 0.32121 -4.14111e-21)
(0.971783 -0.110586 3.55503e-23)
(0.922198 -0.00381031 1.16988e-22)
(0.952993 0.34676 -5.34093e-21)
(0.32318 0.180462 -1.18593e-21)
(1.00376 -0.161738 -1.75189e-22)
(0.0836362 -0.0469073 3.17692e-21)
(0.962795 -0.0679363 -2.28084e-22)
(0.891591 -0.172772 9.31797e-22)
(0.297476 -0.0350731 -4.56448e-21)
(0.919159 -0.0847168 -5.34676e-22)
(0.500096 0.0714794 9.93822e-22)
(0.908311 -0.043014 2.60098e-23)
(0.146507 0.0831282 8.84133e-22)
(0.0290288 2.18813e-05 4.17539e-21)
(0.891581 -0.133021 8.81746e-22)
(0.890916 0.273774 -5.0631e-22)
(1.16571 0.330738 2.07277e-22)
(0.274896 0.158019 -2.84709e-22)
(0.892116 -0.00129992 5.25696e-22)
(0.817021 0.395974 -5.58186e-21)
(0.280977 0.158168 -2.52739e-21)
(0.875393 -0.0785516 1.1394e-22)
(0.784821 -0.0639744 -5.19043e-22)
(0.901757 -0.00121374 -4.29217e-22)
(0.345893 0.191194 -1.18965e-21)
(0.909888 -0.00104423 -6.18487e-22)
(0.762467 -0.19865 -1.16538e-21)
(0.920075 -0.186024 -5.29348e-22)
(0.377199 0.216494 -2.39341e-21)
(0.945436 -0.0362419 -2.20725e-22)
(0.968642 -0.100939 -3.12679e-22)
(0.903644 -0.0430805 -5.53227e-22)
(0.656839 -0.163059 6.22768e-22)
(0.353016 0.0692924 -1.05824e-20)
(0.925239 -0.0841217 1.3364e-21)
(0.0634666 -0.0383248 -6.65146e-22)
(0.807526 -0.0725125 6.03846e-22)
(0.866997 -0.349949 -1.83835e-21)
(0.780456 -0.0526223 9.43717e-23)
(0.891399 -0.0380623 -7.09075e-22)
(0.728061 -0.146357 -3.43407e-22)
(0.907068 0.278496 -8.07072e-22)
(0.312093 0.194895 -2.99208e-21)
(0.92742 -0.0741554 -1.31449e-22)
(0.951247 -0.060602 5.1135e-22)
(0.207701 -0.116136 -5.64539e-22)
(0.989823 0.166726 1.68694e-21)
(0.93283 -0.0130893 -1.1363e-21)
(0.939284 -0.10326 1.12715e-21)
(0.920639 -0.000983376 1.5266e-22)
(0.627865 0.168607 4.90111e-21)
(0.913807 -0.178051 3.66779e-22)
(0.866116 -0.10007 -4.45589e-22)
(0.859742 -0.0947576 -8.22046e-22)
(1.36389 -0.0191527 -1.58484e-21)
(0.939804 -0.0284841 -8.63032e-22)
(0.966675 -0.0876843 3.6462e-23)
(0.972437 0.153141 2.00884e-23)
(0.94133 -0.0445678 5.61199e-22)
(1.34048 0.112684 -6.23156e-22)
(0.943381 -0.046525 4.86641e-22)
(0.588753 -0.0928466 5.83982e-21)
(0.0543067 0.0455776 -1.11161e-21)
(1.34865 0.0920754 -1.03892e-21)
(0.6329 -0.331436 -7.87087e-22)
(0.533808 0.300198 -3.59678e-21)
(0.7943 -0.0253554 -8.7102e-22)
(0.939475 -0.057663 -3.3816e-22)
(0.874419 -0.320362 2.539e-21)
(0.96237 -0.0746624 -9.00454e-22)
(1.22574 -0.239238 -8.33245e-22)
(0.889974 0.213044 8.57996e-22)
(1.29734 -0.159339 -1.5309e-21)
(0.796403 -0.0923418 -9.52005e-22)
(0.88786 -0.0423886 1.23391e-22)
(0.0150153 -8.49754e-05 -5.70271e-21)
(0.853952 -0.0884323 8.50844e-22)
(0.940121 -0.155942 2.83783e-21)
(0.529704 -0.277924 -1.68795e-21)
(0.927625 -0.0788395 5.01958e-22)
(0.566644 -0.262704 3.82433e-21)
(0.750334 -0.129614 -1.9878e-22)
(0.931529 -0.0761268 3.62149e-22)
(0.34636 -0.0361826 -1.32682e-21)
(0.268056 -0.0388334 -5.09545e-21)
(0.819408 -0.0909038 -1.12849e-22)
(1.14762 0.325349 1.26865e-21)
(0.661989 -0.0525378 -3.17276e-21)
(0.563453 -0.245926 -1.00123e-21)
(0.796868 -0.214921 -7.44003e-22)
(0.961414 -0.0728592 -2.55876e-22)
(0.848217 -0.0817857 -1.16519e-21)
(0.922945 0.282521 -2.64107e-21)
(0.0820945 -0.045091 5.37556e-22)
(0.596911 -0.233309 9.94079e-22)
(0.676389 -0.327176 2.36057e-21)
(0.771582 -0.115799 -1.18293e-21)
(1.00485 0.163033 3.98124e-21)
(0.724356 -0.210346 -5.51573e-22)
(0.871517 -0.0771173 -6.93546e-22)
(0.950408 -0.217914 1.24253e-21)
(0.842393 -0.0743564 -5.87225e-22)
(0.102394 0.0602266 9.51235e-22)
(0.964606 -0.0680648 4.41808e-22)
(0.959789 -0.0807926 2.22816e-22)
(1.26089 -0.219109 -4.27689e-21)
(0.924897 -0.114261 -8.35755e-22)
(0.853214 -0.127007 -5.25609e-22)
(0.534118 -0.236946 2.90585e-21)
(0.882359 -0.049238 1.47508e-22)
(0.927174 -0.12071 1.12207e-21)
(0.887435 -0.00142121 -6.75854e-22)
(0.936077 -0.0592287 -7.81696e-23)
(0.530693 -0.187828 1.23785e-21)
(0.801694 -0.356036 -3.44899e-21)
(0.944691 -0.103952 4.05352e-22)
(0.849107 -0.168715 -1.54756e-21)
(1.00099 0.161372 -1.41875e-21)
(0.962311 -0.0783248 2.38903e-22)
(0.954568 -0.22227 -8.37438e-22)
(0.0650968 -0.0380033 9.9698e-22)
(1.0103 0.173278 3.45021e-21)
(0.934861 -0.0651063 -3.54685e-22)
(1.34706 -0.0227616 -1.23627e-21)
(0.986668 -0.155141 7.90165e-22)
(0.264827 0.151586 2.75282e-21)
(0.89944 -0.227351 -5.93661e-25)
(0.885574 -0.0577576 -2.50967e-22)
(0.925164 -0.0459589 1.44848e-22)
(1.14811 -0.261329 -2.51706e-21)
(0.0450128 2.93593e-05 -8.85532e-22)
(0.945836 -0.241622 -3.97094e-22)
(0.0266253 3.44147e-06 -1.31187e-22)
(0.948594 -0.0625685 1.94519e-22)
(0.9398 0.285185 1.54933e-21)
(0.978521 -0.126758 4.9366e-22)
(1.04129 -0.330025 2.72544e-21)
(0.888194 -0.0524648 -1.23676e-21)
(0.84372 -0.105004 -4.74e-23)
(0.792438 -0.365885 5.21639e-22)
(0.478548 -0.225886 -9.65217e-22)
(0.942688 -0.0527483 -4.12078e-22)
(0.930022 -0.127274 5.35944e-23)
(1.05427 0.224117 2.23457e-21)
(1.31109 -0.0987909 -1.19684e-21)
(0.602745 -0.0492746 -1.30408e-21)
(0.355203 0.205815 -4.27323e-21)
(0.36688 -0.212619 3.26288e-22)
(0.801848 -0.075544 -7.40072e-22)
(0.97362 -0.11568 -7.30874e-23)
(0.270134 -0.15658 -1.62413e-21)
(0.310457 -0.0208247 2.88332e-21)
(0.88308 -0.0634155 -6.43683e-22)
(0.342653 -0.202822 2.29548e-21)
(0.912045 -0.110327 1.33413e-22)
(0.894761 -0.155666 -5.8748e-22)
(0.756306 -0.360742 3.09389e-21)
(0.834854 -0.0157282 -3.5667e-22)
(0.889683 -0.00263048 2.78205e-23)
(0.830333 -0.141985 -8.40285e-22)
(0.938292 -0.0261422 5.35299e-22)
(0.485226 -0.00885194 2.49541e-22)
(0.933757 -0.0829761 -8.8536e-22)
(0.880699 -0.0694656 9.64993e-22)
(0.612607 -0.0829012 4.14073e-21)
(0.885336 -0.153263 7.3371e-24)
(0.945004 -0.0347127 -5.03768e-22)
(0.970396 -0.105751 -2.02286e-23)
(1.00536 0.167333 -3.63255e-21)
(0.956461 0.28603 -7.70644e-21)
(0.826621 -0.160099 1.3286e-21)
(0.0151268 3.46373e-05 2.08437e-22)
(0.96718 -0.0920916 8.66668e-22)
(0.878436 -0.0758993 -1.77814e-22)
(0.388486 -0.175406 2.1374e-22)
(0.950531 -0.0623321 -3.72086e-23)
(0.937855 -0.311384 5.76957e-22)
(0.934879 -0.061017 9.02784e-22)
(0.620793 -0.166671 -8.90146e-22)
(0.720001 -0.029023 -1.41976e-22)
(0.90081 -0.02656 -5.19133e-23)
(0.913369 -0.375015 2.84876e-21)
(0.252217 -0.0867794 1.39311e-21)
(0.155218 -0.0798873 -3.40485e-21)
(0.983294 0.151534 5.10788e-21)
(1.20754 0.307224 -1.24482e-22)
(0.952876 -0.0438295 -4.63654e-22)
(0.949471 -0.0396935 -9.78402e-23)
(0.946962 -0.0365792 4.82958e-22)
(0.764271 -0.167618 -3.4144e-22)
(0.859933 -0.108018 1.2176e-21)
(0.94471 -0.0784967 -2.12643e-22)
(1.16994 -0.311888 2.57731e-21)
(0.945736 -0.0483618 -9.4443e-22)
(1.20805 -0.287209 -2.07111e-21)
(0.609347 -0.0709399 1.89947e-21)
(0.919513 -0.153493 -2.3423e-22)
(1.18859 -0.300806 4.01067e-22)
(0.790942 -0.103133 5.96885e-23)
(1.35187 0.0441794 1.26947e-22)
(0.961839 0.158432 1.51741e-21)
(0.940558 -0.246943 -6.25134e-22)
(1.01232 0.182514 3.66706e-21)
(0.786781 0.354553 -9.30644e-22)
(0.928156 -0.0507929 -1.01927e-22)
(0.706985 0.30771 -2.26769e-22)
(0.965463 -0.0501142 3.88351e-22)
(1.22686 -0.271753 -2.20619e-21)
(0.838467 0.38777 -8.34583e-21)
(0.872293 -0.37409 -2.25985e-21)
(0.898269 -0.0272974 1.15127e-21)
(0.927537 -0.0352746 3.08512e-22)
(0.465 -0.0941601 9.38696e-22)
(1.25334 -0.143209 -5.50711e-24)
(0.852505 0.399216 -6.81019e-22)
(0.972672 0.285781 3.33587e-21)
(1.19295 0.310588 -7.30564e-22)
(0.290847 0.184837 5.68886e-21)
(0.414449 0.0841389 -8.33809e-23)
(1.24526 -0.254908 5.5787e-22)
(0.826674 0.396511 -8.15004e-22)
(0.979292 0.150705 -1.63265e-21)
(0.965465 -0.0696765 -2.07795e-22)
(0.927289 -0.0545275 -4.30825e-22)
(0.965163 0.155264 -3.05757e-21)
(0.876913 -0.00134999 -8.8765e-22)
(0.937143 -0.140285 8.01935e-23)
(0.164889 -0.10104 1.16438e-21)
(0.932675 -0.0737581 1.64856e-24)
(0.176764 0.10147 3.27776e-22)
(0.947433 -0.0380334 7.63841e-23)
(0.933357 -0.133794 -2.42267e-22)
(1.00943 0.38555 1.15487e-21)
(1.175 -0.261189 -5.69936e-22)
(0.941204 -0.146676 -2.58743e-22)
(0.968294 -0.372816 -1.79317e-21)
(1.08018 -0.205749 1.03919e-22)
(0.603852 -0.0235171 -1.34661e-21)
(1.34352 0.0468691 -1.78676e-21)
(0.921728 -0.0928796 -2.35241e-22)
(1.12337 -0.289728 3.06963e-24)
(0.942468 -0.0955526 -2.11912e-21)
(1.20147 -0.258122 2.55706e-21)
(0.823514 -0.19901 -4.49461e-22)
(1.01586 0.17914 5.03188e-21)
(1.16657 -0.285756 -1.47569e-21)
(0.500032 0.118895 4.43182e-21)
(0.910932 -0.103796 4.99801e-22)
(0.229904 -0.127684 -1.69373e-22)
(1.04298 0.197718 -4.3208e-21)
(0.945683 -0.152983 -3.43701e-22)
(0.953599 -0.0634939 5.69328e-22)
(0.855217 -0.0038695 -2.63516e-23)
(0.938548 -0.0558257 -1.51576e-22)
(0.858365 -0.00197497 1.63373e-22)
(0.816079 0.398599 2.49121e-21)
(0.926629 -0.0584568 1.66404e-22)
(0.168606 -0.106673 2.65817e-21)
(0.163263 -0.116456 2.09009e-21)
(0.844916 0.237957 1.24629e-21)
(0.830227 -0.153701 6.81176e-22)
(1.00204 -0.225036 1.99141e-21)
(0.844095 -0.00238431 -4.20313e-23)
(0.959441 -0.0473354 -4.66809e-22)
(0.727576 0.192773 -3.0685e-21)
(0.116253 -0.069558 -2.2344e-21)
(0.386501 0.216307 -2.27204e-21)
(0.886822 0.391719 8.38533e-21)
(0.0429166 -0.000173224 -3.05525e-21)
(1.12623 0.348328 1.16306e-21)
(0.862677 0.390227 -4.36495e-21)
(0.432796 -0.168021 -5.12065e-22)
(0.865072 -0.00212849 5.76346e-22)
(0.831062 -0.119276 4.64933e-22)
(0.944503 -0.0528654 7.52622e-23)
(0.936037 -0.0631673 -5.32897e-22)
(0.255592 0.113492 -7.64846e-22)
(0.955762 -0.0439115 -3.86964e-22)
(0.930318 0.159707 0)
(0.95152 -0.0412388 -4.02121e-22)
(0.0360938 0.000935234 -4.19121e-21)
(0.06755 -0.06601 -3.28662e-21)
(0.04503 1.89137e-05 4.57804e-22)
(0.0453074 3.27784e-05 -3.40814e-22)
(0.0449776 0.000136393 -3.38226e-22)
(0.345179 -0.17967 7.96577e-25)
(0.654584 -0.292509 1.28846e-21)
(0.892111 -0.146623 -5.7803e-22)
(0.575826 -0.236815 -6.59132e-22)
(0.780567 -0.295282 3.29915e-22)
(0.951337 -0.15933 1.17852e-22)
(0.923044 -0.108049 -6.18772e-22)
(0.864843 -0.185754 -4.38976e-22)
(1.25616 -0.176098 1.34591e-21)
(1.26299 -0.23675 2.1191e-21)
(1.14324 -0.11027 -2.3293e-21)
(0.95297 -0.0413198 8.69869e-23)
(1.17835 0.312345 9.73646e-22)
(0.94408 -0.113891 1.36311e-23)
(0.93276 0.347712 4.28707e-22)
(1.03497 0.191551 1.61011e-21)
(0.926159 -0.0626369 -1.47605e-22)
(0.909685 -0.0258483 -5.18171e-22)
(0.932335 -0.0692742 -5.94426e-22)
(0.939475 -0.266702 -7.07202e-22)
(0.917058 -0.0292912 -1.31593e-21)
(0.472283 -0.230054 -6.13309e-21)
(0.589077 -0.125225 -2.24689e-21)
(0.959759 -0.334853 3.04033e-22)
(0.9988 -0.370206 1.40624e-22)
(1.10376 -0.186645 -1.20197e-21)
(0.952006 0.174137 -3.67156e-21)
(1.00067 0.157225 2.39237e-21)
(0.95363 -0.0426292 6.68467e-23)
(0.906162 -0.0365057 -1.08634e-21)
(0.603907 -0.146927 -2.03745e-21)
(0.953059 -0.0603459 2.63805e-22)
(0.965993 -0.0635753 9.63748e-23)
(0.936435 -0.0824905 7.307e-22)
(0.932055 0.20533 5.82573e-21)
(0.96491 -0.0649988 4.61204e-23)
(0.904293 -0.0324413 -1.18538e-21)
(0.549172 0.128248 7.30316e-22)
(0.902697 -0.0282562 -5.72183e-22)
(0.636818 -0.071836 -3.42342e-21)
(0.326826 -0.00959028 -2.82131e-21)
(0.43789 -0.230642 -1.74365e-21)
(0.910121 -0.00533924 -6.53331e-22)
(0.961667 -0.0695121 2.77014e-23)
(0.947051 -0.0779248 -3.95731e-22)
(1.12713 -0.166784 6.23465e-22)
(0.832564 -0.178305 2.56027e-22)
(0.079764 -0.0470627 2.47408e-21)
(0.800145 -0.00301098 -3.53531e-22)
(0.024383 0.000235649 -4.20182e-22)
(0.263976 -0.0509692 -7.37997e-21)
(0.908275 -0.0404231 3.08328e-22)
(0.942829 -0.0449368 -5.14346e-22)
(0.964342 -0.0746587 -6.49371e-22)
(0.910466 0.392265 3.89375e-21)
(0.965482 -0.0592481 3.27906e-22)
(1.08381 -0.258751 -2.99651e-23)
(0.935693 -0.0779493 -2.15787e-22)
(0.411492 -0.140915 1.00567e-22)
(0.965323 -0.0621104 5.2075e-22)
(0.98583 0.148757 -1.887e-22)
(0.556338 -0.178153 1.14183e-21)
(0.90236 -0.126543 -7.14594e-22)
(1.03528 -0.223901 -7.6942e-23)
(1.31308 -0.167454 1.37961e-21)
(0.578216 -0.198519 8.68571e-22)
(0.924845 -0.0923718 7.2466e-22)
(0.944728 -0.0497524 -1.8928e-22)
(0.82846 -0.00243905 -1.04604e-21)
(0.95276 -0.102831 2.20083e-22)
(0.24078 -0.0517974 -4.02633e-23)
(0.935479 -0.0462414 1.2871e-22)
(0.632167 -0.332184 -7.81726e-22)
(0.638505 -0.0333788 3.81046e-21)
(0.945067 -0.0467995 -1.61e-22)
(0.957904 -0.165254 -3.45303e-22)
(0.950407 -0.0982607 2.75851e-22)
(0.309684 -0.182979 -1.68059e-21)
(1.2373 0.28587 3.5157e-22)
(0.452996 -0.0737335 -4.13016e-21)
(0.965739 -0.0798899 -4.52637e-22)
(0.964482 -0.078145 -2.24569e-23)
(1.00954 0.168899 -1.36885e-21)
(0.957429 0.156925 -3.93371e-21)
(0.917331 -0.0271688 4.64442e-22)
(0.948933 -0.0382872 -4.77659e-22)
(1.02798 0.324692 -3.85657e-21)
(0.765766 -0.00361663 7.04435e-22)
(1.25106 0.27868 6.26774e-23)
(0.784963 -0.23769 -2.05495e-21)
(1.26437 0.226316 4.89211e-22)
(0.920578 -0.0818604 6.62307e-22)
(0.770025 0.392355 1.22817e-21)
(1.28014 0.2164 1.20361e-22)
(0.042388 0.00153015 2.4e-22)
(0.906751 -0.0202781 1.3428e-22)
(0.840049 -0.223633 -8.94139e-22)
(0.955065 -0.0426693 -3.57158e-22)
(0.962138 -0.0469687 1.38113e-22)
(0.800173 -0.0242195 1.01712e-21)
(0.896386 -0.132025 -7.25324e-22)
(0.965308 -0.0729887 2.92814e-22)
(1.27711 0.25762 5.48098e-23)
(1.13894 -0.251021 3.18062e-22)
(0.414633 -0.199046 1.40632e-23)
(0.952837 -0.112275 -6.51655e-22)
(0.950945 -0.039905 8.96442e-22)
(0.961483 -0.0505403 -2.98291e-22)
(1.26423 0.269881 -7.00831e-23)
(0.9654 -0.0763524 4.18362e-22)
(0.964943 -0.170585 1.27571e-22)
(0.957887 -0.0450576 5.01454e-22)
(1.02259 0.380588 -3.90886e-21)
(0.964304 -0.0478102 2.38673e-22)
(0.965666 -0.0475778 -2.14098e-22)
(0.233258 -0.132836 1.78502e-21)
(0.289863 -0.0497976 8.03734e-22)
(1.1149 0.278434 3.25101e-21)
(0.856774 -0.112206 2.32906e-22)
(1.01466 0.174541 -4.55981e-21)
(0.960036 -0.0460864 2.8695e-23)
(0.966282 -0.060763 -1.33515e-22)
(0.961385 -0.0459593 -8.53822e-23)
(0.957148 -0.0438789 2.74532e-22)
(0.96349 -0.0467975 9.17251e-23)
(0.948812 0.401603 2.87738e-21)
(0.926269 -0.0271722 -2.02832e-22)
(0.959276 -0.044983 -2.71497e-22)
(1.16581 -0.0881608 6.83056e-23)
(0.119152 -0.0687045 -8.68378e-22)
(1.04543 -0.322321 -2.09655e-21)
(0.340585 -0.198959 6.34708e-23)
(0.747349 0.363485 2.48519e-22)
(0.965621 -0.0665527 -5.39612e-22)
(0.163785 -0.0947089 -1.89993e-21)
(0.395947 -0.0437189 2.32275e-21)
(0.972562 -0.175966 -5.07886e-22)
(0.956118 -0.117194 -1.16558e-22)
(0.9663 -0.0579703 1.09566e-22)
(0.966879 -0.0553552 1.91256e-22)
(0.673845 -0.0511806 1.7518e-21)
(0.675372 -0.215587 4.28409e-22)
(0.936767 0.398108 -7.72648e-22)
(0.967241 -0.0529597 -6.52876e-22)
(1.14968 -0.145982 -6.08631e-22)
(1.07594 -0.346722 2.83715e-21)
(0.965862 -0.0565268 -3.11484e-22)
(0.52304 0.297081 -1.72954e-21)
(0.966363 -0.0540274 1.48946e-22)
(0.150403 -0.0866628 9.88678e-22)
(0.778021 -0.00333972 -3.51031e-22)
(0.857625 -0.1526 4.13855e-22)
(0.72928 -0.0281672 1.00493e-21)
(0.962145 -0.133076 -1.2533e-21)
(1.21907 -0.246503 -2.37571e-21)
(0.611366 0.23583 2.88844e-21)
(0.912309 0.347502 -1.42919e-21)
(0.673229 -0.00514218 -2.3086e-21)
(0.928662 -0.0715338 4.50072e-22)
(1.30237 0.224419 1.49813e-22)
(0.948374 -0.0937664 1.11117e-21)
(0.920614 -0.0149943 7.78891e-22)
(0.280494 -0.147869 -6.91821e-22)
(0.52226 0.302918 3.75291e-21)
(1.2716 0.196638 3.43749e-22)
(1.23544 -0.233133 -4.7044e-22)
(0.891492 0.345559 -3.45007e-21)
(0.959698 -0.122072 9.8812e-23)
(0.967254 -0.0767046 4.80727e-22)
(1.34956 -0.031078 9.29533e-22)
(0.810665 -0.014344 -8.82388e-22)
(0.900838 -0.27949 1.98715e-21)
(0.938339 -0.0670605 -4.17579e-26)
(0.737721 -0.00431672 -1.93152e-22)
(1.35528 0.0700236 1.23877e-22)
(1.20521 -0.257819 4.3702e-21)
(0.919283 -0.0263686 -3.20559e-22)
(0.428937 -0.0601546 9.31526e-23)
(0.261434 -0.147353 1.63876e-21)
(0.919238 -0.0457843 9.70918e-22)
(0.664323 -0.0596554 -2.81297e-21)
(0.0969581 0.0821127 -6.02622e-21)
(0.718635 -0.20202 -8.85846e-22)
(1.25034 -0.217775 -9.16275e-23)
(0.246975 -0.0639746 3.7e-21)
(0.453351 -0.244568 -3.10667e-22)
(0.57264 0.302537 -3.0477e-21)
(0.465243 -0.237382 8.62247e-22)
(0.399714 -0.0617593 -5.47545e-21)
(0.34423 -0.0189353 9.54669e-23)
(1.32596 -0.143659 -1.29828e-22)
(1.33917 -0.106966 1.81952e-21)
(0.938638 -0.071074 7.33337e-22)
(1.14936 0.234265 -1.68759e-22)
(0.708542 -0.344968 8.6091e-22)
(0.850098 -0.170324 7.77607e-22)
(0.823893 -0.219601 -5.01843e-22)
(0.81007 0.281304 1.22567e-21)
(0.954215 -0.0617431 -2.25782e-24)
(0.703014 -0.349634 6.97917e-22)
(0.57332 0.306679 -1.12975e-21)
(1.02994 -0.268091 -1.0851e-21)
(0.964422 -0.0712892 -8.68881e-23)
(0.63843 -0.05577 -8.76854e-22)
(0.941433 -0.0612653 -2.42948e-22)
(0.991189 -0.220102 1.07603e-21)
(0.795248 -0.00585041 -1.44167e-22)
(1.33436 0.169046 8.81196e-22)
(0.915622 -0.0258083 3.05694e-22)
(1.02297 -0.221094 1.248e-21)
(0.934656 -0.0401976 -3.04681e-22)
(0.929962 -0.012357 2.31311e-22)
(1.15456 -0.29943 -1.14507e-21)
(0.573189 0.310614 -1.03526e-21)
(1.27999 -0.217403 1.9047e-22)
(0.690043 -0.00472995 -9.98704e-22)
(1.33322 0.0646117 -1.14047e-21)
(1.01626 -0.265676 -1.04274e-21)
(0.620007 0.184926 -7.37069e-21)
(0.954748 -0.0527178 4.72927e-23)
(0.0683794 -0.0322524 -1.73496e-21)
(0.962504 -0.0711952 7.47926e-22)
(0.839723 -0.0152217 -4.08817e-22)
(0.838421 -0.120349 -9.31951e-22)
(0.879766 -0.154554 1.15019e-22)
(1.32485 0.187497 -1.08371e-21)
(1.03626 -0.293179 5.3556e-22)
(0.932038 -0.0807988 5.58418e-22)
(0.967733 -0.137731 7.67979e-22)
(0.250754 -0.15282 2.26121e-21)
(0.856617 -0.142141 -1.70475e-22)
(0.890971 -0.184817 8.88396e-22)
(0.374222 -0.206076 -5.24707e-22)
(0.824256 -0.182411 5.65133e-22)
(0.0410018 0.000468812 4.81058e-21)
(1.26342 -0.201396 -1.4171e-21)
(0.720849 0.354181 9.49522e-23)
(0.604204 -0.243685 3.70884e-22)
(0.872829 -0.105044 -9.0866e-23)
(0.470622 0.259946 1.02751e-21)
(0.872376 -0.113436 -3.27571e-23)
(0.753862 -0.155753 1.52437e-21)
(1.29543 -0.197202 -2.61338e-21)
(0.228049 -0.0635209 -3.70896e-21)
(1.09906 -0.249236 5.20429e-22)
(1.18943 -0.229753 -3.86404e-22)
(0.92559 -0.0481102 -6.24678e-22)
(0.827155 -0.369535 1.70593e-24)
(1.04431 -0.270094 -1.95892e-21)
(0.941445 -0.0577425 3.09482e-23)
(0.547842 0.306179 -2.19954e-21)
(0.634668 -0.00518676 -6.98291e-22)
(0.87244 -0.122183 1.68318e-22)
(1.18836 -0.064536 -1.508e-22)
(0.942145 -0.102092 -1.06031e-21)
(0.266908 -0.0645077 -4.40577e-22)
(0.961873 -0.37152 5.35032e-21)
(0.888751 -0.204208 5.44604e-22)
(1.32584 0.0612292 -1.51866e-23)
(0.693701 -0.344012 -1.22701e-21)
(1.36191 0.0644294 3.70231e-22)
(1.29513 0.204178 4.91988e-23)
(0.862098 -0.00406594 -7.11218e-22)
(0.596452 0.30582 -1.17338e-21)
(0.929182 -0.0472714 3.78981e-22)
(1.01641 0.202479 4.51643e-23)
(0.958256 -0.0550666 -2.96499e-22)
(0.627412 -0.114492 -5.64811e-22)
(0.789135 -0.17886 -3.11922e-22)
(0.893306 -0.0878538 -9.01845e-22)
(0.911868 -0.0251198 8.60003e-22)
(1.18532 -0.274493 1.44904e-21)
(0.992731 -0.0576633 3.18226e-21)
(0.043129 -0.000146742 -6.15517e-21)
(0.642113 -0.0444702 5.48408e-22)
(0.862335 -0.324067 -1.97048e-21)
(0.892899 -0.166775 -2.90835e-22)
(0.81451 -0.0944602 1.54687e-23)
(0.904149 -0.245485 -8.63666e-22)
(0.193742 -0.111183 2.03533e-21)
(0.210869 -0.0636554 5.03703e-21)
(0.95463 -0.050091 1.37237e-22)
(0.926794 -0.0445778 -1.38105e-22)
(0.93318 -0.0413627 6.87937e-22)
(0.899236 -0.084999 2.86586e-22)
(0.0374871 -1.88809e-05 6.75092e-22)
(0.0368785 -0.000154861 -2.73895e-21)
(0.0372901 -9.53938e-05 4.78619e-22)
(0.0368658 0.000139476 -2.74922e-21)
(0.835614 -0.210777 -1.64039e-21)
(0.622215 -0.0689898 -2.02492e-21)
(0.962462 -0.0517469 3.12385e-22)
(0.566631 -0.00625789 -1.95766e-21)
(0.0606239 -0.0257952 -1.90153e-21)
(0.947184 -0.0545116 -2.48097e-22)
(1.11792 0.270049 -8.02549e-22)
(0.931167 -0.0713909 2.2801e-23)
(0.960851 -0.0559794 5.996e-22)
(0.802911 -0.0954857 4.4632e-22)
(1.00273 -0.262107 -1.13062e-21)
(0.935193 -0.0735504 4.38639e-22)
(0.890796 -0.0474788 -6.88689e-22)
(1.34259 0.148588 1.89723e-21)
(0.572845 0.315399 4.51404e-23)
(0.759629 -0.00758899 -1.22515e-21)
(0.873037 -0.131223 1.14639e-21)
(1.16534 -0.29022 -2.59705e-21)
(0.690976 -0.0452934 -2.38515e-21)
(0.989421 0.196143 -2.50627e-22)
(0.789789 -0.164986 -1.76006e-22)
(0.597907 0.311186 -1.16341e-21)
(0.965168 0.403005 -2.36408e-21)
(0.423349 0.27572 -2.02922e-21)
(1.34924 0.112125 -1.7096e-21)
(0.886745 -0.0979046 -2.28091e-22)
(0.403081 -0.22342 1.62431e-21)
(0.84652 -0.0666051 1.84905e-22)
(0.93988 -0.204278 -1.38089e-21)
(0.943803 0.37908 1.63355e-22)
(0.959763 -0.0547915 -4.60841e-22)
(0.709448 0.365521 -6.31953e-22)
(0.899892 -0.0788956 1.36166e-21)
(0.990831 -0.156842 1.63069e-22)
(0.989487 -0.258382 -4.68376e-22)
(0.842859 -0.189763 1.36603e-22)
(1.36148 0.0119416 -7.03189e-22)
(1.11397 -0.246318 5.84017e-22)
(0.93933 -0.0612756 5.73309e-22)
(0.925317 0.206278 1.35009e-21)
(0.791669 -0.151635 -2.87081e-22)
(0.937325 -0.0799882 1.12146e-23)
(0.417763 -0.170385 2.21969e-21)
(0.52794 0.188041 9.57717e-23)
(0.628905 0.289067 -6.79225e-21)
(0.686298 0.359915 3.60163e-21)
(1.06066 0.256427 3.53464e-21)
(0.850247 -0.373075 -9.20615e-22)
(0.794177 -0.139462 9.89707e-22)
(0.922848 -0.0268181 7.67532e-22)
(1.05004 0.249743 3.58288e-21)
(0.711098 0.250304 -4.08041e-21)
(0.960337 -0.0533298 -4.69571e-22)
(0.937603 -0.116515 1.77415e-22)
(0.938231 -0.0631793 -2.17304e-22)
(0.924499 0.225995 4.19573e-21)
(0.900786 -0.073099 4.0419e-22)
(0.905102 -0.0573872 -3.68788e-22)
(0.903482 -0.0623289 -9.5804e-22)
(0.902062 -0.067561 -5.01473e-22)
(0.907883 -0.00228019 8.9423e-22)
(1.1431 -0.304951 1.84815e-22)
(0.925349 -0.188412 8.79484e-22)
(0.898953 -0.0915212 -1.31186e-22)
(0.947246 -0.0514577 2.78873e-22)
(0.924016 -0.00116193 2.15604e-22)
(0.932472 -0.196538 5.94609e-22)
(0.719705 -0.0309373 -3.89928e-21)
(0.961947 -0.0531307 4.84401e-23)
(0.815807 -0.242278 7.89768e-22)
(1.13092 0.336497 1.45104e-22)
(1.26163 0.103972 -1.1303e-21)
(0.796569 -0.266558 1.21222e-22)
(0.788372 -0.044022 -1.2409e-22)
(0.502087 -0.258161 1.5194e-21)
(0.379365 0.258823 2.35242e-21)
(0.796414 -0.193964 -5.32633e-21)
(1.35579 0.0555708 -6.99775e-22)
(0.882155 -0.00131522 3.05282e-23)
(0.954571 0.165136 -2.57544e-21)
(0.0206504 -0.00112361 4.92234e-21)
(0.736054 -0.341944 2.58576e-21)
(0.943584 -0.0422922 4.64295e-22)
(0.936253 -0.0712871 -5.26949e-22)
(0.524591 0.0860984 3.29953e-21)
(0.989452 0.190755 -7.37332e-22)
(1.01771 -0.037679 7.6803e-24)
(1.12335 -0.317467 -3.1191e-21)
(0.509949 -0.234376 6.26186e-22)
(1.34903 -0.081357 -9.11157e-22)
(0.425834 -0.255186 -3.58518e-21)
(0.95313 -0.0528361 -1.20689e-22)
(0.903992 -0.00225808 -9.31893e-23)
(1.21354 0.252141 1.20867e-21)
(0.913604 -0.172168 5.45613e-22)
(0.919613 -0.180562 7.23595e-23)
(0.950907 -0.0574589 -1.22756e-23)
(0.955421 -0.0512883 3.05026e-22)
(0.764039 -0.0456219 7.57507e-22)
(0.131493 0.0764864 1.0443e-21)
(1.34879 0.126984 1.0371e-21)
(0.977979 -0.371053 -4.0025e-21)
(0.530586 0.330245 -7.49787e-21)
(1.21107 -0.0392377 -4.2522e-21)
(0.985142 0.172783 4.2544e-22)
(0.948187 -0.211848 -1.17072e-21)
(1.35284 0.103872 9.60086e-22)
(1.05264 -0.238139 -2.36225e-21)
(1.13274 0.272794 -2.37085e-21)
(0.925697 -0.110588 -2.38301e-22)
(0.850369 -0.0591485 -1.00374e-22)
(1.24159 0.183694 -3.8862e-22)
(0.957266 -0.0538307 -2.40589e-23)
(1.07555 0.222316 -3.13391e-21)
(1.11436 -0.107939 -3.42427e-21)
(1.35532 0.0797134 -1.87948e-21)
(0.987637 -0.237104 -1.54395e-21)
(0.947404 -0.0485331 2.29819e-22)
(1.10492 -0.328644 8.83822e-22)
(0.906832 -0.0527149 -4.19942e-22)
(0.953719 -0.0586847 6.13017e-22)
(0.796416 -0.0362801 -1.16549e-21)
(0.872707 -0.054553 -4.95477e-22)
(0.957127 -0.0626477 -3.57865e-22)
(0.602566 -0.258622 7.4676e-22)
(0.930411 -0.123153 -7.34849e-22)
(0.986699 -0.35998 -4.25368e-22)
(1.10589 0.281171 -4.5413e-21)
(0.642333 0.0789199 -9.56918e-23)
(0.920098 -0.148521 -1.04265e-21)
(0.962346 0.202491 -2.09126e-21)
(0.92781 -0.116807 8.20351e-22)
(0.914607 -0.0391106 6.213e-22)
(0.225886 -0.0780816 -1.85488e-21)
(0.398038 0.195464 1.49717e-22)
(0.927794 -0.0282491 2.96252e-22)
(0.936671 -0.0755753 -7.65504e-22)
(0.592252 0.291691 -2.7782e-23)
(1.30921 -0.168996 -1.78517e-22)
(0.780226 -0.0271596 4.8804e-23)
(1.08439 -0.250927 -3.86565e-22)
(1.22103 0.0331091 -6.91984e-22)
(0.894784 -0.124029 -2.09471e-22)
(0.68383 0.204717 5.32963e-21)
(0.943498 0.208956 7.45529e-22)
(0.939618 -0.0689624 -6.29162e-22)
(0.202641 0.115166 8.83812e-22)
(0.802448 -0.0628734 1.25409e-21)
(0.722457 -0.043509 -7.42717e-22)
(0.143416 0.0836508 1.63134e-21)
(0.735259 -0.357318 -1.62163e-21)
(0.278929 0.147274 -1.06955e-22)
(0.689084 0.137023 -2.24533e-21)
(0.955982 -0.0613987 -3.7783e-22)
(0.040418 -0.00561368 -2.30083e-22)
(0.958772 -0.0621828 2.14865e-22)
(0.710679 -0.0535201 -1.08672e-22)
(0.952727 -0.109039 -9.57547e-22)
(1.15492 -5.93098e-05 5.38244e-21)
(0.0348385 -0.000127803 4.1922e-22)
(0.034578 -0.000192318 -7.91535e-22)
(0.0351252 -4.22283e-06 3.56228e-22)
(0.851619 -0.00209495 5.72081e-22)
(0.85441 -0.0524662 -9.96765e-22)
(0.268085 0.138953 -1.64017e-21)
(0.836089 -0.023632 7.57681e-23)
(0.939699 -0.0541587 5.38134e-22)
(0.652958 -0.335605 1.53632e-21)
(0.955686 -0.0540293 7.86081e-22)
(0.814679 -0.27762 -1.41064e-22)
(0.696266 0.228569 3.68469e-21)
(0.918796 -0.0305326 1.27304e-21)
(0.858756 -0.0465873 3.41107e-22)
(0.948075 -0.0529854 -2.18175e-22)
(0.0372388 -8.38041e-05 1.91484e-22)
(0.556741 -0.277898 5.14784e-21)
(0.662453 -0.333547 4.02712e-21)
(0.862873 -0.0409888 -2.25832e-24)
(0.509177 -0.263688 8.975e-22)
(0.895098 -0.214793 -5.68037e-22)
(0.954237 0.338391 4.77104e-21)
(0.985902 -0.338134 -8.31441e-23)
(0.939375 -0.0650587 2.88263e-22)
(0.712314 -0.325717 -3.83678e-21)
(0.867367 -0.0360144 2.99487e-22)
(0.916682 -0.0401946 -4.37605e-22)
(0.722518 -0.161711 -1.26813e-22)
(0.212733 0.0937419 -1.19736e-22)
(0.523513 -0.290497 -2.74982e-21)
(1.08604 -0.338665 -8.34729e-22)
(0.94244 -0.0594889 8.96092e-22)
(0.953369 -0.0557127 3.67378e-22)
(1.2085 0.0765894 2.64836e-21)
(0.950625 -0.0954087 4.97787e-22)
(0.664192 -0.0107934 2.14792e-21)
(0.773807 -0.203481 -3.19627e-21)
(0.343786 0.142891 -2.1237e-22)
(0.850084 -0.0319586 -1.42563e-22)
(0.667044 -0.0715111 7.80511e-22)
(0.828363 -0.365416 -1.99575e-21)
(0.810895 -0.00324309 -1.44062e-22)
(0.908682 -0.0483148 3.52484e-22)
(0.871879 -0.0313816 6.27817e-22)
(0.952665 -0.057287 4.38539e-23)
(0.159806 -0.0917491 1.93751e-21)
(0.728233 0.26967 3.38175e-21)
(0.618502 0.284449 2.16396e-21)
(0.241194 -0.0790643 2.30338e-21)
(0.910613 -0.0441999 -4.47269e-22)
(1.04332 0.348773 2.08338e-22)
(0.919522 -0.0571044 -8.75884e-22)
(0.924817 -0.0790578 -3.00252e-22)
(0.716371 0.0537569 -3.32954e-21)
(0.643287 0.338657 5.31425e-21)
(0.830469 -0.301035 3.6625e-22)
(0.902255 -0.224396 -2.72027e-22)
(0.839551 -0.00772061 1.65102e-22)
(1.19399 0.117636 -1.52974e-21)
(0.875956 -0.026984 -2.61977e-23)
(1.35686 -0.0557275 1.57241e-21)
(0.830559 -0.0423329 -1.21824e-21)
(0.789749 -0.00304691 -2.95644e-22)
(0.952837 -0.0998485 -6.4277e-22)
(0.15664 -0.088131 1.97529e-21)
(0.879883 -0.0229864 -6.68322e-22)
(0.813997 -0.0324546 -3.02226e-22)
(0.0394921 0.00453283 6.30125e-21)
(0.748084 -0.0393467 1.14654e-21)
(0.905574 -0.0250135 -3.49592e-22)
(0.920924 -0.0276153 3.93814e-22)
(1.04279 -0.0164187 -1.0787e-21)
(0.698825 -0.0648253 -8.67432e-22)
(0.854791 -0.0167019 -4.05385e-22)
(0.829655 -0.029122 9.88034e-22)
(0.160976 -0.0904934 2.2661e-21)
(1.14356 0.111013 -2.8212e-21)
(0.143175 -0.0790422 -2.39395e-21)
(1.15524 -0.210624 -8.76197e-22)
(0.211791 -0.076264 -3.43144e-22)
(0.884542 -0.0197296 -3.84656e-22)
(0.382336 0.253278 -8.65312e-21)
(0.147795 -0.0820645 -3.32688e-23)
(0.976964 -0.231641 -4.8354e-22)
(0.155732 -0.0894816 3.32238e-22)
(0.618423 0.291804 9.08411e-22)
(0.943978 -0.0437073 -3.90528e-22)
(0.152229 -0.0851718 -4.96239e-21)
(0.137575 0.0794356 -1.86942e-21)
(0.150659 -0.0870075 3.91568e-21)
(0.669893 0.126144 -2.58579e-22)
(0.888412 -0.0159896 2.5005e-22)
(0.752202 -0.00372562 7.53674e-22)
(0.920591 -0.0399104 -2.28055e-23)
(0.927844 -0.0392174 4.12246e-22)
(0.840322 0.187927 -6.59457e-21)
(0.772629 -0.00694773 1.09684e-21)
(0.942483 -0.0560496 -5.66522e-22)
(0.896091 -0.150399 3.3898e-22)
(0.90367 -0.122425 4.85858e-22)
(0.946839 -0.0719129 -6.32505e-22)
(0.955042 -0.0555282 1.8235e-22)
(0.648782 0.279052 -1.72304e-22)
(0.828097 0.345218 -9.65294e-21)
(0.948151 -0.05005 5.26287e-22)
(0.898701 -0.0429911 -6.9222e-22)
(0.71179 0.0769959 3.75366e-21)
(0.141754 -0.0811437 2.91296e-21)
(0.0924343 -0.0585058 5.99817e-22)
(0.953043 -0.0501029 -3.68552e-22)
(0.752651 -0.211427 -4.39137e-22)
(0.897826 -0.127531 -3.03048e-22)
(0.164967 -0.0892805 -9.7329e-23)
(0.157965 -0.0831162 -7.08184e-21)
(0.519871 0.233711 -8.17072e-22)
(1.15079 0.288956 7.26767e-22)
(0.0693738 0.0361736 1.0139e-21)
(0.929617 -0.0548751 2.71197e-22)
(0.933504 -0.129548 2.81109e-23)
(0.849219 -0.0213701 -3.37233e-22)
(0.892385 -0.0131672 -7.70801e-22)
(0.16136 -0.0860251 -2.08162e-21)
(1.06744 -0.347117 1.22675e-21)
(0.948119 -0.0560633 5.24003e-22)
(0.139081 -0.078931 2.36952e-21)
(0.154356 -0.0802752 -1.45688e-21)
(0.729507 -0.152159 -2.75848e-21)
(0.145424 -0.0837619 -2.95615e-21)
(0.950397 -0.0730038 -2.34594e-22)
(0.6493 0.0529202 -4.81125e-21)
(0.80071 -0.318874 -2.5178e-21)
(1.22974 -0.012549 5.53789e-21)
(0.949909 -0.0559844 -5.29418e-22)
(0.622212 0.314075 2.66933e-22)
(0.662038 -0.114666 1.45387e-21)
(0.146558 0.08451 -6.78878e-21)
(0.591112 -0.00562835 9.92466e-22)
(0.947258 -0.0576885 7.37116e-22)
(0.961182 -0.129272 -1.16533e-21)
(0.94834 -0.0472576 -5.7597e-22)
(0.951469 -0.0874539 -9.93212e-22)
(0.901649 0.405308 -3.05117e-21)
(0.678507 0.371992 -7.37907e-21)
(0.069601 -0.0382644 -1.72938e-21)
(0.0237299 -0.000210578 -1.70831e-21)
(0.945366 -0.057746 2.83866e-22)
(0.19863 -0.0744137 -1.02239e-21)
(0.0270354 0.0024399 -9.39253e-22)
(0.647366 0.268088 1.00309e-21)
(0.183584 -0.087383 7.0666e-22)
(0.957699 -0.0565849 7.34297e-22)
(0.653991 -0.00498037 -1.786e-21)
(0.803799 -0.102267 -8.06417e-23)
(1.26299 0.273612 2.79638e-23)
(0.0891028 0.0417743 -2.61729e-22)
(0.908425 -0.0219749 -9.27609e-22)
(0.938234 -0.0845223 -4.39278e-22)
(0.532914 -0.274053 -8.01952e-22)
(0.151294 -0.0776637 -2.74115e-21)
(0.931029 -0.0478757 -3.55286e-22)
(0.945371 -0.0544936 -2.9858e-22)
(0.397111 0.168142 4.63029e-23)
(1.10517 -0.339978 3.12406e-22)
(0.935501 -0.0355428 3.64492e-22)
(0.934692 -0.0877864 2.16697e-22)
(0.732665 -0.219275 -5.75792e-21)
(0.944436 -0.0594531 3.39399e-22)
(0.498048 0.314075 6.08656e-21)
(0.918606 -0.0389264 9.67628e-22)
(0.0898859 0.0421188 1.94381e-22)
(0.929266 -0.0361259 -6.40975e-22)
(0.937083 -0.135931 8.05614e-23)
(1.16173 -0.235653 -3.96407e-21)
(0.180038 -0.0845703 -1.63212e-21)
(0.937647 0.0980544 4.77297e-22)
(0.653467 -0.0848581 1.78372e-21)
(0.911282 -0.0192685 7.85866e-22)
(0.8963 -0.0107613 -3.4955e-22)
(0.524502 -0.28815 -5.28024e-21)
(0.0274201 0.00128237 -1.37029e-21)
(0.617196 -0.0931185 9.6729e-22)
(0.941 -0.142346 -4.51051e-23)
(0.841121 -0.126176 -6.07786e-23)
(0.821651 -0.255744 -4.24641e-22)
(0.985308 0.168534 -1.77851e-21)
(0.947673 -0.0756631 -1.53987e-22)
(0.766903 0.346718 6.56337e-22)
(0.866115 0.327137 -1.88939e-21)
(0.928765 -0.0452601 5.94345e-22)
(0.170183 -0.0927563 4.55268e-21)
(1.04392 0.269406 7.53919e-22)
(0.165419 -0.0927365 2.37783e-21)
(0.945206 -0.148733 1.06564e-21)
(0.955805 -0.113732 1.27347e-21)
(0.787201 -0.260424 -8.9991e-22)
(0.988249 0.28442 -1.56707e-21)
(1.09022 0.362232 4.21199e-22)
(1.04946 -0.354708 8.4094e-22)
(0.882592 -0.0977048 4.10067e-22)
(0.155572 0.0906417 -4.22453e-22)
(0.995368 -0.368746 3.90003e-22)
(0.890806 -0.0442966 5.29846e-22)
(1.01289 -0.365235 -3.69245e-21)
(1.25048 0.182116 -4.99776e-22)
(0.958178 -0.0843633 -7.49949e-22)
(0.659418 -0.243563 -5.94368e-22)
(0.86014 -0.147072 6.36755e-22)
(1.03005 -0.360895 3.35226e-21)
(0.95559 -0.0777127 8.61196e-22)
(0.911412 0.220291 -3.64732e-21)
(0.525412 -0.285756 1.07313e-21)
(0.0782609 -0.0785529 -3.97566e-21)
(0.867635 -0.131601 -4.25588e-22)
(0.945497 -0.051361 -1.18041e-22)
(0.715425 -0.294845 7.13087e-22)
(0.155664 -0.0923284 -1.51226e-21)
(0.662234 0.353546 2.1303e-21)
(0.749368 -0.0154736 -2.57692e-21)
(0.990377 0.162721 -2.29328e-21)
(0.942532 -0.063044 2.90784e-22)
(0.913588 -0.0265877 -3.37394e-22)
(0.930946 -0.0912199 1.11881e-21)
(0.527212 -0.283495 -3.75008e-21)
(0.528905 -0.281391 -1.5832e-21)
(0.529529 -0.27969 4.92305e-21)
(0.901274 -0.082116 -1.14355e-21)
(0.989966 0.175878 3.70391e-21)
(0.834998 -0.190967 -7.76735e-22)
(0.927903 -0.345002 -1.04861e-21)
(1.01149 -0.23566 2.04302e-21)
(0.139107 -0.0801361 1.07966e-21)
(0.935144 0.198326 3.53204e-21)
(0.0377336 -3.3541e-05 3.7282e-21)
(0.0371362 6.96118e-05 7.71761e-22)
(0.683881 -0.25647 -5.6491e-22)
(0.832233 -0.197919 1.52389e-21)
(0.874952 -0.109308 -2.15403e-22)
(0.602547 -0.108477 -1.04469e-21)
(0.177009 -0.0819958 -4.35909e-21)
(0.416942 0.122637 1.02407e-20)
(0.943864 -0.0744502 -4.82623e-22)
(0.950324 -0.154761 6.82589e-23)
(0.90729 -0.0555122 7.99527e-22)
(0.905696 -0.060285 -2.71193e-22)
(0.904262 -0.0653116 2.01042e-22)
(0.862761 -0.0914427 4.06186e-22)
(0.955441 -0.0584257 -5.13289e-22)
(0.821868 -0.289484 1.15144e-21)
(0.874865 -0.117771 -2.84184e-23)
(0.941608 -0.0543187 -2.3001e-22)
(0.217487 -0.0830164 1.5449e-21)
(0.902972 -0.0706336 3.6402e-23)
(0.0354726 -0.000176623 -1.08483e-21)
(0.0270643 -0.00347569 -5.09665e-21)
(0.956541 -0.0597513 -3.80142e-22)
(0.61759 0.29817 9.50069e-22)
(1.01456 0.396261 -1.93917e-21)
(0.880154 -0.0839964 8.84751e-22)
(0.951506 -0.0765412 -4.56041e-22)
(0.522235 0.122249 4.75055e-21)
(0.964383 -0.0952371 -6.3884e-22)
(0.903799 -0.00988316 1.85659e-22)
(0.901964 -0.0762468 -4.68071e-23)
(1.02531 -0.124388 1.6513e-21)
(1.20109 0.204292 -2.0498e-21)
(0.949006 -0.0714925 5.35206e-22)
(0.95923 -0.118574 2.87529e-22)
(0.815194 -0.153932 -3.73098e-22)
(0.861928 -0.374431 -2.73525e-22)
(0.914987 -0.0201641 1.12304e-21)
(0.713537 -0.226892 1.5537e-21)
(0.888734 -0.0591873 -4.94407e-22)
(1.17831 0.239053 6.00318e-22)
(0.203234 0.184781 4.06884e-21)
(1.01286 0.256408 1.45607e-22)
(0.608808 0.342283 -3.16304e-21)
(0.412029 0.202255 2.1173e-22)
(1.20892 0.141559 1.34748e-21)
(0.681524 -0.00949826 1.24641e-21)
(0.186478 -0.0909033 5.5615e-22)
(0.941566 -0.0649481 -2.6255e-23)
(0.781619 -0.222581 -2.54022e-22)
(0.6492 0.289955 1.93459e-21)
(0.966025 0.186932 2.68535e-21)
(0.694767 0.349274 5.39643e-21)
(0.96041 -0.057539 6.58139e-23)
(1.22129 0.165236 -8.01965e-22)
(0.928432 -0.0227167 7.27631e-22)
(0.463889 0.110767 1.26556e-21)
(0.934385 -0.038381 -6.43649e-22)
(0.922805 -0.0429973 -1.11703e-21)
(0.937444 -0.0379152 -8.09034e-22)
(0.0237868 0.00519608 -7.90853e-21)
(0.945249 0.166704 -3.1823e-21)
(0.846701 -0.0714603 -1.20044e-21)
(0.175037 -0.0794149 -3.55998e-21)
(1.01474 0.397524 1.17086e-21)
(0.526695 0.168589 -2.60036e-22)
(0.997665 0.244385 -4.0831e-21)
(0.819114 0.373467 -2.05519e-21)
(0.868459 0.26054 -1.66743e-21)
(1.137 0.311558 -5.27706e-22)
(0.955749 -0.0879113 -2.39186e-22)
(0.929507 -0.0274496 -1.24924e-22)
(0.707958 -0.257627 9.80787e-22)
(0.0451951 9.95645e-06 -1.68887e-21)
(0.911111 -0.00897979 -1.3882e-22)
(0.92355 -0.0816724 -5.03155e-22)
(0.950683 0.168656 7.78995e-22)
(0.371506 -0.202457 -1.1842e-21)
(0.884321 -0.0707244 -2.48421e-22)
(0.95258 -0.0725039 5.8544e-23)
(0.36101 -0.189438 3.69129e-21)
(0.314871 0.224925 -2.82301e-21)
(0.610665 0.356605 8.54171e-21)
(0.677678 0.241464 -1.32559e-22)
(0.875301 -0.126524 7.40648e-22)
(0.458883 -0.270723 -6.35075e-22)
(0.900868 -0.0883141 -9.08572e-22)
(0.536564 -0.274355 -2.57679e-21)
(0.615912 -0.0467536 1.7119e-21)
(0.476347 -0.202108 2.79524e-22)
(0.793969 -0.1863 1.71151e-22)
(0.934153 -0.0473411 2.23586e-22)
(0.68066 0.256804 4.19128e-23)
(0.696018 -0.233179 -9.90867e-22)
(0.695415 -0.348448 2.19001e-21)
(0.361085 -0.179243 -4.55394e-21)
(0.363708 -0.194815 8.82483e-22)
(0.92968 -0.0256735 -8.28499e-22)
(0.362275 -0.192017 2.93052e-21)
(0.956058 -0.056847 -4.71024e-22)
(1.01709 0.219958 -9.44691e-22)
(0.94005 -0.0729893 6.24734e-22)
(0.932176 -0.0964287 -1.01675e-22)
(0.744131 -0.303531 3.5232e-22)
(0.96186 -0.317817 1.10608e-21)
(0.956276 -0.160603 -1.11217e-21)
(0.946111 -0.0455432 -5.89608e-22)
(0.91413 -0.00696611 -1.86617e-22)
(0.365537 -0.19685 6.90865e-23)
(0.837738 -0.330333 1.29298e-21)
(0.693793 0.16248 -1.73292e-21)
(1.33749 0.136683 1.7012e-22)
(0.173221 -0.0769207 -4.50413e-22)
(0.861115 0.130166 1.46179e-21)
(0.893621 -0.0490106 -8.75882e-22)
(0.921798 -0.021882 -1.34656e-22)
(0.639494 -0.110922 5.60147e-22)
(0.015931 3.13853e-05 -1.83722e-23)
(0.361314 -0.182181 -4.29829e-21)
(0.949813 -0.0750843 9.63014e-22)
(0.457576 0.24213 -1.04024e-21)
(0.918941 -0.0434617 -1.13715e-21)
(0.360602 -0.17631 -1.75793e-21)
(0.947467 -0.0609801 1.54622e-22)
(0.539644 0.207118 -7.7185e-23)
(0.85263 -0.164252 -1.50544e-21)
(0.359487 -0.183803 -4.14552e-21)
(0.890081 -0.12483 4.73687e-22)
(0.0251615 0.000257118 2.77681e-22)
(0.247731 -0.141545 -1.65886e-22)
(0.804338 -0.0293437 -3.50408e-22)
(0.920814 -0.00993569 2.51673e-22)
(0.170585 -0.0734306 -9.55898e-22)
(0.948345 -0.3118 -1.4674e-21)
(0.755369 0.00500774 2.60136e-22)
(1.11129 0.333945 -2.4112e-22)
(1.16235 0.28479 -1.28623e-22)
(0.67662 0.225939 7.03593e-22)
(0.879272 -0.351335 1.65026e-21)
(0.944406 -0.0560954 1.58303e-22)
(0.743212 -0.033422 6.62807e-22)
(0.908421 -0.0353728 7.1004e-22)
(0.359898 -0.187002 5.5311e-22)
(0.367655 -0.198903 -2.55256e-21)
(1.03839 0.296861 -7.08084e-22)
(0.808359 -0.09172 1.16043e-21)
(0.458408 0.184835 8.92267e-21)
(0.908996 -0.0510134 3.80599e-23)
(0.931195 -0.0388199 6.00783e-22)
(0.989596 0.180389 -2.87459e-21)
(0.492233 -0.284991 2.67807e-21)
(0.780325 0.0014663 -9.85561e-22)
(0.786922 -0.0505959 1.6533e-21)
(0.812167 0.0178117 -4.84681e-21)
(0.691538 -0.0575693 -1.94065e-22)
(0.864478 0.0899946 -3.93358e-22)
(0.620334 -0.22702 -5.70366e-21)
(0.923484 -0.00796812 -8.6627e-22)
(0.935779 -0.0372821 6.47293e-22)
(1.27725 -0.195585 2.48086e-21)
(0.734086 -0.0347699 -5.86189e-22)
(0.810212 -0.0282141 4.08206e-22)
(0.0279728 0.00397228 -7.76209e-22)
(0.850557 -0.0640392 -5.57941e-22)
(0.564278 -0.288955 -1.64898e-21)
(0.680943 -0.0593459 -1.54997e-21)
(0.359057 -0.18511 3.10723e-21)
(0.693736 -0.262709 1.58042e-21)
(0.946123 -0.0740012 4.81813e-22)
(1.28611 0.1907 -2.75918e-21)
(1.15506 0.269071 1.31293e-21)
(1.22994 0.304705 2.33963e-22)
(0.914893 -0.043876 5.95681e-22)
(0.376392 -0.113242 4.42663e-22)
(0.905094 -0.0274286 3.37327e-22)
(0.975372 0.187085 3.66417e-21)
(0.850974 0.199438 -7.23005e-22)
(0.939397 -0.0891675 -7.78505e-22)
(0.947819 -0.0458502 5.9054e-22)
(0.842168 -0.216266 3.0661e-22)
(0.283164 0.2314 -2.35874e-21)
(0.722852 -0.252336 8.97942e-22)
(0.962895 -0.165982 3.86886e-22)
(0.9498 -0.0529829 -3.39402e-22)
(0.581545 0.327754 3.39554e-21)
(1.11555 0.344555 1.83461e-22)
(0.70982 0.100286 3.44757e-21)
(0.045473 -5.46769e-05 -1.41494e-20)
(0.0452983 0.00019453 1.26639e-21)
(0.936938 -0.0345353 5.26434e-22)
(0.9108 -0.0467874 6.15588e-22)
(0.842254 -0.0188335 6.38829e-22)
(0.90998 -0.056415 -2.45847e-22)
(1.00334 -0.340757 -1.67494e-21)
(0.170735 -0.0708312 -1.07229e-21)
(0.396481 0.132062 -5.02101e-22)
(0.952404 -0.0543293 2.46856e-23)
(0.926468 -0.0424936 -4.7673e-22)
(0.91269 -0.0428159 9.55501e-23)
(0.966503 -0.133967 -7.3426e-23)
(0.845107 0.320832 -2.08707e-21)
(0.975835 -0.32293 -1.2522e-21)
(0.771504 -0.362977 -3.84809e-21)
(0.846597 -0.0181801 1.09646e-21)
(0.945498 -0.0611215 -1.01226e-21)
(0.948715 -0.0910512 -8.41252e-22)
(0.922327 -0.00208369 -3.402e-23)
(0.410441 -0.184943 -6.87631e-21)
(0.950702 -0.0544316 -4.51706e-23)
(0.607777 -0.228279 -1.42942e-22)
(0.524021 0.157367 1.51302e-21)
(0.413301 0.0802431 -1.11807e-21)
(0.888109 -0.369006 3.59019e-21)
(0.958213 -0.0594393 1.13394e-21)
(1.06546 0.29889 1.91651e-21)
(1.36214 -0.0216675 -5.12167e-22)
(0.0173819 -9.51969e-05 -6.3577e-22)
(0.220622 -0.12912 1.84811e-21)
(0.407832 0.231099 2.91943e-21)
(1.02475 0.375661 1.17743e-22)
(0.929437 -0.0380578 4.84653e-24)
(0.924523 -0.0416934 -4.41806e-22)
(0.970156 -0.17104 9.38334e-22)
(0.958761 -0.0578597 1.13017e-22)
(0.647133 -0.335177 3.59619e-21)
(0.412441 -0.183416 -2.50106e-22)
(0.926471 -0.0253187 4.99258e-22)
(0.816378 0.158808 1.74154e-21)
(0.922711 -0.0986685 6.26708e-22)
(1.01727 -0.343243 -2.65415e-21)
(0.408342 -0.18715 -4.18497e-21)
(0.95379 -0.0864669 7.89551e-22)
(0.944074 -0.0902753 9.52176e-22)
(0.845482 -0.0336234 -6.76469e-22)
(1.01859 0.251138 2.4735e-21)
(0.469714 0.218463 3.6289e-23)
(0.955372 -0.107414 1.11902e-21)
(0.937438 -0.0871521 5.10693e-22)
(0.933832 -0.090565 3.08692e-23)
(0.913377 -0.0186101 2.6156e-22)
(0.885031 0.266786 6.61428e-21)
(0.0332887 0.00551129 5.83271e-21)
(0.920779 -0.0421191 2.00014e-23)
(0.0339125 -0.0207967 -1.04398e-21)
(0.957827 -0.0998523 -8.41318e-22)
(0.505948 -0.216285 2.75428e-21)
(0.875486 -0.101266 -2.26787e-22)
(0.94188 -0.0687474 -5.68307e-23)
(0.517048 0.321891 -6.49974e-21)
(0.94238 -0.072655 -7.96085e-22)
(0.93914 -0.0752375 3.92993e-22)
(0.932691 -0.0376868 -6.13591e-23)
(0.679312 -0.26747 5.59863e-21)
(0.708154 0.183001 -5.02235e-22)
(0.793948 -0.172357 -1.16448e-21)
(0.854359 -0.0568639 -8.69881e-23)
(0.944607 -0.0629216 -3.16703e-22)
(0.926969 -0.094844 5.73088e-22)
(0.916388 0.276376 1.78875e-21)
(0.900766 0.271967 1.78424e-21)
(0.951161 -0.0899969 -1.35617e-22)
(0.895144 -0.10522 -1.18205e-22)
(0.794891 -0.158762 -6.79803e-23)
(0.167564 -0.0687596 1.94645e-21)
(0.797005 -0.145704 9.33207e-23)
(0.599649 -0.323649 3.85117e-21)
(0.858334 -0.0506545 2.48649e-24)
(0.923103 -0.0248854 -8.29769e-22)
(0.534746 -0.0612342 -1.04518e-21)
(0.891743 -0.00662344 8.25074e-22)
(0.905842 -0.00113048 1.56858e-22)
(0.928085 -0.041218 3.69347e-24)
(0.862316 -0.0449691 -2.42184e-22)
(0.958071 -0.0868563 -3.20061e-22)
(1.05409 0.35811 2.17159e-21)
(0.955358 -0.0984506 6.69555e-22)
(0.845091 0.0368324 2.05088e-21)
(0.7005 0.340686 1.67186e-21)
(0.141911 -0.0823491 2.36331e-21)
(0.882862 -0.281494 1.58986e-22)
(0.415389 -0.181141 -2.29989e-21)
(0.798176 -0.106433 1.34733e-22)
(0.866657 -0.0396607 4.56878e-23)
(0.90657 -0.0977488 5.70577e-22)
(0.920736 -0.0296196 -6.08725e-22)
(1.0169 0.244221 5.67137e-22)
(1.03203 -0.344535 3.43993e-22)
(0.300713 0.113307 -6.56374e-23)
(0.985066 0.182663 -8.75895e-22)
(0.87098 -0.0348981 1.71659e-22)
(0.679337 0.271648 -5.77782e-22)
(0.595916 -0.302016 2.36839e-21)
(0.90034 -0.372179 2.73568e-21)
(0.945674 -0.0440941 5.91437e-22)
(0.55244 -0.279823 2.02897e-21)
(0.666177 -0.271759 -3.09427e-21)
(0.946629 -0.0893674 1.78e-22)
(0.838074 -0.203541 -1.15561e-21)
(0.963031 -0.123206 3.31787e-22)
(0.919597 -0.0243789 4.84171e-22)
(0.93219 0.27952 1.82652e-21)
(1.17261 -0.226395 -1.06231e-21)
(0.712784 0.206225 -2.98026e-22)
(0.845339 -0.18313 -1.75654e-22)
(0.501553 0.246492 -1.41219e-21)
(0.50703 0.277364 -2.72306e-21)
(0.916837 -0.0425093 2.20648e-22)
(0.912332 -0.100401 -4.82414e-22)
(0.878898 -0.0262324 4.33441e-22)
(0.169618 -0.100841 -2.60894e-22)
(0.517187 -0.273195 -3.51288e-21)
(0.875201 -0.0304428 -4.39546e-23)
(0.406746 -0.190261 -2.6664e-21)
(0.94857 0.28141 -1.19049e-21)
(0.998049 -0.219601 -1.47847e-21)
(0.907882 -0.0242506 2.34842e-22)
(0.628556 -0.313392 3.48752e-21)
(1.00325 0.281957 -2.90851e-21)
(0.343021 -0.193997 -3.65385e-22)
(0.859315 -0.136924 1.06405e-21)
(0.883206 -0.0226236 2.63988e-22)
(0.912346 -0.0229296 -2.06938e-22)
(0.906045 -0.0712072 -2.36627e-22)
(0.896461 -0.0385199 2.61671e-23)
(0.451889 -0.179084 -6.02935e-22)
(0.0450234 0.00323375 7.31915e-21)
(0.364986 0.176073 5.05643e-22)
(0.915987 -0.0237829 2.8513e-22)
(0.945432 -0.0702172 -5.71695e-22)
(0.92386 -0.0110368 2.31727e-22)
(0.660661 -0.322253 -2.18291e-21)
(0.276719 -0.158706 -1.81204e-21)
(1.03805 0.385383 -4.0845e-22)
(0.318814 -0.200036 1.23836e-21)
(1.00915 -0.223901 -1.31753e-21)
(0.942046 -0.0883996 -2.85054e-22)
(0.973279 0.204546 2.46433e-21)
(0.960123 -0.0983433 6.31513e-22)
(0.875025 0.0572814 -7.7098e-22)
(0.96476 0.281774 -1.3235e-21)
(0.840681 -0.0228373 2.5481e-22)
(0.918156 -0.10268 5.00234e-23)
(0.794706 -0.0423796 1.01071e-22)
(1.03156 0.229331 7.61685e-22)
(0.977927 -0.176304 1.49113e-21)
(0.644139 -0.076243 -6.95696e-22)
(0.977804 -0.209009 1.58111e-21)
(0.955861 0.33467 -2.10033e-22)
(0.88734 -0.0190609 -1.2182e-22)
(1.06493 0.375175 3.44767e-23)
(0.928196 -0.0245822 3.19834e-22)
(0.910756 -0.0214062 -9.97343e-22)
(0.834359 -0.0454974 6.70204e-22)
(0.990377 0.23445 1.06935e-21)
(0.95531 -0.104337 8.40798e-22)
(0.834514 -0.0281356 4.11815e-22)
(0.879599 -0.00278606 5.68213e-22)
(0.924001 -0.104529 2.68318e-22)
(1.04006 0.389058 6.18926e-24)
(0.891266 -0.0156357 1.87054e-22)
(0.557152 -0.306189 -1.59489e-21)
(0.819405 -0.0312472 6.37715e-22)
(0.989617 0.400641 -1.0296e-21)
(0.930023 -0.0941629 -1.1145e-23)
(1.197 0.288084 -3.15117e-22)
(0.802512 -0.0349353 -2.31024e-22)
(0.429713 -0.153497 1.47073e-21)
(0.417304 -0.177112 -1.42659e-21)
(0.914384 -0.373992 -7.44106e-22)
(0.570948 -0.31527 -2.54327e-21)
(0.853352 -0.0207215 2.02987e-22)
(0.484764 0.251442 -4.94529e-21)
(0.418505 0.218536 -4.08544e-22)
(1.01361 -0.228946 -8.22077e-22)
(0.605006 -0.291171 -9.88552e-22)
(0.738737 0.213831 -5.93547e-21)
(0.752905 0.184526 2.12331e-21)
(0.893154 -0.329701 -1.66212e-21)
(0.819095 0.273121 -6.68263e-21)
(0.929892 -0.0220778 -2.23904e-22)
(0.345562 -0.223525 -7.2366e-23)
(0.040833 -0.0231834 8.06172e-22)
(0.731215 -0.042238 -1.17212e-21)
(0.631919 -0.0786205 -1.50604e-21)
(0.817915 -0.192809 -1.21838e-21)
(0.0339176 0.000326959 3.90601e-22)
(0.774476 0.187392 7.46079e-21)
(0.921279 -0.0131651 -5.6106e-22)
(0.796571 -0.0655082 -5.30162e-22)
(0.858466 -0.0160387 -4.23133e-22)
(0.883726 -0.337202 6.40255e-21)
(0.719663 -0.0518446 -5.76231e-22)
(0.0157889 7.58591e-05 1.78282e-21)
(0.959225 -0.0605852 -5.72373e-22)
(0.911692 -0.0941905 -3.33306e-22)
(0.870592 -0.341324 3.08561e-21)
(0.895163 -0.0129789 7.26541e-22)
(0.965159 -0.0857378 -2.9178e-23)
(0.859585 -0.344595 -5.71323e-21)
(0.84862 -0.348606 5.12849e-21)
(0.817139 -0.270436 -1.2154e-21)
(0.94781 -0.0643796 1.27052e-22)
(0.242074 0.207125 2.43629e-21)
(0.774546 -0.261327 -1.82529e-21)
(0.922387 -0.0386955 -5.57051e-22)
(0.697761 0.377713 -1.53137e-21)
(0.425005 -0.169804 8.97804e-21)
(0.430083 -0.165773 8.4388e-23)
(1.03466 0.362428 -3.27085e-22)
(1.02992 -0.21916 -4.28475e-22)
(0.944018 -0.0808351 -7.50107e-22)
(1.03656 0.248436 4.02406e-22)
(0.596407 -0.321863 -5.67689e-22)
(0.91909 -0.164044 -8.943e-23)
(0.678106 -0.0693688 2.03378e-22)
(1.33362 0.0897149 -2.58748e-21)
(0.825742 -0.0439163 5.60977e-22)
(0.939857 -0.0795126 8.39226e-22)
(1.16303 -0.213983 1.09161e-21)
(0.708488 -0.0624757 6.3201e-22)
(1.26428 -0.172938 -8.48482e-23)
(0.918045 -0.0120508 6.10495e-22)
(0.436387 -0.160779 -4.21719e-21)
(0.707684 0.158313 -4.48006e-22)
(0.884863 -0.138877 -1.56306e-22)
(0.914637 -0.0106477 4.47087e-22)
(0.8779 -0.0330711 -1.01323e-21)
(0.420942 -0.173895 6.21462e-22)
(0.712859 0.225735 -5.21708e-22)
(0.713151 -0.1668 1.77056e-21)
(0.467188 -0.250741 -2.83744e-22)
(0.926022 -0.0383965 -4.64276e-22)
(0.907917 -0.0118057 9.7979e-22)
(0.931255 -0.115521 -5.51385e-22)
(0.838334 -0.352537 -6.38462e-22)
(0.906114 -0.0095198 1.20458e-23)
(0.869225 -0.0418962 8.28178e-23)
(0.943225 -0.0705402 8.78736e-22)
(0.924936 -0.0241539 1.20967e-22)
(0.904607 -0.0823627 7.96878e-22)
(0.908022 -0.137588 -1.05291e-21)
(0.850201 -0.131932 -1.13218e-21)
(0.923938 -0.156515 -5.28203e-22)
(0.892902 -0.0176409 -5.64483e-23)
(0.958335 -0.111875 -1.43418e-21)
(0.82816 -0.355418 -4.27589e-22)
(1.05537 0.276836 1.94378e-21)
(0.0327898 -0.000210887 -4.05019e-21)
(0.898936 -0.0105926 3.74264e-23)
(1.10235 0.0633522 1.79456e-21)
(0.0364045 -0.0040545 1.38336e-22)
(0.900861 -0.0947759 -1.88509e-22)
(0.642176 0.344483 -1.67267e-21)
(0.895065 -0.098135 -6.01975e-22)
(1.2843 0.171056 -1.7968e-21)
(0.757364 -0.190411 1.40375e-21)
(0.882068 -0.105429 -9.01956e-22)
(0.867086 -0.34556 2.31942e-21)
(0.888775 -0.101687 -3.88463e-22)
(0.921545 -0.0236575 6.12938e-22)
(1.05693 -0.319835 1.22355e-22)
(1.18045 0.324304 -2.70287e-23)
(0.847828 -0.00457823 -3.25142e-22)
(0.625518 -0.0576153 1.85764e-21)
(1.16617 -0.261176 9.56402e-22)
(0.995825 -0.186979 -1.02451e-21)
(0.858289 -0.0590435 1.09181e-21)
(0.829997 0.219832 -2.81817e-22)
(0.799289 0.157836 2.75017e-21)
(0.927184 -0.000855381 5.17084e-22)
(0.454326 0.209008 3.01127e-22)
(0.793466 0.267845 7.37079e-22)
(0.513726 -0.0737176 2.09709e-21)
(0.489686 -0.0568779 -2.34844e-21)
(0.94279 -0.0667351 7.05234e-22)
(0.764882 0.324655 -1.35126e-21)
(0.921624 -0.101971 -1.10388e-22)
(0.917975 -0.0230421 -3.49435e-23)
(0.914428 -0.0223261 -8.59247e-22)
(1.16847 0.339714 8.22474e-22)
(0.900524 -0.0127785 -6.31309e-22)
(0.936525 0.381639 3.92028e-22)
(0.574882 -0.272299 3.76607e-21)
(0.876218 -0.135559 2.84704e-23)
(1.36129 0.0140331 3.22772e-22)
(0.0292269 6.55933e-05 -1.62086e-21)
(0.891195 -0.0539746 8.36039e-22)
(0.888762 -0.368651 -4.08388e-22)
(0.869165 -0.0962919 -1.33908e-21)
(0.984808 0.187909 1.59919e-21)
(0.922748 -0.0096545 4.56756e-22)
(0.913171 -0.008681 -2.92482e-22)
(0.801541 0.365318 1.03879e-21)
(0.952254 -0.0515171 3.18103e-22)
(0.798219 -0.36524 1.64323e-21)
(0.893752 -0.0522081 5.19186e-22)
(0.818658 -0.357669 2.74634e-21)
(1.22245 0.283908 -1.12981e-22)
(0.813938 0.38473 -1.69088e-22)
(0.879671 -0.109427 1.22152e-21)
(1.31798 0.177106 -6.67722e-22)
(0.610248 -0.289995 3.11918e-21)
(0.664798 -0.0823492 -1.33575e-21)
(0.394161 0.061286 1.08642e-20)
(0.987319 -0.203187 -5.3163e-22)
(0.944751 0.335137 -1.19737e-22)
(0.893515 -0.141572 -2.32987e-22)
(0.978033 0.214321 2.04685e-21)
(0.72969 0.179848 6.23913e-22)
(1.09531 0.291144 -3.78964e-22)
(0.915887 -0.0998988 2.37645e-22)
(0.847108 -0.228864 2.66938e-21)
(0.366038 0.0643202 -1.37159e-21)
(0.955531 -0.0903882 1.89606e-22)
(0.971571 0.345463 2.6609e-22)
(0.299777 0.0129862 -1.29699e-20)
(0.198174 0.115173 -2.84006e-22)
(0.837566 0.397245 -4.94407e-21)
(0.177376 -0.119134 -1.3215e-21)
(0.905577 -0.129868 1.00981e-21)
(0.931964 0.193312 -3.28987e-22)
(0.933956 -0.0348434 -9.76405e-22)
(1.17822 0.00982804 -2.61192e-21)
(0.987679 0.156227 -1.21885e-21)
(0.810902 -0.257605 -8.5457e-22)
(0.925971 -0.0979638 -1.65713e-21)
(0.983453 0.354807 3.96371e-22)
(0.0244311 -0.000223566 -6.49205e-21)
(0.940968 0.169958 7.0727e-21)
(0.910439 -0.0391696 4.38939e-22)
(0.444944 -0.156605 3.80028e-21)
(0.506771 -0.0592839 -2.44943e-21)
(0.86112 -0.0196362 -5.24129e-22)
(0.737301 0.122569 6.89989e-21)
(0.259992 0.148288 -1.27907e-21)
(0.723584 -0.354171 2.81203e-22)
(0.868476 -0.141193 -2.96713e-22)
(0.0238435 0.00600539 -3.15323e-22)
(1.29546 0.212959 -3.4163e-23)
(0.806243 -0.00649883 5.00842e-22)
(0.899769 -0.135538 2.96945e-22)
(1.01254 0.224137 -1.76611e-22)
(0.861622 -0.157561 -3.29153e-22)
(0.910201 -0.0974416 7.36811e-23)
(0.843638 -0.0262726 2.45179e-22)
(0.912583 -0.0403681 -1.47981e-21)
(0.953108 -0.0941978 -5.73458e-22)
(1.057 0.249839 -6.46398e-21)
(0.980026 0.190329 2.06612e-21)
(0.540334 -0.170355 -1.40308e-21)
(0.0220316 0.0074101 5.45554e-23)
(0.886444 -0.0647635 -5.48814e-22)
(0.629732 -0.0904181 1.14205e-21)
(0.79078 0.371531 6.10821e-21)
(0.0174315 0.00013769 -1.89548e-21)
(0.942312 -0.0180632 -4.36435e-22)
(1.19242 -0.259597 1.59649e-22)
(0.602154 -0.121498 1.93921e-21)
(1.23004 0.304528 1.03095e-22)
(0.5418 -0.304971 7.14571e-22)
(0.880087 -0.10161 1.00652e-21)
(0.979477 0.195827 1.85117e-21)
(0.823826 -0.282574 2.80857e-22)
(0.823125 -0.035201 -1.06533e-21)
(0.0570755 -0.0337923 -1.55336e-21)
(0.895587 0.130024 -1.7077e-21)
(0.928634 -0.164026 -4.76907e-22)
(0.963827 -0.126911 1.47216e-21)
(0.847622 0.37674 -1.27117e-21)
(0.890993 0.405048 -1.96108e-22)
(0.910225 -0.0113418 -4.87213e-22)
(1.13045 -0.249538 -1.23824e-24)
(0.958025 -0.108741 -1.25946e-21)
(0.134164 -0.0457964 -4.29915e-21)
(0.920105 -0.01167 3.38904e-23)
(0.537875 0.0712041 4.48424e-22)
(0.925299 -0.00777833 -4.90459e-23)
(0.845648 -0.011073 -4.14097e-22)
(1.04225 -0.190917 -2.49918e-21)
(0.93081 -0.0350793 3.48125e-22)
(0.916745 -0.0104013 -9.75111e-22)
(1.10705 -0.337105 -3.76392e-21)
(0.923224 -0.0128082 -2.44165e-22)
(0.0603637 -0.0341806 4.11951e-22)
(0.915897 -0.0512573 4.20158e-23)
(1.12556 -0.331062 -1.00838e-21)
(0.399532 0.21549 1.41232e-21)
(0.957288 -0.218877 -3.7063e-22)
(0.866166 -0.14645 -5.03306e-22)
(0.983737 0.224383 4.43614e-21)
(0.854867 -0.175601 -1.71537e-22)
(0.57934 -0.269538 1.43659e-21)
(0.769763 0.271871 7.38474e-21)
(0.0332202 2.45571e-05 2.09239e-21)
(0.902922 -0.0123543 -6.19157e-22)
(0.852671 -0.240558 -1.93422e-21)
(0.753595 -0.323689 2.45693e-22)
(0.262377 0.0280004 -6.74654e-22)
(0.784416 -0.00656799 -3.36513e-22)
(0.816606 -0.367488 1.09551e-21)
(0.980361 0.281169 -3.53585e-22)
(0.847354 -0.12663 1.0028e-21)
(0.929406 0.182477 4.38322e-21)
(0.823952 -0.248275 -2.69632e-21)
(0.910321 -0.322532 7.22404e-22)
(0.850859 -0.0283061 -1.28925e-22)
(0.751593 0.327089 1.32351e-21)
(0.886567 -0.105479 9.79304e-22)
(0.615629 -0.105477 2.51652e-22)
(0.365213 -0.190702 -3.69483e-21)
(0.953288 -0.0915003 7.51928e-22)
(0.93145 -0.0406947 -7.73563e-22)
(0.90977 -0.0796254 -8.91906e-22)
(0.847886 -0.0253442 -5.56646e-23)
(0.828178 -0.0339149 -6.5675e-22)
(0.904572 -0.0946554 -5.52611e-22)
(0.899018 -0.0981018 9.92663e-23)
(0.893018 -0.10169 8.09783e-22)
(0.950608 -0.0515552 -6.32473e-22)
(0.831671 -0.0374324 8.6894e-22)
(0.940573 -0.133851 7.97918e-23)
(0.659006 -0.335579 1.06803e-21)
(0.806704 -0.0392762 1.20123e-21)
(0.922668 -0.125809 1.03085e-22)
(0.94892 -0.146189 -5.18622e-22)
(0.423279 -0.232836 1.09672e-21)
(0.0367292 0.00413283 -2.69018e-21)
(0.973928 0.198353 -9.5157e-23)
(1.08893 -0.341848 -2.69547e-21)
(0.410299 -0.0352936 -2.23917e-21)
(0.494383 -0.0884159 1.72829e-21)
(0.865148 -0.1366 5.3467e-22)
(1.14464 -0.323264 -5.47113e-22)
(0.45325 -0.153429 -3.74339e-21)
(0.918867 -0.16945 -3.88297e-22)
(0.756728 -0.321812 3.32203e-21)
(0.767189 -0.331808 3.6105e-21)
(0.812424 -0.0378302 7.99296e-22)
(0.224079 -0.132085 1.81998e-21)
(0.924307 -0.0396122 3.17687e-22)
(0.981172 -0.203345 -4.45607e-23)
(0.943094 -0.0766842 8.58597e-22)
(0.816471 -0.0417893 -7.77405e-22)
(0.67144 0.339904 -2.9057e-21)
(0.872018 0.21146 6.21056e-21)
(0.805508 0.306536 -4.0917e-22)
(1.19801 -0.23219 9.35351e-23)
(0.74463 -0.00853448 -5.12161e-23)
(0.935111 -0.0956043 5.52468e-22)
(0.7365 -0.0486552 -6.90399e-23)
(1.17721 0.24307 2.19064e-22)
(0.893775 -0.0397827 1.26657e-21)
(0.945197 0.368872 3.10745e-21)
(0.802792 -0.172923 1.00129e-21)
(1.01581 0.21408 -2.51936e-21)
(0.930291 -0.0438896 -6.42848e-22)
(1.04219 -0.221265 3.63671e-22)
(0.955524 -0.230471 2.59249e-21)
(0.930295 -0.184752 -1.68406e-21)
(0.891409 -0.057237 -6.40089e-22)
(0.867783 -0.0923967 9.28542e-22)
(1.05621 0.298512 -4.10345e-21)
(0.396154 0.226265 4.52622e-21)
(0.298293 0.132829 -6.59485e-22)
(0.874103 -0.140544 -9.88434e-22)
(0.920394 -0.119156 1.48905e-22)
(0.411171 -0.125939 -1.09195e-21)
(0.244781 -0.136021 1.57891e-21)
(0.934507 -0.0497328 -6.21612e-22)
(0.650783 -0.11876 -1.96316e-21)
(0.791126 -0.0615021 -1.42389e-22)
(0.0503473 -0.0283369 -1.57383e-21)
(0.709902 0.135785 -6.85565e-22)
(0.949814 -0.0501205 -1.74846e-23)
(0.924502 -0.0141083 4.60573e-22)
(0.657509 0.181498 6.44106e-21)
(0.814979 0.262704 6.77767e-21)
(0.611196 0.238251 -2.68503e-22)
(0.478094 -0.105297 -4.04092e-22)
(0.715706 -0.0686085 2.86891e-22)
(0.725628 -0.339237 2.68178e-21)
(0.817844 0.165784 -7.08368e-21)
(0.964813 -0.0818529 5.92933e-22)
(1.06386 -0.247522 -1.53569e-21)
(0.831925 -0.294343 -1.98748e-21)
(0.957908 -0.102778 5.98387e-23)
(1.08061 0.262631 -1.13459e-22)
(0.686262 -0.0769503 5.32452e-22)
(0.744113 -0.0482467 -5.39174e-22)
(0.848489 -0.195219 -1.13729e-21)
(0.0244458 -0.000286263 -3.0122e-21)
(0.0278798 -0.000253226 3.48465e-22)
(0.929934 -0.0419331 6.04058e-22)
(0.428946 -0.124942 1.44027e-21)
(0.0479178 0.0265998 -2.23558e-21)
(0.00985267 -0.00536198 2.37234e-21)
(0.920703 0.188463 -3.87786e-21)
(0.934011 -0.028575 -4.17598e-22)
(1.07488 0.354888 4.17486e-21)
(0.880798 -0.22202 3.04825e-22)
(0.0243355 0.00670897 -7.35949e-22)
(0.28198 -0.182276 -9.63638e-22)
(0.940688 -0.0771455 -4.61789e-22)
(1.04694 -0.26177 -1.35589e-22)
(0.910495 -0.0367118 -4.19251e-22)
(1.06226 0.374358 3.07641e-21)
(0.889161 -0.0625881 6.39275e-22)
(0.873749 -0.0970328 -3.49156e-22)
(0.909961 -0.128652 4.09959e-22)
(1.10445 0.372842 2.28552e-21)
(0.996786 0.23731 5.90621e-21)
(0.926815 -0.0215036 -1.09882e-21)
(0.152231 -0.100171 -3.38782e-21)
(1.02653 0.3265 1.36303e-23)
(1.0593 -0.271193 1.59536e-21)
(1.3053 0.220966 -2.16557e-22)
(0.696983 -0.0739757 -1.77836e-22)
(1.02976 0.295588 -3.01396e-21)
(0.848143 0.253461 1.35523e-21)
(0.911407 -0.0149293 9.5362e-23)
(0.704926 -0.287454 -1.9245e-21)
(1.16689 -0.243655 2.28673e-21)
(0.938696 -0.0919121 -1.5108e-22)
(0.644684 -0.0104744 1.35383e-21)
(1.25452 -0.186962 5.06026e-23)
(1.10697 0.369713 -2.4591e-21)
(0.579775 -0.0129955 1.38921e-23)
(0.0219216 -0.0163044 1.25322e-21)
(0.932488 -0.0358888 4.91484e-22)
(0.0383582 -0.0216225 5.04641e-22)
(0.26964 -0.112745 -1.66488e-21)
(1.09166 -0.246297 3.62341e-23)
(0.463197 -0.149979 -6.12934e-22)
(0.955411 -0.0956803 -4.64261e-22)
(1.30285 -0.147117 1.92428e-21)
(0.887016 -0.068358 5.67191e-22)
(0.808766 -0.193282 7.17464e-24)
(0.652192 -0.233483 -7.45881e-22)
(0.856229 -0.132001 4.37352e-22)
(0.923469 -0.0210508 1.88723e-22)
(0.836187 -0.238498 2.30377e-21)
(0.643924 -0.330645 -1.86412e-21)
(1.1473 0.29775 -1.66391e-21)
(1.10575 -0.244108 -1.28415e-21)
(0.520758 -0.29679 2.12004e-21)
(0.777099 -0.230041 9.38249e-22)
(0.930351 -0.00628051 1.71342e-22)
(0.881482 -0.134865 8.73572e-23)
(1.06978 0.377882 -3.44439e-21)
(0.959307 -0.157076 1.56037e-21)
(0.978322 0.207891 -5.24694e-21)
(0.910218 0.194328 -1.19218e-20)
(0.953601 -0.242592 1.93885e-21)
(0.461263 -0.120977 -5.54516e-23)
(0.898811 0.199963 -2.66651e-21)
(0.901052 -0.149045 -8.44234e-23)
(0.279639 -0.161366 9.13776e-23)
(0.809316 0.213242 -7.96975e-22)
(0.923827 -0.161489 -6.24563e-22)
(0.0251943 -0.000162956 -7.05278e-21)
(1.35834 0.0743286 6.00069e-22)
(0.640415 -0.0993534 4.71371e-22)
(1.12749 0.360542 -1.66981e-21)
(0.885745 0.204467 -5.58649e-21)
(0.0292806 -0.000290059 -6.92384e-21)
(0.606615 -0.200404 5.34229e-22)
(0.381337 0.236284 -2.5211e-21)
(0.90663 -0.0314569 7.3683e-22)
(0.944282 -0.199797 -4.61155e-23)
(0.935875 -0.0926992 -1.3548e-21)
(0.889978 -0.137866 3.84245e-22)
(0.859291 -0.163352 1.31261e-21)
(0.580397 0.343923 6.47204e-21)
(0.0363381 9.8255e-05 -2.76051e-21)
(0.0360047 -2.58745e-05 -1.24835e-20)
(0.035995 4.42085e-05 2.26433e-21)
(0.0359547 3.11564e-05 -3.314e-22)
(0.898474 -0.140279 2.66279e-22)
(0.927544 -0.315167 -1.64638e-22)
(0.029473 5.29817e-05 1.64943e-21)
(0.944812 -0.306615 5.13612e-22)
(0.823674 0.372005 -2.95092e-22)
(0.962801 -0.297121 -3.63901e-21)
(0.75707 0.335924 3.48392e-21)
(0.28252 -0.164101 8.81238e-22)
(0.98124 -0.286552 -5.50063e-21)
(0.933507 -0.0433713 -7.75116e-22)
(0.904418 -0.134289 8.73745e-22)
(0.904438 -0.0883804 7.46799e-22)
(0.908534 -0.0611069 -1.0609e-22)
(1.08619 0.377823 3.7252e-22)
(0.305171 -0.0851014 1.8751e-21)
(0.910598 -0.0591107 -1.39186e-22)
(1.0003 -0.274838 4.12945e-22)
(0.951039 -0.0656358 -1.46748e-22)
(0.678268 -0.338933 -6.03703e-22)
(0.569644 -0.173448 3.33594e-22)
(0.99376 -0.331859 -2.05429e-21)
(0.250784 -0.110728 7.63537e-24)
(0.919675 -0.00823493 -1.17288e-22)
(0.972835 -0.166816 -1.50215e-21)
(0.651909 -0.0962767 -7.7216e-22)
(0.931026 -0.00916766 2.65005e-22)
(0.352649 -0.20684 -3.37336e-21)
(0.839001 -0.324495 -2.12944e-21)
(0.940829 -0.0839074 3.02118e-22)
(0.86966 0.183366 6.62136e-21)
(1.01995 -0.262205 2.80168e-22)
(0.927174 0.218826 3.77981e-21)
(1.1642 -0.314484 -6.80441e-22)
(0.53023 -0.0732338 1.5039e-21)
(0.936753 0.210456 -6.31807e-21)
(0.932882 -0.161139 9.90418e-22)
(0.852542 -0.315252 1.16105e-21)
(0.474618 -0.145693 2.19949e-21)
(0.846225 -0.201972 5.61987e-22)
(0.909257 -0.0281599 8.5948e-22)
(0.90724 -0.0660545 1.01446e-22)
(0.661852 -0.103764 -5.94499e-23)
(0.85257 -0.181904 3.17833e-22)
(0.352927 -0.209738 -1.09236e-21)
(0.487426 -0.140726 8.11679e-22)
(0.501894 -0.135189 1.74514e-21)
(1.12648 0.267171 6.73343e-22)
(0.941568 -0.0814221 -4.92971e-23)
(1.11191 0.263944 6.36923e-22)
(0.881774 -0.0115869 -6.51864e-22)
(0.749688 0.12894 -7.61167e-22)
(0.0304538 -9.13857e-05 4.54348e-21)
(0.030606 -5.48222e-06 -3.14308e-22)
(0.192972 0.12461 -4.06661e-21)
(0.415581 -0.248121 3.49102e-21)
(1.02217 0.239053 1.24028e-21)
(0.0326915 -0.000152281 -3.89575e-22)
(0.0329795 -0.000108272 8.46603e-21)
(0.0315123 7.65264e-05 -5.42657e-21)
(0.618739 -0.327031 -1.13894e-21)
(0.989927 0.227501 -4.00733e-21)
(0.0348886 0.000135233 -7.54222e-21)
(0.0349726 6.54724e-05 -2.10553e-23)
(0.0343031 -4.98816e-06 1.52268e-21)
(0.931361 -0.0995074 1.38231e-21)
(0.0337568 0.000122375 2.80066e-21)
(0.0335225 -0.000101689 3.81136e-21)
(0.0334729 5.6237e-05 2.98642e-22)
(1.04048 -0.2484 -1.15278e-21)
(0.227635 -0.135859 -1.656e-21)
(0.948421 -0.106854 3.65135e-21)
(1.20957 0.271877 6.56942e-22)
(0.0240341 4.65609e-05 5.1457e-21)
(0.908621 -0.0329263 5.16195e-23)
(0.993263 0.379181 5.33579e-21)
(1.14583 -0.24397 8.63047e-23)
(0.99545 -0.291535 1.76041e-21)
(0.27096 -0.132538 -4.29317e-21)
(0.00766736 -0.0044352 1.7689e-21)
(0.0080971 -0.00445112 -1.60484e-21)
(0.492861 -0.248854 -3.43064e-21)
(0.700227 -0.258834 -1.27976e-21)
(0.593499 -0.248098 -2.31844e-21)
(0.477914 -0.282043 2.55418e-22)
(0.0482327 0.000237943 5.56119e-21)
(0.230839 0.0973616 2.22418e-23)
(0.901688 -0.211132 -1.78174e-21)
(0.555554 0.309746 -7.54175e-21)
(0.339597 -0.166793 -4.14635e-22)
(0.0172363 -6.90706e-05 2.99676e-22)
(0.906991 -0.0290177 -1.13887e-21)
(0.874463 -0.300846 1.33733e-22)
(0.778416 -0.353378 3.00271e-22)
(0.243348 -0.135566 -3.78545e-22)
(1.0229 0.143628 -1.48678e-21)
(0.834777 0.256899 2.05398e-21)
(0.013567 0.00783804 1.4687e-21)
(0.915054 -0.0301614 -5.94324e-22)
(1.30769 -0.177825 3.43379e-21)
(0.887046 0.331517 2.47608e-21)
(0.821797 -0.0402154 7.28455e-22)
(1.19729 0.317956 -1.20367e-22)
(0.726216 0.257341 -2.10776e-21)
(0.677857 -0.0405944 -1.23462e-21)
(0.792048 -0.054999 -4.15558e-22)
(0.966906 -0.225601 5.8753e-22)
(0.894828 0.158197 1.42604e-21)
(1.06151 -0.232612 -2.25406e-21)
(0.444714 -0.137145 -1.19123e-21)
(0.0166223 0.00932839 5.13542e-22)
(0.464314 -0.239825 -1.55129e-21)
(0.870124 -0.167149 6.2671e-22)
(0.252825 -0.140371 -1.69665e-21)
(0.00600847 -0.00334676 5.65928e-22)
(0.824363 -0.332499 -2.01969e-21)
(0.940427 -0.292612 -5.74172e-22)
(0.648611 0.0944239 1.0148e-20)
(0.132345 -0.100834 1.28101e-23)
(1.30247 0.120935 5.15236e-22)
(0.795099 -0.353712 -1.44491e-21)
(0.50935 -0.208104 2.29362e-22)
(0.015182 0.00834448 -2.60872e-22)
(0.874356 -0.209369 3.92275e-22)
(0.731999 -0.29607 -1.66835e-21)
(0.921009 0.177444 -2.89804e-21)
(0.0142786 0.00820382 1.32135e-21)
(0.916681 -0.00682376 6.174e-22)
(0.0494441 4.5132e-05 6.91455e-21)
(0.808262 -0.265004 2.01273e-21)
(0.964043 0.333547 -4.19966e-21)
(0.533968 -0.034612 -1.78246e-21)
(0.140566 -0.0298841 -3.09043e-21)
(0.0494971 -6.37379e-05 1.90743e-21)
(1.1893 -0.220203 -7.69088e-22)
(0.153074 0.0876479 6.51501e-23)
(0.572772 0.303891 2.30777e-23)
(0.946222 -0.0682105 -4.83458e-24)
(0.454679 -0.251376 1.26209e-21)
(0.447189 0.249207 -1.34086e-21)
(0.87772 -0.0425096 -6.62164e-22)
(1.34269 0.0996209 1.53592e-22)
(0.507107 -0.11429 3.68109e-21)
(0.904495 -0.30082 8.40826e-22)
(0.927332 -0.103635 -9.42467e-22)
(0.951035 -0.254957 -7.06227e-22)
(0.244553 -0.17331 1.73722e-22)
(0.237936 0.135209 -2.1204e-21)
(0.0149961 0.00776427 -1.13415e-21)
(0.583963 -0.287861 -5.05616e-21)
(0.944933 -0.0665135 -5.78661e-23)
(0.994593 -0.303403 -1.36469e-22)
(0.933881 0.392267 -1.83277e-21)
(0.760262 -0.303872 -1.27135e-21)
(0.838857 0.177472 4.04363e-21)
(0.0270294 -0.00114046 -5.18931e-21)
(0.996485 -0.197587 -1.0813e-21)
(1.07877 0.32784 -2.27378e-21)
(0.942683 -0.0858045 -3.92606e-22)
(0.852711 0.25006 3.13812e-21)
(0.272498 -0.186159 7.97317e-22)
(0.00828682 -0.00483367 5.38033e-22)
(0.908106 -0.0687826 -2.56584e-22)
(0.490802 -0.0261893 2.55793e-21)
(1.02148 0.17804 7.09675e-22)
(0.314492 -0.197338 -3.61667e-21)
(0.675701 -0.247255 1.5934e-21)
(0.0126395 0.00749456 7.59649e-22)
(1.2016 -0.291607 1.18196e-21)
(0.16664 0.0932216 7.14688e-22)
(0.573326 0.307934 -3.08066e-21)
(0.0078176 -0.00473074 1.44444e-21)
(0.30034 -0.199281 -4.81703e-22)
(0.920527 -0.0960589 4.3991e-22)
(1.18738 0.270262 6.32086e-23)
(0.0349238 7.98627e-05 3.65261e-22)
(0.034339 -0.000118671 -1.56748e-21)
(0.0347017 -0.000100748 -9.60129e-23)
(0.977557 -0.22023 4.74542e-22)
(0.0153631 0.00875029 2.98313e-22)
(1.33524 -0.119629 -8.81899e-22)
(0.0134175 0.00763903 4.22351e-21)
(1.22008 -0.277284 2.54577e-22)
(1.18258 -0.303917 2.45095e-22)
(0.522964 0.298931 -1.37116e-21)
(0.930973 -0.0284427 7.04751e-22)
(1.34804 0.127607 -1.85897e-21)
(0.821311 -0.18583 -5.51735e-22)
(0.0556179 0.0569027 1.93358e-21)
(0.925176 -0.022273 -1.73687e-22)
(0.983668 0.217712 -1.42579e-21)
(1.06378 -0.283295 9.20345e-23)
(0.518708 -0.130065 4.29668e-21)
(1.05535 0.152895 1.9667e-21)
(0.597037 0.307644 2.45609e-21)
(0.477522 0.204946 7.42747e-22)
(0.857906 0.157287 -2.29067e-21)
(1.16337 0.312746 3.21805e-22)
(0.573839 0.312121 1.13691e-21)
(1.23838 -0.261346 3.57093e-21)
(0.848666 0.19099 5.4974e-21)
(1.23906 -0.237518 1.41729e-21)
(0.0131304 0.000129153 1.83782e-21)
(1.14475 0.283639 -1.1907e-21)
(0.0157668 0.00909544 -7.58782e-22)
(0.00716168 -0.0041147 -5.58097e-22)
(0.995359 0.279365 1.11857e-21)
(0.464857 0.116114 3.4207e-22)
(0.99034 -0.197882 1.58461e-21)
(0.968723 -0.243135 4.95447e-22)
(0.962576 -0.262421 5.30265e-22)
(0.329238 -0.211943 9.04898e-22)
(0.311148 0.176925 4.01695e-21)
(1.14567 -0.122217 -2.0463e-21)
(1.18329 0.303253 1.04148e-21)
(0.0146688 0.00891679 1.00713e-21)
(1.0144 0.263827 -9.24239e-22)
(0.963121 -0.0647627 1.29134e-23)
(1.17566 0.284954 1.73355e-22)
(0.147491 -0.11942 4.53968e-21)
(0.900101 0.187495 -6.84329e-22)
(0.947872 -0.267565 -6.84896e-22)
(0.904966 -0.101084 -5.76179e-22)
(0.987659 -0.214517 -1.57489e-21)
(0.411444 0.197393 9.15889e-23)
(1.20949 -0.248758 -1.65176e-21)
(1.01282 -0.184882 5.11269e-22)
(0.999783 0.259027 -1.81883e-21)
(0.918968 0.241043 5.59362e-21)
(0.304384 0.173598 4.14471e-22)
(1.00454 0.246968 6.63728e-23)
(1.00485 -0.191753 -3.94314e-22)
(0.934532 0.217372 1.45751e-21)
(0.841715 -0.305377 2.60158e-22)
(0.845434 -0.23614 -6.88573e-22)
(0.00864031 -0.00500975 -4.91171e-23)
(0.803495 -0.186523 5.55543e-22)
(0.0141284 0.00844336 2.57596e-21)
(0.899309 -0.104972 6.05611e-23)
(1.22296 0.291199 7.89984e-22)
(0.261538 -0.161086 1.292e-21)
(0.989298 0.214366 -2.6554e-21)
(0.91943 -0.218057 6.59183e-22)
(0.0122096 0.0071701 2.8632e-21)
(0.906932 -0.142518 -1.0919e-21)
(0.909718 -0.0912824 6.19097e-22)
(0.905719 -0.361016 -1.37918e-21)
(1.01805 -0.259129 4.28538e-22)
(1.25597 0.225731 -9.74266e-22)
(0.929856 0.139556 3.68567e-21)
(0.944167 -0.280282 -2.13453e-22)
(0.933142 -0.272333 1.48816e-21)
(1.25613 -0.243893 -3.42869e-21)
(0.302629 0.0876006 -2.88846e-22)
(0.927091 -0.019708 9.34994e-22)
(1.01835 -0.216144 -9.43563e-22)
(0.82989 0.323344 9.87371e-23)
(0.906253 -0.0914497 -7.70547e-22)
(0.788386 0.092571 -1.2851e-21)
(1.35004 0.0787833 -6.1726e-22)
(0.251444 -0.104755 1.64387e-21)
(0.828101 -0.268255 -1.2215e-21)
(0.0129196 0.00735983 1.08804e-21)
(1.27576 0.238347 -7.94715e-22)
(0.490117 -0.199098 2.32892e-21)
(1.03781 -0.210226 1.85856e-22)
(0.477025 -0.146615 1.11758e-21)
(0.00769349 -0.00435993 2.03092e-21)
(0.821064 0.398895 -5.1538e-21)
(0.00858366 -0.00531934 2.3142e-21)
(0.99441 0.271489 -2.91167e-21)
(0.00866952 -0.00467539 1.06616e-21)
(0.89357 -0.0428286 -4.62504e-22)
(0.219963 -0.125575 -6.48839e-22)
(0.0132711 0.00815157 1.47878e-21)
(0.956549 -0.286817 -1.97856e-21)
(0.0094741 -0.00568511 -2.85837e-21)
(1.27192 0.216707 -2.98661e-22)
(0.799761 0.318226 -6.40915e-22)
(0.0134711 0.00792532 -9.76624e-22)
(0.765235 0.365545 1.37393e-21)
(0.855763 -0.226565 1.68652e-22)
(0.959909 -0.224988 -1.34359e-21)
(0.297593 0.170563 1.60159e-21)
(0.882726 -0.328935 -2.20474e-21)
(0.906245 -0.0853452 -9.11054e-22)
(0.0102155 -0.00592857 2.1829e-22)
(0.697568 0.214964 -2.79094e-21)
(0.509264 -0.0862975 -1.0025e-21)
(0.915844 0.166302 -3.27318e-21)
(0.961115 0.16891 -7.62453e-22)
(0.0127964 0.00781663 2.4499e-22)
(0.358459 -0.225259 5.99837e-22)
(0.546796 -0.0564992 5.30435e-22)
(0.00618853 -0.00373467 5.26404e-22)
(0.928219 -0.100365 2.3825e-22)
(0.173026 -0.105222 -1.57682e-21)
(0.179996 0.104029 1.06385e-22)
(0.216132 -0.160771 3.50787e-22)
(0.710775 0.237322 -3.41308e-22)
(0.0121619 0.00721626 1.41988e-21)
(0.396134 -0.113109 2.1728e-22)
(0.91474 0.213693 4.43353e-21)
(0.949402 0.272861 1.12128e-21)
(0.880374 -0.126102 -4.86477e-22)
(0.166105 0.112469 2.00709e-21)
(1.28731 0.205833 6.14278e-23)
(1.00973 0.276636 -2.90142e-22)
(0.91509 -0.093834 1.68466e-22)
(0.139393 -0.0642814 3.56937e-21)
(0.874687 -0.314343 -3.70062e-21)
(0.00754041 -0.00459303 5.38758e-22)
(1.0423 0.390689 2.62432e-23)
(0.686598 0.190642 -1.69754e-21)
(0.294668 0.164946 -1.76945e-21)
(0.500476 0.253568 3.37469e-21)
(0.924186 -0.177466 1.72655e-21)
(0.536802 -0.124644 -1.26547e-21)
(0.771366 0.30877 5.0431e-22)
(1.20226 0.319206 2.84911e-22)
(0.389848 -0.239114 3.72448e-21)
(0.698635 0.149029 -2.85066e-21)
(0.0367206 -1.54937e-05 -2.2642e-23)
(0.0367126 1.47929e-05 -2.06827e-22)
(1.22629 -0.236526 1.6827e-21)
(0.769382 -0.347422 -7.76116e-22)
(0.00778932 -0.00446293 -1.67934e-21)
(0.269914 -0.148075 1.58679e-21)
(0.73558 -0.32263 -1.27347e-21)
(0.0151299 0.00874555 1.17063e-22)
(0.423106 -0.252744 -3.11454e-22)
(0.187642 0.013416 -8.56998e-21)
(1.22355 0.236028 2.34967e-22)
(1.29857 -0.181718 6.13455e-22)
(0.556051 -0.116895 -1.06418e-21)
(1.34409 -0.0653124 2.87817e-22)
(1.08727 -0.117739 9.93007e-22)
(0.523234 -0.265675 7.59201e-22)
(0.0100744 -0.00563902 1.57169e-21)
(0.00881302 -0.005242 -1.08564e-21)
(0.834987 0.39948 -4.41948e-21)
(0.674015 -0.343025 -1.96741e-21)
(0.812652 0.262996 -4.68222e-22)
(0.932469 -0.0466868 -3.71664e-22)
(1.06774 -0.295424 -1.24228e-21)
(0.957735 -0.091743 -9.93962e-22)
(0.2927 -0.195698 2.4965e-21)
(0.829986 -0.26081 1.19845e-21)
(0.00897408 -0.00515646 1.63974e-21)
(1.08328 -0.215778 1.69296e-21)
(1.24147 -0.222386 4.01195e-22)
(0.902313 -0.143911 2.55569e-22)
(0.49332 -0.103413 -9.11399e-22)
(1.00092 0.266509 6.05815e-22)
(0.0101434 -0.00570668 -4.83532e-22)
(0.00722837 -0.00417203 -2.57555e-22)
(0.0140946 0.00809226 1.12233e-21)
(0.456853 -0.266611 1.6615e-21)
(0.695582 0.124059 5.70898e-21)
(0.00884533 -0.00519949 9.10002e-23)
(0.767525 0.301361 2.33609e-21)
(0.834245 -0.246107 1.74924e-21)
(1.01164 -0.217533 3.0527e-22)
(0.807798 -0.356344 2.26232e-21)
(0.592986 0.295073 9.91944e-22)
(0.0147706 0.00869767 1.6893e-21)
(0.733314 0.324734 -2.11339e-21)
(0.520235 0.304591 -1.74616e-21)
(0.789215 -0.343952 -1.70939e-21)
(0.576693 -0.108995 -2.8817e-21)
(0.958298 -0.236812 -1.72829e-21)
(0.502371 0.247596 -4.47603e-22)
(0.0126309 0.00732635 -1.25676e-21)
(0.458436 0.0947043 1.09935e-21)
(0.967356 0.380328 1.49273e-21)
(0.739634 0.201386 1.98715e-21)
(0.923889 0.182603 8.06896e-21)
(0.0291471 -4.92801e-06 -6.31115e-22)
(0.0299646 4.70142e-05 -1.16311e-22)
(0.490475 -0.280209 -3.71507e-22)
(0.724359 -0.348778 1.32671e-21)
(0.0306465 0.000151734 1.19656e-21)
(0.0306321 -2.23664e-05 -6.82046e-23)
(0.554449 -0.242709 -1.87291e-21)
(1.03165 -0.212517 2.03922e-22)
(0.0327441 0.000188362 -1.73522e-21)
(0.0327636 -0.000179217 3.7712e-23)
(1.36101 -0.02806 -1.10778e-21)
(0.990203 -0.187014 2.81507e-22)
(0.0330872 6.44162e-05 -6.5671e-22)
(0.0331222 -9.43619e-05 3.38699e-23)
(0.35276 0.186042 -3.26371e-21)
(0.909331 -0.0639247 -2.2794e-22)
(1.02318 0.395914 2.74864e-21)
(0.0344098 2.46074e-05 -2.70609e-21)
(0.0343962 -8.17485e-05 4.22956e-23)
(0.0355862 -3.79948e-05 5.46094e-21)
(0.0354917 8.04161e-05 -3.54055e-22)
(0.868802 -0.00647965 3.249e-22)
(0.876765 -0.0366583 8.17145e-22)
(0.0348146 -5.38095e-05 -2.58022e-21)
(0.0351173 2.8858e-05 5.41985e-22)
(0.00864364 -0.00494971 -2.18238e-21)
(0.135576 0.079784 -6.74747e-22)
(0.793682 0.386761 5.64134e-22)
(0.273081 -0.15944 3.82358e-21)
(0.523689 -0.293306 4.7945e-21)
(0.543567 0.204037 3.75868e-22)
(0.653244 0.0670884 -1.33049e-21)
(0.949395 0.248514 2.38679e-21)
(1.32171 0.174604 5.83782e-22)
(1.01022 0.242204 3.16352e-21)
(0.91719 -0.0965839 -2.13133e-22)
(1.25581 -0.206487 1.21096e-21)
(0.543152 -0.238811 -1.38011e-21)
(0.445729 -0.151318 -4.6089e-22)
(0.271887 0.141679 -6.37905e-22)
(0.579237 -0.317459 -5.58994e-22)
(1.02299 0.394062 -1.58604e-22)
(0.802739 0.259975 -5.91321e-21)
(0.888364 -0.129352 -1.09621e-21)
(0.932092 -0.0445281 1.01816e-21)
(1.17037 0.344846 -4.52541e-23)
(0.837676 -0.0315834 -1.35036e-22)
(0.72038 0.0666311 1.48729e-21)
(0.282696 0.150425 2.94791e-21)
(1.25372 0.257433 -5.67265e-23)
(0.477102 -0.119071 9.82288e-22)
(0.784256 0.117565 3.08031e-21)
(0.999051 -0.192252 -7.91726e-22)
(1.02042 0.232507 -5.09491e-22)
(0.598981 -0.100569 3.1836e-22)
(0.872542 -0.0410446 -4.24741e-22)
(0.843926 0.304141 -1.51018e-21)
(0.00981682 -0.00539598 4.8575e-22)
(0.950459 -0.0448971 1.26693e-22)
(1.00681 -0.186155 1.14501e-21)
(0.66398 -0.329703 -3.45839e-21)
(1.0058 0.254155 1.36689e-22)
(0.43991 -0.237874 -8.81304e-22)
(0.683597 -0.241092 -1.95378e-22)
(0.841816 0.400992 -5.12951e-22)
(0.0171864 0.0103664 1.54953e-21)
(0.945778 -0.0646061 -6.3522e-22)
(0.970739 -0.220061 3.84045e-22)
(0.913953 0.188414 5.16078e-21)
(0.723187 0.012106 -1.15423e-20)
(0.990793 -0.208761 7.13464e-22)
(0.936942 -0.192649 6.98878e-22)
(0.981046 -0.214625 1.51456e-21)
(0.873459 -0.0373202 -1.29813e-22)
(0.609426 -0.321148 1.04825e-21)
(0.0108848 -0.00615845 1.51464e-21)
(1.13018 -0.318954 2.16283e-21)
(0.303072 0.116413 -6.28348e-23)
(0.875742 -0.150164 5.78209e-22)
(0.396726 -0.0155507 -1.23977e-21)
(0.0354172 0.0272821 1.64096e-21)
(1.06873 0.256252 1.73494e-21)
(1.02799 0.21687 -2.6981e-21)
(0.94716 -0.12278 4.75669e-22)
(0.993078 -0.315347 -1.04648e-21)
(0.00843048 -0.0046103 1.01515e-21)
(1.00909 -0.3068 -5.9106e-22)
(0.836436 -0.0361268 3.2937e-22)
(0.0846037 0.0729014 7.19852e-21)
(0.615943 -0.328828 3.98758e-21)
(1.07096 -0.30711 -8.20887e-22)
(0.5162 -0.297818 7.56938e-22)
(0.501408 0.154635 5.50985e-22)
(0.0103559 -0.00601616 -3.28253e-23)
(1.14583 -0.22157 2.0223e-21)
(0.0165966 0.00914671 -1.46098e-21)
(0.959424 -0.0522041 -3.26869e-22)
(0.176626 -0.110409 -1.23547e-21)
(0.941152 -0.111758 -3.92809e-22)
(0.896261 -0.312581 -5.21677e-22)
(0.828652 -0.314832 -3.71132e-21)
(0.55385 -0.280945 7.55585e-22)
(0.1478 0.0856397 -6.2538e-22)
(0.0158749 0.00814799 4.0279e-22)
(1.27315 -0.225151 -1.2729e-21)
(0.957713 -0.0944218 -5.59323e-22)
(0.0243562 0.000239604 1.63284e-21)
(0.917771 -0.00825663 -2.36264e-23)
(1.15412 -0.244735 -1.36935e-21)
(0.956385 -0.249102 -2.80126e-21)
(0.924373 0.194017 1.55739e-21)
(0.682599 -0.211878 4.49603e-22)
(1.27031 -0.00371675 1.31321e-21)
(1.02348 0.221676 -7.69891e-22)
(0.717352 0.0890705 1.97459e-21)
(0.597881 0.312618 -5.05188e-21)
(0.673831 0.179144 1.5404e-22)
(0.4492 0.276465 -8.10678e-21)
(0.618467 0.287506 -9.98833e-22)
(0.895541 -0.0173139 -2.80611e-22)
(0.925857 -0.0309069 -2.45224e-22)
(1.27147 -0.164373 -3.64536e-22)
(1.0731 -0.337168 3.32052e-21)
(0.997827 0.399812 3.06835e-21)
(0.899378 -0.0148961 5.67125e-22)
(1.19755 0.254958 1.06491e-21)
(0.00770749 -0.0044177 3.75276e-22)
(0.934665 0.33956 -3.49554e-21)
(0.90289 0.193953 7.25204e-22)
(0.890462 0.198858 3.00507e-21)
(1.30475 0.111452 1.91894e-22)
(0.339149 0.193062 8.98404e-22)
(0.654344 -0.0431224 6.88622e-22)
(0.251205 -0.146841 -1.01431e-22)
(1.36519 -0.00587013 -5.085e-22)
(0.621652 -0.0904207 -5.02776e-21)
(0.916628 -0.309329 1.13728e-21)
(0.618614 0.293257 -6.95332e-22)
(1.06097 -0.263175 -6.75928e-22)
(0.952965 -0.206201 -8.0528e-22)
(0.764771 0.18029 2.76477e-21)
(0.93547 -0.304977 2.40537e-21)
(0.503912 0.280048 1.19701e-21)
(0.84228 -0.0304845 3.45931e-22)
(0.903965 0.264062 -2.86387e-22)
(0.956613 -0.0644273 -3.44462e-22)
(0.71938 -0.295004 -2.12244e-21)
(0.54749 0.30826 -3.28422e-21)
(0.0337293 0.0181647 -6.55721e-22)
(0.956978 -0.0511805 -4.31172e-22)
(0.928578 -0.285007 -7.20205e-22)
(0.672851 -0.342494 -2.21497e-21)
(1.09887 0.356604 -3.4755e-22)
(0.901071 -0.101372 4.52395e-23)
(0.461204 -0.13524 -8.41748e-22)
(1.0734 -0.318258 6.70837e-22)
(1.31334 0.204393 2.60999e-22)
(0.808592 0.154468 1.11461e-20)
(0.648938 0.282472 4.08913e-23)
(1.21259 0.0620323 -6.33945e-21)
(1.07176 0.29132 2.43695e-23)
(0.737852 -0.289779 1.54303e-21)
(1.06899 -0.259329 3.42434e-22)
(0.780038 0.264317 -2.58581e-21)
(0.877469 0.203888 -9.00538e-21)
(1.32081 -0.154903 -1.18984e-21)
(0.219432 0.0979496 8.35101e-22)
(0.0118708 -0.00590283 -8.8031e-22)
(0.455825 0.212015 -1.31784e-21)
(0.0134735 -0.00673208 -3.19975e-22)
(0.140638 0.0821939 1.02205e-21)
(0.572228 0.316856 -3.07512e-21)
(1.1101 0.309513 1.2856e-21)
(0.0155581 0.00836926 -6.28916e-22)
(0.0176477 0.00847885 2.11427e-22)
(0.011763 -0.005864 -5.9214e-22)
(1.02029 -0.209955 -1.06394e-21)
(1.29009 0.238868 -1.78584e-23)
(0.71302 0.359652 4.21632e-22)
(1.07596 -0.215911 -1.31756e-21)
(0.184869 -0.106486 3.22814e-21)
(0.498011 0.308243 7.06213e-22)
(0.74253 0.176221 4.38378e-21)
(0.00987913 -0.00503692 -1.1373e-21)
(0.669448 0.343365 -7.92483e-23)
(0.896552 -0.0149901 5.79432e-22)
(0.0137543 0.00775714 1.79779e-21)
(1.1063 -0.197809 -1.28574e-21)
(1.03503 0.370566 -2.25368e-21)
(0.855789 0.184734 -8.37044e-21)
(0.707388 0.366721 4.50539e-21)
(1.02517 0.227702 3.5876e-21)
(0.0704407 0.0412468 1.15478e-21)
(0.647783 0.271793 -8.34541e-22)
(0.895322 0.337577 -9.62272e-22)
(0.863692 -0.311636 -6.54008e-23)
(0.260531 0.123993 5.44059e-21)
(0.0115514 -0.00616876 -5.28253e-22)
(1.12912 -0.178324 -3.44682e-22)
(1.07383 -0.328617 -3.00684e-21)
(0.732155 0.133896 2.04954e-21)
(0.629846 -0.150206 -1.68023e-22)
(0.690909 0.371526 -3.07656e-21)
(0.0187977 0.00990771 -7.29692e-23)
(1.15116 0.330055 -1.382e-21)
(1.16821 -0.100331 1.99032e-21)
(0.463356 -0.25945 5.54341e-22)
(1.26835 0.176933 9.05758e-22)
(0.869949 -0.151127 2.13959e-22)
(1.15154 -0.157843 4.86464e-21)
(0.0175156 -0.00582729 -2.81996e-21)
(0.427098 -0.0449477 5.22581e-22)
(0.175868 0.0207104 -1.93119e-23)
(0.231336 -0.146814 -1.13409e-21)
(1.07261 0.371129 -1.41046e-21)
(0.584688 -0.294758 -1.10626e-21)
(1.14561 0.303015 4.26431e-22)
(0.645496 -0.0799806 4.88089e-21)
(1.20793 0.191602 -6.77459e-22)
(1.3528 -0.0508839 -5.40641e-22)
(1.0685 0.284133 -1.45039e-21)
(0.883396 -0.130112 -2.87861e-22)
(0.840774 -0.311893 2.62518e-21)
(0.187771 -0.147755 2.95555e-21)
(1.2238 0.0175275 9.16841e-22)
(0.401053 0.172034 4.08169e-22)
(1.07963 -0.283035 -2.57484e-22)
(0.843791 -0.291184 1.00439e-21)
(0.982047 -0.36815 2.73963e-21)
(1.28455 0.134691 -2.78027e-21)
(1.28877 -0.205934 2.81194e-22)
(0.0140074 -0.00633504 9.63559e-22)
(0.816108 -0.179518 -1.64507e-22)
(0.699039 -0.0100381 9.71039e-22)
(0.0493451 0.000113827 -4.18377e-21)
(0.0493364 -0.000116859 -1.40096e-22)
(0.266681 0.0223001 -9.53491e-22)
(0.0183912 0.0079897 -5.79985e-23)
(0.823158 0.254929 -6.17757e-21)
(0.839262 0.267074 1.56736e-21)
(1.07253 0.249299 3.25274e-21)
(1.19026 -0.0775695 1.71974e-21)
(1.00939 -0.363359 3.27848e-22)
(0.960732 0.396187 7.67988e-21)
(0.854747 0.23309 -5.7349e-21)
(1.0566 -0.25062 1.71678e-21)
(0.61668 -0.307064 -3.19291e-21)
(0.684045 0.36096 -6.68514e-21)
(0.902239 0.32095 4.21265e-21)
(0.986961 -0.192309 1.55567e-21)
(0.86219 0.38315 -6.70706e-22)
(0.189308 -0.109241 2.99746e-21)
(1.31863 -0.149787 2.06012e-21)
(0.928776 -0.169181 5.87138e-22)
(0.953724 -0.261477 7.65464e-22)
(0.963528 0.399733 2.92362e-21)
(0.74999 0.121743 -5.51569e-21)
(1.10548 0.0487495 2.58385e-22)
(0.219208 -0.13162 1.97343e-21)
(0.950966 -0.0461707 -2.02483e-22)
(0.648095 -0.316658 -7.99204e-22)
(0.840038 -0.258305 1.97718e-22)
(0.863162 0.210209 2.7976e-21)
(0.950615 -0.274444 -6.80877e-22)
(0.910816 -0.0319315 1.23391e-22)
(0.532411 -0.282815 -1.52315e-21)
(0.676525 0.363974 4.95958e-21)
(1.04669 0.382308 1.5126e-21)
(0.80757 -0.179677 3.87169e-22)
(0.835269 0.358589 -1.80372e-21)
(0.922387 0.212997 -1.02228e-20)
(0.276066 -0.162497 -4.89403e-21)
(0.949519 -0.085896 1.0316e-21)
(0.309186 -0.176277 3.26031e-21)
(0.0156585 -0.00721036 -2.42098e-22)
(0.943102 -0.299153 6.14335e-22)
(1.23866 -0.19831 7.2627e-22)
(0.929031 0.296865 -3.76966e-21)
(1.00973 0.196756 9.20128e-22)
(0.348709 -0.199926 9.92174e-22)
(0.445681 0.253374 5.81137e-21)
(1.19928 0.103958 -9.34033e-22)
(0.0199875 0.00913267 3.59851e-23)
(0.737599 0.315225 2.19944e-21)
(0.243789 0.133457 -5.10472e-22)
(0.745496 0.0122406 -1.63299e-21)
(0.997056 0.151485 -2.09296e-21)
(0.0154446 0.00837174 -7.22132e-22)
(0.933052 -0.105097 4.38522e-22)
(0.568058 -0.294946 2.08039e-23)
(0.487611 0.173723 7.32382e-23)
(0.899535 -0.00277218 4.60564e-23)
(1.06591 -0.275292 -3.52972e-22)
(0.0379043 -0.000127587 5.38605e-21)
(0.0381319 0.000183972 6.30102e-22)
(0.038473 0.000143577 -1.79033e-21)
(0.952336 -0.0671161 -5.28025e-22)
(0.198566 -0.118503 2.71442e-21)
(0.841754 0.248811 -1.20493e-21)
(0.21275 0.123058 -1.90238e-21)
(1.04454 0.290355 -7.89896e-22)
(0.925191 -0.304059 -2.89913e-21)
(0.914593 -0.26239 -1.32247e-21)
(0.0173292 -0.00556752 -8.79667e-22)
(0.703693 0.377426 -1.39083e-22)
(0.905834 -0.30777 1.5258e-21)
(0.381487 -0.215396 -1.86415e-22)
(0.713898 0.345942 6.2368e-21)
(0.885226 -0.310372 1.24092e-21)
(0.97148 -0.208993 -2.48764e-21)
(0.022725 0.0081177 -1.97703e-22)
(0.590261 -0.193651 -2.18537e-22)
(1.05458 -0.258819 1.27003e-21)
(1.1199 0.326897 6.33971e-23)
(0.857278 0.216922 -6.30694e-21)
(0.999806 -0.296932 -1.55105e-21)
(0.942787 0.394142 2.99018e-21)
(0.972704 -0.0879061 -2.68195e-21)
(0.622455 0.315797 -5.16812e-21)
(0.400494 0.216784 -4.11506e-22)
(0.0715672 -0.0576946 -1.84082e-21)
(0.448026 -0.264148 8.57941e-22)
(1.0776 -0.247401 -2.00988e-21)
(0.858784 0.242126 1.22991e-21)
(1.12604 0.363736 1.141e-21)
(0.429161 0.143019 -3.84415e-21)
(0.300985 -0.139642 -1.16767e-21)
(0.799351 0.249266 -6.93019e-22)
(0.0244229 4.50743e-05 5.42672e-22)
(0.444658 0.285418 5.44595e-21)
(1.08784 -0.30586 2.79614e-21)
(0.00926068 -0.00500195 6.3561e-22)
(0.765868 0.364984 -5.76104e-21)
(0.947092 -0.286752 1.28887e-21)
(0.456323 -0.252453 4.56035e-21)
(0.404191 0.263416 -1.24235e-21)
(0.923822 -0.172101 1.04617e-23)
(0.599577 -0.309644 2.93693e-22)
(1.15556 -0.253111 -1.06499e-21)
(0.529321 -0.0232725 -1.47962e-21)
(0.851238 0.31258 1.53073e-21)
(0.242119 -0.142018 -3.12285e-21)
(0.15639 -0.00659599 1.75395e-21)
(0.316481 0.0199623 3.57479e-21)
(0.199632 0.176505 6.37662e-21)
(0.514212 -0.292589 4.39723e-22)
(1.04856 0.386277 -1.24498e-22)
(0.851539 -0.247857 -3.50181e-23)
(1.34546 -0.094574 -2.92456e-21)
(0.682418 0.262646 8.32628e-22)
(1.05321 0.291043 3.05951e-21)
(0.020156 -0.00504041 6.92414e-24)
(1.06842 0.270047 3.45553e-22)
(1.18591 0.22815 1.59115e-21)
(0.709074 -0.267048 7.06675e-22)
(1.16279 0.259292 -3.36067e-22)
(0.726822 0.313021 8.66029e-21)
(0.400095 -0.218589 -4.13583e-21)
(0.237799 0.101769 -1.36133e-22)
(0.678388 0.246068 -8.08462e-24)
(0.916017 -0.344591 1.67727e-21)
(0.359952 -0.0981865 -2.57263e-21)
(0.709761 0.0686115 -1.73443e-21)
(0.929399 -0.17946 -1.36629e-21)
(0.838072 0.370289 -7.44933e-22)
(0.671622 -0.0677093 3.31784e-21)
(0.714434 0.381326 2.61756e-21)
(0.0133641 -0.00493975 9.05012e-23)
(0.627507 -0.126354 1.90799e-22)
(0.860118 0.201601 -4.3966e-22)
(0.939673 -0.374987 -4.20522e-21)
(0.838578 -0.36631 -1.24606e-21)
(0.0120254 0.00673989 -2.53472e-21)
(1.10914 0.25028 -2.80028e-21)
(0.0214713 0.00856435 -4.7137e-23)
(0.926869 -0.374681 -3.5364e-21)
(0.318045 -0.0475888 -5.89731e-22)
(0.997539 -0.0686681 -1.80272e-22)
(0.0310373 0.00485871 -1.66539e-21)
(0.899711 -0.373832 -8.87308e-22)
(0.169703 -0.0948824 1.80272e-21)
(0.0220879 -0.00401002 2.51529e-21)
(0.961995 0.330146 1.47399e-22)
(0.676518 0.2314 -1.01086e-22)
(1.12445 0.337861 7.30616e-23)
(1.21274 -0.053137 5.57905e-22)
(0.100286 -0.0848413 -7.72868e-22)
(0.965145 0.401959 -6.88317e-22)
(0.530166 0.257326 -2.73268e-21)
(1.25578 0.245416 -5.45738e-22)
(0.785937 -0.347572 -1.93832e-22)
(0.53397 0.140968 3.7279e-21)
(0.654023 -0.216875 3.00706e-21)
(0.687698 -0.147603 1.16836e-22)
(0.908583 -0.37587 -1.22332e-21)
(0.960006 -0.0957691 6.62419e-22)
(0.104282 0.0579107 -3.11439e-22)
(0.0180555 -0.00476761 1.90897e-21)
(1.35381 -0.0692932 2.18835e-21)
(0.0276152 0.00164775 -1.70133e-22)
(0.0216583 -0.000990091 5.29608e-22)
(0.533841 0.105945 -1.66781e-20)
(0.648455 0.323537 -6.28244e-22)
(0.0163655 -0.00476994 2.59733e-21)
(0.608017 -0.308486 -1.02944e-21)
(1.30765 0.152091 -4.61166e-22)
(0.480846 -0.279109 -6.84671e-22)
(0.00853391 -0.00442372 -1.69589e-21)
(0.946666 -0.0429742 -5.85442e-22)
(0.175389 -0.0958443 -2.24667e-21)
(0.401011 0.135963 1.17208e-22)
(0.860689 0.225738 6.1563e-21)
(0.266602 0.155014 1.82283e-21)
(0.691404 0.352434 -1.77782e-21)
(0.990064 -0.327127 2.72426e-22)
(1.0049 -0.330196 5.5759e-22)
(1.15329 0.344704 -2.74038e-22)
(1.03707 0.38887 2.3864e-21)
(0.935712 -0.186655 9.85307e-22)
(0.987566 -0.164115 -3.61744e-22)
(0.888111 -0.0109266 -1.33087e-21)
(1.00094 -0.213525 -8.75876e-22)
(0.17581 0.101004 1.52845e-21)
(0.797649 0.167322 -1.30783e-20)
(0.922887 0.369097 -2.83404e-21)
(0.912579 0.379523 -1.33886e-21)
(1.07001 -0.251502 1.6383e-21)
(0.982861 -0.316539 8.91435e-22)
(0.977965 0.157829 4.882e-21)
(0.894705 -0.00292465 -6.88866e-22)
(0.903069 -0.0173049 -3.70326e-22)
(0.719371 0.330614 -3.50743e-21)
(0.252808 0.197865 7.63719e-21)
(1.17043 0.275213 -2.01701e-21)
(1.09116 -0.326057 -8.22103e-22)
(0.967789 -0.0506938 -2.02603e-22)
(0.0213711 -0.00362491 -1.98874e-21)
(1.36239 0.0616117 6.98198e-22)
(0.739611 0.30564 -3.17506e-24)
(0.388759 0.122091 6.19167e-23)
(0.0696694 0.0381272 -4.44428e-22)
(0.88828 -0.374664 6.0109e-22)
(1.20557 0.289618 8.83147e-22)
(0.916623 0.387877 3.84239e-21)
(0.763476 0.390984 -2.47783e-21)
(1.04334 -0.214105 3.63106e-22)
(0.737593 -0.14916 3.50245e-22)
(1.0227 -0.0493159 -6.84371e-21)
(1.14858 -0.215008 1.12393e-22)
(0.868834 0.0795591 -4.40585e-21)
(0.77325 -0.0292205 -1.34441e-21)
(0.619922 0.301428 -3.24589e-21)
(0.735309 0.29419 -9.46722e-21)
(0.505691 0.116467 -4.33654e-22)
(1.02215 0.396211 -2.31106e-21)
(1.23243 -0.0273107 9.54379e-22)
(1.3601 -0.0438966 -3.07488e-21)
(0.332416 -0.188879 -1.14294e-21)
(1.00656 0.362936 1.71204e-21)
(0.731961 0.323707 -6.02505e-21)
(0.0171864 -0.00354855 -2.14796e-21)
(1.21402 0.127378 -2.06179e-21)
(0.7021 -0.273729 -2.77438e-21)
(0.296872 0.151871 -5.08341e-22)
(0.917321 -0.000944806 -2.22504e-22)
(1.36122 0.0517162 -1.17262e-21)
(0.998934 -0.308514 1.69188e-21)
(0.0214716 -0.00184123 2.47873e-21)
(0.165983 0.150716 -1.04689e-21)
(1.00836 0.268983 3.16553e-21)
(0.698987 0.0128421 2.1517e-21)
(0.698894 -0.0546924 4.82355e-21)
(0.382029 0.216968 -3.45043e-21)
(0.850723 0.296016 -4.25798e-21)
(0.531182 0.289191 9.2873e-21)
(0.485748 0.219637 1.11322e-21)
(0.737923 -0.327482 -1.61004e-21)
(0.852187 0.375716 7.60163e-22)
(0.235412 -0.129432 5.96248e-22)
(0.427218 0.227668 -1.50966e-21)
(0.71002 0.191825 2.87718e-22)
(0.750144 0.220753 7.02186e-21)
(1.08877 0.336136 -1.43627e-22)
(0.289414 -0.0635721 3.79689e-21)
(1.1735 0.227362 1.30769e-22)
(0.938783 -0.106339 -1.15992e-21)
(1.04645 -0.0288706 9.7337e-23)
(1.11474 0.255906 -4.21006e-23)
(0.86783 -0.156647 -2.9577e-22)
(0.891668 -0.348066 -2.49197e-22)
(0.921091 0.335722 3.52682e-22)
(0.946281 -0.0415764 4.69765e-22)
(1.15319 0.316915 2.1561e-22)
(0.0182453 -0.00288219 1.90497e-21)
(0.984152 0.198959 -1.46896e-21)
(0.864909 -0.37146 -1.60632e-21)
(0.475517 0.202944 1.34707e-21)
(0.0936036 0.0544062 -1.24989e-22)
(1.14144 0.269397 3.05942e-21)
(0.891147 0.323282 -1.37412e-21)
(0.0218139 -0.00202942 -4.22239e-22)
(1.01941 0.286315 -6.16139e-21)
(0.648983 0.293216 -3.25243e-21)
(0.431439 0.105026 -1.15083e-20)
(0.950825 -0.128322 3.35685e-22)
(1.30556 0.172644 1.11372e-22)
(0.971307 -0.13865 -3.43259e-22)
(0.133201 0.0755419 3.11598e-21)
(0.913505 -0.0503714 -4.0105e-22)
(0.138856 0.0590307 4.74089e-21)
(0.766638 0.168708 -7.1676e-21)
(0.0341585 -0.0187697 2.37836e-22)
(0.341173 -0.0980484 3.00629e-21)
(0.760827 -0.353063 1.21161e-21)
(0.71241 0.2131 4.39335e-22)
(1.07046 -0.287416 -1.06113e-21)
(0.879384 -0.342201 -1.29978e-21)
(1.0779 -0.240045 1.08964e-21)
(0.160764 0.0928871 2.57493e-21)
(0.968989 -0.372486 9.86739e-22)
(1.04785 0.212611 -3.3428e-21)
(0.942379 -0.194342 -1.00947e-21)
(1.36552 0.0443307 -1.44075e-22)
(0.616239 -0.142531 -6.1168e-22)
(1.01807 -0.199699 1.05292e-21)
(0.169536 -0.127572 -1.00864e-21)
(0.336285 0.123844 6.98077e-23)
(0.0438186 0.000645105 -3.66378e-23)
(0.430245 0.242966 -1.62857e-21)
(1.22696 0.150894 8.06617e-22)
(1.213 0.2981 2.98945e-22)
(0.196131 0.0843055 -1.1894e-22)
(0.727137 -0.0399563 -3.17765e-22)
(0.70791 0.166285 -1.18544e-22)
(1.12855 0.0732019 2.24313e-21)
(0.878581 -0.362678 -4.18526e-21)
(0.341978 0.169247 -3.31303e-21)
(0.950709 -0.200763 6.05085e-22)
(0.106967 0.0607244 -4.39583e-21)
(0.107859 0.0620239 -1.01673e-21)
(0.743847 0.275058 -1.27861e-21)
(0.299269 -0.171185 4.41166e-22)
(0.951176 -0.0787303 4.1451e-23)
(1.07274 0.263003 -2.78214e-21)
(0.961403 -0.213622 -1.08181e-21)
(0.955836 -0.305697 1.78966e-21)
(0.258214 -0.0792796 2.55174e-21)
(0.756257 -0.0250555 3.97465e-21)
(1.02693 -0.20813 2.38766e-21)
(0.74732 0.286753 -8.49317e-22)
(0.315989 0.208331 -2.4972e-21)
(0.189457 -0.094284 4.15009e-21)
(0.0512501 0.00166626 2.09212e-21)
(1.00399 0.188168 9.19578e-22)
(0.874855 -0.0432533 6.08143e-22)
(0.0233911 0.00567658 1.6024e-22)
(1.07287 0.277512 -1.65376e-21)
(0.755408 0.267646 1.06043e-20)
(0.0244868 0.000703922 -2.04968e-21)
(1.00988 -0.334869 5.75237e-22)
(0.615227 -0.13031 1.01361e-21)
(0.827325 -0.321083 3.29249e-21)
(0.762001 0.31977 3.97121e-21)
(0.396674 -0.250053 -6.45376e-21)
(0.904184 -0.349001 3.38096e-22)
(1.35988 0.034419 2.42854e-22)
(0.0278435 0.00369855 3.67544e-22)
(0.701816 0.186981 -1.96609e-21)
(1.05406 -0.358872 -1.76213e-21)
(0.845861 -0.327017 4.30661e-21)
(0.0272331 0.00296399 4.06582e-22)
(0.99996 -0.202601 2.23843e-21)
(0.822291 0.181312 1.66025e-21)
(0.995369 0.373638 -3.06671e-21)
(0.814181 -0.323362 1.39646e-21)
(0.0288557 -9.77095e-05 2.18668e-21)
(1.14368 -0.235697 -7.93153e-22)
(0.0532638 0.00409209 -1.99395e-22)
(0.739667 -0.247502 -8.9797e-22)
(0.911105 -0.0296405 -1.23155e-22)
(0.402733 -0.224993 5.18187e-22)
(1.07293 -0.00593637 3.42967e-21)
(0.913953 -0.370874 9.86515e-22)
(0.912689 -0.372667 2.72069e-21)
(0.263632 -0.183453 -2.48668e-21)
(1.21444 0.24276 -1.11002e-21)
(0.706899 -0.286479 -2.31645e-22)
(0.998109 -0.36863 -3.79528e-21)
(0.240696 -0.0897227 2.42164e-21)
(0.740139 0.356684 -7.37397e-22)
(0.319767 -0.209274 -5.13522e-22)
(0.643089 -0.306201 -1.84561e-21)
(1.02536 -0.363105 -1.18888e-21)
(0.622888 0.320832 -1.68713e-21)
(0.405725 -0.193181 -4.96799e-22)
(1.08533 0.254677 -8.22224e-22)
(0.291382 -0.196243 1.01132e-22)
(1.32806 0.025587 -1.03213e-21)
(0.778103 0.164978 2.89077e-21)
(0.349368 -0.222109 9.45369e-24)
(0.911538 -0.0520051 -5.81755e-22)
(1.00242 0.233007 3.54292e-21)
(0.790756 0.150608 2.63514e-21)
(0.212119 -0.146221 2.88005e-21)
(0.797946 -0.330451 2.82208e-21)
(0.723262 0.382725 7.28054e-22)
(1.01761 0.278666 2.6096e-21)
(0.604103 -0.309684 -2.55852e-21)
(0.488811 0.234969 -8.14936e-22)
(0.281396 -0.112178 -1.44534e-21)
(0.68774 0.111526 5.60194e-21)
(1.29192 0.197372 1.29378e-21)
(0.957947 -0.047409 2.76044e-22)
(0.411778 -0.249571 -1.30366e-21)
(0.945194 -0.0850574 1.13811e-22)
(0.704945 0.173474 2.00364e-21)
(0.646672 -0.320454 -1.24223e-21)
(0.445442 -0.263163 -1.17501e-21)
(0.263174 0.129761 1.36039e-21)
(1.25479 -0.226386 6.28237e-22)
(0.793291 0.330167 1.18502e-21)
(1.10083 0.344673 -1.3298e-21)
(1.22924 0.286966 -2.42919e-22)
(0.478968 -0.276631 -6.81327e-22)
(0.0216137 0.00448061 1.18877e-22)
(0.430235 0.179069 1.07234e-21)
(0.0157416 -1.83957e-05 -4.85497e-21)
(0.512394 -0.289798 -4.51735e-21)
(1.07437 -0.299225 1.10075e-21)
(1.04937 -0.355352 2.95803e-21)
(0.235273 -0.170904 2.22599e-21)
(0.081904 0.0409254 8.41687e-22)
(0.0214904 0.0062805 8.94457e-23)
(1.36232 -0.0304406 2.89978e-21)
(0.379698 -0.235975 -1.92259e-21)
(0.755645 0.109992 -5.01938e-21)
(0.190119 -0.114132 -1.7537e-21)
(0.905007 0.31297 4.48624e-22)
(0.596941 0.325203 -2.54355e-21)
(0.780207 0.153955 -6.76979e-21)
(0.983394 0.393579 -9.14162e-23)
(0.285235 -0.105523 3.669e-21)
(1.18584 0.145907 -1.74205e-21)
(0.928833 -0.0112565 3.79763e-23)
(0.744152 -0.298605 3.12082e-23)
(0.750456 -0.33205 6.08881e-23)
(0.615522 -0.288571 2.28872e-21)
(0.680035 -0.319893 -2.55465e-21)
(1.18172 0.289365 -1.1118e-21)
(1.02767 0.287935 5.27309e-21)
(0.88179 -0.23697 -8.00363e-22)
(0.179903 -0.11636 1.18103e-21)
(1.07133 -0.345333 -3.52294e-22)
(0.315376 0.0947996 7.36891e-21)
(1.23498 -0.245778 -4.45511e-22)
(1.12703 0.347573 -4.80356e-22)
(0.841595 -0.250759 -8.94599e-23)
(1.17834 0.275606 1.09189e-21)
(0.0349322 0.00027962 -5.27573e-22)
(0.0347687 -0.000277166 -9.23579e-21)
(0.0356393 0.000178584 7.56094e-23)
(0.679411 0.276029 -1.65955e-22)
(0.718983 0.170385 -3.24182e-21)
(0.792985 0.14038 4.71219e-21)
(0.896183 -0.0474355 1.42453e-22)
(1.29249 0.178145 8.85012e-22)
(0.585525 -0.181278 -9.79127e-22)
(0.997237 -0.208343 -1.03382e-21)
(1.11493 0.114099 3.82842e-21)
(1.21964 0.255725 -9.90584e-22)
(0.0362839 0.000116674 -7.18915e-23)
(0.654038 -0.313633 -1.11104e-21)
(0.660263 -0.301139 -1.97544e-21)
(0.369521 0.0689287 -7.27507e-22)
(0.965597 -0.237295 1.76205e-22)
(1.18189 0.257017 4.21805e-22)
(0.543613 -0.246306 -4.11298e-21)
(0.672026 0.110608 -6.16939e-21)
(0.631825 -0.280212 -3.93835e-22)
(0.705848 -0.312446 -2.05806e-21)
(0.959022 -0.207026 8.20364e-22)
(0.728272 -0.245008 -1.1788e-21)
(0.780198 -0.336055 -1.35661e-21)
(0.475978 0.237587 1.67124e-21)
(0.914548 -0.0768991 6.17993e-22)
(0.197906 -0.113653 -2.29546e-21)
(0.896196 -0.0444408 -1.55505e-22)
(0.710264 0.123833 -1.01901e-21)
(0.682879 -0.293302 -7.69597e-21)
(0.22176 -0.135732 -4.80698e-22)
(1.07131 0.373599 2.06768e-21)
(1.04591 -0.35917 -4.75935e-21)
(0.59422 -0.292515 -3.54816e-21)
(1.07747 -0.310547 -1.46341e-21)
(0.687022 -0.31815 -5.20954e-22)
(1.14777 0.274745 -2.71967e-21)
(0.766585 0.110294 2.08029e-21)
(1.0982 0.371969 8.41777e-22)
(1.13233 -0.32496 4.82441e-21)
(1.11853 0.36302 -2.17109e-21)
(0.959965 -0.292719 -4.47703e-21)
(1.14388 0.260635 1.81568e-21)
(0.680759 -0.333801 -3.96561e-22)
(0.316803 -0.183743 -2.00503e-21)
(1.04908 0.389218 6.33912e-22)
(0.600025 -0.292218 3.27024e-21)
(1.10353 -0.336595 4.62433e-21)
(0.809265 -0.359341 -2.99077e-21)
(0.0239274 0.00662198 -5.73108e-22)
(0.151344 0.0860645 -1.11254e-21)
(0.936237 -0.0408499 6.4488e-22)
(0.353544 0.157004 4.79504e-21)
(0.710075 0.143559 -3.61088e-22)
(0.749838 -0.0696817 9.15994e-22)
(0.399831 0.218035 -1.75943e-21)
(1.1601 0.284836 5.90951e-22)
(0.172363 -0.0820233 -4.16758e-21)
(0.350958 0.0537358 -9.31618e-22)
(0.977811 0.341317 3.43892e-22)
(0.554842 -0.290386 -2.26787e-21)
(0.983925 0.204984 2.95808e-22)
(0.163256 0.0912917 -1.91476e-21)
(1.14821 -0.324778 2.93936e-21)
(0.660761 -0.227936 -2.93171e-23)
(0.887233 -0.12115 -5.74792e-22)
(1.07943 -0.321054 1.35445e-21)
(0.711597 -0.281508 2.20732e-21)
(0.534541 -0.26382 9.4241e-22)
(0.814917 0.376521 -5.06448e-21)
(0.716619 0.111977 -5.93814e-21)
(0.0180263 0.00956604 1.29204e-21)
(0.996729 0.399025 8.63591e-22)
(1.17571 0.290011 8.07914e-23)
(0.777332 0.296887 6.31981e-23)
(0.413735 -0.225934 -1.19125e-21)
(0.42536 0.200535 3.45276e-22)
(0.350743 -0.203143 -7.76459e-22)
(0.614555 0.358144 -3.56589e-21)
(0.969656 0.396707 -4.71429e-21)
(1.1626 0.298859 4.25892e-22)
(0.768305 -0.285225 -8.09459e-22)
(1.16447 -0.253234 -1.77975e-21)
(0.236018 0.135072 -2.26628e-21)
(0.989986 0.351164 -5.7113e-22)
(1.36309 0.00217977 9.66204e-23)
(0.86717 0.382464 1.23617e-21)
(0.70742 0.0936385 -9.24343e-24)
(0.994733 -0.36505 5.96775e-22)
(1.05874 0.283978 8.49792e-24)
(0.460412 -0.241604 3.92641e-22)
(0.816278 0.00860989 2.62495e-21)
(1.15866 -0.302873 2.08612e-21)
(0.595432 -0.292953 1.35272e-22)
(0.467777 0.168192 -4.98237e-21)
(0.373237 0.204748 1.20807e-21)
(0.82941 0.399945 5.19213e-21)
(1.18896 0.260843 -1.0961e-21)
(0.204721 -0.113236 1.74048e-21)
(0.840781 0.399811 2.93303e-21)
(0.0141578 -0.00930746 -2.99661e-22)
(0.0584781 0.033968 1.14333e-21)
(1.00886 0.235287 -6.97466e-21)
(1.1385 0.353339 -4.22246e-22)
(0.851866 -0.321362 1.28856e-21)
(0.76037 -0.340502 -1.30825e-21)
(0.417873 0.0495677 -1.5289e-20)
(0.948475 -0.361347 -2.34532e-21)
(0.785452 0.182997 -3.24906e-21)
(1.01433 -0.195155 -3.12053e-22)
(0.78636 -0.00818064 -3.18622e-23)
(0.732157 0.0688131 5.89106e-21)
(0.657833 0.366241 2.41208e-21)
(0.583952 -0.26662 -4.61257e-21)
(1.24188 0.276593 3.79174e-23)
(0.240153 -0.132043 6.7223e-22)
(0.247536 -0.140191 -6.50108e-22)
(0.848569 0.0262657 5.31577e-21)
(0.941492 -0.0322486 2.29018e-23)
(1.09006 0.220828 2.15252e-22)
(1.21895 -0.256001 -1.8052e-21)
(0.791686 0.393207 2.48459e-21)
(0.0156625 0.00835732 -1.85754e-23)
(0.853951 -0.360187 -3.40474e-21)
(0.916591 -0.0356989 -9.31435e-22)
(0.740538 0.0598772 -1.3148e-20)
(0.597905 0.315305 3.93707e-22)
(1.16814 0.303676 -1.88743e-22)
(1.07877 -0.33127 -9.29373e-22)
(0.823086 0.371159 2.58857e-21)
(0.291371 0.163615 1.66747e-21)
(0.457311 -0.0444782 4.52189e-22)
(1.07557 0.376447 -2.84662e-22)
(1.03946 0.393069 6.0218e-23)
(0.6867 -0.331945 1.42555e-21)
(0.462283 0.0065308 -7.40161e-21)
(0.756167 0.386073 -2.47995e-21)
(0.672192 -0.31589 2.77541e-21)
(0.739186 -0.343138 -1.35084e-21)
(0.330129 0.183783 8.25266e-22)
(0.181584 -0.103571 2.09564e-21)
(0.550612 -0.293266 -1.19905e-21)
(0.769945 0.0924533 -5.26162e-21)
(0.769067 -0.352111 2.12874e-21)
(0.72774 -0.342642 -2.90792e-22)
(0.540198 -0.248823 -3.21685e-21)
(0.858042 -0.0812883 -8.1758e-22)
(0.479531 -0.0838364 1.31572e-21)
(0.761422 -0.29618 -1.78859e-23)
(0.840421 0.312022 6.52712e-23)
(0.354313 -0.165976 2.01749e-21)
(0.972085 0.399797 -1.36281e-21)
(0.731531 -0.166516 -7.00882e-22)
(0.924701 -0.375525 2.41619e-21)
(0.729983 0.111911 2.58735e-21)
(0.805292 -0.0449884 -6.01857e-22)
(1.28159 0.24978 -1.13749e-23)
(0.0125085 0.0073104 2.47886e-21)
(0.171891 -0.0990391 3.4104e-21)
(0.263984 0.0324828 -3.77509e-22)
(0.728407 -0.335752 3.24908e-21)
(0.812203 -0.328934 -6.12057e-22)
(0.302098 0.172699 1.19523e-21)
(0.0276002 -0.000226414 -8.73973e-22)
(0.090065 -0.0718806 -3.7868e-22)
(1.03546 0.364285 3.56594e-21)
(0.505638 0.264507 5.23346e-22)
(0.939033 0.388023 -1.22718e-21)
(1.23634 0.173718 1.70802e-21)
(0.906291 -0.375579 -3.71055e-22)
(0.716277 -0.343792 -9.57599e-22)
(0.598396 0.0842625 8.14381e-22)
(0.870117 0.386019 3.89078e-21)
(0.712159 0.231373 8.92448e-23)
(0.309003 0.17595 6.79049e-22)
(0.450952 -0.212256 4.87479e-22)
(0.845065 0.364388 1.37563e-21)
(0.93992 -0.0299772 1.83308e-22)
(0.679367 0.297862 -4.10748e-22)
(1.0075 -0.212624 2.16035e-22)
(1.07917 -0.339118 -9.61137e-22)
(0.878596 0.0457432 -1.33658e-21)
(0.725692 0.340259 1.28062e-21)
(0.795233 -0.335392 -2.78572e-21)
(1.04467 0.358253 -3.2434e-21)
(0.387888 -0.241702 -9.63514e-22)
(0.0492499 -0.000994025 -1.66584e-21)
(0.495826 -0.230711 -1.80322e-21)
(0.882018 -0.113383 -1.66762e-21)
(0.922432 -0.328152 -2.12628e-21)
(0.952831 -0.299555 1.55413e-22)
(0.294343 0.167699 -4.13739e-21)
(1.05834 -0.349734 -1.97355e-21)
(1.01356 0.397353 -9.43921e-23)
(0.978089 -0.166787 7.51085e-22)
(0.902088 0.355902 2.73664e-22)
(1.30932 -0.17596 -1.7513e-21)
(1.27995 0.255233 1.80724e-22)
(0.989178 0.208031 1.40571e-21)
(0.965876 0.39243 -5.34035e-21)
(1.05295 0.345223 -2.344e-21)
(0.524665 -0.300842 -2.13076e-21)
(0.546438 -0.297238 1.23422e-21)
(0.803116 -0.056863 -5.13017e-22)
(0.275945 -0.139009 -1.27736e-21)
(0.398295 -0.21538 -7.99022e-22)
(1.21618 0.211607 3.19004e-21)
(0.958318 -0.0800266 4.20335e-22)
(1.03605 -0.358906 -6.64969e-22)
(0.915074 0.176933 -7.25875e-21)
(1.05164 0.33834 2.24619e-21)
(0.884709 -0.37359 3.7318e-21)
(0.692054 -0.342692 -1.22897e-21)
(0.221947 -0.122351 -1.07453e-21)
(0.175887 -0.0674159 2.74285e-21)
(0.188225 -0.0968275 -8.41286e-22)
(1.00026 0.385171 2.50586e-21)
(1.01454 0.375069 5.18745e-21)
(0.570953 0.27236 -9.13591e-21)
(1.3059 0.216363 -9.76745e-23)
(0.209665 0.120079 -1.08037e-21)
(0.389088 -0.207936 -1.55638e-21)
(0.424951 0.110207 -1.17206e-21)
(0.324387 -0.0836791 1.29814e-22)
(0.0542541 0.0072146 3.93753e-22)
(0.183927 -0.102278 4.09593e-21)
(0.416031 -0.0970251 1.73653e-21)
(0.160619 -0.0902661 -1.00405e-21)
(0.983507 0.187451 -8.56789e-22)
(0.478624 -0.160277 -2.58294e-21)
(0.682907 -0.106328 -9.15251e-22)
(0.97323 0.401697 2.12727e-21)
(0.207827 -0.122884 3.03931e-21)
(0.846577 -0.0525838 5.26519e-22)
(0.962733 -0.0633672 -3.64793e-22)
(0.267575 0.106851 -1.53238e-23)
(0.213013 -0.115472 4.52807e-22)
(0.00822066 -0.00458648 -2.55532e-22)
(0.645306 -0.0212854 -1.88599e-22)
(0.456186 -0.269975 4.91744e-21)
(0.0532348 0.00270287 1.43471e-21)
(0.277523 -0.0377078 8.45444e-22)
(0.707468 -0.00463207 1.74874e-22)
(0.776867 -0.340449 7.40295e-22)
(0.293074 -0.18139 -3.56848e-21)
(0.056313 0.00786327 1.35936e-21)
(0.259442 -0.156784 2.26671e-21)
(0.790292 -0.0209731 6.66392e-22)
(1.01403 0.230717 -1.53216e-21)
(0.916037 0.405417 1.64399e-21)
(0.886643 -0.113183 1.79336e-22)
(0.304694 -0.176363 -1.45174e-21)
(1.17785 0.298964 2.82837e-23)
(0.585368 0.041985 1.29254e-21)
(0.45673 0.184557 7.70588e-23)
(1.06705 0.379993 -5.99833e-22)
(1.04428 0.351917 1.84374e-21)
(0.752796 0.211266 4.95459e-22)
(1.0114 -0.365347 3.83994e-21)
(0.956135 -0.0831305 6.46062e-22)
(0.726734 -0.337716 6.71527e-22)
(0.756493 -0.343892 -4.79468e-22)
(0.324237 -0.201083 9.21522e-22)
(0.873714 -0.35353 -2.79129e-21)
(0.666258 -0.339421 7.31903e-22)
(0.374781 -0.218279 2.66605e-21)
(0.967901 -0.21437 1.67973e-21)
(1.20831 -0.240861 1.70851e-21)
(0.952716 -0.0801383 1.79334e-22)
(0.815549 0.243532 -1.33598e-21)
(0.922396 -0.204881 1.03079e-22)
(0.958297 -0.0745519 -1.34339e-22)
(1.07718 0.03912 -2.95018e-21)
(0.507939 -0.127036 -3.05277e-21)
(0.17594 -0.0978851 2.05908e-21)
(0.93372 0.187671 -5.36708e-21)
(0.639602 -0.334233 9.4108e-22)
(0.930872 -0.291778 -1.4942e-21)
(0.734679 -0.345492 1.55877e-21)
(0.997046 -0.320596 -1.83308e-23)
(0.193337 -0.111308 -1.16943e-21)
(0.823102 0.226877 -1.51617e-21)
(0.260297 -0.17251 -2.509e-21)
(0.522717 -0.295434 2.60407e-21)
(0.842059 -0.0594564 1.82254e-22)
(0.981004 -0.172064 -4.22092e-22)
(0.0525252 0.00516938 1.03259e-21)
(0.404684 0.28626 -1.74568e-21)
(0.0438181 -3.96353e-05 1.08395e-22)
(0.0438331 -0.000167431 8.25905e-21)
(0.043876 -8.59263e-06 -6.9225e-22)
(0.0438349 6.5686e-05 -5.12121e-22)
(0.611391 -0.327363 2.76517e-22)
(0.854757 -0.0672916 -2.29163e-21)
(1.06718 0.383437 8.82199e-22)
(0.954666 -0.373654 -2.58614e-22)
(0.524364 -0.29375 1.58421e-21)
(0.89515 -0.345516 -1.06603e-21)
(0.579248 -0.289201 -1.58145e-21)
(1.12921 -0.332682 -2.80896e-21)
(1.17128 -0.124455 -3.85741e-21)
(0.190252 -0.0702205 4.12174e-21)
(0.822254 -0.337456 -2.12037e-21)
(0.593697 -0.304728 2.45575e-21)
(0.711028 -0.345289 5.49323e-22)
(0.986307 0.260824 8.22838e-21)
(0.860241 -0.369571 -2.46942e-21)
(0.832589 -0.36376 1.0168e-21)
(1.29445 0.165791 4.76916e-23)
(0.982186 0.165267 2.02639e-21)
(0.371134 -0.21147 -5.93956e-22)
(0.936227 -0.0502963 -5.54814e-22)
(0.966072 -0.0836505 -1.25634e-23)
(0.945771 -0.0826233 3.3024e-22)
(0.23197 -0.11386 1.31678e-21)
(0.546683 -0.301002 1.79676e-21)
(0.497217 -0.236965 -3.39862e-22)
(0.983536 -0.370064 3.11602e-22)
(1.00306 0.379999 -6.603e-21)
(1.11892 0.359207 1.92597e-21)
(1.17208 0.322081 8.15162e-23)
(0.672257 -0.333986 -6.31081e-21)
(0.418907 -0.241612 -3.56828e-21)
(1.35069 0.00637227 6.1828e-22)
(1.33714 -0.119461 1.68572e-21)
(0.166045 -0.0911557 3.44847e-21)
(0.660624 -0.304518 1.98218e-21)
(0.985312 -0.304526 9.04547e-22)
(0.902357 -0.115193 -3.14842e-22)
(1.33684 0.161367 -1.40917e-21)
(0.721104 -0.349516 2.18338e-21)
(0.915226 -0.195499 -9.69663e-22)
(0.798191 -0.052883 3.55489e-22)
(0.923674 -0.334234 -3.07599e-21)
(1.1501 0.315842 3.27266e-22)
(0.713696 0.279003 1.16125e-21)
(0.525966 -0.298185 -5.89881e-22)
(0.632687 -0.31695 1.50576e-22)
(0.338389 0.231123 -1.85522e-21)
(0.386613 -0.200955 -3.76024e-21)
(1.18802 -0.298701 -2.85708e-21)
(0.915048 0.339446 1.4427e-21)
(1.08148 0.367511 1.72663e-21)
(0.596772 0.352643 8.1447e-22)
(0.526056 -0.175414 -1.44291e-23)
(1.30172 0.192898 -1.80085e-22)
(0.863797 -0.16839 -4.1062e-22)
(0.949941 -0.0834283 -1.33465e-22)
(1.30921 0.199057 2.95428e-22)
(1.21682 0.311618 1.85574e-22)
(0.0323843 0.0184028 -3.38552e-22)
(0.0492375 0.000528699 1.7955e-21)
(0.904525 0.181827 2.46483e-21)
(1.24269 -0.255376 -3.92182e-21)
(0.0397046 -0.00170349 6.9168e-22)
(0.400261 -0.200394 -3.15401e-22)
(1.35673 0.0877584 1.68341e-22)
(0.739522 0.386217 4.58274e-21)
(0.981831 0.383641 -3.97095e-21)
(0.899407 0.0994451 -2.81847e-21)
(0.686159 -0.343166 6.65591e-22)
(0.632571 -0.300807 3.50832e-21)
(0.688153 -0.0400992 1.83146e-21)
(0.741868 -0.130803 3.93488e-22)
(0.459774 -0.265808 8.73337e-22)
(0.502133 0.0157439 1.77291e-21)
(0.853922 0.330664 2.21403e-24)
(1.18312 0.247013 8.55394e-22)
(0.603447 -0.324904 -1.79678e-21)
(0.740397 -0.0808657 -5.88344e-22)
(0.758365 0.334198 9.34444e-22)
(0.659531 -0.338663 9.70255e-22)
(0.960198 -0.140313 -9.21313e-22)
(0.987713 0.38939 -2.81041e-21)
(0.186728 -0.0984753 -1.21012e-21)
(0.664727 0.0966483 -4.1283e-21)
(0.79774 -0.254815 -3.41234e-21)
(1.11804 0.35352 -3.65959e-22)
(1.16625 0.289656 1.06096e-21)
(0.632397 -0.333037 -1.07321e-21)
(0.387182 -0.195213 1.80824e-21)
(1.14149 0.32356 1.08499e-23)
(0.583316 -0.318787 4.34797e-21)
(0.296687 -0.202088 1.11236e-21)
(0.676389 -0.231839 -4.46997e-22)
(1.0459 0.391484 -6.59068e-22)
(0.592371 0.295164 -5.59055e-22)
(0.390305 -0.188402 2.1279e-21)
(0.91314 -0.295892 5.95031e-22)
(0.603851 -0.282558 3.14111e-21)
(1.00979 -0.176146 1.28523e-22)
(0.480773 -0.0643301 -1.02717e-22)
(0.792901 -0.357512 1.75356e-21)
(0.0448393 0.0156847 2.86733e-22)
(0.304515 -0.181106 3.17144e-21)
(0.0150385 -2.46227e-05 -3.85725e-22)
(0.648325 0.321773 -5.88242e-22)
(0.0145245 0.000187966 3.89426e-22)
(0.597729 0.316617 1.76618e-21)
(0.0239702 -0.000619575 1.34624e-22)
(0.0279702 0.00640761 -5.06455e-21)
(0.555778 -0.0139049 1.11806e-21)
(0.194264 0.108232 -1.04582e-21)
(0.731683 0.366663 -1.86962e-21)
(0.0157707 -0.00903887 -1.49415e-21)
(0.0679849 -0.00539624 -1.48394e-21)
(0.907178 -0.267381 1.67091e-21)
(1.04786 0.187185 -1.8592e-21)
(0.698946 -0.280946 -5.7802e-21)
(1.23724 -0.215698 -1.07711e-21)
(0.492336 -0.143978 5.95207e-22)
(0.848264 0.401589 2.06971e-21)
(0.954766 -0.0648615 -2.30075e-22)
(0.609284 -0.3214 1.86262e-21)
(1.313 0.0275824 -1.11494e-21)
(0.21643 -0.159539 1.06325e-21)
(1.12002 -0.240716 1.55283e-21)
(0.902667 0.165424 -2.0236e-21)
(0.0145123 -0.00797717 -1.51736e-21)
(0.391708 -0.0106182 -1.63121e-21)
(0.0235439 -0.000134475 6.51979e-21)
(1.35293 -0.0611567 8.47301e-23)
(1.07458 0.383163 -1.51191e-21)
(1.28775 0.231369 -4.57122e-22)
(0.87164 0.31744 -5.70381e-22)
(0.0614684 -0.0445922 3.73604e-21)
(1.22737 0.28135 1.63948e-22)
(0.0155729 -0.00955477 3.20802e-22)
(1.25507 0.216258 -2.04324e-22)
(0.788422 0.129686 1.5387e-21)
(0.987805 0.178471 -1.72901e-22)
(1.26685 0.250412 -4.9929e-22)
(0.17763 -0.0896692 -5.09773e-21)
(0.0516719 0.0270043 1.44468e-21)
(1.12897 0.258711 -2.09654e-21)
(0.834194 -0.199831 -1.67684e-21)
(0.969103 -0.311635 -2.59313e-21)
(0.282174 -0.173444 -3.37359e-21)
(0.74865 0.230293 -8.23954e-22)
(1.18609 0.255382 -1.58395e-21)
(0.412208 -0.223475 2.24004e-21)
(0.338847 -0.195683 1.66738e-21)
(0.740995 -0.265664 -3.9179e-21)
(0.0170978 -0.0101127 -1.20183e-21)
(0.515981 -0.296025 -6.20675e-22)
(0.826426 -0.0254517 -2.28003e-22)
(0.0269465 0.0152719 -2.50731e-21)
(1.35128 0.122126 -5.07726e-23)
(1.081 0.248212 -1.11673e-21)
(0.211522 -0.0994557 -1.2922e-21)
(0.891138 -0.343352 1.98582e-21)
(0.728392 -0.28296 -2.02458e-21)
(1.03387 0.200933 1.9942e-21)
(0.442436 -0.1965 7.23817e-22)
(1.35972 0.075649 -1.10824e-22)
(0.222673 -0.123877 -1.20107e-21)
(0.0263972 0.0158461 -4.12959e-22)
(0.94831 -0.0678891 -2.4808e-22)
(0.0178624 -0.0103314 8.52724e-22)
(1.09159 -0.239046 -6.03132e-22)
(0.206839 -0.15816 -4.07099e-21)
(0.735273 0.364401 3.83467e-21)
(0.74958 0.137209 -6.80323e-22)
(0.76996 -0.362181 -3.04534e-21)
(0.0179611 -0.0103923 -1.02756e-21)
(0.911847 0.404856 -4.14179e-21)
(0.0162067 -0.00963616 2.12456e-21)
(0.0172912 -0.0101355 -1.07822e-22)
(1.36276 0.0513097 1.13177e-21)
(0.0180101 -0.00993906 -2.52949e-21)
(0.746296 0.160784 3.95201e-22)
(0.882461 -0.121597 -2.08131e-22)
(0.025922 0.0153337 -8.39002e-22)
(0.707854 0.377425 -6.05508e-23)
(0.71467 0.377172 4.70521e-21)
(1.19359 0.245104 -1.00065e-21)
(1.0816 0.149855 -9.15246e-22)
(0.0253457 0.0150479 3.55e-22)
(0.914594 -0.0368376 6.61014e-22)
(0.017647 -0.0108784 2.73588e-21)
(0.302869 0.156554 2.24771e-22)
(0.788354 -0.217691 6.40625e-21)
(0.207318 -0.132805 1.21304e-21)
(0.94234 -0.0355146 -4.1201e-22)
(0.212941 0.116948 -2.18545e-22)
(0.647434 0.33279 -2.57584e-22)
(0.731039 -0.240904 2.40607e-21)
(0.824085 -0.355805 -8.71925e-22)
(0.0253485 0.0147974 1.24513e-21)
(0.756348 0.309297 -9.93354e-21)
(0.0138725 -0.000104483 -1.55519e-21)
(0.0265033 0.0158742 1.15504e-21)
(1.08155 0.361848 -1.82145e-22)
(0.620899 0.31003 3.5223e-21)
(0.248219 -0.148484 1.57174e-21)
(0.0157991 -0.00909088 -1.17845e-21)
(0.555685 0.10939 4.33445e-21)
(0.199231 -0.129473 -7.67626e-22)
(0.0298359 0.0172485 -1.05347e-21)
(0.35811 0.222815 2.03719e-21)
(0.694288 0.371126 4.85225e-22)
(0.0299233 0.0175133 -6.13351e-22)
(0.958512 -0.0710169 7.75994e-22)
(0.719366 0.38191 2.73371e-21)
(0.0186948 -6.32671e-06 9.31354e-22)
(0.574853 -0.316017 -2.73606e-21)
(0.809792 -0.0489866 5.93517e-23)
(0.0324578 0.0181088 -2.6997e-22)
(0.0294179 0.0169795 -4.43812e-22)
(0.372957 -0.0340964 -8.21488e-24)
(0.646917 0.298333 6.55858e-22)
(0.0770678 0.0424698 -6.87666e-21)
(0.191888 -0.106537 -6.40487e-22)
(0.0260124 0.0152024 -2.7414e-21)
(0.617512 0.3371 -4.74731e-21)
(0.407118 -0.062416 -2.87397e-21)
(1.35592 0.0566369 -2.59298e-22)
(0.622823 0.31915 -2.13755e-21)
(0.867243 0.403413 -2.20168e-21)
(0.693794 0.350277 -1.06616e-21)
(0.0285964 0.0168528 1.07484e-21)
(0.0515861 0.0304949 -1.73958e-21)
(0.729004 0.384097 -4.61062e-21)
(0.567146 0.0944603 4.17826e-21)
(0.0277548 0.016058 -1.2712e-21)
(1.14451 0.334038 -6.85141e-23)
(0.0281505 0.0164951 -1.28672e-21)
(0.0145012 -0.00933899 -8.78906e-22)
(0.664397 -0.317951 5.12722e-21)
(1.07926 0.376248 -2.56727e-21)
(1.16732 0.29903 2.15043e-22)
(0.0160651 -0.00965843 6.28231e-22)
(0.0319465 0.0187762 1.61365e-22)
(1.0405 0.391732 -6.74556e-22)
(0.300745 -0.202478 -1.38009e-21)
(0.597283 0.323545 1.91672e-22)
(0.280471 -0.145623 -2.37924e-21)
(1.0645 0.384829 7.9588e-22)
(0.193437 0.170409 7.78537e-21)
(0.398986 0.274556 -5.89712e-21)
(0.622991 0.323717 3.92605e-21)
(0.925516 -0.00198159 -9.35144e-22)
(0.0175097 -0.0100902 -1.86952e-21)
(0.205279 -0.0918387 -4.52164e-21)
(1.0355 0.225094 -3.85433e-21)
(0.911022 0.182423 1.41918e-21)
(0.448084 -0.187992 8.26213e-24)
(0.599609 0.352586 -2.62962e-21)
(0.0393219 -0.000171321 -9.1664e-21)
(0.0392633 0.000391791 -1.22217e-21)
(0.0191828 -0.0103495 -2.98746e-21)
(1.08389 0.240728 1.9194e-21)
(0.0187363 -0.010285 7.53219e-22)
(0.16576 0.106489 -2.2784e-22)
(0.606093 -0.320864 1.09351e-21)
(0.954264 -0.066586 -8.6748e-23)
(0.466437 -0.176336 2.06095e-22)
(0.0277495 0.00232594 6.31677e-21)
(0.660147 0.354821 -8.95732e-22)
(0.0320915 0.0176635 -1.54054e-22)
(0.770882 0.0719768 -4.54208e-21)
(1.07703 0.379843 3.97147e-21)
(0.428105 -0.249673 1.2918e-21)
(0.55374 -0.308757 1.97212e-23)
(0.671721 -0.328991 1.36868e-21)
(1.20024 0.228064 -1.18053e-22)
(0.0125921 1.53425e-05 1.14611e-21)
(0.699555 0.342184 -6.76211e-22)
(0.0183507 -0.0106519 -1.06382e-21)
(0.75175 0.203761 1.61041e-22)
(0.491431 -0.129988 -9.45313e-22)
(0.386835 0.203425 1.99764e-21)
(0.988124 0.371422 1.10507e-21)
(1.31516 0.195802 -1.69745e-23)
(0.765279 -0.350102 9.25855e-23)
(0.936418 0.346398 -1.11065e-21)
(0.889 0.386039 -1.13951e-21)
(0.71786 -0.0145425 5.53779e-22)
(0.752847 -0.349551 -1.80773e-21)
(0.0465319 0.025821 9.34524e-23)
(0.261344 -0.0885027 -1.34083e-22)
(0.313025 -0.192661 4.05234e-21)
(0.299393 -0.144958 6.94107e-21)
(0.112423 0.0954434 -7.76257e-22)
(1.0603 0.387525 -1.53723e-21)
(0.957168 -0.31906 9.42727e-22)
(0.544249 -0.304051 -3.43823e-21)
(0.893218 -0.108958 8.42159e-22)
(0.712066 -0.339666 -2.07161e-22)
(0.930579 0.385495 1.09866e-21)
(0.283525 -0.177712 2.28763e-21)
(1.30306 -0.185641 -1.98677e-21)
(0.903943 0.389827 3.33717e-22)
(0.548464 -0.218964 2.07855e-21)
(0.310923 -0.0439075 -2.56937e-23)
(1.09623 -0.33574 1.59042e-21)
(0.45815 -0.180386 -4.73932e-21)
(0.0476529 0.0115841 -1.76303e-22)
(1.27483 -0.22094 3.71933e-22)
(0.0188628 -0.0106592 1.02925e-21)
(0.536769 0.174349 -6.05515e-21)
(1.29309 0.230495 -1.49242e-23)
(0.957866 -0.0524123 4.07808e-22)
(0.949041 -0.0659736 9.83039e-22)
(0.900892 -0.119083 -6.83787e-22)
(0.725266 0.373807 -2.6976e-21)
(0.30595 0.0302332 8.42175e-22)
(0.829597 -0.185102 1.64846e-22)
(0.955083 -0.13402 5.15568e-22)
(0.255631 -0.128 3.60313e-21)
(0.213008 -0.162331 2.63427e-21)
(0.6738 0.333954 -1.71734e-21)
(0.747633 0.357835 3.25227e-22)
(1.32681 -0.141069 8.38135e-22)
(0.99096 -0.300432 1.96883e-21)
(0.337106 0.191673 -3.59447e-21)
(0.594427 0.327947 1.06031e-21)
(0.279471 -0.0722706 -2.99488e-21)
(1.19193 0.270947 2.06268e-21)
(1.15422 0.336518 -1.77808e-22)
(0.23223 -0.0857072 -6.75389e-22)
(1.06942 -0.251187 -3.01298e-21)
(0.316976 0.168261 -2.13129e-21)
(0.244958 0.159638 1.93046e-21)
(0.953455 -0.0450648 7.04954e-22)
(0.672106 -0.315764 3.79321e-22)
(0.198997 -0.108117 -1.2794e-21)
(0.226974 -0.124975 -1.80006e-21)
(0.020273 -0.0114678 2.58173e-21)
(0.247223 -0.0738313 -2.72183e-21)
(0.923155 -0.297352 1.22826e-21)
(0.0194453 -0.0108434 -1.59487e-22)
(1.02994 -0.278117 1.3817e-21)
(0.0273678 9.95587e-05 2.13328e-21)
(0.679633 0.283675 1.30401e-21)
(1.32789 -0.12709 1.82015e-21)
(0.0453418 -0.0028699 -4.83477e-21)
(0.831769 0.337663 3.31232e-21)
(1.13862 -0.31553 -1.40795e-21)
(0.799366 -0.046794 4.77162e-22)
(0.956845 0.391283 3.42834e-21)
(1.33235 -0.131225 -9.23615e-22)
(0.0209358 -0.0119281 -1.05869e-21)
(0.204473 -0.0840858 3.67149e-21)
(0.259906 -0.0981715 -3.7346e-21)
(0.0159801 -0.00907857 -1.75294e-21)
(0.526576 0.330883 -8.41871e-22)
(0.934613 -0.0184502 4.33018e-22)
(0.453549 0.148156 -2.39594e-21)
(0.895061 0.404607 3.61333e-21)
(1.30246 0.163898 1.84848e-23)
(1.30192 0.127671 -9.65967e-22)
(0.874676 0.234946 1.3628e-21)
(0.281007 -0.0594585 2.6206e-21)
(0.0571044 -0.0328142 -2.04077e-21)
(1.20884 0.223479 -2.5754e-21)
(0.175171 -0.0667292 5.16401e-21)
(0.643649 -0.297891 2.76644e-21)
(0.0186399 -1.34358e-05 2.4433e-22)
(0.687034 -0.309067 5.90362e-21)
(0.739283 -0.294657 -3.4838e-21)
(0.804794 -0.343249 3.27223e-21)
(1.27072 0.253628 8.51228e-22)
(0.0125226 -4.38694e-05 -3.51915e-21)
(0.646267 0.30042 7.16006e-22)
(0.771931 -0.30627 -1.36779e-21)
(0.947095 -0.0867888 -9.12049e-22)
(0.0228836 -0.000228199 -1.76245e-24)
(0.883373 0.315949 7.00393e-22)
(1.00054 0.213366 -6.56981e-21)
(0.96452 -0.0561603 -8.64049e-23)
(0.853649 0.401949 -2.20737e-21)
(0.661907 -0.289413 5.50948e-21)
(0.167414 0.048699 -1.01466e-21)
(0.480836 -0.166723 -5.48911e-21)
(1.07577 -0.263175 -4.16641e-22)
(0.719145 -0.349553 -2.12701e-21)
(1.28499 -0.163061 -3.5354e-21)
(0.711224 -0.302263 3.44605e-21)
(0.961627 -0.113175 9.68668e-23)
(0.196417 -0.123621 -1.97945e-21)
(0.211692 -0.134403 -4.37661e-21)
(0.0433694 -0.0072268 2.06432e-21)
(0.988294 0.399538 -2.77482e-21)
(0.0130821 -6.48987e-05 -1.01297e-21)
(0.30621 0.159334 -7.61596e-22)
(0.497783 0.305867 5.56689e-21)
(1.19697 0.326883 2.82879e-22)
(0.500084 0.204669 9.62954e-21)
(0.679715 0.294268 -2.68722e-22)
(0.913248 -0.0287728 6.97364e-24)
(0.436397 -0.205115 -1.98435e-21)
(0.171104 -0.112892 1.21884e-21)
(1.33814 0.0946532 -2.50191e-22)
(0.614376 0.339944 5.08593e-21)
(1.2301 0.186799 -1.01267e-21)
(0.44125 -0.0697948 4.98095e-22)
(1.22788 0.0862639 -6.64648e-22)
(0.223226 0.0673174 -2.16771e-22)
(0.507033 0.188772 -1.48819e-20)
(0.816559 -0.303952 -4.85637e-22)
(1.32581 0.153071 3.77257e-22)
(0.336774 -0.192866 -3.80429e-21)
(0.627445 -0.302096 3.95528e-22)
(0.0257784 -0.000166744 1.0988e-22)
(0.614087 -0.276901 2.22537e-21)
(0.808412 0.330167 5.8167e-22)
(0.0278232 0.000199312 2.89681e-22)
(1.35973 -0.0350403 3.85034e-22)
(0.042045 -0.00729922 -1.06391e-21)
(0.570833 -0.259833 -1.56178e-21)
(0.0382801 -0.00989012 -4.09852e-21)
(0.879772 -0.117624 8.64923e-22)
(1.12857 0.00287286 9.36924e-22)
(1.17293 -0.13649 2.8733e-23)
(0.330114 0.187611 1.1228e-22)
(1.20394 0.275943 -1.23709e-22)
(0.0225248 -0.0102942 -1.10301e-21)
(0.775794 0.359618 6.37041e-21)
(1.00386 0.342589 1.92283e-22)
(0.723328 0.351241 2.31326e-21)
(1.3215 -0.153436 7.18012e-22)
(1.08471 -0.235965 -9.93444e-22)
(1.17863 0.332724 4.54337e-22)
(0.0137851 -1.29956e-05 -9.23952e-22)
(0.620885 0.331471 1.84041e-21)
(0.539232 0.219991 6.71404e-22)
(0.978781 0.388846 3.55185e-21)
(0.911977 -0.0546214 9.79563e-23)
(0.463227 -0.162764 3.5593e-23)
(0.0898161 0.0499955 -9.3202e-22)
(0.766397 0.36454 8.97277e-22)
(0.707817 0.311833 1.39512e-21)
(1.35533 0.0313285 -1.5366e-21)
(0.106545 0.0610817 1.36245e-21)
(0.736894 0.383597 4.63691e-22)
(1.1378 0.25549 -1.27673e-21)
(1.36416 0.0579166 -1.62029e-21)
(1.13871 0.315425 -2.50797e-21)
(0.0221079 -0.0120543 -2.99356e-22)
(0.0313777 0.00480977 -5.05127e-22)
(0.623069 0.136284 -9.21839e-21)
(0.679554 0.287212 -1.91176e-22)
(0.044816 -0.00439078 1.27344e-21)
(0.74723 -0.336327 7.17938e-22)
(0.43179 -0.241969 1.54043e-21)
(0.216339 -0.105994 5.46837e-21)
(0.526084 -0.241871 1.82714e-21)
(1.26598 -0.196775 -2.55415e-22)
(1.0655 0.386079 2.33306e-21)
(0.0243942 0.000229015 9.22603e-22)
(0.925691 0.335679 5.04889e-21)
(0.484718 -0.221059 -1.56063e-21)
(0.315072 0.203441 1.94933e-22)
(1.36494 0.041032 -9.96418e-22)
(0.618883 0.335695 4.38442e-21)
(0.0275866 0.0148386 -1.38408e-21)
(1.24646 -0.187537 -3.06468e-22)
(1.35497 -0.0281801 -3.77441e-22)
(0.909623 0.326289 -3.41545e-21)
(0.763375 0.328161 1.8123e-21)
(0.97522 0.161476 -3.74788e-21)
(0.169975 0.0994029 3.89166e-21)
(0.0479123 0.0127606 8.59555e-22)
(0.236291 -0.127404 -5.67515e-22)
(0.678328 0.304278 1.35344e-21)
(0.647617 0.331531 -3.65042e-22)
(0.32871 0.166777 2.95121e-22)
(0.71462 0.35841 -5.78273e-22)
(1.09702 -0.327802 -2.17727e-22)
(0.961846 -0.0876599 -5.10615e-22)
(1.34638 -0.095105 2.10042e-21)
(1.24782 0.145951 -2.3087e-21)
(0.112541 0.0691311 -5.21086e-21)
(0.711701 0.378512 1.41903e-21)
(0.481495 -0.223629 4.24641e-22)
(0.361151 0.205204 3.93709e-22)
(1.02724 0.260032 -1.5016e-21)
(0.505182 -0.247008 -4.7313e-23)
(0.914576 -0.0879604 -3.74498e-23)
(0.515764 -0.270687 1.72265e-22)
(0.68281 0.370211 -8.14225e-21)
(0.772176 -0.254534 4.88197e-21)
(0.502052 0.081145 1.46397e-21)
(0.558931 0.176038 1.95246e-21)
(1.36551 0.00499863 2.22029e-21)
(0.0411872 -0.00803051 -2.63678e-21)
(1.35906 -0.0460968 -1.53254e-21)
(0.906525 0.334739 9.36327e-22)
(0.853785 -0.2947 1.50772e-21)
(0.986223 -0.292866 -1.48592e-21)
(0.962226 -0.0492267 -8.12954e-22)
(0.224532 -0.166366 -2.59313e-21)
(1.02997 0.33086 6.33854e-21)
(0.676237 -0.311937 -4.73765e-23)
(0.282583 0.164062 2.70106e-21)
(0.0357052 -0.01001 -2.2112e-21)
(0.742789 -0.350806 -8.86242e-22)
(1.15613 -0.180826 -1.07869e-21)
(1.08131 -0.274861 -1.12045e-21)
(1.26202 0.154866 3.41854e-22)
(0.526635 -0.149021 -1.13036e-21)
(0.036112 -0.0196385 5.78073e-22)
(1.23068 0.274364 -4.62839e-22)
(0.924095 -0.0355298 -7.837e-22)
(0.670787 0.34251 5.74057e-22)
(0.527309 -0.300626 3.17784e-22)
(1.23308 -0.056757 3.09811e-21)
(0.488856 0.278014 7.71219e-21)
(0.226251 -0.145163 -2.37752e-22)
(0.822703 0.380677 2.63975e-21)
(0.438684 0.225895 -1.06811e-21)
(1.32906 0.113571 1.1245e-21)
(0.82137 0.359917 -5.2803e-21)
(0.355012 -0.0705969 6.99527e-24)
(0.711395 0.242503 4.33241e-23)
(0.0464168 0.0132913 -3.35809e-22)
(0.638113 0.346871 3.2921e-21)
(1.30901 0.190265 -1.01623e-22)
(0.679096 0.363162 -1.81903e-21)
(0.786839 0.17183 7.07229e-21)
(1.17174 0.331347 -5.33719e-22)
(0.41017 0.232087 8.25631e-22)
(0.712811 0.273231 -8.86334e-22)
(0.498796 -0.15905 6.59658e-22)
(1.24511 0.238936 4.34654e-22)
(0.485076 -0.186549 -1.82391e-21)
(0.0231252 0.0145373 1.52561e-21)
(0.98702 0.268654 -4.13141e-21)
(1.29988 0.18411 -7.53945e-23)
(0.931882 -0.112048 -8.49423e-22)
(1.00832 -0.19617 7.27992e-22)
(0.994984 0.217136 3.68774e-21)
(0.707251 -0.251195 -2.53276e-21)
(0.770587 0.0604019 -3.84082e-21)
(1.19295 -0.102374 -1.39523e-21)
(0.268177 0.220792 6.16923e-21)
(1.30459 0.172443 1.02892e-21)
(1.05248 0.31217 2.50847e-21)
(0.239483 0.13875 1.12624e-21)
(0.466991 0.193436 -1.04272e-21)
(0.441018 -0.0179858 2.39824e-21)
(0.959959 -0.0632682 -4.58998e-22)
(0.807596 0.274177 -1.27666e-22)
(1.26857 -0.186328 -8.88058e-22)
(0.689007 0.0861866 8.21855e-21)
(0.878361 0.404012 4.4927e-21)
(0.499956 0.203183 -5.72818e-22)
(0.276268 -0.100901 -4.20177e-21)
(0.320724 -0.116568 -6.42042e-23)
(0.00790255 -0.00449519 -1.11528e-21)
(0.711356 0.287755 -7.54491e-23)
(0.979153 -0.311075 1.9282e-21)
(0.965732 -0.305583 4.19212e-22)
(0.0481572 0.013313 1.58083e-21)
(0.843994 0.273383 2.81392e-22)
(0.510317 0.0444602 -1.81584e-21)
(0.711141 0.247822 2.2406e-22)
(1.08276 0.380761 -1.91977e-21)
(1.11081 -0.218257 2.49676e-21)
(1.19304 0.326608 -2.81108e-22)
(0.746452 0.152891 8.13373e-22)
(1.32298 -0.125814 -3.22958e-21)
(0.0517701 0.0306899 1.89346e-21)
(0.357882 -0.0728348 -2.10246e-21)
(0.857979 -0.187299 1.16891e-21)
(1.08633 -0.286537 5.8395e-22)
(1.07209 0.331097 -4.09001e-23)
(0.0353679 8.04504e-06 9.47765e-21)
(0.035377 0.000194347 8.8085e-22)
(0.620268 0.30748 -1.91654e-21)
(0.624297 -0.0115674 -3.03055e-22)
(1.29116 -0.188888 -3.42649e-22)
(0.735214 0.321827 2.52222e-23)
(1.19817 0.301377 2.34992e-22)
(0.0278896 -9.31752e-05 -1.25845e-21)
(0.0169871 -0.00934791 4.57046e-22)
(0.0467387 -0.00192034 2.49452e-21)
(0.864244 0.311197 2.62327e-21)
(1.32494 -0.13958 -2.61114e-21)
(0.929375 0.39512 -2.0363e-22)
(0.0886613 0.0518867 3.17209e-21)
(0.0255639 0.015064 -2.69233e-21)
(0.742728 0.294724 -5.00922e-22)
(0.0252102 0.0148509 1.35799e-21)
(1.2902 0.158484 -3.65468e-23)
(0.576878 -0.131164 5.15724e-21)
(0.0531084 0.00653525 -1.07061e-21)
(1.00236 0.174279 -3.43718e-21)
(0.60267 -0.0114263 -1.07498e-21)
(0.0286832 -0.013047 4.32628e-21)
(0.994215 0.198905 -1.26289e-21)
(0.529292 0.190162 5.77928e-21)
(1.2901 0.157299 -2.16615e-21)
(0.455505 0.305435 -3.06111e-21)
(0.184475 0.140635 1.67873e-21)
(0.563578 -0.203937 -5.51214e-21)
(0.34868 0.183652 3.22434e-21)
(0.0264395 -7.68671e-05 -2.4657e-21)
(0.881476 0.378346 -1.64486e-21)
(1.07454 -0.27111 -2.57729e-22)
(0.324729 0.25257 -1.00312e-21)
(0.92425 -0.0298372 -1.00596e-23)
(0.174158 -0.107403 5.20482e-21)
(0.713276 0.147337 7.16938e-22)
(0.152458 0.0768533 -8.92476e-22)
(0.740956 0.302176 -1.24756e-21)
(0.803354 0.311046 4.35915e-22)
(0.901988 -0.181554 3.75544e-22)
(0.928674 -0.149405 1.84074e-22)
(1.12303 0.253224 7.21361e-22)
(1.12364 0.298774 8.1995e-22)
(0.685545 -0.326531 -4.3381e-21)
(0.057403 -0.033137 8.91204e-22)
(1.0371 0.39305 3.28767e-23)
(0.748589 0.224245 -7.37242e-23)
(1.22218 0.270408 6.58284e-22)
(0.929886 -0.10611 6.39744e-22)
(0.295549 -0.0893033 -6.48175e-22)
(0.704323 0.316942 -3.18942e-21)
(0.639767 -0.105347 9.09422e-22)
(1.2455 0.267996 -1.47015e-22)
(0.779245 0.258268 2.07504e-22)
(0.825579 0.139045 -1.50749e-21)
(0.374171 0.227205 1.2298e-21)
(1.09074 -0.334556 5.48864e-22)
(1.00757 -0.0911067 3.36634e-22)
(1.2722 0.126338 2.54299e-21)
(0.693953 -0.346976 1.14514e-21)
(0.863762 -0.304832 -1.23759e-22)
(1.12814 0.230412 2.56878e-21)
(1.36 0.0475317 5.25642e-22)
(0.664976 -0.1472 -4.84454e-22)
(0.444062 0.153958 -7.38927e-23)
(0.916683 -0.0336054 1.05944e-21)
(0.799463 0.366438 -1.5801e-21)
(0.914801 -0.0323308 2.13928e-22)
(0.648042 -0.329482 -5.90897e-22)
(1.23738 0.274215 9.87614e-23)
(0.860912 -0.0345277 -4.09158e-22)
(1.06452 0.356538 -2.03941e-22)
(0.622396 0.324806 5.02813e-22)
(0.747126 0.242122 1.83795e-22)
(0.0241888 -0.00934049 -4.45477e-21)
(0.452207 -0.242376 1.78411e-21)
(1.35618 -0.0377063 2.20804e-21)
(0.360076 -0.0524484 -2.72771e-21)
(1.00653 0.222235 1.03225e-22)
(0.442271 0.190763 -9.37678e-22)
(0.421886 0.280007 1.94458e-21)
(0.634937 -0.0364302 -1.54241e-21)
(0.55276 -0.291186 1.27464e-21)
(1.19298 0.297817 -1.24231e-21)
(1.07819 -0.0319908 3.47803e-21)
(0.998579 0.326076 -3.68822e-23)
(0.84316 -0.362295 1.9648e-22)
(0.551462 0.287617 -6.24065e-21)
(0.828135 0.0896389 8.49956e-22)
(1.31991 0.137113 -9.53824e-22)
(0.851259 -0.046155 6.06285e-22)
(1.09412 -0.309065 -7.32483e-22)
(0.32711 -0.0705437 1.27237e-21)
(0.830677 0.275146 7.86506e-22)
(0.7949 -0.324683 1.76539e-21)
(0.380001 -0.189897 2.97064e-22)
(0.383242 0.201055 2.84728e-21)
(0.395517 -0.0524585 3.34264e-21)
(0.773013 0.305377 1.6899e-22)
(0.832702 0.319976 1.43473e-22)
(0.883738 -0.289193 9.50036e-22)
(0.0319475 -0.0224384 -1.93462e-21)
(0.990425 -0.121345 -7.63107e-21)
(0.0540305 -0.0306815 -1.77176e-21)
(0.949666 -0.0694978 -2.20232e-22)
(0.0313163 4.80513e-05 -1.13682e-21)
(0.712026 -0.071543 -1.04973e-21)
(0.962008 -0.0662416 3.30946e-24)
(1.11397 -0.330957 3.4182e-22)
(0.956779 0.269252 -1.43018e-21)
(0.182574 -0.0946511 1.00236e-21)
(0.280605 -0.180211 9.71286e-22)
(0.894627 0.287945 1.43441e-21)
(0.645775 0.334943 -1.0039e-21)
(0.196885 -0.132535 -5.56874e-21)
(0.722601 0.157712 -2.8537e-21)
(1.0454 0.195669 -1.27038e-21)
(1.09076 -0.297844 -1.20615e-21)
(0.0193144 0.0107301 -1.82141e-21)
(0.0466978 0.0104185 -6.9178e-22)
(0.938177 -0.375021 3.39346e-21)
(0.427232 -0.226655 -9.52088e-22)
(0.491988 0.171179 1.34344e-22)
(0.17623 -0.100571 1.30579e-21)
(0.118995 0.0681292 -5.09146e-21)
(1.00609 -0.201884 -2.31043e-21)
(0.91023 0.272757 -6.12527e-22)
(0.444206 0.298734 6.32409e-21)
(0.879881 0.387878 -4.18632e-23)
(0.852131 0.0061389 -1.4604e-21)
(0.312888 0.165493 -1.49431e-21)
(0.781591 0.246586 3.30187e-22)
(0.957393 -0.34636 1.18992e-21)
(0.800576 -0.027722 1.53479e-21)
(1.07588 0.380402 5.60312e-22)
(0.0271337 -1.9595e-05 -5.39317e-22)
(1.31197 0.08868 5.44116e-22)
(0.599191 0.326129 -2.16221e-21)
(0.0213733 -0.0100927 -9.07172e-23)
(0.271429 -0.0707936 1.70081e-21)
(0.853467 -0.301837 2.67638e-21)
(1.28575 0.196964 -7.39848e-23)
(0.332735 0.189317 1.53975e-21)
(0.934246 -0.117988 -2.57254e-22)
(0.913498 -0.132177 -1.69379e-21)
(0.0376362 7.43759e-05 -4.14427e-22)
(0.0374085 -0.000125844 5.46743e-21)
(0.0383821 1.48868e-05 -1.91914e-21)
(0.948708 -0.0795679 2.71498e-22)
(1.27944 0.14922 2.38052e-21)
(0.847382 0.260532 -4.73891e-22)
(0.0873112 0.017179 -2.90634e-23)
(1.20742 0.239423 9.66547e-22)
(1.00988 -0.206598 -1.16088e-21)
(0.0255158 -9.79534e-05 5.31055e-22)
(0.730312 0.0903124 -7.63019e-21)
(1.30082 0.219259 -1.79261e-22)
(0.237535 0.102765 -1.59759e-20)
(0.931024 -0.0016668 -1.65708e-22)
(1.14485 0.343409 2.98293e-22)
(0.415152 0.287951 -3.53073e-21)
(0.543539 0.312632 -1.43907e-21)
(0.86169 -0.1744 6.15415e-22)
(1.05559 -0.200729 -6.83998e-22)
(0.386316 0.219184 -1.75539e-21)
(0.0486584 0.000109241 2.19834e-21)
(0.0486588 -0.000121437 3.53999e-23)
(0.879245 0.270553 1.26112e-22)
(0.935632 -0.0211236 5.17869e-22)
(0.930026 -0.000677528 -3.32098e-22)
(0.431798 0.244458 -1.03315e-21)
(0.178638 -0.144466 2.27745e-22)
(1.24805 -0.000724305 -4.26767e-21)
(0.909931 -0.371316 -1.1555e-21)
(1.31557 -0.16383 -1.62819e-21)
(0.951799 -0.0690152 7.31541e-22)
(0.163815 -0.0927756 -3.67046e-21)
(0.0305039 0.0160369 -1.05527e-22)
(0.822242 -0.36483 3.78813e-21)
(0.748905 0.101003 5.29863e-22)
(0.172312 0.0970149 3.93353e-22)
(0.389141 -0.130399 -9.50876e-22)
(0.338633 0.226008 9.82261e-22)
(1.35785 0.00395035 -6.55985e-23)
(0.423228 -0.184467 -2.3088e-22)
(1.02461 0.167047 3.75047e-22)
(0.96162 -0.0801783 -6.50073e-22)
(0.791506 0.39545 -2.38127e-21)
(0.985143 -0.110502 8.039e-22)
(0.758032 -0.132921 1.26053e-21)
(1.05241 0.165068 6.0493e-22)
(0.187216 -0.104246 2.54367e-21)
(0.864541 -0.357601 4.43255e-21)
(0.381587 0.257513 3.22303e-21)
(0.896572 0.149174 1.86308e-21)
(0.861531 0.13937 -1.66233e-22)
(0.814433 0.256965 -3.06764e-22)
(0.479558 -0.0146923 -4.25936e-21)
(0.963394 0.159073 -3.98029e-22)
(0.313239 -0.0882849 -1.73265e-21)
(0.807441 -0.338929 3.73257e-21)
(1.1983 0.245761 -1.47028e-21)
(0.866358 0.402128 1.55768e-21)
(0.995492 0.1579 -9.80109e-23)
(0.870031 -0.0606734 1.02079e-21)
(0.876564 -0.0490235 1.03072e-21)
(0.931266 -0.0670178 7.79596e-22)
(0.893444 0.38753 -6.06943e-21)
(0.63796 -0.299405 -3.29231e-21)
(0.766904 -0.225736 -5.5592e-21)
(0.907207 -0.0739078 -2.65374e-22)
(0.948192 -0.0818676 -2.22512e-22)
(0.0283028 -3.07193e-05 1.84979e-21)
(0.0290964 4.13041e-05 -8.71402e-22)
(0.946478 -0.371832 -2.49193e-21)
(0.398832 -0.0837481 -1.09904e-21)
(0.848993 -0.364985 5.07145e-22)
(0.808875 -0.0546075 -3.00909e-23)
(0.698425 -0.243039 2.4186e-21)
(0.969756 -0.231374 1.00629e-21)
(1.13368 0.361271 4.25797e-22)
(0.930093 0.149238 -1.06702e-21)
(0.629862 -0.322528 6.27676e-22)
(0.918695 -0.374694 5.83451e-22)
(0.718377 0.135035 1.40758e-21)
(0.149355 -0.126469 -1.28599e-21)
(0.166654 0.0970983 -3.15019e-21)
(1.15652 0.271017 1.68667e-21)
(1.09585 -0.318999 -2.71724e-22)
(1.15615 0.342922 -8.14752e-22)
(1.00147 0.226284 -7.85987e-22)
(0.364311 -0.084715 5.9151e-22)
(0.013888 -0.00614456 -2.05821e-21)
(0.708602 0.308644 -1.88924e-21)
(0.350216 0.194199 1.26202e-21)
(0.73599 0.101282 4.21552e-21)
(1.34212 -0.107266 2.15275e-21)
(1.25636 0.168525 -3.13752e-22)
(0.181796 -0.10115 1.40812e-21)
(1.19579 0.285328 -1.05663e-21)
(0.450578 -0.258773 -4.97001e-22)
(0.893831 -0.273418 -2.96219e-21)
(0.608973 -0.279865 1.08857e-21)
(0.265822 -0.114241 3.02463e-23)
(0.511895 0.235427 -2.3132e-21)
(1.15297 0.326967 8.4419e-23)
(0.980113 0.27327 4.39364e-22)
(0.870284 -0.0254653 1.10557e-22)
(1.12992 0.281216 1.73541e-22)
(0.933147 -0.0506911 4.04948e-22)
(0.103846 0.0397616 -1.20662e-23)
(0.884837 -0.349385 9.85736e-22)
(0.815248 -0.166581 -6.85635e-22)
(1.14844 0.31187 2.03398e-21)
(0.791786 0.360264 1.90623e-21)
(0.432274 -0.209645 -2.9335e-21)
(1.04803 0.391071 1.14166e-21)
(1.19423 -0.114446 3.31156e-21)
(0.099671 0.0579961 -2.40467e-22)
(1.04469 0.216945 -4.68093e-21)
(0.525846 -0.254702 -1.75003e-22)
(0.335839 0.13527 1.99525e-20)
(0.304995 0.170908 1.63606e-21)
(0.695889 -0.227406 -2.07791e-21)
(0.90974 -0.341502 -3.53093e-21)
(0.995485 0.223745 -3.28436e-21)
(0.170909 -0.0943314 -3.88983e-22)
(0.707368 -0.33796 -1.65788e-21)
(1.01287 -0.311435 2.27195e-21)
(0.335905 0.241263 7.29069e-21)
(1.31398 -0.162128 -1.34215e-21)
(0.647386 -0.330505 1.7339e-21)
(0.324041 0.185147 2.34363e-21)
(0.0160971 -0.00911826 -5.2639e-22)
(0.188823 0.110483 -1.20608e-21)
(0.637458 -0.315344 9.63577e-22)
(0.857433 -0.219903 4.47792e-22)
(0.198416 -0.111883 -6.35834e-22)
(0.120521 -0.106731 4.74262e-23)
(0.906579 -0.0794114 -2.96929e-22)
(0.645564 0.346186 8.54965e-22)
(0.997213 0.15562 -1.44078e-21)
(0.88917 -0.116873 4.36971e-22)
(0.148312 -0.00816579 1.33808e-21)
(0.035444 -1.64454e-07 1.22759e-21)
(0.0208018 0.00781039 1.37001e-22)
(0.589175 -0.30511 4.63638e-21)
(0.908139 0.385441 -4.64227e-21)
(0.026932 -6.49394e-05 3.80793e-21)
(0.915072 0.160794 6.30879e-21)
(0.128155 0.05698 2.21104e-22)
(0.973184 0.178466 4.01446e-21)
(0.197227 0.110101 4.13833e-22)
(0.931385 -0.0231772 2.5417e-22)
(1.16286 0.275887 -6.47766e-22)
(0.815268 0.366102 1.01745e-21)
(1.29921 -0.138661 1.81163e-22)
(0.0571958 -0.0401256 2.17354e-21)
(0.747641 -0.348975 -2.28072e-21)
(0.245496 -0.177915 7.94925e-23)
(0.0318279 -0.0282638 1.11065e-21)
(1.17362 0.261865 1.27198e-21)
(1.09307 0.368055 -9.13436e-22)
(0.222819 0.124549 1.68345e-21)
(0.0433471 -0.041027 -2.34786e-21)
(0.236761 0.137661 9.87302e-22)
(0.633529 -0.320702 -3.22771e-21)
(0.788169 0.121362 -2.08851e-21)
(0.871131 0.276203 5.50336e-21)
(0.911674 -0.261739 2.92246e-21)
(0.878359 -0.0119465 3.67309e-22)
(1.19973 0.260914 9.20449e-22)
(0.846601 0.401092 -1.68216e-21)
(1.17447 0.340061 -6.33456e-22)
(0.67345 0.32837 6.2121e-22)
(0.850214 0.364757 -6.70693e-22)
(1.20801 0.295209 -4.40386e-22)
(0.367951 0.245311 7.3716e-21)
(0.119156 -0.0447495 2.29265e-21)
(0.430351 0.29616 -7.35924e-21)
(0.969168 -0.27905 -5.88274e-22)
(0.389049 -0.190882 4.19295e-21)
(1.02615 0.363912 -4.42087e-21)
(0.953179 -0.0705091 -5.26487e-22)
(0.212927 0.103653 4.97527e-21)
(1.34108 -0.106901 -3.59873e-21)
(1.13298 -0.216018 -8.16566e-22)
(0.411378 0.25394 9.01489e-21)
(1.03655 0.268772 -4.49374e-22)
(0.711792 -0.27595 2.40689e-21)
(0.323179 0.234056 -1.52733e-21)
(1.08376 -0.294772 -9.5968e-23)
(0.879666 -0.00573507 -6.77726e-22)
(0.278109 0.219645 -6.52604e-21)
(0.874125 -0.00304858 9.08445e-22)
(0.331855 0.168954 2.55461e-21)
(0.639974 -0.134174 -6.41507e-22)
(0.673021 0.371639 2.06051e-21)
(0.26527 0.154221 -3.65255e-22)
(0.865581 -0.0301297 -8.72758e-22)
(0.0262552 0.00330632 3.46876e-21)
(0.905608 0.381578 -7.18173e-22)
(1.12529 -0.325288 1.42585e-21)
(0.744537 -0.350207 7.00218e-24)
(0.859902 -0.363266 -9.48203e-22)
(0.677035 0.306763 2.17279e-21)
(0.874067 -0.0470613 -3.66428e-22)
(0.167923 0.0986879 2.023e-21)
(0.905673 -0.107718 6.11628e-22)
(0.73722 0.0801382 1.69525e-21)
(0.0180649 5.32346e-05 -7.4382e-22)
(1.01608 0.369295 -1.58534e-21)
(1.32685 0.179174 7.63464e-22)
(0.869122 0.242903 -6.03018e-21)
(0.852614 -0.207661 1.21527e-21)
(0.0921245 -0.0848101 1.63674e-21)
(0.386398 -0.0690581 2.09268e-21)
(0.748383 0.111968 -6.41956e-22)
(0.0274697 3.26727e-05 1.46678e-22)
(0.578278 -0.0435668 7.26962e-22)
(0.236766 -0.156871 2.8149e-21)
(0.699802 -0.346663 1.69452e-21)
(0.179916 -0.0919124 1.95957e-21)
(0.0285922 -0.012156 2.65605e-21)
(1.28584 -0.181912 -1.83965e-21)
(0.0215727 -4.36208e-05 4.80818e-22)
(0.784134 -0.358373 -5.71006e-22)
(1.00641 0.368306 -1.76502e-21)
(0.940649 -0.130132 -5.31692e-22)
(0.795738 0.394891 -7.1615e-21)
(0.91459 -0.113557 -1.37063e-23)
(0.555962 0.143415 -2.05981e-21)
(0.912587 -0.0356065 -4.73978e-22)
(0.231654 0.114967 3.56602e-22)
(1.15506 -0.308585 2.45847e-22)
(1.10697 -0.297089 7.36565e-22)
(0.440682 -0.236242 1.66194e-21)
(0.200442 -0.111184 -1.79136e-21)
(0.43948 -0.198485 1.72378e-21)
(0.144915 -0.0196427 1.95212e-21)
(0.961413 -0.0627969 6.8636e-22)
(0.48315 0.16788 -1.09554e-23)
(0.727714 -0.271235 4.179e-21)
(0.951344 -0.0437163 -2.46096e-22)
(0.569613 0.319821 3.06831e-21)
(0.440543 -0.227009 8.43409e-22)
(0.668378 0.316216 -4.9268e-22)
(0.935531 -0.0261491 1.66131e-22)
(0.649567 -0.295476 -2.25841e-22)
(0.875956 0.379903 1.25928e-22)
(0.0372726 -0.0214129 -1.33305e-21)
(1.15301 0.302964 5.68875e-22)
(0.359581 0.247051 2.73553e-21)
(1.34534 0.0740903 -1.18589e-21)
(0.730838 0.381019 -4.1199e-22)
(1.00568 0.215858 4.49571e-21)
(0.524617 -0.0171169 -1.00541e-22)
(1.36053 0.0279492 -4.44523e-23)
(1.30226 0.210621 -2.09681e-22)
(0.823933 -0.0086568 4.2745e-22)
(0.70205 0.368613 -1.9747e-21)
(0.674816 -0.313101 3.61821e-21)
(0.650478 -0.337359 2.87043e-21)
(0.649114 0.365284 1.0046e-21)
(1.08983 -0.316597 1.87762e-21)
(0.899333 -0.159874 -6.88297e-22)
(0.611595 -0.318503 -1.63132e-21)
(0.0110046 -0.00478028 -2.09588e-21)
(0.0630611 -0.0368142 1.03038e-21)
(0.118735 -0.0969818 1.63874e-21)
(0.925787 -0.00347299 -3.68197e-22)
(0.440285 0.149636 2.31087e-23)
(0.0255673 8.89054e-05 1.98496e-24)
(0.0443398 0.0144878 -5.32267e-23)
(1.23691 0.122985 2.96456e-21)
(0.748269 -0.233847 -4.19812e-23)
(0.619508 -0.274011 2.89641e-21)
(0.385223 -0.222227 6.85286e-22)
(0.802302 0.137724 -8.77055e-21)
(0.597016 0.320597 -6.83461e-22)
(0.641307 -0.145558 9.68787e-22)
(0.952213 -0.0825859 8.33258e-22)
(0.566201 -0.295825 -1.51613e-21)
(0.966874 -0.0517345 1.06528e-21)
(0.991254 0.331793 -1.7159e-23)
(1.17177 0.27137 -1.8542e-21)
(0.921229 -0.37537 -2.44965e-21)
(0.0284798 -0.0169776 2.0194e-21)
(0.45161 -0.0764047 9.18616e-22)
(0.971433 0.377789 2.50224e-21)
(0.87095 -0.360953 6.75205e-21)
(0.710762 0.291351 8.21496e-22)
(1.28884 0.17776 -6.41948e-23)
(1.31378 0.208157 2.47249e-22)
(0.608759 -0.202894 -2.72899e-21)
(0.810171 -0.209449 6.76775e-21)
(0.306835 0.0420687 5.55288e-22)
(0.779856 -0.119584 1.56859e-21)
(0.151676 0.0694476 5.96305e-22)
(0.195199 -0.108812 1.51707e-21)
(0.368589 0.210285 -4.32392e-21)
(0.773775 0.00378244 -3.23339e-21)
(0.577016 -0.307431 6.0756e-22)
(0.373707 -0.215215 -1.1605e-21)
(0.845921 0.37493 -7.96121e-22)
(0.203613 -0.098354 1.43018e-21)
(0.418176 0.286401 3.46788e-21)
(0.0422052 0.0165144 -3.69662e-23)
(0.846497 0.383753 5.92242e-21)
(0.944688 -0.0412098 5.18447e-22)
(0.376914 0.164042 3.67206e-21)
(0.66488 -0.300091 -2.42021e-21)
(0.457875 -0.186564 1.61558e-21)
(0.702581 -0.125508 4.81611e-21)
(0.23203 0.201724 -1.15468e-21)
(0.944277 -0.0398135 -1.3181e-22)
(0.564405 -0.296731 1.70185e-21)
(0.449158 -0.0956056 -2.68154e-21)
(0.743518 0.290005 -8.00164e-22)
(1.016 -0.205436 1.36173e-21)
(0.896029 -0.1764 -3.43937e-22)
(0.668362 0.0704054 -2.85793e-22)
(0.823501 -0.0591158 -6.36391e-22)
(0.163696 -0.0319391 2.0358e-21)
(0.89708 -0.00155213 6.24883e-22)
(0.940822 -0.32678 -4.30906e-21)
(0.426954 0.175821 -4.62933e-22)
(0.159749 -0.133954 -3.92219e-21)
(0.207828 -0.114158 6.06383e-22)
(0.00935436 -0.00540663 -1.08391e-21)
(0.373484 -0.176844 -1.98554e-21)
(0.0200315 -0.0115875 -2.15523e-22)
(0.286235 0.206671 1.65623e-21)
(0.674851 0.0142615 3.94511e-21)
(0.653827 -0.302854 5.64288e-22)
(0.626379 0.0588931 3.60271e-21)
(0.847128 -0.365161 -1.3285e-21)
(0.991774 0.393844 5.08038e-21)
(0.199039 0.160433 1.17309e-21)
(0.965021 0.273375 1.23121e-21)
(0.0168384 -0.0102083 1.20997e-21)
(0.83649 -0.272532 2.70568e-21)
(1.32186 0.183098 -2.78963e-22)
(0.946078 -0.372404 -3.07568e-21)
(1.2237 0.100112 -8.82989e-22)
(1.20627 -0.286453 -3.34854e-21)
(0.760558 0.149556 -2.53881e-21)
(0.0279948 -4.04795e-05 -6.554e-21)
(1.10744 -0.330622 -7.76877e-22)
(0.786168 0.371813 2.69582e-22)
(0.826486 0.399223 2.28975e-21)
(0.626052 -0.283194 -4.9985e-21)
(0.0154663 -0.00869798 -9.1697e-22)
(0.768791 -0.0497812 -1.02093e-21)
(1.04185 0.283074 2.49254e-21)
(0.871728 0.403528 -4.45624e-21)
(0.559623 0.0766768 2.40315e-21)
(0.0185506 7.08149e-05 -6.90606e-24)
(0.132737 0.0632041 9.12323e-22)
(0.503941 0.0107662 3.87739e-21)
(0.935658 -0.279427 2.10015e-21)
(0.186332 0.103411 -1.25958e-21)
(0.899344 0.257761 2.50318e-22)
(0.00878088 -0.0047205 9.21292e-22)
(0.245732 -0.145215 5.94172e-23)
(0.124615 0.0700774 6.06226e-22)
(0.625152 -0.27166 -1.97945e-21)
(0.868025 -0.00343374 -4.52613e-22)
(1.33227 -0.130273 -1.97017e-22)
(0.880723 -0.357819 -5.01468e-21)
(0.189502 -0.106401 -3.91516e-21)
(0.753221 -0.290453 -4.30194e-21)
(0.279903 -0.0901097 -1.17064e-21)
(0.935086 -0.0439994 6.25932e-22)
(1.27918 0.243097 5.53972e-23)
(0.184418 -0.106188 1.0815e-21)
(0.204537 -0.0872131 -3.76553e-21)
(0.885093 0.384482 4.93974e-22)
(0.0581238 0.0299456 -2.51619e-21)
(1.29193 0.186216 -1.02639e-23)
(0.301939 -0.173614 4.05112e-21)
(0.950061 -0.0474473 -1.9961e-22)
(0.941767 0.268171 1.56646e-21)
(1.09041 0.36597 6.55407e-22)
(0.93148 -0.0075208 -4.44535e-22)
(0.923377 -0.122093 -6.73299e-22)
(0.434632 -0.207561 1.14955e-21)
(1.13419 -0.235437 -1.58815e-21)
(0.0489815 0.028565 1.4756e-21)
(1.3363 -0.117682 3.23437e-22)
(0.415576 -0.103865 -3.59871e-22)
(0.0627165 -0.0593229 2.423e-21)
(0.912743 -0.0333 -1.34056e-22)
(1.18796 0.333378 1.66768e-22)
(0.895337 -0.194935 3.68873e-22)
(1.35645 0.0991205 -1.07926e-21)
(0.593325 -0.157211 -3.14034e-21)
(0.39853 0.28322 -5.39418e-22)
(1.01612 -0.240216 4.45817e-22)
(0.351097 0.257741 -7.11037e-22)
(0.401257 0.271093 4.31144e-21)
(0.862696 -0.0775426 -2.2663e-22)
(0.663498 -0.136774 -5.22576e-22)
(1.28358 -0.173748 1.7782e-21)
(0.898324 0.391013 -4.11182e-22)
(0.0176332 -0.00939961 -1.27525e-21)
(0.0834251 -0.0185211 1.84362e-21)
(0.174738 0.0987416 -2.36568e-21)
(0.615186 0.0882397 -3.92411e-21)
(0.615658 -0.318416 -4.10974e-22)
(0.0165181 -0.00932279 8.41637e-22)
(0.807143 -0.166317 -2.52541e-22)
(1.19131 0.242007 1.18718e-21)
(0.649679 -0.338001 -3.67661e-22)
(0.438449 0.187127 2.06806e-22)
(1.06781 0.242584 2.45097e-22)
(0.935403 -0.0573322 -6.66869e-22)
(0.320765 0.189585 1.60217e-22)
(0.449596 0.302907 -4.32314e-21)
(0.879645 0.347873 -4.8822e-22)
(0.244932 -0.0866262 5.15838e-21)
(0.0159684 -0.000105746 6.0327e-21)
(0.541196 0.0272651 -3.05488e-21)
(0.0274056 4.19491e-05 -3.58387e-22)
(0.0244606 -0.000269962 2.51188e-21)
(0.891614 -0.353658 3.25625e-21)
(0.203614 -0.110766 -1.33105e-21)
(0.745977 0.247627 -5.59046e-22)
(0.130687 -0.11566 -1.57741e-21)
(1.25918 -0.238715 2.51544e-21)
(0.567453 0.161128 6.24647e-21)
(0.574966 -0.257155 1.22541e-21)
(1.27077 0.207685 1.46144e-22)
(0.202516 -0.142652 3.25112e-21)
(0.196096 -0.108873 -1.56352e-21)
(0.978992 -0.155147 -2.47305e-23)
(0.320408 -0.190378 -1.25545e-21)
(0.508763 0.168717 -3.0211e-22)
(1.36088 0.0816744 7.0592e-23)
(0.172892 -0.0970206 3.54833e-21)
(0.933033 -0.245824 9.38513e-22)
(0.717343 0.37665 -1.05875e-21)
(0.666582 0.07583 -2.57635e-21)
(0.303208 -0.0722196 2.95641e-21)
(0.0866934 0.0494316 1.21172e-21)
(0.426053 -0.00239184 -2.30236e-21)
(0.972672 -0.310037 1.59849e-21)
(0.374259 0.206566 -6.14251e-22)
(0.408228 -0.0268733 -1.2122e-21)
(0.762541 0.388174 -3.10338e-21)
(0.902068 -0.349437 -5.01549e-22)
(1.09945 0.368201 -8.39237e-22)
(0.88946 -0.237947 5.6879e-22)
(0.196383 -0.148518 2.22239e-21)
(0.77377 -0.331351 4.09111e-21)
(0.0433605 -0.0253657 1.06247e-21)
(0.860045 0.402327 -2.96411e-21)
(1.01055 -0.289917 2.76851e-22)
(0.70495 -0.341527 5.29072e-22)
(0.0345832 -0.0105931 4.5665e-21)
(0.220021 -0.111569 5.56536e-22)
(0.985486 -0.172073 -7.67369e-22)
(0.800247 -0.36053 -2.19381e-21)
(0.710878 0.00455941 7.01e-21)
(0.914876 -0.345521 2.5581e-22)
(0.782305 0.240276 1.23413e-21)
(0.924561 -0.27118 -7.92279e-22)
(1.27416 0.261542 -3.28354e-24)
(0.141213 -0.102448 1.38923e-21)
(1.15321 0.352538 2.31441e-22)
(0.813626 -0.058199 -2.57951e-22)
(0.683522 -0.337803 7.40949e-22)
(1.04981 -0.265265 1.08608e-21)
(1.08977 0.370457 -6.59413e-22)
(0.946954 0.365651 1.35971e-22)
(0.193711 -0.107155 -2.79394e-21)
(0.142198 0.0689099 -8.4366e-22)
(0.0257689 -0.000240912 -1.40553e-21)
(0.331189 -0.0554297 3.9471e-21)
(0.00798151 -0.00480199 -7.95797e-22)
(1.11946 0.306999 1.3748e-21)
(0.936722 0.322714 -2.39261e-21)
(0.757676 0.160923 6.3992e-21)
(0.330029 0.18449 -1.45843e-21)
(0.929488 -0.340283 1.68533e-21)
(0.994354 0.204818 4.80444e-21)
(0.377794 0.26531 1.93418e-21)
(0.303756 -0.0574599 2.3535e-22)
(0.358731 0.203959 1.20021e-21)
(0.536044 -0.158888 -4.98666e-22)
(0.0182485 -0.00976221 -1.34194e-22)
(1.10903 0.362018 4.91277e-22)
(0.153186 -0.0386782 1.1037e-21)
(1.02626 0.358069 3.97875e-21)
(0.353091 0.19441 7.68528e-22)
(0.0662127 -0.0381964 2.76571e-22)
(0.0250884 -0.0125855 2.68982e-21)
(0.744489 0.342918 -2.48953e-21)
(0.369339 -0.209303 -2.25286e-21)
(0.648775 -0.30462 -2.25556e-21)
(0.0326486 0.0169575 1.55836e-21)
(0.0808193 -0.0386252 -5.34758e-21)
(0.901935 -0.253221 3.76947e-21)
(0.340315 -0.0396951 -3.05678e-21)
(0.142355 -0.0506806 3.27279e-21)
(0.422971 -0.256898 -1.59353e-21)
(0.725942 0.0456291 -1.07295e-21)
(0.925258 0.16155 -6.41357e-21)
(0.961546 -0.0482205 5.69442e-22)
(0.382981 -0.218785 -9.82664e-22)
(0.198299 -0.102473 6.85777e-22)
(1.12879 -0.241751 5.10292e-22)
(0.211971 0.124466 7.79042e-21)
(0.928554 -0.153962 1.59494e-22)
(0.542594 -0.306459 -2.97849e-21)
(0.0188964 -0.00189314 7.13991e-21)
(0.190329 -0.105684 -2.35857e-22)
(0.941507 -0.108534 1.21986e-21)
(1.01587 0.197662 -9.74343e-22)
(0.862136 -0.231138 -5.19469e-22)
(0.972172 0.269361 2.15745e-21)
(0.21882 -0.108768 -1.27578e-21)
(0.744584 -0.142677 3.95911e-22)
(0.699078 0.369565 2.15534e-21)
(0.130379 0.0157124 -2.10003e-21)
(0.311487 0.173215 -2.81943e-21)
(0.0447825 0.0158407 2.7428e-22)
(0.970091 -0.162068 1.87864e-22)
(0.962057 -0.116582 8.77341e-22)
(0.254441 -0.149902 4.57479e-22)
(0.349814 0.0496081 7.79588e-22)
(0.618411 -0.114524 1.23072e-21)
(0.954061 -0.084095 -8.19176e-22)
(1.13809 0.30139 1.31999e-21)
(0.933024 0.177117 -3.47701e-21)
(0.313847 0.157762 1.21591e-20)
(0.208158 -0.112364 1.2406e-21)
(1.26746 0.157589 1.07721e-22)
(0.184456 -0.101895 -8.55019e-23)
(0.67423 0.083937 -4.4534e-21)
(0.815313 -0.0470765 4.27581e-22)
(0.20991 -0.139057 -3.23877e-22)
(1.03878 -0.306274 1.14342e-21)
(0.379813 0.128773 7.82267e-21)
(0.889325 -0.0208437 3.20598e-22)
(0.748246 0.103342 -1.44658e-21)
(0.909692 -0.180645 -8.93391e-22)
(0.702964 -0.107583 9.13021e-22)
(0.0394708 -0.00945868 -1.01903e-21)
(0.620713 -0.286153 -3.64933e-21)
(0.51487 0.200258 8.37661e-23)
(1.01167 -0.172284 -8.88273e-22)
(0.866937 -0.0675944 -8.58264e-22)
(0.443627 -0.266379 -7.83191e-22)
(0.177991 -0.0346718 7.14252e-21)
(0.489365 -0.282648 -5.82563e-22)
(0.393665 0.221617 8.46201e-23)
(0.00382485 2.88083e-06 9.62594e-23)
(0.00394758 2.76166e-05 -1.71749e-21)
(0.00347443 1.00129e-05 -1.16729e-23)
(0.00363598 2.43559e-05 2.6169e-22)
(0.00418359 3.17529e-06 -1.25304e-21)
(0.00415243 6.47469e-06 5.8356e-22)
(0.00394828 1.46567e-05 1.09546e-21)
(0.00368684 -2.80374e-05 -3.26098e-22)
(0.00390173 3.11384e-05 -4.66799e-23)
(0.00666337 0.000723289 -1.79121e-21)
(0.00399917 -1.25418e-05 -1.50581e-21)
(0.00375816 -2.1592e-05 1.46583e-21)
(0.00380035 4.07359e-07 -8.10969e-23)
(0.00372168 4.96275e-05 8.60712e-24)
(0.00366504 2.11606e-05 4.77083e-24)
(0.00368706 -7.34057e-06 1.03247e-23)
(0.00369067 5.31042e-06 -1.31563e-21)
(0.00412483 7.8689e-06 2.65139e-23)
(0.0037175 2.67747e-05 3.85792e-22)
(0.00373711 -1.78393e-05 5.15577e-21)
(0.0045048 3.20499e-06 -2.0888e-23)
(0.00347618 -2.53569e-05 -1.53191e-23)
(0.0036809 -4.56355e-05 9.84269e-24)
(0.00381386 -5.5356e-06 1.41707e-23)
(0.00380605 -1.08622e-05 1.05596e-21)
(0.00373547 -1.20492e-05 -1.6572e-21)
(0.00367674 -6.89048e-05 2.54674e-23)
(0.00357017 -3.01894e-05 1.16133e-21)
(0.00369872 2.94099e-05 1.9489e-21)
(0.00386109 6.4369e-05 4.14906e-22)
(0.00368394 -6.04966e-06 -8.65006e-22)
(0.00420718 -5.46111e-06 -8.77892e-23)
(0.00348529 -1.9146e-07 8.60005e-23)
(0.00293581 -2.44093e-06 -3.31657e-22)
(0.00377155 1.04948e-05 1.03017e-20)
(0.00307596 7.74961e-06 3.21506e-22)
(0.00380139 2.63693e-05 1.08881e-21)
(0.00400662 8.93329e-05 3.54472e-21)
(0.00373851 -3.13711e-05 2.62683e-21)
(0.00364427 -1.47388e-05 -1.20413e-23)
(0.00355314 1.34935e-06 -5.26325e-23)
(0.00367449 -3.60991e-05 1.95852e-21)
(0.003649 -6.95507e-06 3.68426e-21)
(0.00376685 1.45699e-05 -4.04219e-24)
(0.00377336 6.5193e-06 -2.56688e-21)
(0.0035992 -1.90286e-06 1.04797e-24)
(0.0034957 1.12998e-05 -1.13887e-22)
(0.00367351 1.13563e-05 -8.57777e-22)
(0.00320404 -9.88769e-07 -2.76935e-22)
(0.00376364 -5.18846e-05 2.16938e-21)
(0.00363795 -2.0906e-05 -2.29066e-21)
(0.00413155 -1.68266e-05 -2.57649e-21)
(0.00556072 -0.000284985 5.15197e-21)
(0.00366099 -1.71399e-05 5.75195e-21)
(0.00458519 5.46164e-06 1.06877e-21)
(0.00385176 -4.81001e-05 6.69054e-21)
(0.0041732 -5.33055e-06 1.9667e-21)
(0.00366733 -1.4584e-05 7.93694e-21)
(0.00363836 1.73766e-05 -1.37709e-21)
(0.0114686 -0.00143468 6.37201e-21)
(0.00415004 -8.84665e-05 -1.8628e-21)
(0.00369644 7.84074e-07 -2.47324e-21)
(0.00473632 2.40674e-05 -2.67936e-21)
(0.0077162 0.000936987 -3.36591e-21)
(0.00370868 7.57018e-06 -4.66006e-22)
(0.00420858 1.97616e-05 -3.70734e-21)
(0.00375255 2.22262e-05 1.90537e-21)
(0.00312014 -7.3905e-06 -6.58722e-25)
(0.00414952 -2.13113e-05 5.16955e-22)
(0.00457096 0.000207032 -8.8607e-23)
(0.00372554 5.67395e-06 -1.46428e-21)
(0.00367857 2.53058e-05 2.3844e-21)
(0.00458812 -6.55562e-05 -2.32469e-22)
(0.00376334 8.22663e-06 -2.75912e-21)
(0.00381902 2.9804e-05 1.29303e-21)
(0.00393959 1.42927e-05 1.01379e-21)
(0.00322527 2.39767e-05 2.92535e-21)
(0.00361148 -4.97235e-05 -4.74485e-21)
(0.00375189 7.99577e-06 8.20459e-22)
(0.00376314 -2.53419e-05 -3.31146e-21)
(0.00362536 5.1722e-05 -3.29337e-21)
(0.00349611 -2.29177e-05 -1.72861e-22)
(0.00392186 -3.20356e-05 2.6101e-22)
(0.0033634 -4.15575e-05 -6.55448e-21)
(0.0033653 -5.51001e-06 -1.27362e-21)
(0.00355095 -1.57189e-05 -1.2307e-21)
(0.00387156 -3.35616e-05 5.71445e-21)
(0.0031087 -8.84442e-07 1.97239e-21)
(0.00389199 -2.27109e-05 -7.78539e-22)
(0.00344595 1.5347e-05 4.85797e-21)
(0.00377509 -2.54514e-06 -1.29882e-21)
(0.00361194 -8.7834e-06 -1.54341e-21)
(0.00374578 -1.42145e-05 -2.01805e-21)
(0.0112357 -0.000613565 9.52575e-22)
(0.00392481 1.58271e-05 -8.60241e-22)
(0.00385902 1.92162e-05 5.81715e-21)
(0.00383488 -1.86076e-05 -3.97371e-22)
(0.00374601 1.17559e-05 -1.54922e-21)
(0.00367578 -3.29772e-06 1.43821e-22)
(0.00340598 2.43157e-05 -1.23549e-21)
(0.00376946 7.62674e-06 9.24059e-24)
(0.00380682 -3.1356e-05 1.82652e-21)
(0.00350691 2.98832e-05 -8.13068e-22)
(0.00386926 -3.57694e-06 -1.34674e-21)
(0.0033442 -1.17599e-05 -6.75576e-23)
(0.00557566 0.000409027 -2.4242e-21)
(0.00376585 2.68773e-05 -1.00508e-21)
(0.00359445 1.42336e-05 -9.22841e-24)
(0.00385886 2.51786e-05 6.41251e-21)
(0.00362926 2.77171e-05 -3.45662e-22)
(0.00347428 -3.92249e-06 4.73043e-22)
(0.00375072 -5.74463e-05 2.07202e-21)
(0.00364237 1.06723e-05 3.41574e-22)
(0.00413117 2.31696e-05 -9.15237e-22)
(0.00382087 5.14966e-06 1.02865e-22)
(0.00380485 6.29806e-06 -7.35596e-23)
(0.00393978 -9.81627e-06 -7.09274e-23)
(0.00405218 -2.01594e-05 2.92273e-22)
(0.00408607 -3.61944e-05 1.29487e-21)
(0.00370266 7.21873e-05 4.82174e-24)
(0.00385678 -1.71257e-05 -4.40125e-22)
(0.00387623 3.16645e-05 2.20438e-21)
(0.00298323 4.09724e-06 -9.74773e-22)
(0.00357033 6.77494e-07 -3.85963e-21)
(0.00406146 -5.9356e-05 -2.16395e-21)
(0.00384338 2.6737e-05 3.48512e-22)
(0.00390018 -1.56798e-05 -2.63226e-22)
(0.00471354 -0.000192831 -8.24086e-21)
(0.00421271 -6.24013e-07 -2.54354e-21)
(0.00371332 4.38604e-06 1.326e-23)
(0.00359139 -1.20116e-05 -1.82957e-22)
(0.00412225 1.11006e-05 3.22322e-22)
(0.00410458 2.8619e-05 -1.43415e-21)
(0.00366148 1.05297e-06 5.79098e-22)
(0.10226 -0.0953107 -1.44745e-22)
(0.173948 0.0869426 2.21272e-22)
(0.98613 0.397215 -4.67248e-21)
(0.150622 -0.129648 2.20465e-21)
(0.963548 -0.157394 -7.23207e-22)
(0.819439 -0.0178557 3.94562e-22)
(0.948748 -0.142321 -9.16474e-22)
(1.03501 -0.363519 -4.50747e-21)
(0.445638 -0.0237068 -2.55788e-25)
(0.817704 -0.0223111 -4.59526e-22)
(1.24353 0.279527 -3.78906e-25)
(0.748081 0.0860504 -3.01165e-21)
(0.839284 -0.0434217 -7.4219e-22)
(1.1996 -0.289708 1.0217e-21)
(0.922318 -0.263808 5.71535e-22)
(0.339327 0.198233 -1.29958e-20)
(0.180025 -0.0987049 1.9652e-21)
(0.844537 -0.283781 3.99657e-22)
(0.824707 -0.00471319 5.92211e-22)
(0.311549 -0.178306 -3.56253e-21)
(1.08869 -0.235178 5.43909e-21)
(1.20767 -0.272701 7.42176e-22)
(0.565986 0.128106 -9.46005e-21)
(0.314233 -0.180859 -4.89042e-22)
(0.790628 -0.247374 2.68592e-21)
(0.912709 0.262935 6.5502e-23)
(0.749705 0.356389 3.21248e-22)
(0.217284 -0.118213 6.85128e-22)
(0.65425 -0.152315 -1.83882e-21)
(0.741526 -0.181079 3.35096e-22)
(0.0453161 -0.0401097 4.35742e-21)
(0.408562 -0.252249 2.16872e-22)
(0.94457 -0.136227 6.81082e-23)
(0.96507 -0.373071 -1.30808e-21)
(0.726257 0.348089 -3.1475e-22)
(0.00736742 -0.000892783 -4.12253e-21)
(0.951681 0.200949 5.47193e-21)
(0.941389 -0.37195 3.7357e-21)
(0.189032 -0.139779 -3.95425e-21)
(0.160773 0.131706 6.92561e-21)
(0.434233 0.297166 9.41965e-21)
(0.809964 0.14416 -5.43808e-21)
(0.861943 0.382647 6.67179e-23)
(0.988331 -0.168848 3.68907e-22)
(0.965453 -0.104238 -2.14451e-23)
(0.250049 -0.173916 -2.66987e-21)
(0.0175952 0.000193162 -3.17797e-22)
(0.945163 -0.331895 2.57771e-21)
(0.0256659 0.0156173 1.55179e-22)
(0.876811 0.277103 -3.35993e-22)
(0.349226 0.19536 1.71486e-21)
(0.776992 -0.359008 -2.35496e-21)
(0.404506 -0.195578 -2.04334e-21)
(0.19235 -0.103816 -7.73794e-22)
(0.911315 -0.0881415 -8.13548e-22)
(0.73999 0.143656 1.92084e-21)
(0.0251611 0.0149252 -9.85332e-22)
(0.857599 0.113318 -1.25828e-21)
(0.836632 0.191203 -1.33578e-21)
(0.306855 -0.0949343 -3.75918e-21)
(0.050585 0.0347233 3.04766e-21)
(0.188975 0.104935 -1.26097e-21)
(0.937768 -0.0397712 6.18967e-22)
(0.0751923 -0.0197332 3.30243e-21)
(0.707669 0.0852915 6.80894e-22)
(1.25663 0.277676 -9.21532e-23)
(0.861235 -0.065346 -9.05377e-22)
(1.03391 0.218721 3.58376e-21)
(0.511221 -0.291821 -2.19134e-21)
(0.879683 0.255924 -2.02947e-22)
(0.8863 -0.0371674 1.14571e-22)
(0.51613 0.219977 2.17619e-21)
(0.0389072 0.00417971 1.31822e-21)
(0.956426 0.245067 -1.68193e-21)
(0.0214938 0.00701636 6.81526e-23)
(0.401171 0.227134 5.00722e-22)
(0.960458 -0.107164 3.64121e-22)
(1.33306 0.165557 3.12589e-22)
(1.20039 -0.276585 5.85282e-21)
(0.873092 0.404014 2.58929e-21)
(0.667606 -0.195332 9.95906e-22)
(0.50447 -0.0611746 -6.96019e-22)
(0.720746 -0.282791 6.2338e-21)
(0.128623 -0.107782 4.88286e-22)
(1.25244 -0.24433 2.86178e-21)
(0.952393 -0.0488769 1.0844e-22)
(0.823836 0.312514 3.44328e-21)
(0.795147 -0.224786 3.34667e-21)
(0.894013 0.384738 1.88512e-21)
(1.01287 -0.102505 -1.38465e-21)
(0.815542 -0.00499909 7.62488e-22)
(0.0312647 -0.0181776 2.74093e-21)
(1.0618 -0.341547 -8.91754e-23)
(0.0357662 0.000992384 3.40068e-21)
(0.04418 0.0137936 2.94206e-22)
(0.154411 0.0895101 3.69872e-22)
(1.26279 0.263667 5.66935e-22)
(0.896506 -0.372497 -1.08244e-21)
(0.513244 -0.154649 -2.17912e-21)
(0.953023 0.394629 -4.41102e-23)
(0.384334 0.242581 -1.46931e-20)
(1.29587 0.219187 -7.73641e-22)
(0.365916 -0.0567263 -4.50032e-21)
(0.228571 0.206283 1.49848e-23)
(0.333387 -0.0751637 -5.21372e-21)
(0.855917 -0.193737 2.80515e-22)
(0.256965 -0.152809 1.97797e-21)
(0.101054 0.00286742 -9.63844e-22)
(0.478001 -0.279277 4.36756e-22)
(0.721344 0.37452 -5.23593e-21)
(0.866337 0.355537 -4.39623e-22)
(1.14296 0.23035 -1.42374e-21)
(0.457398 -0.202774 2.6648e-21)
(1.24016 0.222162 8.14277e-22)
(0.744433 0.387215 -3.04799e-21)
(0.205886 -0.0941408 -3.60972e-22)
(1.04897 0.353807 4.52512e-22)
(0.625154 -0.323078 -3.25095e-21)
(0.192002 -0.0966822 -3.1562e-21)
(0.944654 -0.179371 8.11334e-22)
(0.751179 -0.272066 -4.25619e-21)
(0.948353 0.177817 -2.27684e-21)
(0.532429 -0.048902 -4.25065e-22)
(0.541882 -0.00825054 -9.95097e-22)
(0.861051 -0.369785 2.80023e-21)
(0.0775308 0.0363135 -7.80891e-22)
(0.917893 -0.0658988 4.62401e-22)
(0.592744 0.329291 -2.16364e-21)
(0.270921 0.227681 1.08529e-20)
(0.966482 -0.0943929 -6.72002e-24)
(0.819325 0.244586 3.42292e-21)
(0.913521 -0.000938084 1.28582e-21)
(0.340285 0.233062 -1.52577e-21)
(0.98848 -0.247477 -4.29825e-22)
(0.710537 0.262243 -1.21315e-22)
(0.624899 0.34092 -4.86357e-21)
(0.257255 -0.122501 6.66388e-21)
(0.0286798 0.0148487 1.24928e-21)
(0.585789 -0.285592 2.69589e-21)
(0.560543 -0.212196 -1.5819e-21)
(1.04708 0.276555 -1.48952e-21)
(1.20902 0.319818 6.44543e-22)
(1.26222 0.207333 7.208e-23)
(0.826759 0.237264 3.72094e-21)
(0.852219 -0.0139831 -2.75021e-22)
(0.025373 -0.000472391 1.98463e-21)
(1.02839 0.240725 -4.96836e-21)
(0.298363 -0.189665 -2.39418e-22)
(0.855483 0.361559 1.8688e-21)
(0.732133 -0.17755 8.56872e-22)
(0.838441 0.380025 1.23527e-21)
(0.721332 -0.344 3.60888e-21)
(0.183927 -0.144786 -9.3578e-22)
(0.305205 0.0387441 -9.57596e-23)
(1.1923 -0.283942 -6.62039e-21)
(0.660684 -0.315459 3.69602e-21)
(0.160395 -0.0515403 -1.71291e-21)
(0.878873 -0.0389867 6.31913e-22)
(0.754521 0.388709 -3.79368e-21)
(0.812068 -0.0233394 -1.9604e-22)
(0.854205 0.163214 8.38404e-22)
(0.994439 0.397129 2.37045e-21)
(1.26791 -0.227494 -2.68063e-21)
(0.978442 -0.138327 -5.77858e-22)
(0.0733166 -0.0724396 -3.05181e-21)
(0.084159 0.0494881 4.86712e-22)
(0.611565 -0.306352 -3.44241e-21)
(0.0114533 -0.00558098 6.72315e-22)
(0.781345 -0.14232 9.1363e-22)
(0.702165 0.0500492 1.40998e-20)
(0.45202 -0.209282 2.08066e-21)
(0.0951318 0.0569449 -1.79201e-21)
(0.189399 -0.151078 -3.38984e-21)
(1.2899 -0.202089 -4.67319e-22)
(0.120431 -0.086373 -1.06814e-21)
(1.03337 -0.357425 -6.75913e-22)
(0.935831 -0.0536286 3.88293e-22)
(0.175125 0.101481 -2.20824e-21)
(0.791943 -0.30305 5.63317e-21)
(0.83854 -0.20767 -6.16537e-21)
(0.972483 -0.126205 3.3753e-22)
(1.25066 0.270944 -3.51217e-22)
(0.957254 -0.0462782 -6.00346e-23)
(0.967263 -0.0988494 -6.43262e-22)
(1.00551 -0.177186 -5.34371e-22)
(0.430061 -0.110845 4.92554e-22)
(0.756567 -0.241001 -4.15725e-21)
(0.584064 0.0345063 2.05757e-21)
(0.626914 0.0507454 -1.00328e-21)
(0.259053 0.143025 5.11303e-21)
(0.962269 -0.32442 4.75282e-21)
(0.467754 -0.193398 -4.15105e-22)
(0.465458 0.00129521 2.98233e-21)
(1.10337 -0.222072 -1.36154e-21)
(0.698005 -0.307459 1.26644e-21)
(0.816587 -0.21636 -4.12878e-21)
(0.0249282 -0.000158462 -2.2334e-21)
(1.26898 -0.132408 4.01859e-21)
(0.520936 0.292372 4.88508e-21)
(1.21902 0.312157 -5.04301e-22)
(1.35485 0.109294 4.99275e-22)
(0.00329027 7.13938e-05 -2.85613e-22)
(0.475744 -0.189128 3.10213e-21)
(0.798414 -0.350581 1.49713e-21)
(0.756226 -0.0842865 -2.978e-21)
(1.33906 0.0818987 1.51101e-21)
(0.26566 0.0814264 1.50363e-22)
(0.653216 0.367418 -5.67578e-21)
(1.01132 0.338108 -5.8815e-23)
(0.0222453 0.00793582 -2.07132e-22)
(0.2242 0.12911 -8.40413e-23)
(1.03392 0.261239 4.61273e-21)
(0.977456 -0.316172 1.4455e-21)
(1.00377 0.0721302 2.4958e-21)
(0.670206 -0.342272 -2.0578e-21)
(0.864618 -0.078001 -1.71818e-21)
(0.846846 -0.269442 -2.68095e-21)
(0.993686 -0.306834 -2.09517e-21)
(0.745772 0.361457 8.60282e-22)
(1.35957 0.0859766 1.22337e-21)
(1.04216 -0.351742 -3.17171e-21)
(0.685037 -0.0862152 1.57114e-23)
(0.295594 0.220772 -1.68401e-21)
(0.964279 -0.36946 4.91066e-21)
(0.0186753 -0.0109777 1.13766e-21)
(1.25275 0.131893 -2.23017e-21)
(0.018165 -0.0108374 1.48806e-21)
(1.072 0.385112 -1.81138e-21)
(0.736062 0.155233 -5.77124e-22)
(0.627048 0.0749599 1.29999e-21)
(0.57936 0.233771 -2.37887e-24)
(1.02766 -0.363594 2.18208e-21)
(1.0126 -0.297157 2.51364e-21)
(1.27132 -0.0945688 2.33734e-21)
(1.07268 -0.259249 2.04219e-21)
(1.03243 -0.285845 4.44533e-21)
(0.929137 -0.109492 1.85022e-21)
(0.193219 -0.118494 3.52192e-21)
(1.04545 -0.19565 1.7468e-21)
(0.0240294 -3.43428e-05 9.94351e-22)
(0.556633 -0.271348 1.73544e-21)
(0.932261 -0.0571292 -2.19103e-22)
(0.888746 -0.109152 -6.38205e-22)
(0.425146 -0.21666 -9.28679e-22)
(1.05263 -0.273124 1.036e-21)
(0.588067 -0.263697 1.4077e-21)
(1.16241 0.325664 1.87955e-21)
(0.357719 0.251357 -2.60079e-21)
(0.85837 0.108199 -1.10287e-21)
(0.179975 -0.103275 -4.80365e-21)
(0.889846 -0.0880384 5.67488e-22)
(0.732463 0.383013 2.87339e-21)
(1.10058 0.363802 -5.92695e-22)
(1.07284 -0.353427 2.45835e-21)
(1.06285 -0.332208 2.96767e-21)
(0.91248 -0.136252 1.03805e-22)
(1.01649 -0.189383 7.30373e-23)
(1.21341 -0.079366 -1.97767e-21)
(0.181454 0.135363 3.8356e-21)
(0.186222 0.175576 -5.31496e-21)
(0.193969 -0.0989718 3.37585e-21)
(0.288314 -0.0945081 -7.71586e-22)
(0.600719 0.34322 -8.52634e-21)
(1.19084 -0.282575 1.65044e-21)
(0.925785 -0.0326165 2.8182e-22)
(0.67338 -0.0998718 -1.4323e-21)
(0.89097 -0.0108969 5.27894e-22)
(0.599667 -0.259705 -4.69708e-21)
(0.532407 0.0526102 1.10174e-20)
(0.437051 -0.20178 4.11657e-21)
(0.911896 0.265892 -4.97676e-22)
(1.06341 0.387512 2.57103e-22)
(0.750485 0.232497 -6.65507e-21)
(0.270044 -0.0925645 -5.73874e-21)
(0.575646 0.30865 1.77245e-22)
(0.935111 0.167122 -4.32622e-21)
(0.0245373 -0.000232942 -1.71596e-21)
(1.35368 -0.0706683 -6.73435e-22)
(0.749476 0.387405 2.59525e-21)
(0.893549 -0.0263166 -6.6383e-22)
(0.54137 -0.173993 -7.24456e-21)
(0.95282 -0.148154 -1.546e-22)
(1.13352 -0.20031 -1.13047e-21)
(0.0974412 0.0545454 -1.74516e-22)
(0.0230726 0.000423963 -2.68611e-21)
(0.542333 0.021246 2.60387e-21)
(0.270025 0.211183 -5.82025e-21)
(0.256992 -0.106074 -1.45936e-21)
(0.0388007 0.016554 -5.1537e-23)
(0.360427 0.233597 -6.25169e-21)
(0.908562 -0.274781 -1.15447e-21)
(1.28955 -0.0674176 3.36454e-21)
(0.0374418 -0.00157135 -2.27356e-21)
(0.411394 -0.0328104 4.83784e-22)
(1.09146 -0.244321 3.04738e-21)
(0.031465 0.00335681 6.52455e-22)
(0.768806 0.352883 -8.96377e-22)
(0.143402 0.142976 -1.75604e-21)
(0.325293 0.184636 -6.52377e-22)
(0.430421 -0.00759721 1.39786e-21)
(0.957635 -0.153099 -2.34765e-23)
(1.08506 0.340977 -5.37141e-22)
(0.890127 -0.187297 5.42614e-21)
(0.255024 -0.0914391 -4.97617e-22)
(0.229496 -0.162951 -2.30594e-22)
(0.881779 -0.214274 -2.68298e-22)
(0.377769 -0.0391144 4.50244e-21)
(0.859649 -0.0227489 3.49401e-22)
(0.780135 0.0098616 2.9672e-21)
(0.918665 -0.0325678 -7.2306e-22)
(0.0943929 0.039279 -5.25193e-23)
(0.962904 -0.198136 5.11742e-22)
(1.2833 -0.208717 1.44214e-21)
(0.548301 0.0391679 -1.02086e-20)
(0.201489 -0.122646 -2.13864e-21)
(0.0751259 0.0408505 -4.59371e-22)
(0.840656 -0.00406329 8.17665e-22)
(0.382862 0.202751 -3.69431e-21)
(0.981339 0.174992 -4.02625e-22)
(0.307493 -0.0773936 3.48066e-21)
(0.249922 0.204772 -5.12461e-21)
(1.27776 0.197745 1.08118e-22)
(0.189699 0.109315 -2.05716e-21)
(0.0359438 0.0193874 2.43385e-21)
(0.751268 0.351189 8.33185e-21)
(0.969444 -0.124941 -5.08125e-22)
(0.874071 0.251381 1.08156e-20)
(0.022964 -0.000194826 -1.10662e-22)
(0.547256 -0.302996 1.11139e-21)
(0.0278623 0.000114024 2.54291e-21)
(0.641148 0.020954 -1.97901e-21)
(0.920697 -0.00669765 -1.20106e-22)
(0.0274891 -0.000127646 6.88464e-22)
(0.36585 0.208323 -1.1595e-21)
(0.647919 0.32678 1.42067e-21)
(0.897166 0.405166 -2.04863e-21)
(0.220547 -0.099119 3.07773e-22)
(0.736854 -0.277509 -1.02582e-21)
(0.645979 0.312696 3.61565e-21)
(0.798519 -0.309214 4.2128e-21)
(0.026433 -7.49662e-05 2.42259e-22)
(0.470345 0.197167 8.48996e-22)
(0.0418137 0.016618 4.73715e-23)
(0.77467 -0.233175 2.21306e-21)
(1.24541 0.0141205 -5.02597e-21)
(0.336484 0.212752 4.55956e-22)
(0.874861 -0.235786 8.12388e-22)
(1.17515 0.0269916 9.6838e-22)
(0.821099 -0.0264205 -7.18232e-22)
(0.960842 0.138438 -3.90632e-21)
(0.72901 0.382905 -1.96394e-21)
(0.0685859 0.0719436 -2.42705e-21)
(0.046509 0.0260375 1.02177e-21)
(0.0485538 -0.000112852 2.98729e-21)
(0.048587 8.58832e-05 -1.62163e-22)
(1.31161 0.159955 -1.45996e-21)
(0.157493 -0.124625 4.0568e-21)
(0.773471 0.362123 8.07353e-22)
(0.0441285 -9.83471e-05 1.00567e-21)
(0.0441475 7.86947e-05 2.70743e-22)
(1.17588 0.341147 5.99206e-22)
(0.308822 0.0274554 2.15425e-21)
(1.13382 0.309981 -1.67993e-22)
(0.949655 0.403561 -1.45259e-21)
(1.13237 0.295802 -1.54275e-21)
(0.673159 0.335474 6.51982e-23)
(0.446319 -0.195858 -5.27295e-22)
(0.167328 -0.0958817 -2.76371e-21)
(0.932548 -0.361611 1.49091e-21)
(1.1117 -0.227886 -1.77512e-21)
(0.308232 0.138088 3.38667e-22)
(0.253349 -0.157291 1.89862e-21)
(0.854631 -0.0269624 -1.41763e-22)
(0.848295 -0.00816769 -4.32156e-22)
(0.871885 -0.368448 -3.30784e-21)
(0.311733 -0.0620413 -2.29046e-21)
(0.346807 -0.0442658 1.78608e-21)
(0.90813 -0.121494 -6.82951e-22)
(1.29288 0.0907784 -1.06655e-21)
(0.844713 -0.0373529 1.28358e-22)
(0.011971 0.00717733 -1.02879e-21)
(0.401959 -0.200399 2.71422e-21)
(0.889477 0.258312 -3.5748e-21)
(1.03354 0.282033 -3.17737e-21)
(0.0226585 0.0109626 -3.88789e-22)
(0.0321805 0.0170408 1.80496e-22)
(1.12699 0.355567 6.13415e-22)
(0.204473 -0.127356 7.63201e-22)
(0.0340229 -0.0189388 -1.85682e-22)
(0.0365808 -0.0202732 -1.58163e-21)
(0.964059 -0.37322 -1.84274e-21)
(0.0391057 -4.54722e-05 1.65148e-21)
(1.10896 0.295364 2.28929e-21)
(0.0351591 0.0186729 -5.69013e-22)
(0.329725 -0.215773 7.75785e-22)
(0.918532 -0.0368103 -1.43003e-23)
(0.745209 0.164194 -4.96328e-21)
(0.00382876 8.04841e-06 5.24187e-21)
(1.02151 0.265688 2.57255e-21)
(0.18058 -0.146263 2.10164e-21)
(1.12406 0.218867 6.53551e-22)
(0.028231 -1.02772e-05 -2.60921e-21)
(0.581891 0.239576 1.24283e-23)
(0.0338963 0.0172665 8.8781e-22)
(0.540171 -0.156163 4.57882e-21)
(0.918688 -0.0153244 4.17979e-22)
(0.0375948 -0.00830099 -6.65725e-22)
(0.647849 0.328325 -6.80754e-22)
(0.229636 -0.122883 3.18349e-21)
(0.73922 0.250737 1.84338e-21)
(0.920291 -0.0188473 4.53958e-22)
(0.164291 0.0955205 3.04959e-21)
(0.454127 0.1108 1.43178e-20)
(0.349853 -0.0681788 9.0219e-22)
(1.35585 -0.05913 1.96709e-21)
(0.874249 -0.256942 -1.8894e-24)
(0.0538619 0.0315825 7.63174e-22)
(1.15289 0.256769 1.98077e-22)
(0.0698767 -0.0412372 -9.26958e-22)
(0.94084 -0.0428817 1.49482e-23)
(0.0243536 0.000308157 2.74294e-21)
(0.0171645 -0.00943826 3.86386e-22)
(0.970817 -0.270325 1.8249e-21)
(0.772263 0.194689 2.0366e-21)
(0.650691 -0.112339 9.08859e-22)
(0.305211 -0.156639 3.66782e-21)
(1.12442 0.312962 -4.64978e-22)
(0.962678 -0.0542557 5.51052e-22)
(0.671696 0.33833 1.43382e-21)
(0.192401 -0.151533 -1.1405e-21)
(0.228651 0.203975 -2.31139e-21)
(0.13982 -0.0159377 -1.42241e-21)
(1.2341 -0.06803 9.72145e-22)
(0.636421 -0.0269796 -9.15196e-22)
(0.518678 -0.0668412 -4.97658e-21)
(0.0240407 0.00015403 5.14415e-21)
(0.752814 0.141606 -1.92667e-21)
(1.11297 0.370304 -2.26345e-21)
(0.316057 -0.0380099 1.47775e-21)
(0.385445 0.209547 -1.89026e-21)
(0.909543 -0.085341 6.63093e-22)
(0.69111 -0.329979 -4.11072e-21)
(0.907708 -0.213807 1.58588e-21)
(0.465535 0.131291 1.017e-20)
(0.239859 -0.135546 -6.07698e-23)
(0.244543 0.212588 -3.78935e-21)
(0.677659 -0.153285 -9.10379e-22)
(0.525541 -0.161509 5.14306e-22)
(0.493928 0.058805 3.42292e-21)
(0.043284 0.0159769 -1.90473e-22)
(0.92648 0.302423 3.41599e-21)
(0.9175 -0.2766 -1.95222e-22)
(1.04448 0.369824 7.9434e-23)
(1.34993 -0.0832521 -9.86602e-22)
(1.15645 -0.192033 2.87993e-21)
(0.0263981 7.33509e-05 3.16504e-21)
(0.901222 -0.204931 -1.63153e-21)
(0.85077 -0.214285 1.53763e-23)
(0.388958 -0.193743 -8.77155e-22)
(1.24834 0.234247 -4.15393e-22)
(0.0326436 -0.011324 -5.24865e-22)
(0.995276 0.147065 2.88039e-21)
(0.895491 -0.112446 -5.70419e-22)
(0.899905 -0.11195 -4.28615e-22)
(0.690614 -0.117015 -9.03029e-22)
(0.926876 -0.0117623 4.1314e-23)
(0.899867 -0.00484911 3.41648e-22)
(1.0109 0.211923 4.61336e-23)
(0.0183357 0.00866312 6.99494e-22)
(0.831044 0.174832 -4.70967e-22)
(0.354277 0.206481 5.6743e-22)
(0.931415 -0.0498287 -4.47666e-22)
(0.046645 -0.000117972 4.06522e-21)
(0.991475 0.145412 -4.06882e-22)
(0.608065 -0.325918 -2.45512e-21)
(0.994044 0.146159 3.70316e-22)
(1.24135 0.109193 1.78152e-21)
(0.967793 -0.0478172 4.83918e-22)
(0.90974 -0.00738871 3.708e-22)
(0.968257 -0.0486072 -2.33368e-22)
(0.457248 0.0326213 -7.65381e-21)
(0.304264 0.166567 -2.15249e-21)
(0.932549 -0.0276493 2.63051e-22)
(0.0911089 0.0648927 -8.04065e-22)
(0.933839 -0.12157 1.33695e-22)
(0.970719 0.189136 -1.47295e-21)
(0.0833966 -0.0482575 -3.53192e-21)
(0.0173807 -0.00948722 -2.45608e-21)
(0.097586 0.100725 4.33678e-21)
(0.955657 -0.046317 4.09066e-22)
(0.123036 -0.00693994 -3.66157e-22)
(1.21556 -0.0914503 7.73114e-22)
(1.08058 0.276089 3.50882e-21)
(0.386781 0.160597 4.65526e-22)
(0.38834 -0.0482142 9.95949e-22)
(0.667318 0.0678766 -2.21483e-21)
(1.0201 -0.359401 -1.4282e-21)
(0.92044 -0.0356639 -2.08906e-22)
(0.758047 -0.0466842 2.00115e-22)
(0.176496 -0.100149 4.17722e-21)
(0.457848 0.304808 1.08361e-21)
(0.0279828 0.000146723 -1.21758e-21)
(0.921691 -0.017926 -1.28105e-22)
(0.749327 0.0782549 4.32559e-21)
(0.217829 -0.165493 4.07172e-21)
(1.31132 0.136208 9.52889e-22)
(1.30514 0.1508 1.73866e-21)
(0.73103 -0.0073621 1.42247e-22)
(0.646253 0.316544 1.57966e-22)
(0.907543 -0.0183404 2.43798e-22)
(0.622604 0.104801 4.30369e-21)
(0.59803 -0.123273 4.83639e-21)
(0.0359467 -0.00257176 -5.54339e-22)
(0.960859 -0.0601776 3.26589e-22)
(0.0238747 0.000112193 4.71429e-21)
(0.913351 0.234039 -6.23687e-22)
(0.742652 -0.340334 2.8022e-21)
(0.0179366 0.00783135 6.48246e-23)
(0.573294 0.0623676 -8.19252e-22)
(1.24359 0.194429 6.05187e-22)
(0.68185 -0.324875 3.31849e-21)
(0.0257815 0.000164298 3.123e-22)
(1.1335 -0.210921 4.42717e-22)
(0.920473 -0.0336951 1.59232e-22)
(0.56456 -0.279179 -8.41008e-22)
(0.183542 0.119848 2.92278e-22)
(0.85724 -0.0856812 -2.65843e-22)
(0.832375 -0.0042262 7.4838e-22)
(0.835247 -0.279875 3.87613e-22)
(1.1612 0.342881 3.43135e-22)
(0.591257 0.255282 1.37394e-21)
(0.97596 0.182199 -2.4969e-21)
(0.0409843 0.0229909 4.71735e-21)
(0.441675 -0.0363288 -9.31083e-22)
(0.876328 -0.090315 6.97381e-22)
(0.488546 0.135629 -5.35071e-21)
(1.23901 0.0432598 3.72324e-25)
(0.515206 -0.288711 -2.70996e-21)
(0.106157 -0.0170201 -1.25344e-21)
(0.545955 0.311543 4.54011e-21)
(1.02593 -0.364729 -3.28026e-21)
(0.963895 0.197045 2.5213e-21)
(0.620658 0.333254 5.6244e-21)
(0.800939 0.108088 -6.39828e-21)
(0.816258 0.342541 2.72016e-22)
(0.573927 0.298078 6.80857e-21)
(0.341617 -0.225493 -2.44475e-22)
(0.453713 -0.205934 1.0465e-21)
(0.738092 0.238609 9.98125e-21)
(0.93918 0.397241 2.52817e-23)
(1.10104 0.274833 4.23351e-21)
(0.757218 -0.360553 1.53538e-22)
(0.133791 -0.0774677 9.15489e-22)
(0.222425 -0.154447 8.00272e-22)
(0.930751 -0.0532468 3.92461e-22)
(1.08016 -0.351561 -1.51696e-21)
(0.529682 0.263188 1.29408e-21)
(0.358974 0.225966 6.47879e-22)
(0.474716 -0.00943341 -1.5481e-21)
(0.932638 -0.0259948 -2.29961e-22)
(0.677157 -0.310175 -7.55218e-22)
(0.185889 0.107511 -1.20372e-21)
(0.0318347 0.000777262 4.44399e-22)
(1.09703 0.248459 -3.29446e-21)
(0.463555 0.248726 4.7948e-21)
(0.819637 -0.0507173 -6.53339e-24)
(0.578755 -0.164163 -4.39843e-21)
(0.841172 -0.350713 -2.69766e-21)
(0.0489969 0.00982304 7.63569e-22)
(0.0140564 0.00700851 9.4777e-22)
(0.92575 -0.01066 -2.57073e-22)
(0.530662 0.248793 6.60679e-21)
(0.927646 -0.225697 -1.08273e-21)
(1.23691 0.206584 -3.53364e-21)
(0.0172557 0.00811772 -9.58293e-23)
(1.00199 -0.174495 5.552e-23)
(1.06887 0.38563 6.42054e-22)
(0.0224072 -0.0118185 2.36386e-22)
(0.611939 0.218466 1.92212e-22)
(0.239482 -0.160287 -2.44459e-21)
(0.672737 -0.12115 -1.2508e-21)
(0.656235 -0.292767 -6.94432e-23)
(0.904417 -0.0139495 2.76715e-22)
(0.337725 0.216781 6.47262e-21)
(0.401251 -0.208654 -7.82878e-21)
(0.159109 0.0265746 -1.39505e-21)
(1.3333 -0.116758 1.1756e-22)
(0.722288 -0.187908 -2.08876e-21)
(0.439939 0.291526 1.28889e-21)
(0.918907 -0.00186373 4.1365e-23)
(0.348568 0.215484 8.92603e-21)
(0.933805 0.271405 -6.32427e-21)
(0.337635 -0.05944 3.32884e-21)
(0.809208 0.384371 -3.75587e-21)
(0.403875 -0.19857 4.00679e-21)
(0.972081 -0.299411 3.14168e-23)
(0.854514 -0.292778 2.55844e-21)
(0.950798 -0.374061 -6.76047e-22)
(0.651276 -0.129777 2.09942e-21)
(1.10495 0.238367 -3.54711e-21)
(0.77216 0.101504 -4.54645e-22)
(1.14352 0.350914 -1.04518e-22)
(0.60613 -0.130558 -1.83564e-21)
(0.0119404 -1.72565e-05 -7.3434e-21)
(0.981506 -0.298985 -1.12354e-22)
(0.910037 -0.0158451 -1.85668e-22)
(0.699423 -0.204959 3.61399e-22)
(0.970084 -0.119684 1.98008e-22)
(0.824231 0.147445 6.61915e-22)
(0.0186674 -6.44079e-05 -7.96188e-23)
(0.243284 -0.0311623 -4.51113e-21)
(0.534292 -0.119029 1.21586e-21)
(1.02831 0.389931 -4.45308e-21)
(0.52625 0.288483 -2.02281e-22)
(0.144833 -0.0561571 -7.1016e-22)
(0.828443 -0.0566485 -1.51564e-23)
(0.481981 -0.0783107 -8.80597e-22)
(1.00368 0.183632 1.62295e-22)
(0.861212 -0.329633 1.72637e-21)
(0.884783 0.251146 2.63066e-21)
(1.33974 0.0567516 1.0916e-21)
(1.13792 0.349356 5.62672e-22)
(0.896355 -0.119844 5.32652e-23)
(0.787408 0.245887 -1.33244e-21)
(0.422285 -0.0782582 -4.03044e-21)
(1.36254 0.0250936 2.69992e-22)
(0.0899773 -0.0506947 1.1949e-21)
(1.17039 0.311508 2.19151e-23)
(0.941377 -0.0306608 6.19525e-22)
(0.864682 -0.268876 1.25418e-21)
(0.2295 -0.11046 -3.89314e-21)
(0.0949931 0.0547407 -1.89325e-21)
(0.47522 0.313306 2.23888e-21)
(0.36789 0.19086 -2.64101e-21)
(0.483951 -0.274935 2.23364e-21)
(0.928623 -0.058652 -4.13288e-23)
(1.10028 0.227992 -3.47987e-21)
(0.685361 -0.137409 -2.37897e-21)
(0.762575 0.237955 -3.68444e-21)
(0.0915064 -0.00396337 -3.01234e-22)
(0.0410221 -0.0234344 -3.1297e-21)
(0.814146 -0.349887 1.74688e-21)
(0.902306 -0.00824237 1.63279e-22)
(0.320161 -0.145352 4.46797e-21)
(0.905236 -0.076639 4.24055e-22)
(0.222594 -0.102603 1.00743e-21)
(0.612947 -0.00521115 3.69724e-22)
(0.0392969 1.89734e-05 9.65428e-22)
(1.01971 0.395348 1.12633e-21)
(0.0934011 -0.0922177 4.25721e-22)
(0.891544 -0.173706 6.83555e-22)
(1.09675 -0.226746 1.54752e-21)
(0.692623 -0.0320436 -2.14023e-21)
(0.971896 0.257211 1.23047e-22)
(0.92023 -0.0207355 3.7242e-22)
(0.0276984 0.000387542 6.41642e-21)
(1.26197 0.189179 1.02214e-21)
(0.0229161 0.000128895 2.79762e-23)
(1.27658 0.25168 -1.42642e-23)
(1.03088 -0.0715335 3.11551e-21)
(1.06525 -0.239845 7.89891e-22)
(0.857582 0.363057 -6.13314e-21)
(0.596771 0.317405 -2.99511e-21)
(0.0399371 -0.00949119 2.38224e-21)
(0.142633 0.154566 -8.12422e-21)
(0.0433188 0.00774156 1.42888e-21)
(0.578317 -0.307059 -2.46228e-21)
(0.343459 -0.205775 -4.86194e-22)
(0.137995 -0.0372345 -2.37835e-21)
(0.550277 0.27483 5.78732e-21)
(0.186048 0.00602614 -3.57752e-22)
(1.35734 -0.0150412 -7.49077e-22)
(0.289075 -0.156985 -3.18195e-21)
(0.454789 0.25716 -9.83053e-22)
(0.0896371 0.0261094 5.64574e-22)
(0.568401 0.321375 7.25149e-22)
(0.289333 0.230727 1.17644e-20)
(0.0211083 0.000107871 5.75286e-21)
(0.937098 -0.127693 2.24098e-22)
(0.911884 -0.0131224 6.22337e-22)
(1.06914 -0.217929 2.09455e-21)
(0.8632 0.187017 -4.60618e-21)
(0.868487 -0.0179228 -6.43016e-21)
(1.05939 -0.235585 1.44689e-21)
(0.937313 -0.124006 -2.65078e-22)
(0.00952054 -0.00566329 -2.26245e-21)
(0.860784 -0.237793 -5.54445e-22)
(0.892517 0.403918 8.7152e-23)
(0.482081 -0.243042 -1.02879e-22)
(0.0896603 -0.0434507 -5.09411e-22)
(1.03593 -0.0828013 -1.27437e-21)
(0.76879 0.382072 -1.36426e-21)
(0.733489 -0.0559341 -6.83212e-23)
(1.12061 0.339726 -2.02044e-21)
(0.75141 0.0632386 1.14446e-20)
(0.8831 -0.00921493 4.9747e-22)
(0.258546 -0.125232 -3.76667e-21)
(0.808006 0.241942 7.59202e-21)
(0.916175 -0.0740246 9.68929e-22)
(0.968666 -0.122237 -1.22156e-21)
(0.26855 0.149904 5.98477e-22)
(0.290237 -0.179931 2.32975e-21)
(0.818917 -0.0558813 -2.39595e-23)
(0.0384016 -0.0215203 1.78115e-22)
(0.991209 -0.370461 2.69296e-22)
(1.26302 0.0248822 3.60402e-21)
(0.191177 0.111161 -3.75182e-22)
(0.975437 0.376156 -3.73057e-21)
(0.854258 0.17743 6.13638e-21)
(0.642256 -0.321901 1.02997e-21)
(0.91856 0.268678 -3.39028e-21)
(0.0590701 -0.0336785 2.33811e-22)
(0.0487307 0.000172392 5.25733e-21)
(0.0487434 -0.000189369 1.13778e-22)
(0.922307 -0.0366837 5.76868e-22)
(0.931705 -0.0178492 -3.27498e-22)
(0.0219542 4.12635e-05 1.18522e-21)
(0.93329 -0.0172702 3.55859e-22)
(1.14384 -0.30638 -3.06357e-21)
(0.0988874 0.0559068 -4.11287e-21)
(0.500313 -0.0335486 1.31151e-21)
(0.106985 -0.0462869 2.69754e-21)
(0.0431713 0.00115907 -5.6963e-21)
(0.786007 0.146332 1.71399e-21)
(0.850967 -0.368223 -2.20071e-21)
(0.221207 -0.167543 -5.4762e-21)
(1.31555 0.0143478 -2.54292e-21)
(1.21426 -0.224606 -6.11793e-22)
(0.022997 -2.44217e-05 -1.02816e-22)
(0.644834 -0.3024 -1.85104e-21)
(0.0178501 -0.00404034 1.5442e-21)
(0.886055 0.404098 3.32687e-21)
(0.934085 -0.0252478 3.30905e-22)
(0.135282 -0.117529 1.92486e-21)
(0.950661 -0.124786 -1.3614e-21)
(0.0286399 0.00352983 -7.05363e-22)
(0.912882 -0.254841 -8.01872e-22)
(0.0144686 1.40831e-05 -2.42615e-21)
(0.968368 -0.131156 -3.9714e-23)
(0.0320858 0.000164511 4.38268e-21)
(1.18704 -0.0360024 7.02657e-22)
(0.921965 -0.0163881 9.42303e-23)
(0.78509 0.154646 -2.93421e-21)
(0.258907 0.074382 4.21156e-22)
(0.931131 0.372622 -6.04047e-22)
(0.58673 0.0981106 4.79571e-21)
(0.220806 0.126132 2.31495e-23)
(1.19689 -0.151768 -3.05672e-21)
(0.105363 0.0146126 -1.00707e-21)
(0.874029 0.197088 1.06413e-20)
(0.0402983 -0.000605171 6.31895e-21)
(0.943549 0.387599 -3.42304e-22)
(1.01113 -0.323802 -1.17907e-21)
(1.34573 0.0616351 -6.2063e-22)
(0.258258 -0.0575795 1.34599e-22)
(1.01991 0.205167 -1.63321e-22)
(0.0185156 0.00771209 2.41414e-23)
(0.953318 -0.075753 1.41215e-22)
(0.938512 -0.0369181 -2.53968e-22)
(0.0177637 -8.27074e-07 -6.52971e-22)
(0.931204 -0.0250089 5.3548e-23)
(0.0487526 0.0263888 -1.15266e-21)
(1.06068 0.2435 1.5944e-21)
(0.723942 -0.0652761 3.62918e-23)
(0.555141 -0.30474 1.04662e-22)
(0.200491 0.188453 2.17649e-21)
(0.0458035 0.0275275 -2.35219e-21)
(0.971687 0.274761 -6.38247e-22)
(1.10501 0.303096 4.07944e-23)
(0.688318 -0.314732 -1.6004e-21)
(0.158041 0.158942 1.20572e-20)
(0.352429 0.199887 -3.51045e-22)
(0.91677 -0.019695 -3.49616e-22)
(0.0128709 8.79543e-05 -3.4157e-22)
(0.026864 -0.0053537 9.2495e-21)
(0.479376 -0.183386 -2.77677e-21)
(0.403533 -0.0959038 4.58346e-21)
(1.07987 -0.044391 -1.88414e-21)
(0.0958067 -0.0711575 -2.3247e-21)
(0.929257 -0.258314 -9.71538e-22)
(1.35083 0.0403328 1.40666e-21)
(0.628117 -0.122092 -3.44594e-21)
(0.0192345 0.00765793 1.69295e-22)
(0.666786 -0.298295 1.33014e-21)
(1.03535 0.351584 4.86298e-22)
(0.868432 -0.0458373 -6.44565e-22)
(0.826334 -0.352304 -1.3609e-21)
(1.09928 -0.344221 -1.82882e-21)
(0.025096 8.56011e-05 -5.32012e-21)
(0.832975 -0.0595557 8.66209e-22)
(0.968599 -0.29262 2.49456e-21)
(0.0146557 9.01203e-05 3.11247e-22)
(0.226356 -0.106774 4.99912e-21)
(1.07989 0.292046 1.26445e-21)
(0.850499 -0.0734256 6.75436e-22)
(0.0334938 -0.0189404 -1.12484e-21)
(0.32053 -0.212654 -1.72112e-21)
(0.00490844 -0.00030465 -4.86485e-21)
(0.339057 -0.0630904 2.69266e-22)
(1.25075 0.269562 -5.15443e-22)
(0.975758 -0.143899 7.04847e-22)
(0.955045 -0.0451317 -5.30136e-22)
(0.185288 0.107619 -3.17683e-21)
(1.00866 0.0584653 4.15762e-21)
(0.520293 -0.298476 3.43961e-21)
(0.736402 0.363327 -1.14284e-21)
(0.641839 -0.307817 -1.3705e-22)
(0.855992 -0.343912 -9.1182e-22)
(1.22323 -0.216311 8.90887e-22)
(0.0238128 -0.000127703 -2.20278e-21)
(1.30856 -0.144094 -1.77924e-21)
(0.0191467 -0.0104177 -1.62893e-21)
(0.888585 0.19174 -2.82054e-21)
(0.0222762 6.94157e-05 -1.07182e-20)
(0.245641 -0.148047 -6.55078e-22)
(0.378285 0.21479 -5.24688e-22)
(1.06181 0.352616 -1.16411e-22)
(1.36213 -0.0137261 -2.46176e-22)
(0.959483 -0.0727614 -3.14307e-22)
(0.0243442 -0.000276675 3.16394e-23)
(0.780359 0.227307 8.72563e-22)
(0.959812 -0.0880926 6.229e-22)
(0.580568 -0.255311 6.16564e-22)
(0.238298 -0.175754 1.69556e-22)
(0.887772 0.308627 2.09015e-21)
(0.113112 0.124221 5.70807e-21)
(1.2654 0.207314 -5.36999e-22)
(0.926774 0.265899 5.55631e-21)
(0.438334 0.294595 -2.90111e-21)
(0.29057 -0.0765756 9.15663e-22)
(0.0138623 0.00820803 1.14681e-22)
(0.0146067 -0.00831501 1.28531e-21)
(0.214006 0.173747 4.12423e-21)
(0.013666 -0.00862753 -1.92777e-21)
(1.15214 0.351034 -6.67551e-22)
(0.0238547 -6.19579e-06 6.5734e-21)
(0.472411 0.311573 -1.83702e-23)
(1.17805 -0.304521 -2.65424e-22)
(0.957974 -0.0780219 -3.02355e-22)
(1.16813 0.345432 -9.00354e-22)
(0.0437427 2.95583e-05 4.48387e-21)
(0.0440274 0.000124844 2.69805e-24)
(0.710053 0.298396 -1.2154e-21)
(0.893698 0.29465 -4.2466e-21)
(1.33629 -0.0336806 6.1066e-22)
(0.686006 -0.283504 -2.2935e-21)
(0.574529 -0.315378 -2.23519e-21)
(0.846525 -0.0569198 -3.64101e-22)
(0.422722 -0.224432 -9.39136e-22)
(0.0265898 0.0151766 1.24949e-21)
(0.59678 0.318953 3.5294e-21)
(0.927673 -0.0299855 -7.83017e-22)
(0.870855 -0.0480295 1.90692e-22)
(0.455281 0.0850371 9.55495e-22)
(0.665135 -0.340677 8.18594e-22)
(0.0268086 -0.00149116 6.34578e-22)
(1.08797 -0.218716 -6.31287e-22)
(0.928624 -0.0190493 -5.83239e-23)
(0.998476 -0.183001 -4.71112e-22)
(0.292322 -0.184514 1.11929e-21)
(0.0560363 -0.0322415 -1.15115e-21)
(1.09542 0.378043 4.39586e-22)
(0.788227 0.336987 -3.91542e-22)
(0.13222 0.0902175 -2.38474e-21)
(0.578675 0.340544 -1.63797e-21)
(0.803185 -0.159765 -5.59557e-23)
(0.861313 -0.0569754 -7.96063e-22)
(0.387327 -0.203626 -6.5868e-22)
(0.026631 0.000126258 -1.02318e-21)
(1.24204 -0.206171 1.26832e-21)
(0.902194 -0.367674 -2.88254e-21)
(1.0831 -0.350552 2.39527e-21)
(0.307219 0.094761 -2.97559e-22)
(0.964652 -0.26839 -1.61748e-21)
(0.24287 0.213461 -8.05231e-21)
(0.909307 -0.11789 -3.17052e-22)
(1.1039 -0.0223527 -4.0642e-21)
(0.325615 -0.069009 -9.75465e-22)
(0.274287 -0.0782257 3.5363e-21)
(0.517099 -0.192097 -5.33112e-22)
(0.942961 -0.0370071 4.72102e-22)
(0.0155439 0.00801514 4.83349e-22)
(0.0673433 0.0385787 1.1232e-21)
(1.15045 -0.317978 -1.86034e-21)
(1.1788 0.303283 -1.08048e-22)
(0.416658 0.237277 -5.47809e-21)
(0.697123 0.345033 2.95005e-22)
(0.0380494 -3.79547e-05 1.92856e-21)
(0.0428142 -0.0241245 4.51831e-22)
(0.0626473 0.0335066 2.77333e-21)
(1.10623 0.233029 5.37387e-21)
(0.913465 -0.11702 -4.28823e-22)
(0.91439 0.400362 -7.28879e-22)
(0.876638 -0.093553 -6.42754e-22)
(0.231741 0.11545 9.91381e-22)
(0.0361114 0.000148486 -4.45876e-21)
(1.01909 0.34787 -5.58104e-23)
(0.107025 0.0728699 7.42261e-21)
(0.0120848 1.14669e-05 -6.55934e-21)
(0.783947 0.22244 -1.07223e-21)
(0.905707 0.342404 6.5354e-23)
(0.789981 0.370883 -4.17768e-21)
(0.76267 0.088349 3.47087e-21)
(0.217679 -0.0926131 1.03898e-21)
(0.9734 -0.281159 1.12196e-21)
(1.02629 0.365789 2.72825e-22)
(0.91087 -0.240865 -5.52906e-22)
(0.642854 0.306345 1.00363e-21)
(0.824711 -0.0488021 2.98535e-22)
(0.703448 -0.340091 5.07045e-22)
(0.204842 -0.0951338 -3.33488e-21)
(0.0461175 0.031621 -6.67241e-21)
(1.32487 -0.0913321 -3.18579e-21)
(0.0327119 -0.000404855 -3.35277e-21)
(0.260862 0.191816 2.29675e-21)
(0.0230457 1.3548e-05 1.01449e-21)
(0.800554 -0.0145883 8.78772e-22)
(0.940779 -0.0354355 1.2597e-22)
(1.18027 0.314717 -4.83571e-23)
(0.0367289 -3.69924e-07 -1.15127e-20)
(0.0376951 -0.000191588 -1.32356e-20)
(0.0388812 8.10508e-05 -2.14463e-22)
(0.0388496 4.27089e-05 -1.67212e-21)
(0.0388487 -6.98453e-05 9.20904e-22)
(0.202762 0.117048 2.28563e-21)
(0.613137 -0.297686 1.03321e-21)
(0.99997 0.207419 2.26576e-21)
(0.036831 0.00138164 -3.11341e-21)
(0.9604 -0.104116 -8.28514e-22)
(1.28993 0.234442 9.93968e-22)
(0.279824 -0.169051 -2.38315e-21)
(1.00053 -0.242291 1.13048e-21)
(0.0240444 0.0146949 -2.27832e-22)
(0.0440765 -0.0023662 5.17479e-21)
(0.330059 0.19015 -5.57784e-21)
(0.969037 -0.370046 -3.53125e-21)
(1.02343 0.273187 -9.67846e-22)
(0.495464 -0.170462 1.67955e-21)
(0.876031 -0.370279 7.00414e-22)
(1.04968 0.23789 -3.0955e-21)
(0.639963 -0.334241 -1.26114e-21)
(1.11886 0.359954 6.94952e-22)
(0.454797 0.255858 2.10018e-21)
(0.739277 -0.0578966 -3.90375e-21)
(0.0666061 0.0397562 2.5816e-21)
(0.686856 0.373022 2.746e-21)
(0.0656229 -0.0354163 -1.0643e-21)
(0.981539 0.158151 -1.51015e-21)
(1.05156 -0.0523522 4.58616e-21)
(0.90429 0.0782545 9.46493e-22)
(1.0126 0.390422 -2.1289e-21)
(0.70499 -0.0804352 2.11365e-21)
(0.883515 -0.0277873 -2.67705e-22)
(0.0354889 -2.85027e-05 3.6165e-22)
(0.0362378 0.000137934 -3.3179e-23)
(0.0378733 8.61307e-05 3.38905e-21)
(0.0378895 -8.92436e-05 -5.16294e-23)
(0.0156734 0.00777319 -9.32596e-22)
(0.0400802 8.76194e-06 -3.80642e-22)
(0.040003 -2.08261e-05 3.41327e-22)
(0.979875 -0.163167 5.06946e-23)
(0.828924 -0.0521379 -1.11023e-21)
(0.0577988 0.0295992 -2.21339e-22)
(0.0316738 -0.0186655 6.36311e-22)
(0.855065 -0.272849 -2.71514e-22)
(0.210177 -0.162153 -2.10879e-21)
(0.0169399 -5.41752e-05 -1.11725e-21)
(0.965832 -0.161966 -1.76154e-22)
(0.0379314 3.24175e-05 -5.04155e-22)
(0.776194 -0.260853 2.09999e-21)
(0.728804 -0.35347 2.14318e-21)
(1.02493 0.386311 1.32215e-21)
(0.839608 0.379349 1.99341e-21)
(0.028127 -0.00926513 -3.97634e-21)
(0.0530517 0.0795175 -1.22926e-20)
(1.03419 0.345075 8.50541e-23)
(0.0228964 2.6035e-05 5.22762e-22)
(0.218791 -0.100935 1.12398e-21)
(0.0367973 0.0204582 -4.92891e-21)
(0.0568779 -0.00934991 5.57077e-22)
(0.434969 -0.0564562 2.31119e-21)
(1.03121 0.274611 2.73556e-22)
(0.304536 0.205273 2.04888e-21)
(0.815954 0.347136 6.95122e-21)
(0.533549 -0.195316 -4.04036e-22)
(0.367728 -0.0818021 5.46667e-21)
(0.66258 -0.211575 9.26828e-22)
(0.959587 -0.0648859 1.34133e-23)
(1.10506 -0.236868 1.39096e-23)
(1.20419 -0.282453 1.91565e-21)
(1.25139 0.228705 8.33824e-22)
(1.21517 0.240145 1.53655e-21)
(0.753513 -0.317084 3.17074e-22)
(0.918242 0.0101204 -1.22233e-21)
(0.738388 0.311958 -1.80199e-21)
(1.27946 -0.189847 2.97535e-22)
(0.0483806 0.000349702 6.07189e-21)
(0.893733 -0.116409 -7.23424e-23)
(1.19729 0.298264 3.15141e-22)
(0.929217 -0.0309711 3.59618e-22)
(0.0244078 0.0133349 1.79485e-22)
(0.0367654 -0.0209356 -1.86252e-21)
(0.0236689 0.0145537 1.1756e-21)
(0.228764 -0.151287 -1.1347e-21)
(0.583888 -0.13802 7.33735e-21)
(0.303331 0.0895315 3.33741e-22)
(0.814228 0.236263 -8.33865e-22)
(0.037234 0.00417726 -2.79165e-21)
(1.20731 0.231025 9.78585e-22)
(0.0427679 -0.000184696 -1.56639e-22)
(0.0460268 -0.026293 2.87426e-21)
(0.927463 -0.0161216 -1.07515e-21)
(1.24913 0.0818007 -1.36145e-21)
(1.01344 -0.300931 -1.97954e-21)
(0.137565 0.0513325 4.26105e-23)
(0.377362 -0.21356 -2.29416e-21)
(0.694159 -0.313619 -1.31511e-22)
(1.21216 0.285383 1.01649e-21)
(0.0488724 7.92245e-05 6.35407e-21)
(0.228636 -0.0425834 8.54139e-22)
(0.772291 0.146789 4.06984e-21)
(0.0489811 -0.000153772 -1.28281e-21)
(1.01172 -0.255308 2.57766e-22)
(0.930383 -0.0167166 -9.1463e-23)
(0.939484 -0.0424064 -1.57129e-22)
(0.904835 -0.179521 -7.32658e-23)
(0.16201 -0.135868 -2.25915e-21)
(0.672966 -0.295339 4.51284e-21)
(0.0253927 0.0146091 -1.9379e-21)
(0.0238713 -0.000103093 5.66324e-22)
(0.346366 -0.197305 4.63536e-21)
(0.0541395 0.0102365 -1.90518e-21)
(0.388112 0.220364 7.81932e-22)
(0.0252319 0.0134496 -8.30644e-22)
(0.0246971 0.0460176 5.53729e-21)
(0.39799 -0.201104 -3.46432e-21)
(1.3518 0.0969558 5.62824e-22)
(0.232732 -0.144262 2.66659e-21)
(1.12757 0.352559 -2.31376e-21)
(0.487341 -0.0481132 1.79263e-21)
(0.894958 0.168102 3.85743e-21)
(0.845671 0.165135 -2.19617e-21)
(0.399924 -0.205552 2.1047e-21)
(0.669278 -0.127672 -2.79467e-21)
(0.758811 -0.0674652 -2.75762e-22)
(0.709537 0.301682 1.61744e-21)
(0.0317844 -0.0192605 2.90178e-21)
(0.0511129 0.0305018 -1.74286e-21)
(0.499173 -0.183076 1.9787e-21)
(0.0447793 -0.0182223 2.98811e-21)
(0.0354529 0.000152349 2.39342e-21)
(0.00859588 -0.00473408 2.09866e-22)
(0.492302 -0.280765 -1.1603e-21)
(0.0483643 -0.0376373 -6.64731e-22)
(0.924001 -0.0336682 3.21643e-22)
(0.0145903 -0.0051239 3.94041e-21)
(0.59554 0.116285 -3.37e-22)
(0.55299 -0.149581 2.44513e-21)
(1.34181 0.148953 -4.40872e-22)
(0.0174865 -0.00893329 1.52647e-21)
(0.898364 -0.0065849 -8.603e-22)
(1.35123 0.0528864 2.537e-22)
(0.0226844 -0.0113618 1.65462e-21)
(0.0398993 0.0165694 -2.95877e-23)
(0.621433 0.059853 -3.5936e-21)
(0.299077 -0.106133 3.71201e-21)
(0.95656 -0.0744131 -2.59588e-22)
(0.398165 0.191098 -9.06826e-22)
(0.528303 0.325657 1.49035e-21)
(0.0631765 0.0381654 -1.42539e-21)
(0.930717 -0.238881 -2.4037e-22)
(0.80312 0.18735 1.75583e-21)
(0.0428515 -0.00441355 2.49572e-21)
(1.31086 -0.153328 2.97429e-23)
(0.521218 -0.11137 -1.93271e-21)
(0.0410496 -0.00561296 -1.81251e-21)
(1.08394 -0.34498 -3.78053e-22)
(0.0197869 -0.0111431 3.95697e-21)
(0.178728 0.0551476 5.54171e-22)
(0.19973 -0.0844892 -4.47613e-21)
(0.416753 0.209668 7.03844e-22)
(0.756847 0.130691 4.43626e-21)
(0.216507 0.119338 -4.79454e-22)
(1.07133 0.359216 -2.87748e-21)
(0.290605 -0.19883 -3.28862e-22)
(0.761596 -0.265519 2.8905e-21)
(0.65879 -0.0343254 3.23676e-23)
(1.10034 -0.0085497 -2.64202e-21)
(1.34083 -0.0234689 2.14193e-22)
(0.939872 -0.0371277 2.67143e-22)
(1.0332 0.391928 7.8537e-23)
(0.856077 -0.339255 2.12439e-21)
(0.615712 0.243467 1.0906e-22)
(0.645504 0.0241135 8.89701e-21)
(0.567275 -0.297059 -3.86539e-21)
(0.940648 0.404555 1.20237e-21)
(0.922377 -0.0307345 4.67897e-22)
(0.168752 -0.0693491 -2.58978e-21)
(1.16962 -0.309339 3.1135e-22)
(1.26845 0.261539 1.93482e-22)
(0.387143 0.278548 -2.74417e-21)
(0.715071 -0.00788912 -3.69818e-22)
(1.04241 0.337821 1.67441e-21)
(0.95937 -0.135695 9.08388e-22)
(0.73978 0.305287 4.76663e-22)
(0.240907 0.190795 -1.24307e-21)
(1.17375 -0.224543 -2.59298e-22)
(0.0252103 -0.000109249 -9.72839e-22)
(0.782755 0.213578 -9.58913e-22)
(0.937773 -0.176842 7.24423e-22)
(0.888122 0.0131315 -7.14273e-22)
(0.142043 0.0528001 -2.61476e-22)
(0.643963 0.0132244 4.17622e-21)
(0.960428 -0.0660996 8.25599e-23)
(0.342655 0.192298 -4.80339e-22)
(0.411277 0.221594 -6.31357e-21)
(0.0621146 -0.034562 2.252e-21)
(0.807997 -0.153338 1.28992e-21)
(0.94469 -0.139974 9.45012e-22)
(1.06302 -0.354124 -1.79782e-21)
(0.935504 -0.0228166 1.81371e-22)
(0.0273126 0.0155741 -7.38375e-23)
(0.33094 0.218774 -2.63571e-21)
(0.901536 -0.10819 -1.28659e-23)
(0.263719 0.0797314 4.90151e-22)
(0.0261137 0.0150856 2.15122e-21)
(0.799965 0.32284 -1.37224e-21)
(0.477662 -0.253708 -2.30848e-22)
(0.891871 -0.359692 5.0482e-22)
(1.06542 0.320136 6.30455e-22)
(0.0440711 -0.0241739 7.09242e-22)
(0.740645 0.185369 -5.10449e-22)
(0.464001 -0.175879 2.9812e-21)
(0.224593 -0.140424 -3.11755e-21)
(1.33784 -0.0727432 -2.28925e-21)
(0.86016 -0.0131952 7.13107e-22)
(0.556967 -0.308043 2.03288e-21)
(0.932724 -0.0225371 3.07981e-22)
(0.0311007 -0.00655787 5.54389e-21)
(1.05417 -0.347881 1.92808e-21)
(0.023297 -0.0108963 -3.20131e-22)
(0.691468 -0.312956 -8.3952e-22)
(0.932729 -0.156534 3.24119e-22)
(1.20662 0.282075 -3.72295e-22)
(0.877226 -0.00727618 4.45545e-22)
(0.349931 0.197205 -6.18076e-22)
(0.881056 -0.0283935 -1.35906e-22)
(0.263709 0.109241 -2.30308e-23)
(0.458377 -0.201509 -4.64138e-21)
(0.0362262 0.000247011 -4.63156e-21)
(0.0350448 -0.00918143 3.11974e-22)
(0.0265361 0.0134693 2.74453e-21)
(0.961356 -0.281054 1.21831e-21)
(0.289003 -0.173219 -4.53707e-22)
(0.941119 0.198012 9.84122e-22)
(1.19978 -0.272128 -9.58335e-22)
(0.0175957 3.12646e-05 1.72387e-21)
(0.691135 -0.340257 3.17644e-21)
(0.943239 0.257112 -5.55498e-24)
(1.09982 0.190394 1.81624e-21)
(1.36451 -0.00311938 -2.38529e-22)
(0.0325243 0.015937 -2.54748e-22)
(0.0315939 0.0268714 1.52553e-20)
(1.01889 -0.178138 7.64571e-22)
(1.34888 0.13068 2.47203e-22)
(0.707483 0.256799 -3.10494e-24)
(0.80434 -0.14684 -1.44067e-21)
(0.876594 -0.00966773 -4.48433e-22)
(1.2826 -0.13252 -3.18871e-21)
(0.939188 -0.0403942 -2.15286e-22)
(1.01091 0.396276 8.07936e-22)
(0.343191 0.103161 -2.38339e-22)
(0.0556222 0.0291634 4.66604e-22)
(0.765405 -0.128645 -3.61035e-22)
(1.29568 -0.122009 1.76864e-21)
(0.541801 0.316764 -2.44205e-22)
(0.285459 0.234655 8.18666e-21)
(0.443257 0.218685 -9.4672e-22)
(0.655001 -0.0258566 2.54425e-21)
(0.0251317 -0.0111114 8.21739e-22)
(1.04458 -0.360193 0)
(0.492449 -0.236449 2.57658e-21)
(0.713973 -0.308791 -1.19738e-21)
(0.956634 0.379778 3.02802e-22)
(0.754785 -0.328599 -1.33796e-21)
(0.823528 0.113429 -1.5231e-21)
(0.202622 0.0875453 7.98193e-22)
(0.555584 -0.289949 7.93645e-23)
(0.740703 -0.0204907 5.67091e-22)
(0.93089 -0.0300788 -2.92396e-22)
(0.577549 -0.312138 2.39851e-21)
(0.278094 -0.195493 1.24867e-21)
(0.208018 0.156846 -4.38904e-21)
(0.0442388 -0.0222634 1.93965e-21)
(0.715885 -0.319726 1.61713e-21)
(0.915864 -0.229436 1.14601e-21)
(0.328142 0.0254793 7.49356e-22)
(1.17752 -0.290113 3.47719e-21)
(0.119352 0.0652588 -1.09758e-21)
(0.901236 0.368456 3.49407e-22)
(0.625805 -0.317532 1.89685e-22)
(0.402441 -0.213599 2.55969e-21)
(0.696069 0.346307 -4.18333e-21)
(0.0356307 -0.00128957 5.1838e-21)
(0.790396 0.0785195 -1.86477e-21)
(0.987029 0.366913 7.33853e-21)
(1.05749 -0.062799 -3.67298e-21)
(1.03153 0.386313 -5.77939e-22)
(0.0179801 0.000133842 -7.50604e-22)
(0.983809 -0.162047 3.43115e-22)
(0.855618 -0.0791721 -9.66863e-22)
(0.214483 -0.102971 -4.81881e-21)
(1.06397 0.37025 -3.93986e-21)
(0.717361 -0.0802596 3.02074e-21)
(0.583479 0.0332668 5.26884e-21)
(0.334512 -0.190707 3.76331e-21)
(1.07621 0.32 -2.89209e-22)
(0.024095 0.0144267 1.22838e-22)
(0.0491354 4.85585e-05 5.4495e-21)
(0.42621 0.250021 -3.39152e-21)
(0.263673 -0.0726015 2.48821e-21)
(0.199555 0.190389 -1.38037e-21)
(0.88217 -0.00693799 3.42341e-23)
(0.0582743 -0.0282166 4.17908e-21)
(1.0376 -0.306185 6.77876e-22)
(0.0198954 -0.0111872 5.48954e-21)
(0.831276 0.141036 -4.00831e-21)
(0.418188 0.233198 -5.18673e-21)
(1.02467 -0.283779 7.67599e-22)
(0.738214 0.0506851 6.70268e-21)
(0.0241821 0.000155842 -3.88623e-21)
(0.0397174 -0.021284 -2.04809e-21)
(0.668488 -0.101865 -8.04185e-22)
(1.03914 0.255287 -9.62398e-22)
(0.0242651 8.34791e-05 4.20537e-21)
(0.813575 0.11899 6.65401e-21)
(0.42513 0.135873 1.12833e-22)
(0.450969 -0.0826326 -1.73189e-23)
(0.177233 0.0516789 -7.1069e-22)
(0.0234901 0.0124647 1.81848e-21)
(1.1519 0.16511 -6.8278e-23)
(0.777024 0.321031 -3.56214e-21)
(0.108921 -0.0629319 -1.06988e-21)
(0.774487 -0.139871 -1.33368e-22)
(0.632732 -0.269928 6.07837e-21)
(0.0354595 -0.0414616 -2.56824e-21)
(1.1361 0.286933 -2.68299e-22)
(0.0385972 0.0326044 -1.40547e-20)
(0.563137 0.203505 -6.8918e-23)
(0.688963 0.355709 -2.13156e-21)
(1.0276 0.0928895 -3.92391e-22)
(0.0237912 -2.07493e-05 -8.56144e-22)
(1.08025 -0.220177 6.99959e-22)
(0.248014 -0.134255 -1.51013e-21)
(0.0422933 -0.00339611 -2.2494e-20)
(0.510387 -0.166974 -3.35406e-22)
(1.25307 -0.119842 -4.74432e-21)
(0.964647 -0.0522884 4.41965e-22)
(0.0205984 -0.0111055 1.28363e-21)
(0.0357127 -0.0204174 3.43806e-21)
(0.374471 -0.236508 2.70541e-22)
(0.752804 0.256201 -1.78455e-21)
(0.489322 -0.259178 1.05744e-22)
(1.00611 -0.319038 -3.06942e-22)
(0.0460768 -0.0260423 2.00225e-22)
(0.00964488 -0.00498114 -3.24092e-21)
(0.0166397 0.000220784 4.86565e-21)
(0.0267172 0.000256804 -9.96204e-22)
(0.635549 -0.3347 8.41658e-22)
(0.0238793 -0.000335656 -8.43493e-22)
(1.00202 0.169745 -2.31235e-21)
(0.403678 0.254472 6.66154e-22)
(0.252114 -0.13611 -1.50913e-21)
(0.0878768 0.0532735 3.24999e-21)
(0.355855 0.177864 -1.45354e-21)
(0.862082 -0.00724322 3.05724e-22)
(0.839913 -0.0392257 1.42258e-22)
(0.621236 -0.302635 -3.62381e-22)
(0.390429 0.0617137 -6.04154e-22)
(0.00719954 3.12703e-05 3.05587e-21)
(0.00758092 -5.50114e-06 4.17202e-22)
(0.00765014 3.62982e-05 1.48567e-21)
(0.0074135 1.84752e-06 1.27718e-21)
(0.00755648 2.79059e-05 -2.11059e-21)
(0.00726538 -4.56539e-05 1.00288e-21)
(0.00720783 2.26551e-05 2.66587e-22)
(0.00757883 2.66601e-05 4.44475e-22)
(0.00728453 1.05981e-06 -1.95969e-22)
(0.00743063 -3.37625e-06 -8.03546e-23)
(0.00701673 -0.000162728 -5.87778e-24)
(0.00704494 -4.8436e-05 -6.70955e-24)
(0.00707488 1.52439e-05 -2.03338e-21)
(0.0069466 0.000134937 -1.46371e-22)
(0.00737056 -2.09742e-05 -9.25811e-22)
(0.0069872 1.40535e-05 -6.1587e-22)
(0.0111841 0.00105685 5.57624e-22)
(0.00713625 -0.000229441 -1.31867e-22)
(0.00738655 1.40661e-05 -1.94543e-21)
(0.0073707 3.27399e-05 -1.5874e-21)
(0.00743669 1.4218e-05 -5.09284e-22)
(0.00703186 -1.30953e-05 -5.25162e-22)
(0.00753729 0.000141706 -4.02342e-21)
(0.0072541 3.8751e-06 -8.40326e-21)
(0.00712573 2.57809e-05 4.07594e-22)
(0.00769669 -6.52552e-05 -6.12813e-23)
(0.00731906 5.89259e-06 1.45405e-23)
(0.00698353 0.000152241 3.29895e-22)
(0.00742161 -6.35423e-05 -3.16924e-22)
(0.00722682 3.9543e-05 2.01864e-21)
(0.0069884 6.41369e-06 2.21843e-22)
(0.00739072 -4.68521e-05 3.12998e-22)
(0.00688494 -0.000143153 7.24217e-22)
(0.00733989 4.63991e-05 1.71052e-21)
(0.00726266 -3.28296e-05 1.2256e-23)
(0.00762219 2.51476e-05 3.73914e-21)
(0.00755701 -3.83647e-05 -7.12407e-22)
(0.0069463 -9.8769e-06 7.39604e-22)
(0.00686103 -4.92773e-06 1.24148e-21)
(0.00724118 -3.70545e-05 -1.67093e-21)
(0.00691875 -2.14019e-05 -1.06495e-22)
(0.00679446 -0.000172782 -2.44672e-21)
(0.00706542 -2.90456e-05 2.39184e-21)
(0.00747219 6.42721e-05 1.65948e-22)
(0.00756848 5.82959e-06 2.31776e-21)
(0.0072999 6.13535e-06 -1.35764e-21)
(0.00684589 -0.000178905 1.97412e-21)
(0.00756383 5.34227e-06 -4.87984e-22)
(0.00733563 -1.24872e-05 -3.3019e-21)
(0.00728036 1.57255e-05 -7.00906e-22)
(0.0187641 0.00360009 1.06504e-21)
(0.00741249 -7.54775e-05 2.2672e-21)
(0.00782337 5.15131e-05 7.80263e-21)
(0.00770466 -7.31255e-05 -2.17605e-21)
(0.00730622 -3.83704e-05 4.18643e-21)
(0.00771136 9.48909e-05 1.27891e-21)
(0.00722814 9.72924e-07 8.98075e-21)
(0.00685429 -0.00011812 -2.30253e-22)
(0.00705417 -1.16261e-05 1.56295e-21)
(0.00708831 5.63755e-06 -2.39411e-21)
(0.00739457 7.35722e-05 3.88303e-22)
(0.00726323 -5.99511e-06 3.58182e-21)
(0.00699398 0.000195194 -2.0466e-22)
(0.00720566 3.36675e-06 -7.63884e-21)
(0.00682628 0.000153619 4.84215e-23)
(0.00730585 2.55966e-05 1.12841e-21)
(0.00941433 -0.000426317 5.4647e-21)
(0.00752497 -1.33642e-06 -1.42235e-21)
(0.0130043 0.00195768 2.02273e-21)
(0.00725463 7.82691e-07 1.01142e-21)
(0.0068591 -3.67605e-05 5.69164e-23)
(0.00760437 -1.852e-06 6.78534e-22)
(0.00823234 -3.98202e-05 -6.34412e-21)
(0.0078958 -0.000125223 -1.47914e-21)
(0.00733827 -3.43451e-05 -2.9305e-22)
(0.00735499 -5.81885e-06 1.3092e-21)
(0.00749754 1.76836e-05 8.13572e-22)
(0.00762363 -3.30572e-05 -3.1449e-21)
(0.00723195 3.76314e-06 1.62951e-21)
(0.00685682 4.88745e-05 -1.74032e-21)
(0.00738566 -4.62484e-05 -7.76332e-21)
(0.00747091 1.52212e-05 3.13149e-21)
(0.00715224 -6.1319e-05 -2.64156e-21)
(0.0073149 -2.81207e-05 7.72306e-22)
(0.00701192 4.6317e-05 1.87701e-22)
(0.00747295 1.12315e-05 4.85764e-24)
(0.00698053 0.000163813 7.75907e-23)
(0.00681983 1.85188e-05 -2.9606e-22)
(0.00698086 3.79351e-05 2.1386e-21)
(0.00728968 2.64607e-05 3.36995e-21)
(0.00694143 0.000133415 2.77614e-21)
(0.00715418 -1.98225e-05 -6.8157e-21)
(0.00746497 -3.57685e-05 -3.51056e-21)
(0.00715478 -2.91618e-05 1.08285e-21)
(0.00703412 -8.31316e-05 5.47211e-21)
(0.00757793 1.58011e-06 -1.26249e-21)
(0.00733597 2.96331e-05 -7.68252e-21)
(0.00752075 2.01553e-06 -3.83616e-21)
(0.00720728 0.000197673 -1.23825e-21)
(0.00727209 -3.53003e-05 -3.08856e-21)
(0.00762964 -9.41046e-05 -4.44895e-22)
(0.00741803 -1.31655e-05 1.18669e-22)
(0.00684588 -0.000190576 -5.27336e-21)
(0.00755185 4.87069e-05 -2.17508e-22)
(0.00751624 -6.49121e-05 1.33153e-21)
(0.00717741 2.49158e-05 -1.39627e-21)
(0.00732691 1.15571e-05 1.16239e-21)
(0.00754755 -4.77648e-05 2.38253e-23)
(0.00734323 -3.53402e-05 1.28014e-22)
(0.00923385 0.000519778 1.85237e-21)
(0.00714893 5.11309e-05 -2.72874e-21)
(0.00682095 7.28702e-06 1.80969e-22)
(0.00709052 -1.34896e-05 1.47727e-21)
(0.00835625 -0.000212101 7.20202e-21)
(0.00744615 2.48569e-05 1.45067e-23)
(0.00697366 1.64177e-05 -3.26569e-21)
(0.00754092 7.00766e-05 4.71356e-21)
(0.00733898 9.14102e-06 7.74754e-22)
(0.00756138 -2.09586e-05 4.46363e-21)
(0.00750152 -4.35898e-06 -3.1205e-21)
(0.00708536 -4.83712e-05 7.59352e-22)
(0.00704551 3.22229e-06 -3.98373e-22)
(0.00758845 -4.6412e-06 -3.65069e-21)
(0.00751594 3.92724e-05 -1.24767e-21)
(0.00743771 4.0996e-05 9.80747e-22)
(0.00719298 8.24368e-06 3.07549e-22)
(0.818217 -0.0645166 -3.20548e-21)
(0.892218 -0.0245115 6.82435e-22)
(0.382026 0.242324 -5.87834e-21)
(1.09922 -0.34513 -2.74085e-21)
(0.921815 -0.197761 5.12543e-22)
(0.00272673 1.13566e-05 4.36273e-22)
(0.289961 -0.0698139 -2.03093e-22)
(0.589176 -0.317395 -1.51225e-21)
(0.500418 -0.16875 2.23359e-21)
(1.09108 0.378567 -1.03744e-22)
(0.0788672 -0.00868259 1.28969e-21)
(0.905717 0.194063 -1.52994e-21)
(0.256566 -0.167933 -5.88284e-21)
(0.343728 -0.195439 -3.47874e-21)
(0.774178 -0.0521444 -9.14027e-22)
(0.941972 -0.373494 -1.46123e-22)
(0.0155374 -0.00260771 -4.49886e-21)
(0.169341 0.0984777 -4.19255e-22)
(0.860281 -0.189316 5.7456e-22)
(0.951983 0.385118 -2.60449e-21)
(0.898005 -0.165218 8.11599e-22)
(0.508641 -0.165762 3.83782e-21)
(0.085821 0.0315416 -6.56173e-24)
(1.29903 0.0686444 -3.70481e-21)
(0.826742 0.131308 4.14518e-21)
(0.791352 0.216826 8.50719e-21)
(0.775312 0.136121 -5.50953e-21)
(0.67405 -0.131733 1.05418e-21)
(0.246426 -0.131923 6.31376e-22)
(0.585698 0.1303 8.68613e-21)
(0.068361 0.0401397 4.25238e-22)
(1.31617 -0.147573 -4.13915e-22)
(0.86282 -0.0806805 9.15131e-22)
(0.187603 0.0287305 1.70681e-22)
(0.643108 -0.275123 2.86544e-21)
(0.242366 0.135746 -2.28079e-21)
(1.31196 0.102349 -3.22708e-22)
(0.856113 -0.0401236 8.94307e-23)
(0.950668 -0.0487898 4.53653e-22)
(1.07291 0.0252947 -4.3179e-22)
(0.755456 -0.337529 -3.83644e-21)
(0.228835 -0.125624 -4.88772e-22)
(0.509403 -0.293229 -9.89397e-22)
(0.87098 -0.00138596 -5.58623e-22)
(0.936962 -0.0300845 -3.88113e-24)
(0.0074271 0.000275558 -2.39216e-21)
(0.00787915 0.000105654 1.44051e-21)
(1.01202 0.352016 5.05289e-23)
(1.0417 0.113474 9.79736e-22)
(0.70651 -0.331675 9.16623e-22)
(0.782321 0.388498 -3.93373e-21)
(1.19938 0.222554 3.00789e-22)
(0.0184749 0.00329499 -9.44618e-22)
(0.476814 0.309443 -1.93995e-21)
(1.11429 0.229765 -2.44175e-21)
(0.672296 0.0243244 -6.10533e-21)
(0.129021 0.0100624 1.71928e-21)
(0.557629 -0.299757 -1.8065e-21)
(0.665714 0.328481 -1.2162e-20)
(0.0322121 -0.0183082 -3.78623e-22)
(0.310299 0.244367 -3.84258e-21)
(0.317711 0.178832 1.38671e-21)
(0.740429 -0.0904295 4.39315e-22)
(1.29262 0.126223 -2.60016e-22)
(0.568386 0.046275 -5.40485e-21)
(0.053346 0.0789838 -2.88753e-21)
(0.0343835 -0.0193959 2.04171e-21)
(1.31874 0.0688194 0)
(0.406081 -0.217422 7.13776e-22)
(0.0696391 -0.0410845 -1.28524e-21)
(0.855674 -0.0443181 -2.34628e-22)
(1.06987 0.351219 -1.64532e-21)
(0.558306 -0.298928 2.21239e-21)
(0.784222 0.326236 3.45435e-21)
(0.49491 -0.173606 3.12493e-21)
(1.0437 -0.297809 1.11211e-21)
(0.769458 0.375124 1.71977e-21)
(0.916999 0.404602 8.80378e-22)
(0.0269521 -0.0120619 1.50499e-21)
(0.0450067 0.00141316 2.06114e-21)
(0.341872 -0.227559 2.19885e-22)
(0.0507035 0.0273408 2.722e-21)
(0.0227627 -0.0124695 1.18742e-21)
(1.22942 -0.220014 -5.17188e-22)
(0.892073 -0.019999 8.52009e-22)
(0.997687 0.167712 7.64161e-22)
(0.400786 -0.214463 9.81495e-22)
(0.895421 -0.182791 -1.03648e-22)
(0.914884 -0.0719388 -6.02215e-22)
(0.00738344 1.90685e-05 -1.11908e-20)
(0.00691769 -1.74312e-05 -5.03901e-22)
(0.816389 -0.346035 -2.10585e-21)
(0.927458 -0.0335546 1.03475e-22)
(0.197679 -0.105433 3.8924e-22)
(0.768968 0.129149 -5.78388e-21)
(1.29324 0.0450328 -1.16955e-21)
(1.36147 -0.0114178 -4.7288e-22)
(0.484189 0.305856 -5.12406e-21)
(0.273678 0.227166 -7.22967e-21)
(0.0423704 -9.38841e-05 4.5836e-21)
(0.909672 -0.234012 1.40285e-21)
(0.0434844 -8.57108e-07 1.35732e-21)
(0.228788 0.131043 4.76733e-22)
(0.592914 -0.261134 7.76516e-22)
(0.301118 0.173799 2.72706e-21)
(0.561701 -0.0136516 2.31582e-21)
(0.825843 0.146268 4.84835e-21)
(0.674009 -0.089973 2.13551e-21)
(0.290346 0.170218 -1.04355e-21)
(0.621294 0.328764 -2.96264e-21)
(0.55484 -0.30285 -1.69968e-21)
(0.234944 -0.112481 -3.92562e-21)
(0.0245373 0.000111903 1.35458e-21)
(0.462 0.291048 -8.50748e-22)
(0.807315 -0.0363644 -2.36012e-21)
(0.310797 -0.186024 -5.43412e-22)
(0.784589 0.234726 -3.08102e-21)
(1.28181 0.245651 -7.86277e-22)
(1.18073 0.161539 2.95201e-21)
(0.613707 0.0153748 3.04551e-21)
(1.28927 0.243508 2.15528e-23)
(0.0416602 0.00262424 4.12677e-21)
(0.121353 -0.111912 2.15937e-21)
(0.0377912 -7.14188e-06 1.14301e-21)
(0.332138 -0.115847 -2.02613e-22)
(0.588436 -0.30329 1.95006e-21)
(0.258305 0.150246 -5.09112e-21)
(0.621319 0.327304 -3.75279e-21)
(0.338225 0.176781 3.17465e-21)
(0.892382 -0.00880158 3.01617e-23)
(0.263961 -0.186972 -2.41251e-21)
(0.320286 -0.192721 1.05751e-21)
(0.102345 0.0584752 8.60596e-23)
(0.74372 0.379079 3.00255e-21)
(0.860207 -0.0387387 -2.58589e-22)
(0.884836 -0.0248727 -1.74105e-22)
(0.341915 0.101267 -4.26619e-22)
(0.0883023 -0.0494652 -2.80024e-21)
(0.880612 -0.231373 -2.41351e-21)
(0.895298 0.174959 -1.13008e-21)
(0.121411 -0.00404172 1.87249e-22)
(0.786208 0.133836 4.10631e-21)
(0.263767 -0.176695 3.43878e-21)
(0.224387 -0.128529 7.53795e-22)
(0.712203 -0.310361 1.95876e-22)
(0.93238 -0.0309907 -4.00511e-23)
(1.28982 0.138914 -4.65529e-23)
(1.00333 -0.247673 -9.08804e-22)
(0.83382 -0.0498917 -1.91575e-22)
(0.265915 -0.107473 8.92825e-22)
(0.0912754 -0.0248676 5.20928e-21)
(0.131592 -0.118373 -1.78906e-21)
(1.33806 -0.0113279 -4.62939e-22)
(0.554078 -0.136416 -6.90057e-21)
(0.0653202 0.0368586 6.62188e-22)
(0.0428353 -0.019524 2.97535e-21)
(0.953362 -0.152144 -6.79796e-22)
(1.21507 -0.232576 -2.1414e-21)
(0.962854 -0.108321 6.95241e-22)
(0.872047 -0.249113 1.65358e-21)
(0.713358 -0.10244 -1.67517e-21)
(0.964725 -0.117879 -1.08668e-21)
(0.0357903 -0.0265877 3.92972e-21)
(0.785938 -0.11478 1.51085e-21)
(0.926191 -0.371225 -7.66588e-22)
(1.33898 0.146218 -8.66347e-22)
(0.685794 -0.302798 1.46916e-21)
(0.699532 -0.34339 4.41374e-21)
(0.218563 0.120867 1.93013e-21)
(0.0256881 0.000253521 1.04688e-21)
(0.786066 0.34064 -6.60389e-22)
(0.238538 0.135327 -9.78208e-22)
(1.25165 -0.20155 -7.55125e-22)
(0.762444 0.0769979 3.42062e-21)
(1.22215 0.229361 2.23905e-21)
(0.126869 0.0531774 1.03259e-22)
(0.0446193 -0.00806669 7.744e-22)
(1.22688 0.24522 -2.05768e-21)
(0.038152 0.000845728 -1.05243e-20)
(0.89433 -0.201662 8.12372e-22)
(0.972755 0.073891 -1.05096e-21)
(0.894557 -0.00500393 -3.41885e-22)
(0.884665 0.360116 1.26518e-21)
(0.765503 -0.0379913 5.91156e-22)
(0.929165 -0.0325298 -1.14632e-22)
(0.963259 -0.203269 -6.52481e-22)
(0.0111641 0.00611767 -4.57583e-22)
(0.88092 -0.00787864 -3.68908e-21)
(0.321765 -0.166213 -1.7234e-23)
(0.0230121 0.0001982 -6.03004e-22)
(0.760066 -0.0595301 -3.9613e-22)
(1.18548 0.229058 -3.75563e-22)
(0.802623 -0.0197148 -1.0885e-21)
(0.933251 -0.176622 -4.40129e-22)
(0.00997651 -0.000707644 4.74711e-22)
(0.907666 -0.221152 1.38282e-21)
(0.681574 0.0354875 -1.01565e-21)
(0.843802 0.182393 -7.56624e-22)
(0.0395481 -0.0230602 -1.2186e-21)
(0.0399165 -0.0232174 -4.40277e-22)
(0.743183 0.362023 -2.11644e-21)
(0.344531 0.0364752 -9.47242e-22)
(0.864541 -0.261448 1.36571e-22)
(0.425979 -0.219528 2.16268e-21)
(0.0112667 -0.00099879 3.6418e-21)
(1.15901 0.261509 -9.64884e-24)
(0.75175 0.371828 2.74129e-22)
(0.753009 -0.353788 -1.30278e-21)
(0.0146894 1.7656e-05 4.1714e-22)
(0.950759 -0.0423755 3.63247e-22)
(0.216249 -0.11935 -3.26235e-21)
(0.746774 -0.0670803 -2.67492e-21)
(0.885208 0.0242487 7.07105e-24)
(1.06288 0.312695 -2.79874e-22)
(1.22245 0.27843 -1.92408e-22)
(0.772827 0.119214 7.05487e-21)
(0.938388 -0.350686 -6.91966e-22)
(0.742152 0.258068 -2.74545e-22)
(0.701927 -0.303317 -3.36901e-21)
(0.0445686 1.77292e-05 6.94315e-22)
(1.02511 0.252737 -6.03954e-21)
(1.30449 -0.172312 -1.74878e-21)
(1.08677 0.38072 8.30748e-22)
(0.0348784 -0.000177151 -4.37484e-21)
(1.03767 -0.362777 4.00923e-21)
(1.25512 0.271318 5.03503e-22)
(0.852891 -0.00484468 -1.25016e-22)
(0.612544 0.118744 -9.00196e-21)
(0.0772767 -0.0154331 -4.08927e-22)
(0.0531281 0.0314781 1.21948e-21)
(1.03286 -0.195001 1.25581e-21)
(1.032 0.213433 1.08252e-21)
(0.960527 -0.366914 -1.19468e-21)
(1.27293 0.213034 2.16328e-21)
(0.211132 0.120655 -1.02595e-21)
(1.03336 0.235782 7.49046e-22)
(1.19861 0.308831 8.89078e-23)
(0.369094 0.271527 3.65857e-21)
(1.27699 -0.175697 2.34588e-21)
(0.745679 -0.014804 -1.94383e-22)
(1.11849 -0.234181 -9.2177e-22)
(0.794026 0.326862 3.38341e-23)
(1.26362 0.262705 -5.76706e-22)
(0.0351659 -0.000243216 4.13726e-21)
(0.786594 0.311271 -3.28898e-21)
(0.539711 -0.142315 -6.61641e-21)
(0.906611 -0.0169322 -7.79061e-22)
(1.0439 0.233331 -1.50784e-21)
(0.722786 0.326947 -2.6124e-21)
(0.572847 -0.310901 -3.10314e-22)
(0.744957 -0.332424 -1.52247e-21)
(0.644659 0.33596 2.95458e-21)
(0.764432 0.248949 -1.67103e-21)
(0.321132 -0.163707 -1.97439e-21)
(1.12502 0.245604 1.16631e-22)
(0.211365 -0.035578 1.48751e-22)
(0.609948 0.00629675 3.00292e-21)
(0.57789 -0.316016 9.3898e-23)
(0.774022 0.338504 -5.50179e-21)
(0.927445 0.326876 -4.55963e-21)
(1.27395 -0.168296 -9.01247e-22)
(1.34932 -0.0732165 -2.41162e-21)
(0.869644 -0.0292542 -2.40715e-22)
(1.2226 0.294405 1.10947e-22)
(0.332525 0.244651 -1.15767e-21)
(1.16736 0.257627 -1.72977e-21)
(0.733317 -0.353043 8.33554e-22)
(0.930768 -0.0334311 -6.16951e-22)
(0.0771145 -0.0102745 3.61432e-21)
(0.997719 0.163415 3.46868e-22)
(0.178637 0.0136746 7.80269e-22)
(0.949192 -0.0422176 -4.49008e-22)
(0.740341 0.263916 1.291e-22)
(0.56132 0.325215 -4.47576e-21)
(0.200701 -0.106746 -1.70417e-21)
(0.0146308 1.73732e-05 -7.37876e-22)
(0.0149349 1.57918e-05 -1.55474e-21)
(0.0151084 -7.86256e-05 6.20633e-22)
(0.0147272 0.000266582 1.60221e-21)
(0.0146665 8.35102e-05 -7.46968e-22)
(0.0145852 -8.47667e-07 2.37326e-21)
(0.0142571 -4.02558e-05 -4.90321e-21)
(0.0137969 -6.34229e-05 -2.62263e-21)
(0.0152621 7.49121e-05 -4.28257e-23)
(0.0148668 -2.49703e-05 1.66786e-21)
(0.0142341 3.6738e-05 -1.19305e-21)
(0.0142401 8.44737e-05 -3.42634e-21)
(0.0146518 1.73571e-05 -2.76264e-21)
(0.0147061 -6.69706e-05 -1.19678e-21)
(0.0147442 4.02427e-05 7.17002e-22)
(0.0136148 -0.000121601 3.60205e-21)
(0.0148139 1.68671e-05 2.78581e-22)
(0.0147441 -7.44313e-06 -9.90077e-23)
(0.0140436 -5.18605e-05 2.73254e-22)
(0.0149376 2.72626e-05 -1.46327e-21)
(0.0143407 3.7686e-05 7.46436e-23)
(0.498593 0.0781627 -1.58387e-21)
(1.20595 0.30146 -4.88567e-22)
(0.962053 -0.0919334 1.73123e-22)
(0.014994 -0.000235203 4.0714e-22)
(0.699351 -0.017696 -7.27549e-22)
(1.07553 0.17333 -2.00023e-21)
(0.940366 -0.0396773 -2.51644e-22)
(0.922095 -0.23089 -2.66486e-22)
(1.30913 0.181496 -5.71916e-22)
(0.553195 -0.207975 3.13395e-21)
(0.926795 -0.373212 -5.14836e-21)
(0.838735 0.350726 -6.1132e-22)
(0.38234 0.245539 1.83522e-21)
(0.10984 0.0646925 1.24989e-21)
(0.140684 -0.113524 -3.81532e-21)
(0.930112 -0.355423 3.78071e-22)
(0.922295 -0.0326846 -1.7718e-22)
(0.963502 -0.0901517 2.26508e-22)
(0.161271 0.0937755 -1.4557e-21)
(0.0341787 -0.0155917 -1.13298e-20)
(1.26688 0.222227 -9.44063e-22)
(1.26462 0.0898766 2.53557e-21)
(0.0323203 0.000212363 7.94879e-22)
(1.09094 -0.224865 -8.14004e-22)
(0.00664832 -5.49202e-05 -4.74935e-22)
(0.00644937 0.000113431 -4.38558e-22)
(1.11116 0.243362 8.19584e-22)
(0.968294 0.204578 1.42718e-21)
(0.0375241 6.03264e-05 6.35429e-21)
(0.0385309 -0.000178538 5.29049e-21)
(0.496001 0.198847 -2.49714e-22)
(0.347664 -0.224505 7.94967e-22)
(1.03411 -0.200319 -1.67418e-21)
(0.113091 -0.0839488 2.7876e-21)
(0.130892 -0.0364743 -3.7056e-21)
(0.0390415 -0.0100652 7.43759e-22)
(0.945093 0.203199 5.32277e-22)
(0.85554 -0.0232208 8.84076e-22)
(1.20637 0.215415 -2.78218e-22)
(0.100737 0.0122119 1.59908e-21)
(0.759689 -0.0143375 -1.24342e-21)
(1.09477 0.27526 3.41988e-23)
(0.0454235 -0.0228796 -7.11018e-22)
(0.0369912 5.07786e-05 -2.50735e-21)
(0.0370708 3.57725e-05 1.31779e-22)
(0.478633 -0.247575 7.68469e-22)
(1.11909 0.240577 1.69421e-21)
(0.929624 -0.0599332 -3.23242e-22)
(0.979777 -0.248169 -8.13903e-22)
(0.255081 0.175412 -4.29652e-21)
(0.487965 0.227683 9.12432e-22)
(0.0401545 -0.00387899 -6.09805e-21)
(0.666549 -0.341618 -1.68069e-21)
(1.1899 0.221015 4.87855e-23)
(0.0337207 -0.000171886 2.9729e-21)
(0.00288941 2.17935e-06 1.00836e-22)
(0.941975 0.19537 -9.19619e-22)
(0.271255 -0.169637 -1.6976e-21)
(0.0105207 0.000449413 7.27366e-21)
(0.353823 0.19104 5.80033e-22)
(0.137457 0.111635 -1.53887e-20)
(0.400142 0.0824489 -7.6363e-21)
(0.832613 0.303933 -4.10209e-21)
(0.721393 0.3525 -1.80305e-22)
(0.0329705 0.0478432 -7.18346e-21)
(0.775923 0.262998 2.83191e-22)
(0.960115 -0.0483248 8.5965e-23)
(0.287927 -0.101332 3.7936e-21)
(1.02491 0.265684 3.7327e-22)
(0.169437 -0.0054579 -1.18179e-21)
(0.574845 0.218843 1.6324e-22)
(0.0495131 6.24286e-05 -4.77924e-21)
(0.330506 -0.218629 1.3429e-21)
(0.0671566 0.0389553 1.26145e-21)
(0.819771 -0.00181684 -7.21537e-22)
(0.854461 0.165743 2.93183e-22)
(0.961363 -0.0585767 -4.77978e-22)
(0.0784565 0.0322864 -1.14337e-22)
(0.983558 0.161341 -1.2616e-21)
(0.718916 -0.305319 4.78811e-22)
(0.927596 -0.00412481 -2.65412e-22)
(1.14439 0.179837 -7.56584e-22)
(1.33348 0.0779099 -2.74488e-22)
(0.390672 0.200327 7.44962e-22)
(0.188456 0.109829 1.09071e-21)
(0.828245 -0.0190886 -4.80645e-21)
(0.507611 -0.154006 2.92829e-22)
(0.854016 -0.0656425 6.74763e-22)
(0.251969 -0.101643 1.7263e-22)
(1.16431 -0.308219 2.3553e-21)
(0.706549 -0.318399 9.79777e-22)
(1.23942 -0.165373 -7.39526e-22)
(0.946895 -0.373282 -3.80995e-22)
(0.040935 -0.0234283 8.65527e-24)
(0.350366 -0.211284 -2.77641e-22)
(0.413299 0.234407 1.93243e-21)
(0.213556 -0.122454 -2.21445e-22)
(1.09614 0.305188 -3.03496e-22)
(0.163004 -0.0385095 -3.23844e-21)
(0.867674 -0.241239 1.03294e-22)
(0.115691 -0.0668869 4.65359e-22)
(0.844852 0.173769 2.4024e-21)
(0.267454 -0.144672 4.44006e-21)
(0.777217 0.253333 5.95571e-22)
(0.570888 0.258158 8.32303e-22)
(1.01597 0.393598 -1.10234e-21)
(0.0795038 0.0344945 -3.81811e-22)
(0.576643 0.214696 1.36193e-20)
(0.0412497 -0.0234739 8.75654e-22)
(0.0273817 -0.0108914 -5.54239e-21)
(1.00526 -0.27344 4.37556e-22)
(0.962945 0.370233 -1.27667e-21)
(0.527271 0.160063 -4.28006e-22)
(0.77195 0.219906 -3.44255e-21)
(0.684985 -0.321448 -1.58244e-21)
(0.179975 0.0212608 1.76926e-21)
(0.932686 -0.0650488 -4.89816e-23)
(1.36592 0.0207639 -2.93698e-21)
(0.42568 -0.0888411 3.40629e-21)
(0.492285 0.290994 3.86106e-22)
(1.26743 0.190505 -4.95597e-22)
(0.421715 0.21442 -1.53071e-22)
(0.00257872 -2.58692e-06 1.1585e-21)
(0.948649 -0.0407783 6.15271e-22)
(0.284252 -0.187394 -2.37986e-21)
(0.366328 -0.207424 4.89848e-23)
(0.17679 -0.0158465 2.24395e-21)
(0.158711 -0.0640331 6.88763e-23)
(0.00665513 -0.000103869 -2.15763e-21)
(0.00664885 0.000118696 6.95821e-22)
(1.02451 -0.237734 -1.99705e-21)
(1.14821 -0.312534 -1.08315e-21)
(0.933871 -0.0332924 6.13677e-22)
(0.0919984 0.0543678 -9.44422e-22)
(0.566685 -0.142177 4.82275e-21)
(1.18032 -0.2915 7.72575e-22)
(0.898238 0.401489 2.74919e-21)
(1.00675 0.204217 -4.66689e-22)
(0.42561 0.26949 -2.91336e-21)
(0.381145 0.109922 -4.04777e-22)
(0.231718 0.158477 -9.3517e-21)
(0.500676 -0.217429 -8.15728e-22)
(0.552767 0.247074 -9.09298e-21)
(0.085333 0.0496956 3.25787e-21)
(0.867207 0.303316 -1.9826e-22)
(0.233995 0.189787 2.27865e-21)
(0.931669 -0.0628471 4.99836e-22)
(0.234589 -0.148599 -3.26623e-22)
(0.158041 0.0339146 4.09579e-22)
(0.239045 -0.129762 -1.24219e-21)
(0.377075 -0.212331 2.38504e-22)
(0.951731 0.0171088 -3.64769e-23)
(0.753404 0.0732087 -3.53996e-21)
(0.00631202 -9.15297e-05 -5.06652e-21)
(0.0063513 8.15772e-05 -1.86546e-21)
(1.02352 -0.198658 -7.43374e-22)
(0.0093469 -0.0052373 -5.90068e-22)
(0.767322 0.318073 7.1712e-22)
(0.105643 0.0322116 7.52082e-22)
(0.856738 0.343368 -4.83906e-21)
(0.962626 -0.363894 2.93846e-22)
(0.141239 -0.0821504 -1.30738e-21)
(0.103475 -0.099905 5.41295e-22)
(0.344442 0.257875 5.24278e-22)
(0.973456 0.382885 3.78752e-21)
(0.23587 -0.15368 9.49419e-22)
(0.809004 -0.019324 4.5189e-22)
(0.917865 -0.24264 8.22618e-22)
(1.11311 -0.323858 2.93662e-22)
(0.869478 -0.0188362 6.08636e-22)
(0.354896 -0.120616 1.23503e-21)
(1.07285 -0.229349 -5.83605e-22)
(0.401633 -0.211384 -2.40147e-22)
(0.709998 0.362095 6.28613e-22)
(0.382317 -0.194848 -2.03238e-21)
(0.0588595 0.0763282 1.03238e-20)
(0.899322 -0.0188187 2.98601e-22)
(0.768607 0.315118 -1.52502e-22)
(1.02139 -0.314695 -3.7098e-21)
(0.425532 0.270737 2.69286e-21)
(0.0385221 7.57438e-05 -1.04418e-21)
(0.0385282 -9.77525e-05 1.68465e-22)
(0.656246 -0.0950787 -1.63651e-22)
(0.447565 0.28008 -9.14897e-21)
(0.0247892 -6.00977e-05 7.45248e-23)
(1.118 -0.222502 -3.92589e-22)
(0.822988 0.0971107 1.2934e-21)
(0.133186 0.0782377 -8.51038e-22)
(0.920398 -0.0719821 4.78547e-22)
(0.153404 -0.12919 9.04083e-22)
(0.585578 -0.318817 -8.07568e-22)
(0.458716 0.299403 -4.04727e-21)
(0.993832 0.16125 6.12534e-21)
(1.36606 0.0176579 7.77695e-22)
(0.933103 -0.0608454 -9.41998e-22)
(0.521935 0.319392 9.59422e-22)
(0.718935 -0.316738 -1.77109e-21)
(0.285535 0.157009 1.38464e-21)
(1.23607 0.0581991 1.53891e-21)
(0.62287 -0.304903 3.88704e-22)
(0.760272 0.0255321 1.60903e-20)
(0.8958 -0.0217044 -4.93934e-22)
(1.16024 -0.238079 2.2223e-21)
(0.278432 0.159329 -8.96024e-21)
(1.05674 0.103573 -1.38548e-21)
(0.260366 -0.0424691 4.75071e-22)
(0.951255 -0.351552 4.15912e-21)
(0.1562 0.164449 4.02305e-21)
(0.447774 -0.109859 1.62966e-21)
(0.751027 -0.355249 -2.09961e-21)
(0.932358 -0.0324697 1.48577e-22)
(0.512093 -0.0460929 2.87522e-22)
(0.878822 -0.0516643 -4.93426e-21)
(1.33173 0.101349 -3.49066e-22)
(0.828794 0.206011 9.80237e-22)
(0.590988 -0.171571 -4.65522e-22)
(1.10535 0.34928 -3.56247e-21)
(0.412844 0.0483989 -2.12709e-21)
(0.750904 -0.25917 -1.57461e-21)
(0.915491 0.0442092 -5.97068e-22)
(0.795394 0.196459 -4.12389e-21)
(0.779926 0.0864186 6.88858e-21)
(1.09259 0.230295 2.5779e-21)
(0.575591 0.335809 -3.22337e-21)
(0.81759 0.338347 -6.49954e-22)
(0.0447143 5.98005e-05 -5.91969e-22)
(0.0447323 -7.25734e-05 7.02245e-23)
(0.983526 -0.271528 6.86875e-22)
(0.462089 -0.0571385 1.74609e-21)
(0.866633 0.339484 3.02598e-22)
(1.29682 -0.190589 -5.84163e-22)
(0.911003 -0.124886 1.28228e-21)
(0.685855 -0.183951 -3.84365e-22)
(0.683786 -0.0841417 -5.2442e-21)
(0.22751 0.132582 -2.62824e-21)
(0.869055 -0.331593 -2.61557e-21)
(1.19665 -0.28174 -3.83017e-23)
(0.0629111 0.0373019 -3.20562e-21)
(0.0249125 1.04605e-05 -3.54196e-21)
(0.0248162 0.000124422 -2.28792e-21)
(0.730631 -0.319852 -3.80752e-21)
(0.947129 -0.0405604 -8.55886e-22)
(0.0646457 -0.0156963 4.88664e-22)
(0.934173 -0.0235189 -1.01079e-21)
(1.34811 -0.084016 1.97247e-21)
(0.933949 -0.0301091 6.54714e-22)
(1.12036 0.234037 -1.00028e-21)
(0.047287 -0.0233125 -3.73944e-21)
(0.77027 -0.153323 7.42718e-22)
(0.870333 0.341196 1.1063e-21)
(0.935424 -0.0323354 -6.21551e-22)
(0.935439 -0.0309879 4.45132e-22)
(0.385452 -0.198233 2.54691e-21)
(0.216918 0.12546 -1.20519e-21)
(0.853425 -0.072204 -5.57378e-22)
(1.1364 -0.305618 2.23994e-21)
(0.185047 0.182296 -1.09755e-21)
(0.0830006 -0.056661 9.75893e-22)
(1.21532 0.217013 -2.25951e-22)
(0.0298108 -0.000289493 3.07409e-22)
(0.706644 -0.180037 -2.7579e-21)
(0.879292 0.184702 2.13525e-21)
(1.35428 0.0317136 1.74201e-21)
(0.494358 0.319874 -7.08218e-22)
(0.198606 0.11189 2.48356e-21)
(0.490971 0.316781 5.11384e-21)
(1.29699 -0.18485 -1.8069e-22)
(0.0249215 -1.1112e-05 -3.51822e-22)
(0.0670803 -0.0383443 8.6506e-22)
(0.0389527 -0.000104919 -1.97869e-21)
(0.561467 -0.169531 2.39771e-21)
(0.0945089 0.0423719 -5.60549e-22)
(0.920689 0.157571 -1.52268e-23)
(0.898631 0.307694 6.73825e-22)
(0.922269 0.385978 1.16049e-21)
(0.941017 0.403557 4.81247e-22)
(0.716424 0.355896 1.31471e-22)
(0.0234061 2.56145e-05 -2.83058e-21)
(0.886717 -0.00906973 1.68616e-21)
(0.976218 -0.242991 -1.09281e-21)
(0.715102 -0.076411 -2.07184e-22)
(0.00541977 -0.00326244 1.60991e-22)
(0.271597 -0.189352 4.16463e-21)
(0.0545823 -0.0319406 1.64982e-21)
(1.2419 0.223565 2.98854e-22)
(0.0340574 0.000209615 1.50568e-21)
(1.36514 0.028491 -6.13486e-22)
(0.485856 -0.0402138 1.79913e-21)
(0.351767 -0.214039 2.43721e-21)
(0.00611455 -8.57431e-05 -3.1442e-21)
(0.00620735 7.37143e-05 -4.9503e-22)
(0.0301605 0.0158522 4.25338e-22)
(1.34473 0.143431 -6.21507e-22)
(1.08407 0.268079 -6.33325e-22)
(0.857299 -0.36584 1.16554e-21)
(0.709431 -0.186224 2.35422e-21)
(0.918763 0.0326997 -1.43193e-21)
(0.916606 0.402987 4.67765e-21)
(1.0358 0.317306 -2.79717e-21)
(0.0884693 -0.0512641 -2.25642e-21)
(0.0835426 0.0285085 5.88703e-22)
(0.812601 0.354682 3.14688e-22)
(0.704403 -0.08864 -4.44048e-23)
(0.0484402 0.0518218 7.6965e-21)
(0.784829 -0.012227 -1.10748e-21)
(0.86006 0.37372 -1.74321e-21)
(1.34383 -0.0951372 1.22062e-21)
(0.106731 0.0545107 1.83102e-21)
(0.36849 -0.0594496 4.58835e-23)
(1.15424 -0.222891 3.85037e-21)
(0.114078 0.136092 -7.59133e-21)
(0.440126 -0.098311 -2.47671e-21)
(0.0687454 -0.0429373 1.86748e-21)
(0.95981 -0.0833732 4.76532e-22)
(0.908003 -0.0041985 3.67182e-23)
(0.488666 -0.284973 -9.91417e-22)
(0.0408571 8.94263e-05 -7.78333e-22)
(0.0241383 0.00030636 -5.04508e-21)
(1.14305 -0.319031 -1.64731e-21)
(0.0731816 0.0428582 -2.03935e-21)
(1.34056 -0.0946885 2.03944e-21)
(0.955721 -0.0730877 8.13364e-22)
(1.07195 -0.236677 -1.443e-21)
(0.581133 0.335629 3.84449e-21)
(0.049782 0.0284894 2.09905e-21)
(1.27466 0.25853 1.33602e-22)
(0.949798 0.183328 -8.55597e-22)
(1.28335 0.0711534 -2.33564e-21)
(0.865307 0.196096 2.41383e-21)
(0.484422 -0.178476 1.54269e-21)
(0.921186 0.315311 2.39798e-21)
(0.110689 0.0637314 8.21711e-22)
(1.05459 0.362837 -7.87298e-22)
(0.775707 0.0198527 -5.68713e-21)
(1.18236 -0.235609 2.32691e-21)
(0.963594 -0.0515384 1.50249e-22)
(0.936854 -0.0556467 -1.56672e-23)
(1.01876 -0.277446 -1.90722e-21)
(0.182858 -0.0708669 -1.81597e-21)
(0.20267 0.116158 -2.39243e-21)
(0.59186 -0.309733 -9.89366e-22)
(0.923482 -0.0722594 5.5632e-22)
(0.400257 0.157119 -6.26973e-23)
(0.919703 0.323107 2.01594e-21)
(0.954647 -0.0797033 -9.65313e-22)
(0.0622018 0.0321814 -4.4634e-22)
(0.635736 -0.30676 -2.14535e-22)
(1.33525 -0.105455 -9.05497e-22)
(0.101027 0.0382207 1.97026e-23)
(0.959222 0.398705 4.37348e-21)
(0.659261 0.0438233 5.51189e-21)
(0.700771 0.318126 3.27164e-21)
(1.19874 -0.28813 -3.7704e-21)
(1.28036 0.142336 9.75122e-25)
(0.170208 0.0854472 -7.35798e-22)
(0.766014 0.390934 -5.66933e-22)
(0.246546 0.140152 1.21653e-21)
(0.221571 -0.1171 2.28721e-21)
(0.125442 -0.0335458 -2.04926e-21)
(0.946604 -0.0390761 1.33133e-21)
(0.55353 -0.00766581 3.02078e-21)
(0.785123 0.393187 -3.5587e-21)
(0.418941 -0.26016 2.60594e-21)
(0.925819 -0.00628618 5.27997e-22)
(0.882329 0.376106 -1.26954e-21)
(0.758708 -0.322865 3.7714e-22)
(0.666814 0.345286 -2.27123e-22)
(0.102213 0.109461 -3.20115e-21)
(1.00778 0.394082 3.97646e-21)
(0.923623 -0.363492 1.0786e-21)
(0.911587 -0.0019709 -4.64418e-22)
(0.706114 -0.0229463 7.53403e-22)
(0.230758 0.141283 6.27975e-21)
(0.0744731 -0.0786092 8.27703e-22)
(0.956278 -0.0811844 4.43428e-22)
(0.0408856 -0.000109334 -2.21436e-21)
(0.0408189 2.36138e-05 -4.66835e-22)
(1.33834 0.0227095 1.42615e-21)
(0.0322361 -0.018511 -1.18235e-21)
(0.868125 0.377756 -1.46205e-21)
(0.753183 -0.146244 9.53993e-22)
(0.842136 -0.346543 -4.82275e-22)
(0.0494456 1.51481e-05 -8.58717e-22)
(0.049677 3.07403e-05 4.65973e-21)
(0.0496959 -1.62287e-05 1.43823e-21)
(0.310697 0.234636 6.55096e-21)
(0.98429 0.154833 3.62192e-21)
(1.0918 0.299146 -1.75336e-21)
(0.941388 0.266454 -6.54465e-22)
(0.0668055 -0.0344424 7.88237e-22)
(0.0392718 0.0192022 -4.44211e-23)
(0.96501 -0.107178 -3.16939e-22)
(0.0245842 0.000269516 5.97776e-22)
(1.31318 -0.134319 1.47736e-21)
(0.0174418 9.68978e-05 1.25556e-22)
(1.28562 -0.171277 -2.41911e-21)
(0.991387 -0.269569 2.50282e-21)
(0.397397 -0.201561 -1.21108e-21)
(0.945048 -0.0388324 -1.18248e-21)
(0.0567118 0.0328787 2.10097e-21)
(0.806783 -0.23874 -7.94589e-21)
(0.0398737 -8.52682e-06 -6.54596e-23)
(0.0398264 4.45189e-05 -1.21917e-21)
(0.806067 -0.0107951 3.10958e-22)
(0.107695 -0.0239963 1.71762e-21)
(0.828269 0.166534 -3.83711e-22)
(0.258712 -0.127288 -2.4046e-21)
(0.304702 0.235198 -2.71722e-21)
(0.0406228 -0.000242155 7.20259e-21)
(0.0395399 6.61492e-05 3.49798e-21)
(0.592166 0.0679512 -4.32033e-21)
(1.05255 -0.194996 1.22692e-21)
(0.926292 -0.00891697 -2.3888e-22)
(0.463022 -0.0904641 3.49212e-21)
(0.835214 0.354301 -1.87131e-21)
(0.0416305 4.04726e-05 -4.78089e-22)
(0.78133 -0.326212 3.05123e-21)
(0.92732 -0.0699676 -4.11436e-22)
(0.847552 0.335985 -4.23392e-22)
(0.672079 -0.0338451 1.36892e-21)
(0.981339 0.180106 -1.54255e-21)
(0.00949114 0.00541719 -6.7796e-22)
(0.628633 0.00571061 -1.06927e-20)
(0.0390102 6.62508e-05 1.69799e-21)
(0.0391993 0.000135823 -1.6543e-22)
(0.0899667 0.0512409 2.40388e-22)
(1.24748 0.215022 1.5625e-22)
(0.846729 -0.33753 -2.0214e-21)
(0.0102494 -0.00385012 -2.34745e-22)
(0.0300023 -0.000467666 -3.18007e-21)
(1.22266 0.209058 1.08412e-21)
(0.970045 0.195405 -3.13525e-21)
(0.105216 -0.016021 2.12871e-21)
(0.0684119 -0.0731158 2.17301e-21)
(0.779652 -0.0166979 1.49217e-21)
(0.815237 -0.246347 -3.77045e-21)
(0.477622 0.266582 2.28099e-21)
(0.28936 -0.155615 -3.06356e-21)
(0.689346 -0.0931628 3.29044e-22)
(1.11416 0.346472 2.81487e-21)
(1.2849 0.00684198 2.22039e-21)
(0.521246 -0.136936 2.13826e-21)
(0.753187 0.0914967 -5.07051e-21)
(1.12274 -0.30351 7.81918e-22)
(1.1085 0.357839 3.2154e-22)
(0.48716 0.313612 -1.11562e-20)
(0.135607 0.0678898 2.2902e-21)
(0.924926 0.404557 1.51594e-22)
(1.12283 -0.228204 -7.49862e-22)
(0.743725 -0.356665 -2.59508e-21)
(0.896327 -0.00668392 3.6301e-22)
(0.0149704 -0.000144426 1.38807e-21)
(1.03779 0.215256 -1.06165e-21)
(0.0900023 0.0238347 -8.30666e-22)
(0.0400257 0.021528 9.9832e-21)
(0.0195174 0.00220228 -4.13104e-21)
(0.914876 -0.368714 1.10823e-21)
(0.064367 -0.0704196 3.38377e-21)
(1.26392 0.169122 4.73823e-22)
(0.0241752 -0.000150748 -2.15375e-22)
(0.911499 0.39353 -1.22757e-21)
(0.841161 -0.0410141 -3.61972e-21)
(0.220853 -0.0878853 1.76421e-21)
(0.92877 0.390822 -8.83404e-22)
(0.72822 0.370879 3.99955e-21)
(1.0788 -0.226654 1.29774e-21)
(0.792852 -0.116941 -6.72774e-22)
(0.924634 -0.0703041 -6.79679e-23)
(1.02714 0.199561 2.78226e-22)
(1.11 0.372626 3.08074e-22)
(0.628151 -0.179866 1.80208e-21)
(0.821064 0.381639 1.58683e-21)
(0.763741 -0.334114 1.0078e-21)
(0.906165 -0.00566942 -1.61418e-22)
(0.915545 0.387194 6.6763e-22)
(1.01406 -0.180619 -1.03866e-21)
(0.0134197 9.81399e-05 -1.15704e-22)
(0.942292 -0.0379508 -1.78063e-22)
(0.4065 -0.227454 -1.9898e-22)
(0.597417 -0.309691 -3.56515e-22)
(0.0134756 -7.09268e-05 -3.90427e-22)
(0.819056 0.131998 -5.73228e-21)
(0.50891 0.32509 9.46007e-22)
(0.634309 0.0477153 4.89766e-21)
(0.459011 0.14257 2.20402e-22)
(0.165013 -0.133635 1.07163e-21)
(1.08262 0.300064 2.75556e-21)
(0.895608 -0.201721 -6.94158e-21)
(0.0405325 6.14448e-05 -2.34189e-21)
(0.0405554 -7.40633e-05 5.28089e-24)
(1.11601 -0.295464 -2.14995e-21)
(0.231315 -0.115209 8.09187e-22)
(1.0262 0.212108 1.16637e-21)
(0.848018 -0.0149601 -2.08078e-22)
(0.907549 0.0665507 7.98175e-22)
(0.0607007 0.0363958 2.78702e-22)
(0.0992236 0.0075754 1.49709e-21)
(0.690965 -0.287135 3.59717e-21)
(0.384411 0.0529197 6.42483e-22)
(0.910689 -0.0693294 5.55428e-22)
(0.696024 -0.218305 2.66534e-21)
(0.29937 0.17119 -3.50278e-22)
(0.870762 -0.0652635 1.36302e-24)
(0.811465 -0.0554784 1.88679e-21)
(0.783782 0.334083 3.65673e-21)
(1.20525 0.310773 -1.03068e-22)
(1.05844 0.370048 -3.27276e-22)
(0.961748 -0.0839271 -3.03552e-23)
(1.0583 0.362078 1.67504e-21)
(0.290299 -0.176723 4.55315e-22)
(0.403705 0.260038 5.61894e-21)
(0.0604611 -0.0347925 3.52348e-22)
(0.51073 -0.19255 2.46893e-21)
(0.0679196 0.0382549 3.7758e-22)
(0.497812 0.0946297 -1.5462e-21)
(0.0687134 -0.0193526 -4.61406e-21)
(0.483766 -0.161896 -2.41133e-22)
(0.0228922 -0.000391806 7.26317e-22)
(0.359071 -0.230614 1.27453e-21)
(0.0388901 0.0181048 -8.28958e-22)
(0.554524 0.231551 -6.18047e-21)
(1.11866 0.369651 -4.10915e-22)
(0.79405 0.22792 -1.55878e-21)
(0.551966 -0.134578 -1.00774e-21)
(0.78429 -0.0703207 5.75278e-21)
(1.02588 -0.194218 -2.29061e-22)
(0.94454 -0.037272 4.57667e-22)
(0.936864 -0.0331183 -6.17594e-22)
(0.962082 -0.055686 -4.94171e-22)
(0.993602 -0.170511 -6.64328e-22)
(1.27101 0.0633878 4.40113e-21)
(1.19461 -0.138473 5.26034e-22)
(0.921051 0.391614 9.4032e-22)
(0.976052 -0.167406 -2.08754e-21)
(0.316032 0.187232 8.48097e-21)
(0.666444 0.346684 8.50416e-22)
(0.461333 0.303204 -5.86678e-21)
(0.979879 -0.237018 8.31238e-22)
(0.434983 0.24599 -2.68299e-22)
(0.933441 -0.374314 4.25682e-22)
(0.426112 -0.222138 -1.54509e-21)
(0.621212 -0.325644 1.98181e-21)
(0.791591 0.388065 -2.1505e-22)
(0.0622351 -0.0356887 -3.06053e-21)
(0.0477784 -0.0147684 -3.73445e-21)
(0.832591 -0.340038 3.08927e-21)
(0.907079 -0.0134874 -5.20277e-22)
(0.745455 -0.027485 -1.0047e-21)
(0.767569 -0.0577728 6.31553e-22)
(0.782525 -0.0224094 8.30504e-25)
(0.308506 0.181494 2.98553e-21)
(0.907087 -0.00774737 -6.53211e-23)
(0.938488 -0.0453967 -3.63077e-22)
(1.13195 0.363463 -3.53699e-23)
(1.24723 0.281231 4.26764e-22)
(0.00241674 -5.20525e-06 4.7069e-21)
(0.396894 0.116403 -1.13006e-20)
(0.438683 -0.0857192 1.11404e-21)
(0.537869 -0.126441 1.35394e-21)
(0.359848 0.182145 -6.74445e-22)
(1.24766 0.243145 -3.21094e-22)
(0.106769 -0.0617013 -4.77215e-22)
(0.765986 0.0188705 -7.13056e-21)
(0.936938 -0.0467069 -5.68153e-22)
(0.966799 -0.12769 -9.37888e-22)
(0.523684 -0.199854 -3.39608e-21)
(0.0839978 0.0498179 6.77075e-22)
(1.16382 0.233119 -6.08423e-25)
(0.225766 0.0951593 -1.27084e-22)
(1.00301 0.349341 -3.29069e-21)
(0.656769 -0.200397 -2.57196e-21)
(0.929871 -0.0512318 3.79661e-22)
(0.263768 -0.172727 1.86822e-21)
(0.994233 0.150157 3.59898e-21)
(1.21958 -0.16502 7.60877e-22)
(0.847632 -0.26212 -1.25956e-21)
(0.952801 -0.354991 1.98135e-21)
(0.725013 -0.057105 6.37163e-23)
(0.968556 -0.0963954 -6.99062e-24)
(0.828729 -0.326493 -4.17888e-21)
(1.01752 -0.17277 -3.63624e-22)
(0.134375 0.0780795 8.09222e-22)
(0.749009 -0.1731 4.41393e-22)
(0.937694 -0.0487222 -5.9992e-22)
(0.521833 -0.150928 -1.67671e-21)
(0.836478 -0.00136876 -5.41523e-24)
(0.388894 0.197743 1.69303e-22)
(0.656508 -0.32457 4.70238e-22)
(0.371851 0.193718 -6.55311e-22)
(0.0100518 0.005458 1.80953e-21)
(1.34892 0.0193198 -2.78247e-21)
(0.219932 -0.111725 1.36289e-22)
(0.0858494 -0.0554628 4.14848e-22)
(1.30836 -0.171366 2.84787e-21)
(0.234687 -0.100168 1.37291e-21)
(0.930202 -0.00349232 -1.58062e-22)
(0.21672 -0.0900472 3.99427e-21)
(0.910294 0.297939 5.67174e-22)
(0.896806 -0.01899 -3.36531e-23)
(0.616713 -0.317207 1.11337e-21)
(0.830969 -0.34444 -1.60076e-22)
(0.445718 0.291257 -1.6439e-21)
(0.0240185 0.000132513 -7.96761e-22)
(0.117053 0.0737885 -1.80387e-22)
(1.02924 0.380734 1.63525e-21)
(0.81504 0.211268 1.82421e-22)
(0.0446755 -0.0250702 -2.7584e-21)
(0.868972 -0.012721 4.57312e-22)
(0.218543 -0.110209 -2.622e-21)
(0.0162306 0.0136811 -5.16742e-21)
(1.35806 -0.010875 1.10483e-21)
(0.967403 -0.0497624 -2.83449e-22)
(0.0377612 0.0163265 2.06743e-22)
(0.718375 0.354767 3.95575e-21)
(0.882904 -0.0426662 -8.70118e-22)
(0.797382 0.32074 -2.80128e-23)
(0.00921691 0.00538338 1.42273e-21)
(0.113987 -0.0657996 -1.40474e-21)
(0.0378275 -0.000219862 1.90026e-21)
(0.0242586 5.37786e-05 -2.22705e-21)
(1.00238 0.09538 4.14049e-22)
(0.89061 0.379806 -5.77926e-22)
(0.0329332 -0.019117 2.31713e-21)
(0.283513 -0.148935 1.3587e-21)
(1.04699 0.244188 1.90697e-21)
(0.0368571 -0.000134813 -7.37758e-21)
(0.88763 0.370771 7.69508e-22)
(0.920761 -0.0659669 3.21367e-23)
(0.0480943 0.0287732 -2.97973e-22)
(0.0704462 0.100373 4.23093e-21)
(0.334572 0.172999 -2.71795e-22)
(0.931876 0.399229 2.51589e-21)
(1.07581 0.3429 3.36724e-21)
(0.741506 -0.323436 3.18167e-22)
(0.913422 0.310758 3.49192e-23)
(0.114003 -0.0321819 2.0679e-22)
(1.04374 0.380737 2.80238e-21)
(0.773793 0.230983 4.83586e-21)
(0.0307548 0.0148377 -1.20272e-21)
(0.981796 -0.371958 -9.29001e-22)
(0.87415 -0.00543561 3.63234e-22)
(0.40342 0.208119 -8.8264e-22)
(0.807628 0.194164 3.75601e-21)
(0.825535 0.152589 1.65628e-21)
(0.922645 -0.00678011 5.76166e-22)
(0.387776 0.194124 1.09159e-21)
(0.540218 -0.305295 1.37393e-21)
(0.29104 0.21971 -3.52022e-22)
(0.143374 0.0430577 1.70827e-22)
(1.11027 -0.232461 5.53725e-22)
(1.2851 0.207894 -6.07176e-22)
(1.23137 0.210493 -1.20357e-21)
(0.0868084 0.0523941 1.21106e-21)
(0.733339 -0.319048 -5.40538e-22)
(0.389004 -0.206418 -1.42735e-21)
(0.799051 0.123194 -7.04882e-22)
(0.0340684 9.40765e-05 -2.6077e-21)
(0.0495918 -9.51088e-06 2.07961e-22)
(0.0495415 6.94722e-06 -1.91342e-21)
(0.942478 0.0647699 -1.31446e-21)
(0.541919 0.00389177 1.80226e-21)
(0.0302235 -0.0175023 -5.78194e-22)
(0.0388154 -0.000123202 3.56342e-22)
(0.775805 0.392965 4.57642e-22)
(0.340282 0.0402725 3.2321e-22)
(0.176846 0.0855028 -1.28189e-22)
(1.09746 -0.234666 1.09446e-21)
(1.09922 0.359993 5.35303e-22)
(0.921232 0.289429 1.99576e-21)
(0.902214 0.176499 1.44999e-21)
(0.708282 -0.199632 -7.22817e-22)
(0.695401 -0.176602 -1.70692e-21)
(0.744494 -0.312378 -2.75005e-21)
(0.0444274 5.03168e-05 1.40223e-21)
(0.58307 -0.00318154 -1.73999e-21)
(0.873736 -0.0889347 -1.334e-21)
(0.613611 -0.318339 -6.0079e-22)
(0.928366 -0.00149821 2.92891e-22)
(1.14441 -0.325923 2.40378e-21)
(0.861902 -0.0876309 2.947e-22)
(1.19537 -0.286118 1.33245e-21)
(0.373992 -0.0651981 -5.21276e-21)
(0.939429 -0.179314 -8.71508e-22)
(0.879363 0.283853 -2.74742e-24)
(0.883077 -0.245121 -1.36682e-21)
(0.860115 -0.0726291 8.75348e-22)
(0.980681 0.0499782 -3.98781e-21)
(0.912883 -0.0674235 -7.4313e-22)
(0.904851 0.285072 9.49799e-22)
(0.900435 -0.0200841 -6.15143e-22)
(1.17935 -0.244866 -3.33918e-21)
(0.719313 -0.338749 -4.91507e-22)
(0.0371179 0.0170111 3.69999e-22)
(0.848389 0.333404 -3.88037e-22)
(0.787582 -0.137693 -3.13595e-22)
(0.0416245 0.000116389 -2.70336e-21)
(0.0416989 -0.000156818 -3.05221e-22)
(0.519171 -0.187513 1.35898e-21)
(0.595923 0.209683 -9.70826e-21)
(0.8479 -0.332667 -2.24876e-22)
(0.423974 0.0662408 1.08553e-21)
(0.0341515 2.6919e-05 -1.03643e-21)
(1.18146 -0.30114 -1.12415e-21)
(1.09867 0.355472 5.9729e-22)
(0.899837 -0.0226011 1.99085e-21)
(0.468856 -0.170322 3.48843e-21)
(0.559877 -0.286074 -5.6853e-22)
(1.04395 0.207052 2.47075e-21)
(0.652706 -0.273534 -1.85226e-21)
(1.00898 -0.367425 -1.56011e-21)
(0.894436 0.186609 8.98785e-22)
(0.913915 -0.0125176 1.72418e-22)
(0.73754 0.380532 5.06126e-21)
(0.94209 -0.0418475 -7.71534e-22)
(0.128994 -0.109841 -5.56521e-22)
(1.05846 -0.32765 -1.32252e-21)
(0.925758 -0.370984 -1.2028e-21)
(0.0378297 -0.0161436 7.21301e-21)
(0.65899 0.00457873 4.32466e-21)
(1.24841 0.213084 7.09277e-22)
(0.703103 -0.0323098 1.00304e-21)
(1.28307 0.0203554 -5.65667e-22)
(1.26452 0.18489 5.62359e-22)
(0.624742 -0.0206043 4.3932e-22)
(0.361899 0.184627 -8.77407e-22)
(0.196694 0.0983597 -3.00114e-22)
(0.0069845 -0.00362714 1.46571e-21)
(0.366673 -0.238143 -3.22175e-22)
(0.813446 0.127099 -6.15961e-21)
(0.652755 0.320565 1.28807e-20)
(0.767493 -0.043119 5.65654e-21)
(0.98275 -0.288089 -1.18338e-21)
(0.0407424 0.000175865 -2.95902e-21)
(0.877966 -0.368512 5.52375e-22)
(0.814794 0.172596 -8.70304e-24)
(0.335445 -0.0441407 -3.60128e-22)
(0.888127 -0.0285535 -1.24044e-21)
(0.94458 -0.184928 6.41879e-22)
(0.0613305 -0.0345041 2.04212e-21)
(0.963409 -0.1117 5.00569e-22)
(0.880009 -0.0443703 -7.6899e-22)
(1.26522 0.265837 3.61927e-22)
(1.0076 -0.295475 -6.41007e-22)
(0.784548 0.10382 1.70932e-21)
(0.312284 -0.189162 -9.86181e-22)
(0.994204 0.157286 -3.10131e-21)
(0.66244 -0.340497 2.62456e-22)
(0.915386 -0.0140412 -3.13372e-24)
(1.06062 0.345378 3.08467e-21)
(0.539202 0.317824 -2.07859e-21)
(0.988741 0.148894 -3.09518e-21)
(0.0190484 -0.0022009 -2.86236e-21)
(0.957628 -0.0654359 -2.66393e-22)
(1.11639 0.351206 1.72172e-23)
(0.96628 -0.0481744 -7.5184e-22)
(0.974342 0.370125 1.69833e-21)
(0.959087 -0.0679017 -1.55344e-22)
(0.818358 0.164162 1.26564e-21)
(1.01548 0.0219192 6.54521e-21)
(1.04742 -0.330979 2.05311e-21)
(1.00994 0.195061 2.57232e-21)
(1.28303 0.247965 -2.1935e-22)
(1.15548 0.352863 -1.00968e-21)
(0.908913 0.372274 2.46097e-21)
(0.774183 -0.322726 -3.92678e-21)
(0.391596 -0.07786 2.56623e-21)
(1.1406 -0.210651 -6.90005e-24)
(0.478021 0.301254 1.0736e-21)
(0.285083 0.165943 1.84871e-21)
(0.811123 -0.110271 -9.74986e-23)
(0.67412 -0.0247192 1.00682e-21)
(0.915783 -0.169387 -8.41214e-22)
(0.024343 0.000521496 -2.49727e-21)
(0.887202 -0.0340176 2.29909e-22)
(0.0930536 0.052202 2.12546e-21)
(1.05667 -0.357805 -1.41822e-21)
(0.0693965 0.0508898 6.47052e-21)
(1.21615 -0.128499 1.7871e-21)
(0.0464524 0.000122808 -1.69508e-21)
(0.0464695 -0.000147081 -9.96209e-23)
(0.763963 0.00914556 -1.01559e-21)
(0.08075 0.0864239 2.4975e-21)
(0.0713442 -0.0394935 1.63703e-21)
(0.0530159 0.0308226 8.94003e-22)
(0.884843 -0.00507625 5.82358e-22)
(0.808551 0.348958 -4.14973e-22)
(0.664415 -0.0189951 -1.08697e-21)
(1.36467 0.0104848 2.22618e-22)
(0.917425 -0.0135259 -3.27348e-22)
(1.25252 0.197637 7.00049e-23)
(1.16831 -0.238679 2.13717e-21)
(0.383787 0.115884 -3.69573e-22)
(0.513433 0.324716 -5.27899e-21)
(0.0285256 -0.00586113 -1.42554e-20)
(0.00877343 0.00482302 -1.25671e-21)
(0.723218 -0.00228948 8.72056e-22)
(0.654722 0.335838 -1.02597e-20)
(1.33692 -0.0835509 2.69101e-21)
(0.415756 -0.0430658 -8.93334e-22)
(0.263155 -0.158233 2.30236e-21)
(0.937628 -0.368638 -4.02503e-22)
(1.25197 -0.106567 9.2996e-22)
(0.88548 -0.0296236 -4.5574e-22)
(0.879787 -0.047641 3.99308e-22)
(0.0528224 -0.0191272 -2.08929e-22)
(0.927681 0.377626 2.07365e-21)
(1.27457 0.225528 4.46524e-22)
(0.903004 -0.0196769 3.7088e-22)
(0.319049 0.246055 -1.25524e-21)
(0.0178224 0.000205188 1.78192e-22)
(0.0535926 -0.0303918 3.90584e-21)
(0.0173349 0.000196582 -5.74473e-22)
(0.897164 -0.0231074 -2.52909e-22)
(0.909956 -0.1879 -4.94832e-22)
(1.14482 0.354174 2.29229e-22)
(1.04062 0.331754 -3.0333e-21)
(0.963086 -0.0819545 1.53242e-22)
(1.01999 0.210603 3.27984e-21)
(0.0597439 0.0344358 -1.45198e-21)
(0.321861 -0.196129 -2.16352e-21)
(0.0401315 0.00293052 -8.95808e-22)
(1.27542 0.189958 1.96221e-22)
(0.0992645 0.123936 -5.48321e-21)
(0.967405 -0.109073 -2.86173e-22)
(1.00402 -0.182841 2.97909e-22)
(1.21502 -0.116364 3.02372e-21)
(0.896621 -0.0257917 -3.24117e-22)
(0.075426 0.0777914 -7.69631e-21)
(0.143801 -0.0827374 -2.84459e-21)
(0.493354 0.315566 -1.54469e-22)
(0.746048 0.0430078 -9.96501e-21)
(0.0874529 0.0517931 -3.24752e-21)
(0.425291 0.216993 -1.43476e-21)
(0.983866 -0.156995 1.03292e-21)
(0.445068 0.28334 1.32288e-21)
(0.753639 -0.0397318 -6.08144e-22)
(0.858116 -0.251549 -9.76869e-22)
(0.858323 -0.0627789 -8.41728e-22)
(0.6409 0.302957 -9.08662e-22)
(0.454058 -0.0691226 -9.00463e-22)
(0.420808 -0.0469676 -5.77986e-21)
(0.619874 -0.0382278 -2.06941e-21)
(0.900535 -0.0166028 3.62725e-22)
(1.10523 0.265993 1.8606e-22)
(0.0410653 -1.93703e-06 -6.42949e-21)
(0.0411823 0.000123312 -1.45163e-22)
(0.0410844 -3.80122e-05 3.42076e-21)
(0.460566 -0.0500455 -9.56487e-22)
(0.40695 0.211472 1.9879e-22)
(0.91284 0.380607 2.12721e-21)
(0.0232671 2.31828e-05 -1.239e-21)
(0.925298 -0.0664773 -4.06346e-22)
(0.0155185 -3.44387e-05 -2.24992e-21)
(0.0140168 0.000132208 -2.84411e-21)
(0.0139765 6.01823e-06 3.98081e-21)
(0.862763 -0.241164 1.9939e-21)
(0.504167 -0.000109703 -5.00078e-21)
(0.11547 0.106483 4.00679e-21)
(0.0154924 -0.000413604 -1.8279e-21)
(1.10122 -0.339246 3.46808e-21)
(0.977836 -0.371996 2.18061e-21)
(0.504331 0.316575 7.23676e-21)
(0.384555 0.190339 1.80281e-21)
(0.846878 -0.251453 -9.39236e-22)
(0.0173241 -0.000300495 6.31977e-21)
(0.887425 -0.00671259 1.77339e-22)
(1.11172 -0.31546 -1.11459e-21)
(0.185125 -0.0991048 -5.25097e-21)
(0.261177 -0.14309 1.98547e-21)
(1.01067 -0.279113 2.27569e-21)
(0.113077 -0.0967311 2.49719e-21)
(0.911961 0.291856 -7.96198e-22)
(0.857647 -0.258553 1.43275e-21)
(0.307259 -0.158693 -2.08102e-22)
(0.873753 -0.0849639 8.75675e-22)
(0.754747 0.368266 -2.13525e-21)
(0.0295276 -0.000227777 -1.72916e-21)
(0.0449094 -0.000253617 -3.79402e-21)
(0.0444154 -2.68073e-05 -6.9136e-21)
(0.0438735 -0.0247612 -1.34302e-21)
(1.0986 0.17193 -1.07508e-21)
(0.923724 -0.0684116 -8.44875e-23)
(0.615546 0.0284732 -4.33796e-21)
(0.566031 -0.287898 4.92061e-21)
(0.772444 -0.131775 -1.01945e-21)
(1.14127 0.359708 -8.01596e-23)
(0.0420032 0.000121592 8.27989e-22)
(0.041971 -0.00011762 4.15545e-21)
(0.0606662 0.0363799 2.18596e-21)
(0.872961 -0.0102272 -6.27449e-22)
(1.05962 -0.355769 4.65805e-21)
(1.25485 -0.154941 -3.23076e-21)
(0.672164 0.310027 -8.81802e-22)
(0.881029 -0.0945255 -1.97966e-22)
(0.0456495 0.000832617 -2.52568e-21)
(0.869119 -0.0792113 1.02705e-22)
(0.846226 0.33918 -5.65547e-22)
(0.466274 -0.0821666 -2.27999e-21)
(1.02802 0.355676 -2.60033e-23)
(0.117175 0.00142028 -3.73031e-21)
(0.705776 0.376143 2.19754e-21)
(0.686028 -0.289117 -1.97456e-22)
(0.777595 0.203354 -1.09406e-21)
(0.965839 -0.0514501 -6.58203e-22)
(0.91836 -0.0214511 -3.15594e-22)
(0.0157459 -0.00058887 -8.30992e-21)
(1.02052 -0.288778 -2.14226e-21)
(0.887864 -0.0917109 1.12284e-22)
(1.17417 -0.232998 -2.74592e-21)
(0.633119 0.322561 -6.01742e-21)
(0.0436955 -0.0255015 -5.90965e-21)
(0.963971 -0.0619691 5.46479e-22)
(0.778682 0.169931 3.84337e-22)
(0.414706 0.207167 -2.56767e-21)
(0.380238 -0.0699399 -1.03008e-21)
(0.819951 0.331231 -2.97175e-22)
(0.513454 0.326468 1.51784e-22)
(0.909934 -0.018037 -1.65199e-22)
(0.895235 -0.00905625 -3.51613e-22)
(0.78167 0.202996 -2.00649e-21)
(0.863797 -0.0194692 4.73329e-22)
(0.0388035 0.000383618 1.87846e-21)
(0.0386164 4.65601e-05 -9.65596e-22)
(0.0386432 -0.000112932 4.42254e-22)
(0.860986 -0.052407 2.90015e-22)
(0.0342038 -4.05489e-05 3.29535e-21)
(0.865068 -0.0469306 4.22072e-22)
(0.219671 0.122412 9.9333e-22)
(0.0986513 -0.0112668 -3.36803e-21)
(0.543265 -0.278316 -2.96507e-21)
(0.924184 -0.0156002 -1.02853e-22)
(0.010584 0.00557026 -3.76529e-23)
(0.427483 0.203066 -6.56415e-22)
(0.0181396 -2.8707e-05 -3.7821e-22)
(0.0177684 0.000272331 -7.49119e-22)
(0.0173397 -6.12552e-05 -2.45837e-21)
(0.397865 0.0655056 3.73081e-23)
(0.992355 -0.253086 5.10708e-22)
(1.1351 -0.238107 7.06584e-21)
(0.550196 -0.309134 2.81488e-21)
(0.880389 -0.0321214 1.17591e-21)
(0.0173743 0.000103456 -2.41988e-24)
(0.0184356 -0.000491764 4.29432e-21)
(0.961743 -0.0609616 -2.99295e-22)
(0.635256 0.331088 1.11255e-21)
(0.710827 0.361462 -1.28647e-21)
(1.12295 -0.318482 2.99027e-22)
(0.715453 -0.173926 -1.40052e-21)
(1.01698 -0.309391 -3.44855e-21)
(1.25456 0.187355 -3.31941e-22)
(1.09507 0.261642 4.05228e-22)
(0.58375 -0.304133 1.76765e-21)
(0.0774968 0.0298447 5.62529e-23)
(0.864769 -0.0508734 -8.80617e-22)
(1.32626 0.0972715 4.85964e-23)
(0.308898 -0.105397 -2.60095e-21)
(0.935495 0.380968 -2.79832e-21)
(0.994687 0.273087 1.50601e-21)
(0.0444261 -0.0526052 2.05627e-21)
(0.833293 -0.236811 2.88527e-21)
(0.0428525 0.0128788 -8.78488e-21)
(0.91175 -0.0720142 5.05138e-22)
(0.974096 -0.287945 7.06371e-22)
(0.411031 -0.0674342 2.90294e-21)
(0.0467648 6.61166e-06 2.01484e-21)
(0.0573298 0.0313588 -2.05638e-21)
(0.0535518 -0.0324587 2.44942e-21)
(0.323343 -0.157213 2.1984e-21)
(1.10339 0.252398 4.69718e-21)
(0.0470263 0.0277696 -4.66035e-21)
(0.938157 -0.0351438 5.60694e-23)
(0.558793 0.328755 1.37546e-21)
(0.667154 0.311827 -8.41154e-22)
(1.08919 0.35681 2.05573e-22)
(1.10043 0.260513 1.94898e-21)
(0.426629 0.13936 1.091e-21)
(0.798656 0.200584 -2.37825e-21)
(0.0330839 0.000405841 -2.82164e-21)
(0.0281246 0.000117805 -6.73856e-23)
(0.965119 -0.121379 5.12174e-22)
(0.226236 -0.128457 7.77179e-22)
(1.17196 -0.296189 -3.2519e-21)
(0.930263 -0.0563775 -7.50632e-23)
(0.959567 -0.0907734 6.11875e-22)
(1.03868 0.237162 -7.36227e-23)
(0.352739 -0.227785 -1.13837e-21)
(0.0930758 0.039339 9.25851e-23)
(0.884029 -0.0912695 -7.22082e-22)
(0.0236796 -8.34164e-05 -2.35659e-21)
(1.04111 -0.32845 3.46675e-21)
(1.11969 -0.310806 1.93834e-21)
(0.792444 0.197821 7.74188e-22)
(1.1069 -0.322911 -3.42161e-22)
(0.899751 -0.00881346 4.69475e-22)
(0.953621 -0.0735922 2.32746e-22)
(0.409329 -0.229694 -5.61662e-22)
(0.268065 -0.141594 -3.71518e-22)
(0.0405097 5.28361e-05 1.0914e-21)
(0.0401664 8.93773e-06 2.06631e-22)
(0.0404057 -7.33879e-05 -1.32532e-20)
(0.0404071 4.39772e-05 2.29851e-22)
(0.798564 -0.111714 7.88086e-22)
(0.924 -0.237631 -3.39051e-22)
(0.0811106 0.041359 -9.78112e-22)
(1.25219 0.0672489 -8.90149e-22)
(0.990895 0.151683 2.6517e-21)
(0.0383526 6.71131e-05 1.33083e-20)
(1.00478 -0.257718 8.2175e-22)
(0.9574 -0.0672799 7.16132e-22)
(0.851045 -0.0789163 1.13941e-21)
(0.988427 0.373045 -1.57396e-21)
(1.06826 0.00493655 1.11061e-21)
(0.904821 0.377532 -4.89865e-21)
(0.0408513 5.08657e-05 2.02295e-21)
(0.0408392 -9.54706e-05 -2.85747e-22)
(0.800861 -0.319974 1.87478e-21)
(0.0137486 -0.00403052 6.62175e-22)
(0.292616 0.171854 1.98341e-22)
(0.999411 0.359516 -8.60048e-22)
(0.0830025 -0.0554186 1.44496e-21)
(0.00803955 -0.00377669 -4.2645e-21)
(1.34169 -0.084837 -6.44433e-22)
(0.521341 -0.0976473 -8.32475e-23)
(0.0171912 -2.80898e-05 -3.42672e-22)
(0.75347 -0.0181124 7.83759e-22)
(0.00812262 -0.003223 3.8052e-21)
(0.580906 -0.0233586 4.66351e-22)
(0.0277412 -2.41328e-05 1.87933e-22)
(0.72524 -0.17927 -1.65012e-22)
(0.0173367 0.000205358 -1.33549e-21)
(0.556654 0.330146 -4.95408e-21)
(0.544393 -0.293688 -2.11757e-22)
(0.966192 -0.0494212 1.38831e-23)
(0.935196 -0.348108 5.10659e-22)
(1.24033 0.288708 1.33125e-22)
(1.00021 -0.252483 -4.90636e-22)
(0.90053 -0.184478 2.70699e-23)
(0.212665 0.106368 -7.08391e-23)
(0.38862 -0.209054 2.35938e-21)
(0.945989 0.0528105 1.3084e-21)
(0.860572 -0.197077 4.06971e-21)
(1.29072 0.240473 -2.98079e-22)
(0.0827159 -0.0242582 3.24319e-21)
(0.0711688 0.0301532 1.22198e-22)
(0.859754 0.295987 -2.2245e-21)
(0.998804 -0.285924 -3.98603e-22)
(0.00819129 0.00482552 1.60975e-21)
(0.0366278 -0.0081357 -1.43314e-21)
(1.2151 -0.262878 -1.50377e-21)
(0.0139675 4.81627e-05 -7.95806e-22)
(1.23453 -0.130614 3.21641e-21)
(0.270819 -0.144641 -7.44603e-22)
(1.23683 -0.104693 -1.09108e-21)
(0.539431 -0.0831891 -2.44372e-22)
(0.878623 -0.338018 5.81947e-22)
(0.412567 -0.0696374 5.87535e-21)
(0.80347 0.184937 -2.38459e-22)
(0.341568 -0.114684 1.54605e-21)
(0.00666225 -0.00352722 1.81331e-22)
(0.124769 -0.0962325 -1.73297e-21)
(0.0211194 -2.35084e-05 1.9672e-21)
(1.19188 0.234274 2.42215e-22)
(0.0785064 0.0413493 1.06648e-21)
(0.868124 -0.0855207 1.57844e-21)
(0.537007 -0.0957925 3.89681e-22)
(0.422155 0.0883184 -5.2013e-21)
(0.569742 0.188947 5.10727e-21)
(0.460298 0.295701 -1.05281e-21)
(0.0897697 0.0528223 -4.27129e-21)
(1.09117 0.254466 1.50034e-22)
(0.076687 -0.012078 -1.4154e-22)
(0.277348 -0.151371 1.55223e-21)
(1.32001 0.11631 1.98844e-23)
(0.73955 -0.356918 5.3781e-22)
(0.785702 0.0957489 2.25497e-21)
(0.573311 0.00208442 1.35366e-21)
(0.928642 -0.003224 1.04057e-21)
(0.210302 0.121651 2.14378e-21)
(0.931614 -0.373759 1.43188e-21)
(0.0207736 8.2077e-05 -4.79949e-21)
(0.966207 -0.111988 1.83733e-22)
(0.893604 -0.0219436 -8.69009e-22)
(0.954887 -0.373045 1.24597e-21)
(0.0381537 0.000198303 -1.96837e-22)
(0.928876 -0.0172882 1.60313e-22)
(0.689022 0.352771 2.2835e-21)
(0.792702 0.348908 -2.61296e-21)
(0.0640759 -0.0373708 -1.72615e-21)
(0.182532 0.10534 2.26553e-21)
(0.0171763 -2.65468e-05 9.66643e-22)
(0.062355 0.0380149 -2.46326e-21)
(0.0173719 8.43962e-05 5.30142e-21)
(0.017171 0.000266598 1.04281e-21)
(0.0320593 -0.000192432 1.18574e-21)
(0.0134785 -6.70556e-09 -3.70089e-22)
(0.957619 -0.274796 3.43393e-22)
(0.869567 -0.0895946 -2.22001e-22)
(0.0896447 0.000732647 3.02378e-21)
(0.642563 -0.335534 1.04144e-21)
(1.02791 -0.20328 -4.28226e-22)
(0.0249475 -0.00123505 -2.67516e-21)
(0.299229 0.191498 6.73779e-22)
(0.960437 0.387304 -1.70541e-21)
(0.0175715 0.000142223 -2.6899e-21)
(0.0171138 8.29582e-05 1.11628e-21)
(0.0173435 -0.000210815 -2.24432e-21)
(1.17007 -0.246725 3.09672e-21)
(1.07463 0.363328 -4.32453e-22)
(0.244224 0.134607 7.27063e-22)
(0.0138243 4.62785e-05 9.0145e-23)
(0.0239563 0.000111018 1.38806e-21)
(0.867628 -0.0156075 1.55499e-22)
(0.276491 0.176252 2.58769e-21)
(0.541187 -0.298178 3.66583e-21)
(0.800702 0.210522 -5.73698e-21)
(0.86995 -0.0835347 -4.81445e-24)
(0.0168742 0.000160423 9.18351e-23)
(1.00758 -0.284424 -2.0304e-21)
(0.0172474 -0.000133366 -6.38416e-21)
(0.279687 0.222472 -8.10241e-21)
(0.0178265 4.99551e-05 -7.10574e-22)
(0.0705393 0.101836 5.66409e-22)
(0.266772 -0.103039 -1.95228e-21)
(0.0175188 -0.000162958 8.12788e-22)
(0.315257 0.177376 3.00888e-21)
(0.733666 0.368211 5.24149e-21)
(0.0290177 0.0171363 4.58822e-22)
(1.28118 0.179268 1.16567e-22)
(0.263834 -0.125134 -2.051e-21)
(0.021599 7.47602e-05 2.4612e-21)
(1.10496 -0.314311 -5.19787e-23)
(0.0472674 0.0278417 -1.74967e-21)
(0.75045 0.386265 3.78788e-21)
(0.300238 -0.101621 4.23195e-21)
(0.77501 0.177942 -8.81411e-22)
(0.25277 -0.138834 -2.92602e-21)
(0.0452545 0.000108051 -1.89716e-21)
(0.739621 0.175449 2.03734e-22)
(1.22407 -0.231065 -1.56997e-21)
(0.0171969 -7.87006e-05 6.10919e-22)
(0.91436 -0.223391 -2.53569e-22)
(0.865294 -0.0157967 -8.27696e-22)
(0.475513 0.239007 5.18196e-22)
(0.0840603 0.0184092 -1.32879e-21)
(0.0472399 0.0276932 1.65711e-21)
(0.0374635 -0.000193569 -2.32183e-21)
(1.07263 0.184479 1.77413e-21)
(0.969306 -0.204661 1.53717e-21)
(0.894713 0.108196 -1.1622e-21)
(0.013497 0.000107003 9.33468e-21)
(1.31901 -0.133575 -7.2705e-22)
(1.23456 -0.0925955 -3.52391e-21)
(0.0171164 -9.96392e-05 -4.46874e-22)
(0.951705 -0.172881 -2.20172e-21)
(0.0396743 0.00172443 -4.00475e-21)
(0.825714 -0.230155 2.17556e-21)
(1.1454 0.350828 7.42134e-22)
(0.236195 -0.119555 3.69451e-22)
(1.30159 0.192947 1.64402e-22)
(0.932555 -0.171097 -8.17776e-22)
(0.0592152 -0.0480893 -4.92543e-21)
(0.0135715 7.18912e-07 -8.67883e-22)
(0.0137744 4.16374e-05 2.07986e-21)
(0.220664 0.175825 -3.05578e-21)
(0.0173478 -0.000206915 3.56558e-21)
(0.803889 0.11615 3.3169e-22)
(0.11517 0.0253636 -2.43294e-22)
(0.89292 0.122533 1.07668e-21)
(1.30395 0.00299599 1.78568e-21)
(0.0226722 0.000131698 -1.03385e-22)
(0.85497 -0.0687962 -5.41672e-22)
(0.605778 0.0140644 -9.81256e-22)
(0.778302 0.347091 -1.29236e-21)
(0.798406 0.355426 -1.50134e-21)
(0.475126 0.31129 5.47037e-21)
(0.805006 -0.114472 -1.04504e-21)
(1.19438 -0.28795 1.62273e-22)
(0.792905 0.187446 6.08549e-21)
(0.0176086 -6.17916e-05 3.68071e-21)
(0.039572 -0.00302379 5.88705e-21)
(0.510022 -0.0059648 2.16755e-21)
(0.356996 -0.22758 3.77355e-22)
(0.818273 -0.0107849 4.05439e-21)
(0.750455 0.370006 -2.97849e-21)
(0.0137688 -4.12057e-05 -5.45042e-21)
(0.98255 0.0131408 -8.40286e-22)
(0.0129357 4.48029e-06 7.94622e-21)
(0.0136776 -1.76499e-06 -1.19491e-22)
(0.699901 -0.327454 -1.4131e-21)
(0.884561 0.17578 9.34932e-23)
(0.569741 -0.314718 -3.53644e-21)
(0.939133 -0.184616 -1.0395e-22)
(0.0369487 2.32832e-05 5.34508e-21)
(0.0138518 -8.46726e-05 4.97823e-21)
(0.0383744 -5.33412e-05 -4.69999e-21)
(1.13268 -0.229886 -3.12662e-21)
(0.0439474 3.7854e-05 -5.49568e-23)
(0.0438557 -2.22469e-06 3.6696e-21)
(0.843773 -0.0495 5.66135e-21)
(0.0139001 -2.8567e-05 -2.50164e-21)
(0.730446 0.36973 -2.16602e-21)
(0.0175065 -0.000175469 -1.53185e-21)
(0.01359 -1.58266e-06 4.33367e-21)
(0.0382932 0.000226014 2.19075e-21)
(0.86674 0.367919 5.92458e-21)
(0.940706 -0.0380077 -9.15601e-23)
(0.766555 0.383177 4.55675e-21)
(0.0347958 -0.01978 2.25706e-21)
(0.0172784 -9.48123e-05 -1.20726e-22)
(0.0127804 0.000157916 2.36464e-21)
(0.695551 -0.308416 -1.06149e-23)
(0.0582285 0.0313828 7.01605e-22)
(1.08461 -0.230088 7.55012e-23)
(0.466349 0.1521 -4.0845e-23)
(0.017882 -0.000149295 -4.81701e-21)
(1.34931 -0.00889957 1.30787e-21)
(0.851179 -0.227701 -1.74456e-21)
(0.763147 0.389513 5.61031e-21)
(0.804269 0.130481 1.04503e-20)
(0.0186131 -0.000790364 7.12068e-21)
(0.013704 -0.000102505 2.10322e-21)
(0.0174104 -0.000231138 -2.87939e-21)
(0.0171802 -8.86171e-06 1.96417e-21)
(0.0166222 8.09794e-05 2.48273e-21)
(0.733877 0.380889 -3.9073e-21)
(0.0403697 0.000919466 3.66238e-21)
(0.817223 0.141248 -2.32368e-23)
(0.206509 0.103209 -3.45016e-23)
(0.713062 -0.0942744 -4.34113e-22)
(0.0337511 -0.0183933 -8.34657e-22)
(0.0391336 0.0113646 -1.07236e-20)
(0.901602 0.403804 -1.50657e-21)
(0.691174 -0.190444 -4.99379e-22)
(0.0688667 -0.0281795 2.28387e-21)
(0.263508 0.144886 -2.16405e-21)
(0.01728 -0.000242877 2.21084e-22)
(0.457663 0.232705 -7.46944e-22)
(0.468719 0.156009 5.72296e-22)
(0.82163 0.328856 1.35221e-21)
(0.0408327 -4.66852e-05 -2.77756e-21)
(0.0407973 2.90126e-05 -5.00597e-22)
(0.016669 -7.41231e-05 4.38692e-22)
(0.918677 0.119805 2.7035e-21)
(0.0470008 -0.024276 -1.94325e-22)
(0.681786 -0.226657 2.27471e-22)
(1.10199 -0.305137 -2.00278e-21)
(0.375366 0.206419 -8.14287e-22)
(0.504397 -0.196877 -5.4062e-22)
(0.341224 -0.207094 1.34882e-21)
(0.0798566 0.02467 -2.32544e-22)
(0.0819291 -0.0054458 1.05818e-21)
(0.107925 -0.0116535 -3.69568e-21)
(0.0698674 0.0389371 1.03739e-21)
(0.176989 0.102792 -3.19808e-22)
(0.0166564 -1.47266e-05 1.73627e-21)
(0.0171542 0.000204404 -2.86823e-22)
(0.867789 -0.336312 -1.17797e-21)
(0.0454117 7.97964e-06 -3.2194e-21)
(0.0455488 4.67813e-05 -4.0606e-24)
(0.0810277 -0.0438194 1.68225e-21)
(0.538189 0.00914551 -2.72485e-22)
(0.754669 0.385019 -3.7947e-21)
(0.0133258 1.46991e-05 4.31094e-21)
(1.23249 0.219683 -1.04005e-22)
(0.017261 5.35825e-05 4.31991e-21)
(0.0127068 3.6399e-05 1.21752e-21)
(0.0135944 7.09331e-05 5.155e-23)
(0.879491 0.366248 -1.41246e-21)
(0.0388955 9.32866e-05 -6.49022e-21)
(0.0387403 1.80199e-05 7.96319e-21)
(0.0389085 6.97767e-05 8.79697e-22)
(0.919898 -0.0699777 -7.90181e-22)
(0.01292 4.51497e-05 -1.2066e-21)
(0.614932 -0.0282473 -9.94154e-22)
(0.0135314 0.000127205 -3.64433e-21)
(1.30303 -0.183632 -1.42225e-21)
(0.972257 -0.142707 -8.33649e-22)
(0.095731 -0.0633203 4.09196e-22)
(0.986609 -0.281864 1.55668e-21)
(0.0132517 -4.90869e-05 -2.65501e-21)
(0.067636 -0.0260129 1.27546e-21)
(1.34559 -0.0750206 -2.75133e-22)
(0.0163689 0.000123383 -1.08684e-20)
(0.0130622 2.31782e-05 -8.14306e-22)
(0.746344 0.0813545 2.99195e-21)
(0.053782 -0.05383 -2.77103e-21)
(1.04051 0.243817 -3.67791e-21)
(1.2019 -0.285241 -1.73605e-21)
(0.0141003 4.62509e-06 3.15128e-21)
(0.013397 -4.12296e-05 1.49295e-21)
(0.064255 -0.0191209 -2.06624e-21)
(0.0274634 0.000115548 -3.37958e-21)
(0.0171685 -6.62797e-05 -2.3703e-22)
(0.0231347 -0.00427396 -8.11615e-22)
(1.1778 -0.297258 -1.38691e-21)
(0.48491 -0.211111 7.99078e-21)
(0.576958 0.0142414 1.06401e-21)
(0.845499 -0.22118 -1.33002e-21)
(0.0164168 3.22584e-05 -1.42526e-21)
(0.379582 0.046278 -2.457e-21)
(0.491761 0.157854 -4.85971e-23)
(0.331947 0.195128 -2.01131e-21)
(0.133233 -0.0770998 2.71936e-21)
(0.0482549 -0.0204285 -1.29315e-21)
(0.0607788 -0.0337589 -1.92559e-22)
(0.492578 0.319472 -7.55288e-22)
(0.041825 0.000638412 1.61346e-21)
(0.0136554 6.25187e-05 5.5494e-21)
(0.0171672 7.16697e-05 -8.07679e-21)
(0.0417449 5.97128e-05 -2.8329e-21)
(0.0417113 -1.88079e-05 -6.69264e-21)
(0.0417117 6.60968e-05 -8.42805e-22)
(0.0137688 -3.42454e-05 8.92342e-22)
(1.31847 0.105393 -6.18299e-22)
(0.747782 0.386117 -1.98849e-21)
(0.0127732 -6.58145e-05 -5.74448e-23)
(0.0132027 -3.82635e-05 -1.56944e-22)
(1.34395 -0.00201309 -2.58014e-22)
(0.0137192 -0.000119854 -1.03145e-20)
(0.0139316 -6.39068e-05 -1.06937e-21)
(1.26077 0.199891 2.14951e-22)
(0.941793 -0.0403814 9.06442e-22)
(0.575332 0.0205544 -3.71173e-21)
(1.11516 -0.302841 -6.86424e-22)
(0.0400102 -0.000186833 -3.4449e-21)
(0.0212136 -0.0042178 4.51894e-21)
(0.20005 0.11583 -8.85551e-22)
(0.99629 0.265556 8.10235e-22)
(0.0397126 -0.000136414 4.21231e-22)
(0.4573 0.216061 6.36708e-22)
(0.0692406 -0.0388866 1.68819e-21)
(0.521091 0.204869 1.3742e-22)
(0.920128 -0.352022 -2.84074e-21)
(1.07316 -0.352575 -1.32115e-21)
(0.0226464 -7.72563e-05 -2.67824e-22)
(1.10852 -0.307037 -2.8716e-22)
(0.0167504 0.00013252 1.89773e-21)
(0.0171047 -8.74866e-05 -6.87977e-22)
(0.969563 -0.145831 -7.10324e-22)
(1.28067 0.0847005 -8.93977e-22)
(0.247886 -0.135548 -2.53744e-21)
(0.260661 -0.167445 1.7839e-21)
(0.0545922 -0.0323137 3.06516e-21)
(1.02868 0.208162 1.57335e-21)
(0.0162589 0.000160635 -9.06096e-21)
(0.0134367 -1.94237e-05 -2.36177e-21)
(0.0221589 -5.43366e-05 -5.79634e-22)
(0.0354041 0.000141684 -1.05047e-21)
(1.08515 -0.348735 3.28577e-21)
(0.0396615 -1.22115e-05 -2.44607e-21)
(0.0396358 3.40055e-05 3.84069e-22)
(0.0626469 -0.0419685 -1.43157e-21)
(0.871787 -0.00723158 -5.82298e-22)
(0.863534 -0.0130877 -2.70039e-22)
(0.0812586 -0.0471981 1.74452e-21)
(0.0160896 -7.15665e-05 -2.86438e-21)
(1.11011 -0.225917 3.44413e-22)
(0.0130733 -6.48687e-05 -5.67859e-22)
(0.0422524 8.48973e-05 -2.95507e-21)
(0.0359811 -9.60887e-05 2.0016e-22)
(0.0231713 -1.92941e-05 1.18244e-21)
(0.901652 0.300191 1.43394e-21)
(0.0123835 1.86659e-05 -3.40904e-22)
(0.016174 6.96837e-05 -1.18735e-21)
(0.0170438 9.87515e-05 9.26687e-21)
(0.747641 0.378236 -5.04157e-21)
(0.791623 0.378374 3.66393e-21)
(0.0168613 0.000120318 9.04675e-23)
(0.657733 0.030559 1.31599e-21)
(0.0158418 -8.41658e-05 2.67672e-22)
(0.0229163 0.000131914 -2.05725e-21)
(0.189561 0.110371 -7.81788e-23)
(0.0446741 4.33027e-05 1.92547e-21)
(0.0446953 -7.95401e-05 -3.23311e-23)
(0.672269 -0.283788 -3.92592e-21)
(0.926027 -0.366325 -8.83182e-22)
(0.0160203 6.25722e-05 1.47363e-21)
(0.759727 0.368784 1.05914e-21)
(0.0463275 -1.41125e-05 -2.32379e-21)
(0.0423745 -9.80042e-06 1.77791e-21)
(0.0423386 1.27804e-06 -1.10487e-21)
(0.0170692 -2.65471e-06 -4.57696e-21)
(0.101432 0.0524677 1.55093e-22)
(0.0129638 7.46241e-05 -3.90335e-21)
(0.0907553 -0.0525549 -3.24938e-22)
(0.0170924 -0.000104026 -2.19496e-21)
(0.0130767 0.000198808 5.09854e-22)
(0.0121093 -6.39e-05 -8.611e-23)
(0.0129664 -0.000149748 -4.82561e-22)
(0.93201 -0.0593029 9.8759e-23)
(0.0167279 -0.000109818 3.89666e-21)
(0.571354 -0.0322484 1.55404e-21)
(0.013071 -0.000136166 -8.81209e-22)
(0.248499 -0.122733 -1.206e-22)
(0.0458079 2.1035e-05 -3.63847e-21)
(0.0458275 -2.40616e-05 3.85909e-24)
(0.0207924 -0.000106917 5.28094e-23)
(0.0250681 -2.10794e-06 1.53229e-21)
(0.363863 0.089377 3.70344e-21)
(0.0120966 1.5233e-05 -3.58197e-21)
(0.106382 0.0323503 -5.60228e-22)
(0.0158356 0.000280886 6.85984e-22)
(0.147089 0.0437031 -3.1071e-22)
(0.0161047 -0.000182973 2.57673e-21)
(0.981297 -0.277665 -1.35163e-21)
(0.421078 -0.0850776 -3.23127e-21)
(0.0733195 -0.0173439 -2.3029e-22)
(0.0155217 0.000134902 4.17731e-21)
(0.0228271 -0.000154414 1.58345e-22)
(0.0706964 0.0907466 -5.99047e-21)
(0.947729 -0.36905 -8.6422e-22)
(0.0153973 -2.3672e-05 1.20382e-22)
(0.0156676 -0.000191831 -6.61901e-23)
(0.0581656 -0.0168312 -2.88153e-21)
(1.29637 0.0309107 -1.48796e-22)
(1.00457 0.107126 -3.6649e-21)
(0.0129188 -0.000115792 1.61946e-24)
(0.241839 0.133136 -1.28436e-21)
(1.12685 -0.311537 4.77157e-22)
(0.0158119 4.27735e-05 1.26367e-21)
(0.934226 0.393622 -3.54825e-22)
(0.0225986 9.69428e-05 -8.27621e-22)
(0.0751046 0.0397356 -8.19135e-22)
(0.0128254 0.000105544 -5.41301e-21)
(0.120918 0.0612997 -5.76445e-23)
(1.18454 -0.29602 -1.14076e-21)
(1.09146 0.26789 -5.50764e-22)
(0.963205 -0.060684 -3.40269e-22)
(0.0157983 -0.000194133 -1.91531e-23)
(0.737907 -0.314852 -5.60047e-22)
(0.0159863 -0.000209638 -9.03309e-23)
(0.387897 0.0945629 1.22974e-20)
(0.494882 0.153207 -6.39254e-22)
(0.987352 0.160294 -2.89886e-21)
(0.0572266 -0.0291057 -5.18566e-21)
(0.0160786 0.000253368 1.39402e-21)
(0.0445449 1.44792e-05 1.39921e-21)
(0.0446088 7.02774e-05 -1.86493e-22)
(0.0446246 -2.25339e-05 4.13342e-21)
(0.045321 0.000497459 3.47901e-23)
(0.452158 0.229423 1.41966e-21)
(0.107749 -0.00684455 -1.01008e-21)
(0.758862 -0.314319 1.43511e-21)
(0.458503 0.0738031 9.66455e-22)
(0.942794 -0.0394807 2.35612e-22)
(0.0155706 -1.45445e-05 2.16723e-21)
(0.213682 0.124155 2.64573e-21)
(1.24557 0.287516 2.93133e-24)
(0.357727 -0.234779 1.26481e-22)
(0.9164 0.303474 -1.04483e-21)
(1.0616 0.363152 8.4363e-22)
(0.251988 -0.163819 -2.74707e-21)
(1.27734 0.172272 8.02523e-23)
(1.25768 0.274516 -2.65846e-22)
(1.01174 -0.289346 2.50648e-21)
(0.258439 -0.130368 -3.71093e-21)
(0.0280163 -9.61905e-05 1.27402e-21)
(0.908088 -0.0151606 7.63312e-23)
(0.231179 -0.117389 -1.13507e-21)
(0.0219847 0.000167725 -6.15601e-21)
(1.11718 0.181337 -2.11979e-21)
(0.631185 0.0349322 -3.74449e-22)
(0.783754 -0.319609 -2.82906e-21)
(0.0450732 4.44632e-05 9.62705e-22)
(0.045051 -5.9574e-05 3.09425e-21)
(0.414978 -0.0745906 -1.00559e-21)
(0.460496 0.299208 7.10744e-21)
(0.921602 -0.0681421 2.40151e-22)
(0.768871 0.389572 7.16607e-22)
(0.531779 -0.136335 -4.64198e-22)
(0.112298 0.0565781 6.46378e-22)
(0.241556 -0.101217 -9.29912e-21)
(0.0466926 0.000516884 2.71017e-21)
(0.395624 -0.222383 4.80798e-22)
(1.2687 0.1747 -3.81124e-22)
(0.0215157 0.000247105 2.99872e-21)
(0.0213919 -0.000200838 1.23014e-21)
(0.882639 -0.0336028 -1.56415e-21)
(0.0446934 -0.0169424 3.09316e-21)
(1.04018 0.00686674 -1.10331e-21)
(0.864543 -0.084876 -3.56497e-22)
(0.021082 -0.000201576 -1.04646e-22)
(0.856725 -0.0750855 6.8383e-22)
(0.772316 0.373794 -2.46886e-21)
(0.021133 -0.000216512 1.93189e-22)
(0.865485 0.289071 -4.05863e-21)
(0.0210874 0.00027345 1.99155e-21)
(0.595113 -0.309311 -1.54312e-21)
(0.885155 -0.0323278 2.59229e-22)
(1.18286 -0.293156 5.99679e-22)
(0.859311 -0.0691266 -7.96489e-22)
(1.02487 0.203659 -3.89084e-21)
(1.03996 0.0180823 -7.4299e-21)
(0.703755 -0.19191 3.70193e-22)
(0.0682545 -0.0437174 -2.80985e-21)
(0.87485 0.290466 -9.01709e-22)
(0.0472595 -6.67471e-05 1.01065e-21)
)
;
boundaryField
{
frontAndBack
{
type empty;
}
bottom
{
type slip;
}
inlet
{
type uniformFixedValue;
uniformValue constant (1 0 0);
value uniform (1 0 0);
}
top
{
type slip;
}
outlet
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
28
(
(1.00001 -1.78982e-06 7.896e-27)
(0.999998 -2.32767e-06 -1.92693e-27)
(0.999986 -3.98346e-07 -1.80579e-27)
(0.999987 -9.17689e-07 9.76365e-27)
(0.999988 -1.36603e-06 2.90009e-28)
(0.999991 -1.81977e-06 1.93694e-27)
(0.999993 -2.11347e-06 1.15659e-28)
(0.999996 -2.29189e-06 -1.91448e-28)
(1.00001 -2.06701e-06 -2.04782e-28)
(0.999999 -2.35972e-06 -1.5044e-27)
(0.999995 -2.18094e-06 1.17111e-27)
(1 -2.2893e-06 -1.24646e-29)
(1.00001 -2.18061e-06 -6.06403e-28)
(1 -2.26564e-06 1.26858e-29)
(1.00001 -1.93136e-06 0)
(1.00001 -1.41498e-06 -1.33625e-27)
(1.00001 -1.57692e-06 -2.68696e-27)
(1.00001 -9.65189e-07 -3.17687e-27)
(1.00001 -6.90021e-07 0)
(1.00001 -4.29842e-07 -3.27523e-29)
(0.999989 -1.55874e-06 4.11135e-30)
(0.999986 -2.07378e-07 1.4825e-26)
(1.00001 -2.0566e-07 1.58332e-27)
(1 -2.32923e-06 0)
(0.999986 -6.45378e-07 -1.5019e-28)
(1.00001 -1.1207e-06 0)
(0.999988 -1.11283e-06 0)
(0.999992 -1.90725e-06 -2.3993e-27)
)
;
}
car
{
type fixedValue;
value uniform (0 0 0);
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
3e694102e83a1002d7d804289b05a164436b16ba | decb361f6595aafb122ba62c149c7639ee99dd76 | /palindrome/palindrome/palindrome.cpp | 68df1723d1706e6fd7072a9c46a4191036d9cbd8 | [] | no_license | ykkonline/attendance | b7a8656701dce49a7a500ffc7245f399412f132d | 304e32b35a54fad91c8fe3f8efc5d725e84d11bf | refs/heads/master | 2022-04-23T11:35:58.287182 | 2020-04-23T03:47:21 | 2020-04-23T03:47:21 | 258,087,516 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 980 | cpp | // palindrome.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
using namespace std;
int main()
{
int input;
cout << "please enter an integer\n";
cin >> input;
if (input < 0) {
cout << "this is not a palindrome\n";
}
else {
}
return 0;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu
// Tips for Getting Started:
// 1. Use the Solution Explorer window to add/manage files
// 2. Use the Team Explorer window to connect to source control
// 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
| [
"[email protected]"
] | |
9796595901f18e0018e6cd6806e55679a29738ff | f300b75ea198d628dff9c976ebc4f95ee97f2093 | /_sort/permutation_1023.cpp | 8d481577f5de16f83b1d08671b6bc94df1af4afc | [] | no_license | shahin-shuvo/Data_Structure | a4ebbfe0619ee5ba6f81a4924586f7e6f3ce1e5d | 0d717417df266661ea44e0b9553f8cb387ad4c8a | refs/heads/master | 2021-01-24T02:11:01.885320 | 2018-02-25T13:33:10 | 2018-02-25T13:33:10 | 122,837,687 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 678 | cpp | #include<bits/stdc++.h>
using namespace std;
void pmtt(char ar[] , int i , int n);
void print(char ar[] , int n)
{
if(n==0)
return ;
print(ar, n-1);
cout<<ar[n-1]<<" ";
}
int k;
void pmtt( char ar[] , int i,int n)
{
if(i==n)
{
print(ar, n);
cout<<endl;
k--;
return;
}
for(int j = i ; j < n ; j++)
{
if(k==0) break;
swap(ar[i], ar[j]);
pmtt(ar , i+1 , n);
swap(ar[i],ar[j]);
}
}
void perm(int n)
{
char ar[n+1];
cin>>k;
for(int i = 0 ; i<n ; i++)
ar[i]=65+i;
pmtt(ar , 0, n);
}
int main()
{
int n;
cin>>n;
perm(n);
return 0;
}
| [
"[email protected]"
] | |
8e6ce1f99d5d14b98f3b74a62b727cd4cf8055c8 | 1abc8b1b640e6a2f77650ea1a920b730e3c0b81e | /AssignmentFiles/Gjk.cpp | 232e9c670c728b4f4a1140f5be906835fffd2b1a | [] | no_license | chewang1/graphic | ad481c93800ed5adba801edec3ff84df00d3cfb5 | ae0c1210098215c7a705b830ac3b29e2a3f4cc01 | refs/heads/master | 2021-09-05T15:09:09.385701 | 2018-01-29T05:18:22 | 2018-01-29T05:18:22 | 117,218,497 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,153 | cpp | ///////////////////////////////////////////////////////////////////////////////
///
/// Authors: Joshua Davis
/// Copyright 2015, DigiPen Institute of Technology
///
///////////////////////////////////////////////////////////////////////////////
#include "Precompiled.hpp"
//-----------------------------------------------------------------------------SupportShape
Vector3 SupportShape::GetCenter(const std::vector<Vector3>& localPoints, const Matrix4& transform) const
{
//this is from assignment2 shapes.cpp Sphere::computercentroid
Vector3 center = Vector3::cZero;
Vector3 aabbMax = localPoints.front();
Vector3 aabbMin = localPoints.front();
std::vector<Vector3>::const_iterator iter;
for (iter = localPoints.begin(); iter != localPoints.end(); ++iter)
{
if (iter->x > aabbMax.x)
aabbMax.x = iter->x;
else if (iter->x < aabbMin.x)
aabbMin.x = iter->x;
if (iter->y > aabbMax.y)
aabbMax.y = iter->y;
else if (iter->y < aabbMin.y)
aabbMin.y = iter->y;
if (iter->z > aabbMax.z)
aabbMax.z = iter->z;
else if (iter->z < aabbMin.z)
aabbMin.z = iter->z;
}
center = Math::TransformPoint(transform, 0.5f * (aabbMin + aabbMax));
return center;
}
Vector3 SupportShape::Support(const Vector3& worldDirection, const std::vector<Vector3>& localPoints, const Matrix4& localToWorldTransform) const
{
//find the furest point along the direction vec
//convert worlddireciton to local
Vector4 localdir = Math::Transform(localToWorldTransform.Inverted(), Vector4(worldDirection.x, worldDirection.y, worldDirection.z, 0));
Vector3 dir(localdir.x, localdir.y, localdir.z);
Vector3 result = Vector3::cZero;
float max = -Math::PositiveMax();
int index = 0;
for (size_t i = 0; i < localPoints.size(); i++)
{
float dot = localPoints[i].Dot(dir);
if(dot > max)
{
max = dot;
index = i;
}
}
//transform the resultant point into world space
result = Math::TransformPoint(localToWorldTransform, localPoints[index]);
return result;
}
void SupportShape::DebugDraw(const std::vector<Vector3>& localPoints, const Matrix4& localToWorldTransform, const Vector4& color) const
{
/******Student:Assignment5******/
for (size_t i =0; i < localPoints.size(); i++)
{
Vector3 transformed_pts = Math::TransformPoint(localToWorldTransform, localPoints[i]);
DebugShape& shape = gDebugDrawer->DrawPoint(transformed_pts);
shape.Color(color);
}
}
//-----------------------------------------------------------------------------ModelSupportShape
Vector3 ModelSupportShape::GetCenter() const
{
return SupportShape::GetCenter(mModel->mMesh->mVertices, mModel->mOwner->has(Transform)->GetTransform());
}
Vector3 ModelSupportShape::Support(const Vector3& worldDirection) const
{
return SupportShape::Support(worldDirection, mModel->mMesh->mVertices, mModel->mOwner->has(Transform)->GetTransform());
}
void ModelSupportShape::DebugDraw(const Vector4& color) const
{
SupportShape::DebugDraw(mModel->mMesh->mVertices, mModel->mOwner->has(Transform)->GetTransform());
}
//-----------------------------------------------------------------------------PointsSupportShape
PointsSupportShape::PointsSupportShape()
{
mScale = Vector3(1);
mRotation = Matrix3::cIdentity;
mTranslation = Vector3::cZero;
}
Vector3 PointsSupportShape::GetCenter() const
{
Matrix4 transform = Math::BuildTransform(mTranslation, mRotation, mScale);
return SupportShape::GetCenter(mLocalSpacePoints, transform);
}
Vector3 PointsSupportShape::Support(const Vector3& worldDirection) const
{
Matrix4 transform = Math::BuildTransform(mTranslation, mRotation, mScale);
return SupportShape::Support(worldDirection, mLocalSpacePoints, transform);
}
void PointsSupportShape::DebugDraw(const Vector4& color) const
{
Matrix4 transform = Math::BuildTransform(mTranslation, mRotation, mScale);
SupportShape::DebugDraw(mLocalSpacePoints, transform, color);
}
//-----------------------------------------------------------------------------SphereSupportShape
Vector3 SphereSupportShape::GetCenter() const
{
return mSphere.mCenter;
}
Vector3 SphereSupportShape::Support(const Vector3& worldDirection) const
{
//find the point on the sphere furthest in the direction passed in
return mSphere.mCenter + worldDirection.Normalized() * mSphere.mRadius;
}
void SphereSupportShape::DebugDraw(const Vector4& color) const
{
DebugShape& shape = gDebugDrawer->DrawSphere(mSphere);
shape.Color(color);
}
//-----------------------------------------------------------------------------ObbSupportShape
Vector3 ObbSupportShape::GetCenter() const
{
return mTranslation;
}
Vector3 ObbSupportShape::Support(const Vector3& worldDirection) const
{
/******Student:Assignment5******/
// Note: A unit obb spans from [-0.5, to 0.5]. Make sure to properly account for this.
Vector3 result = mTranslation;
Vector3 localDir = Math::Transform(mRotation.Inverted(), worldDirection);
for (size_t i = 0; i < 3; i++)
result += Math::GetSign(localDir[i]) * (mScale[i] *0.5f) * mRotation.Basis(i);
return result;
}
void ObbSupportShape::DebugDraw(const Vector4& color) const
{
Matrix4 transform = Math::BuildTransform(mTranslation, mRotation, mScale);
DebugShape& shape = gDebugDrawer->DrawAabb(Aabb(Vector3(-0.5f), Vector3(0.5f)));
shape.Color(color);
shape.SetTransform(transform);
}
//------------------------------------------------------------ Voronoi Region Tests
VoronoiRegion::Type Gjk::IdentifyVoronoiRegion(const Vector3& q, const Vector3& p0,
size_t& newSize, int newIndices[4],
Vector3& closestPoint, Vector3& searchDirection)
{
closestPoint = p0;
newSize = 1;
newIndices[0] = 0;
searchDirection = q - p0;
return VoronoiRegion::Point0;
}
VoronoiRegion::Type Gjk::IdentifyVoronoiRegion(const Vector3& q, const Vector3& p0, const Vector3& p1,
size_t& newSize, int newIndices[4],
Vector3& closestPoint, Vector3& searchDirection)
{
float u, v;
BarycentricCoordinates(q, p0, p1, u, v);
if (v <= 0) //p---s0----s1
{
closestPoint = p0;
newSize = 1;
newIndices[0] = 0;
searchDirection = q - closestPoint;
return VoronoiRegion::Point0;
}
else if (u <= 0) //s0----s1---p
{
closestPoint = p1;
newSize = 1;
newIndices[0] = 1;
searchDirection = q - closestPoint;;
return VoronoiRegion::Point1;
}
//s0----p----s1
closestPoint = u * p0 + v* p1;
newSize = 2;
newIndices[0] = 0;
newIndices[1] = 1;
searchDirection = q - closestPoint;
return VoronoiRegion::Edge01;
}
VoronoiRegion::Type Gjk::IdentifyVoronoiRegion(const Vector3& q, const Vector3& p0, const Vector3& p1, const Vector3& p2,
size_t& newSize, int newIndices[4],
Vector3& closestPoint, Vector3& searchDirection)
{
float epsilon = 0.0001f;
float u_p0p1, v_p0p1, u_p1p2, v_p1p2, u_p0p2, v_p0p2;
BarycentricCoordinates(q, p0, p1, u_p0p1, v_p0p1);
BarycentricCoordinates(q, p1, p2, u_p1p2, v_p1p2);
BarycentricCoordinates(q, p2, p0, u_p0p2, v_p0p2);
float u, v, w;
bool triangle = BarycentricCoordinates(q, p0, p1, p2, u, v, w);
// point case
if(v_p0p1 <= 0 && u_p0p2 <= 0)
{
SetInfo(q, closestPoint, searchDirection, newSize, p0);
newIndices[0] = 0;
return VoronoiRegion::Point0;
}
else if(v_p0p2 <= 0 && u_p1p2 <= 0)
{
SetInfo(q, closestPoint, searchDirection, newSize, p2);
newIndices[0] = 2;
return VoronoiRegion::Point2;
}
else if(v_p1p2 <= 0 && u_p0p1 <= 0)
{
SetInfo(q, closestPoint, searchDirection, newSize, p1);
newIndices[0] = 1;
return VoronoiRegion::Point1;
}
else if(triangle) //inside triangle
{
float triangleArea = (p2 - p0).Cross(p1 - p0).Length() / 2;
if (w - u > epsilon && w - v > epsilon ||
u - v > epsilon && u - w > epsilon ||
v - w > epsilon && v - u > epsilon) //appproach p1, p2, p3
closestPoint = (u *p0 + v * p1 + w * p2);
else //centroid
closestPoint = (p0 + p1 + p2) / 3;
newSize = 3;
for (size_t i = 0; i < newSize; i++)
newIndices[i] = i;
searchDirection = q - closestPoint;
return VoronoiRegion::Triangle012;
}
else //edge case
{
if(w < 0 && w < u && w < v)
{
SetInfo(q, closestPoint, searchDirection, newSize, p0, p1, u_p0p1, v_p0p1);
newIndices[0] = 0;
newIndices[1] = 1;
return VoronoiRegion::Edge01;
}
if(u < 0 && u < w && u < v)
{
SetInfo(q, closestPoint, searchDirection, newSize, p1, p2, u_p1p2, v_p1p2);
newIndices[0] = 1;
newIndices[1] = 2;
return VoronoiRegion::Edge12;
}
if (v < 0 && v < w && v < u)
{
SetInfo(q, closestPoint, searchDirection, newSize, p2, p0, u_p0p2, v_p0p2);
newIndices[0] = 0;
newIndices[1] = 2;
return VoronoiRegion::Edge02;
}
}
return VoronoiRegion::Unknown;
}
VoronoiRegion::Type Gjk::IdentifyVoronoiRegion(const Vector3& q, const Vector3& p0, const Vector3& p1, const Vector3& p2, const Vector3& p3,
size_t& newSize, int newIndices[4],
Vector3& closestPoint, Vector3& searchDirection)
{
//line
float u_p0p1, v_p0p1, u_p3p0, v_p3p0, u_p1p3, v_p1p3;
bool result01 = BarycentricCoordinates(q, p0, p1, u_p0p1, v_p0p1); //line 01
bool result13 = BarycentricCoordinates(q, p1, p3, u_p1p3, v_p1p3); //line 13
bool result03 = BarycentricCoordinates(q, p3, p0, u_p3p0, v_p3p0); //line 03
//triangle 123
float u_p1p2, v_p1p2, u_p2p3, v_p2p3;
bool result12 = BarycentricCoordinates(q, p1, p2, u_p1p2, v_p1p2); //line 12
bool result23 = BarycentricCoordinates(q, p2, p3, u_p2p3, v_p2p3); //line 23
float u_p0p2, v_p0p2;
bool result02 = BarycentricCoordinates(q, p0, p2, u_p0p2, v_p0p2); //line 02
//triangle 013 and triangle 012
float u_013, v_013, w_013;
bool triangle013 = BarycentricCoordinates(q, p0, p1, p3, u_013, v_013, w_013);
float u_012, v_012, w_012;
bool triangle012 = BarycentricCoordinates(q, p0, p1, p2, u_012, v_012, w_012);
float u_023, v_023, w_023; //triangle023
bool triangle023 = BarycentricCoordinates(q, p0, p2, p3, u_023, v_023, w_023);
float u_123, v_123, w_123; //triangle123
bool triangle123 = BarycentricCoordinates(q, p1, p2, p3, u_123, v_123, w_123);
/////////////////////////////
//region S0
if(v_p0p1 < 0 && v_p0p2 < 0 && u_p3p0 < 0)
{
SetInfo(q, closestPoint, searchDirection, newSize, p0);
newIndices[0] = 0;
return VoronoiRegion::Point0;
} //region S2
else if(u_p0p2 < 0 && u_p1p2 < 0&& v_p2p3 < 0)
{
SetInfo(q, closestPoint, searchDirection, newSize, p2);
newIndices[0] = 2;
return VoronoiRegion::Point2;
}// region S1
else if(u_p0p1 < 0 && v_p1p2 < 0 && v_p1p3 < 0)
{
SetInfo(q, closestPoint, searchDirection, newSize, p1);
newIndices[0] = 1;
return VoronoiRegion::Point1;
}
else if(v_p3p0 < 0 && u_p2p3 < 0 && u_p1p3 < 0) // region S3
{
SetInfo(q, closestPoint, searchDirection, newSize, p3);
newIndices[0] = 3;
return VoronoiRegion::Point3;
}
//////////////////////////////////////////////////////////////////////////////////////////
//edge regions
if (u_p0p1 > 0 && v_p0p1 > 0 && !triangle012 && !triangle013 && w_012 < 0 && w_013 < 0) //edge 01
{
SetInfo(q, closestPoint, searchDirection, newSize, p0, p1, u_p0p1, v_p0p1);
newIndices[0] = 0;
newIndices[1] = 1;
return VoronoiRegion::Edge01;
}
else if (u_p0p2 > 0 && v_p0p2 > 0 && !triangle012 && !triangle023 && v_012 < 0 && w_023 < 0) //edge 02
{
SetInfo(q, closestPoint, searchDirection, newSize, p0, p2, u_p0p2, v_p0p2);
newIndices[0] = 0;
newIndices[1] = 2;
return VoronoiRegion::Edge02;
}
else if (u_p3p0 > 0 && v_p3p0 > 0 && !triangle013 && !triangle023 && v_013 < 0 && v_023 < 0) //edge 03
{
SetInfo(q, closestPoint, searchDirection, newSize, p3, p0, u_p3p0, v_p3p0);
newIndices[0] = 0;
newIndices[1] = 3;
return VoronoiRegion::Edge03;
}
else if (u_p1p2 > 0 && v_p1p2 > 0 && !triangle012 && !triangle123 && u_012 < 0 && w_123 < 0) //edge 12
{
SetInfo(q, closestPoint, searchDirection, newSize, p1, p2, u_p1p2, v_p1p2);
newIndices[0] = 1;
newIndices[1] = 2;
return VoronoiRegion::Edge12;
}
else if (u_p1p3 > 0 && v_p1p3 > 0 && !triangle013 && !triangle123 && v_123 < 0 && u_013 < 0) //edge 13
{
SetInfo(q, closestPoint, searchDirection, newSize, p1, p3, u_p1p3, v_p1p3);
newIndices[0] = 1;
newIndices[1] = 3;
return VoronoiRegion::Edge13;
}
else if (u_p2p3 > 0 && v_p2p3 > 0 && !triangle023 && !triangle123 && u_023 < 0 && u_123 < 0) //edge 23
{
SetInfo(q, closestPoint, searchDirection, newSize, p2, p3, u_p2p3, v_p2p3);
newIndices[0] = 2;
newIndices[1] = 3;
return VoronoiRegion::Edge23;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////
//triangle regions
Vector3 normal012 = TriNoraml(p0, p1, p2, p3);
Vector3 normal013 = TriNoraml(p0, p1, p3, p2);
Vector3 normal023 = TriNoraml(p0, p2, p3, p1);
Vector3 normal123 = TriNoraml(p1, p3, p2, p0);
if (triangle012 && normal012.Dot(q - p0) >= 0)
{
closestPoint = u_012 * p0 + v_012 * p1 + w_012 * p2;
newSize = 3;
newIndices[0] = 0;
newIndices[1] = 1;
newIndices[2] = 2;
searchDirection = q - closestPoint;
return VoronoiRegion::Triangle012;
}
else if (triangle023 && normal023.Dot(q - p0) >= 0)
{
closestPoint = u_023 * p0 + v_023 * p2 + w_023 * p3;
newSize = 3;
newIndices[0] = 0;
newIndices[1] = 2;
newIndices[2] = 3;
searchDirection = q - closestPoint;
return VoronoiRegion::Triangle023;
}
else if (triangle013 && normal013.Dot(q - p1) >= 0)
{
closestPoint = u_013 * p0 + v_013 * p1 + w_013 * p3;
newSize = 3;
newIndices[0] = 0;
newIndices[1] = 1;
newIndices[2] = 3;
searchDirection = q - closestPoint;
return VoronoiRegion::Triangle013;
}
else if (triangle123 && normal123.Dot(q - p1) >= 0)
{
closestPoint = u_123 * p1 + v_123 * p2 + w_123 * p3;
newSize = 3;
newIndices[0] = 1;
newIndices[1] = 2;
newIndices[2] = 3;
searchDirection = q - closestPoint;
return VoronoiRegion::Triangle123;
}
///////////////////////////////////////////////////////////////////////////////////////////
//test this last //Tetrahedra case
//if (triangle012 && triangle013 && triangle023 && triangle123)
//if(u_012 > 0 && v_012 > 0 && w_012 > 0 && u_013 > 0 && v_013 > 0 && w_013 > 0 &&
//u_023 > 0 && v_023 > 0 && w_023 > 0 && u_123 > 0 && v_123 > 0 && w_123 > 0)
{
closestPoint = q;
newSize = 4;
newIndices[0] = 0;
newIndices[1] = 1;
newIndices[2] = 2;
newIndices[3] = 3;
searchDirection = q - closestPoint;
return VoronoiRegion::Tetrahedra0123;
}
//return VoronoiRegion::Unknown;
}
Vector3 Gjk::TriNoraml(const Vector3& p0, const Vector3& p1, const Vector3& p2, const Vector3& p3)
{
Vector3 normal = Math::Cross(p1 - p0, p2 - p1);
if (Math::Dot(normal, p3 - p0) >= 0)
normal *= -1;
return normal;
}
void Gjk::SetInfo(const Vector3& q, Vector3& closestPoint, Vector3& searchDirection, size_t& newSize, const Vector3& point)
{
closestPoint = point;
newSize = 1;
searchDirection = q - closestPoint;
}
void Gjk::SetInfo(const Vector3& q, Vector3& closestPoint, Vector3& searchDirection, size_t& newSize, const Vector3& point1, const Vector3& point2, float u, float v)
{
closestPoint = u * point1 + v * point2;
newSize = 2;
searchDirection = q - closestPoint;
}
Gjk::Gjk()
{
}
bool Gjk::Intersect(const SupportShape* shapeA, const SupportShape* shapeB, unsigned int maxIterations, CsoPoint& closestPoint, float epsilon, int debuggingIndex, bool debugDraw)
{
//unfinished..
//Initialize the simplex (to one point for us) by searching in a random direction (difference of centers)
Vector3 centerA = shapeA->GetCenter();
Vector3 centerB = shapeB->GetCenter();
Vector3 searchdir = centerB - centerA;
if (searchdir == Vector3::cZero)
searchdir = Vector3(-1.0f, 0.0f, 0.0f);
VoronoiRegion::Type region;
int newIndices[4];
size_t newSize = 0;
std::vector<Vector3> simplex;
closestPoint = ComputeSupport(shapeA, shapeB, searchdir);
//searchdir = -searchdir; //negate direction
simplex.push_back(closestPoint.mCsoPoint);
if (simplex[0].Dot(searchdir) < 0)
{
return false;
}
//searchdir *= -1;
//simplex.push_back(centerA);
//Compute P by projecting Q onto the new simplex
//If P is equal to Q then terminate
//Compute the new search direction (Q-P ) and search for a new point
//If the new point is no further than P in the search direction then terminate. The length of the vector (Q-P)is the separation distance
//Add the new point to the simplex and go to 2.
unsigned int i = maxIterations;
while(i != 0)
{
closestPoint = ComputeSupport(shapeA, shapeB, -searchdir);
if (searchdir == Vector3::cZero)
searchdir = Vector3(-1.0f, 0.0f, 0.0f);
if(simplex.back().Dot(searchdir) < 0)
{
return true;
}
simplex.push_back(closestPoint.mCsoPoint);
//2.Determine which voronoi region Q is in and reduce to the smallest simplex
/*if(simplex.size() == 2)
{
region = IdentifyVoronoiRegion(simplex[0], simplex[1], newSize, newIndices, closestPoint.mCsoPoint, searchdir);
if (region == VoronoiRegion::Point0 || region == VoronoiRegion::Point1)
return true;
}*/
if(simplex.size() == 3) //triangle case
{
region = IdentifyVoronoiRegion(simplex[0], simplex[1], simplex[2], newSize, newIndices, closestPoint.mCsoPoint, searchdir);
if (region == VoronoiRegion::Point0 || region == VoronoiRegion::Point1 || region == VoronoiRegion::Point2)
return false;
else if (region == VoronoiRegion::Edge01)
{
simplex.pop_back();
}
else if (region == VoronoiRegion::Edge02)
{
simplex.erase(simplex.begin() + 1);
}
else if (region == VoronoiRegion::Edge12)
{
simplex.erase(simplex.begin());
}
else
return true;
}
else if(simplex.size() == 4) //tetrahedron case
{
region = IdentifyVoronoiRegion(simplex[0], simplex[1], simplex[2], simplex[3], newSize, newIndices, closestPoint.mCsoPoint, searchdir);
}
i--;
}
return false;
}
Gjk::CsoPoint Gjk::ComputeSupport(const SupportShape* shapeA, const SupportShape* shapeB, const Vector3& direction)
{
/******Student:Assignment5******/
CsoPoint result;
//support(A-B, d) = Support(A, d) - Support(B, -d)
result.mPointA = shapeA->Support(direction);
result.mPointB = shapeB->Support(-direction);
result.mCsoPoint = result.mPointA - result.mPointB;
return result;
}
| [
"[email protected]"
] | |
ae513dd94e151031197e013a53172fa32436b046 | c3b3dffa5c84a4de04934b699e645788d0fb370e | /GFG 11 Week/searchingAndSorting/learn/linearSearch.cpp | 78a6c9990281598db3713ff9de2615a56909a3f6 | [] | no_license | guptasajal411/problem-solving | ceb94cd4d5e010032af58193511ab07fcea6c3d6 | 24ab9f94c8da6a6d12302648fa1f1df507982518 | refs/heads/main | 2023-06-19T12:47:41.743573 | 2021-07-16T12:17:42 | 2021-07-16T12:17:42 | 343,034,211 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 384 | cpp | #include <iostream>
using namespace std;
int linearSearch(int array[], int n, int key){
for (int i = 0; i < n; i++){
if (array[i] == key){
return i;
}
}
return -1;
}
int main(){
int n, k;
cin >> n;
int array[n];
for (int i = 0; i < n; i++){
cin >> array[i];
}
cin >> k;
cout << linearSearch(array, n, k);
} | [
"[email protected]"
] | |
f5459ad6362b9e1b3e2cc2a7eb43bdc5d234e6ce | b8876fcc0956c36552546ba2ac8aa52d24b21db9 | /Guidance/SlicotAB01MD.h | ae685f77b20a4498651ee7f01426983e6ac753ec | [
"MIT"
] | permissive | bgin/MissileSimulation | 90b43748746f2750ca6137c0186c90a4d873ad49 | 90adcbf1c049daafb939f3fe9f9dfe792f26d5df | refs/heads/master | 2020-04-06T06:00:50.942167 | 2019-11-05T13:41:40 | 2019-11-05T13:41:40 | 47,642,968 | 28 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,029 | h |
#ifndef __SLICOT_AB01MD_H__
#define __SLICOT_AB01MD_H__
// File version granularity.
#ifndef SLICOT_AB01MD_VERSION_MAJOR
#define SLICOT_AB01MD_VERSION_MAJOR 1
#endif
#ifndef SLICOT_AB01MD_VERSION_MINOR
#define SLICOT_AB01MD_VERSION_MINOR 0
#endif
#ifndef SLICOT_AB01MD_PATCH_VERSION
#define SLICOT_AB01MD_PATCH_VERSION 0
#endif
#ifndef SLICOT_AB01MD_CREATE_DATE
#define SLICOT_AB01MD_CREATE_DATE "Date: 2016-09-13 Time: 18:27 PM GMT+2"
#endif
#ifndef SLICOT_AB01MD_BUILD_DATE
#define SLICOT_AB01MD_BUILD_DATE " "
#endif
#include "Slicot_F77_Interface.h"
#include <iostream>
#include <string>
#include <iomanip>
namespace guidance {
namespace slicot_wrappers {
struct F77_AB01MD {
F77_AB01MD(_In_ const unsigned char JOBZ,
_In_ const int N,
_In_ const int LDA,
_In_ const int NCONT,
_In_ const int LDZ,
_In_ const double TOL,
_In_ const int LDWORK,
_In_ const int INFO)
:
m_JOBZ{ JOBZ },
m_N{ N },
m_LDA{ LDA },
m_A(m_LDA * m_N),
m_B(m_N),
m_NCONT{ NCONT },
m_LDZ{ LDZ },
m_Z(m_LDZ * m_N),
m_TAU(m_N),
m_TOL{ TOL },
m_LDWORK{ LDWORK },
m_DWORK(m_LDWORK),
m_INFO{ INFO } {}
void Call_AB01MD() {
AB01MD(&this->m_JOBZ, &this->m_N, &this->m_A[0], &this->m_LDA, &this->m_B[0],
&this->m_NCONT, &this->m_Z[0], &this->m_LDZ, &this->m_TAU[0], &this->m_TOL,
&this->m_DWORK[0], &this->m_LDWORK, &this->m_INFO);
}
unsigned char m_JOBZ;
_In_ int m_N;
_In_ int m_LDA;
_Inout_ VF64 m_A;
_Inout_ VF64 m_B;
_Out_ int m_NCONT;
_In_ int m_LDZ;
_Out_ VF64 m_Z;
_Out_ VF64 m_TAU;
double m_TOL;
int m_LDWORK;
VF64 m_DWORK;
int m_INFO;
};
/*
*/
}
}
#endif /*__SLICOT_ABO1MD_H__*/ | [
"[email protected]"
] | |
9477742292d6bf041791e492b811c974b68857b9 | d1ab005b98a200752187402ea3fbb30ce7e95176 | /src/GMLFeature/gmlAppearance.h | b992dfb74f036216d30640125dd2fae5c67ef3c8 | [] | no_license | MrBigDog/Geo3DML | ad4e3981a5f37aebf591f3178f8ecac4c27f00d4 | d4a4b431331f6335e45f7c6fce1d92ea0fb0ee5b | refs/heads/master | 2021-05-14T10:58:27.775494 | 2018-03-01T01:40:34 | 2018-03-01T01:40:34 | 116,368,209 | 3 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,339 | h | #pragma once
#include "gmlfeature.h"
#include<string>
#include "vtkOpenGLProperty.h"
class vtkProperty;
class GMLFEATURE_EXPORT gmlAppearance :public vtkOpenGLProperty
{
public:
gmlAppearance(void);
~gmlAppearance(void);
static gmlAppearance *New();
virtual char* GetClassName() { return "gmlAppearance"; };
enum AppearanceType
{
POINT = 0,
LINE,
SURFACE
};
struct X3DTexture
{
X3DTexture()
{
RepeatedCount = 1;
WrapMode = 0;
MapedNorm = 2;
};
std::string ImageURI;
std::string MineType;
int WrapMode;
int MapedNorm; // 面法向 1 2 前后 3 上下
int RepeatedCount;
double Bound[4];
};
std::string GetGeoFeatureID();
void SetGeoFeatureID(std::string);
std::string GetPropertyName();
void SetPropertyName(std::string);
void SetLineTypeString(std::string t);
AppearanceType GetAppearanceType();
void SetAppearanceType(AppearanceType s);
void CreateTexture();
int UseTexure();
X3DTexture* GetTxture();
void SetUseTexure(int);
void SetChangedFlag(int);
int GetChangedFlag();
protected:
std::string mGeoFeatureID; // 2o11.10.27 for sld and geosciml
std::string mPropertyName; // 2o11.10.27 for sld and geosciml
int mUseTexure;
int mChangedFlag;
X3DTexture *mTexture;
AppearanceType mAppearanceType;
};
| [
"[email protected]"
] | |
dfbddaabbeb60eae52e465881dff219e853fbaa1 | 7b3018f3c4260289ef8452e2bf8bc7f029752f19 | /armstrong_number.cpp | c170005e2089e7a99504313cfb8c754e3b921b26 | [] | no_license | Git-Pratik97/Challenges | 996913dc35c95225d11c145b57ed472e76f79146 | 03a0ce8f551c899035650e4a19452b26f0ba3eec | refs/heads/main | 2023-06-23T15:50:30.523612 | 2021-07-24T06:13:50 | 2021-07-24T06:13:50 | 387,706,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 486 | cpp | #include<iostream>
#include<math.h>
using namespace std;
int main()
{
int n ;
cin >> n;
int sum = 0;
int original_number = n;
while (n>0)
{
int last_digit = n%10;
sum += pow(last_digit,3);
n = n/10;
}
if (sum == original_number)
{
int armstrong_number = sum;
cout << armstrong_number << " ";
}
return 0;
} | [
"[email protected]"
] | |
1a7cee4300ecbc23c480401811a861fcfe44dd0b | f3948bfdfb656a93070118b9a13eefa12ecc8383 | /src/miner.cpp | ebdbc3b1c9bc74cb06e13e1bef81e783e31da2d9 | [
"MIT"
] | permissive | zahidaliayub/FastCash | b488d90ed57cb08ffa9787061538c85414f8d787 | 77873b47049c9b12e735f9df9eeec3ed5c1948e4 | refs/heads/master | 2021-05-04T17:49:39.459291 | 2016-08-26T02:48:54 | 2016-08-26T02:48:54 | 120,279,257 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,964 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Copyright (c) 2013 The NovaCoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "txdb.h"
#include "miner.h"
#include "kernel.h"
using namespace std;
//////////////////////////////////////////////////////////////////////////////
//
// BitcoinMiner
//
extern unsigned int nMinerSleep;
int static FormatHashBlocks(void* pbuffer, unsigned int len)
{
unsigned char* pdata = (unsigned char*)pbuffer;
unsigned int blocks = 1 + ((len + 8) / 64);
unsigned char* pend = pdata + 64 * blocks;
memset(pdata + len, 0, 64 * blocks - len);
pdata[len] = 0x80;
unsigned int bits = len * 8;
pend[-1] = (bits >> 0) & 0xff;
pend[-2] = (bits >> 8) & 0xff;
pend[-3] = (bits >> 16) & 0xff;
pend[-4] = (bits >> 24) & 0xff;
return blocks;
}
static const unsigned int pSHA256InitState[8] =
{0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
void SHA256Transform(void* pstate, void* pinput, const void* pinit)
{
SHA256_CTX ctx;
unsigned char data[64];
SHA256_Init(&ctx);
for (int i = 0; i < 16; i++)
((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
for (int i = 0; i < 8; i++)
ctx.h[i] = ((uint32_t*)pinit)[i];
SHA256_Update(&ctx, data, sizeof(data));
for (int i = 0; i < 8; i++)
((uint32_t*)pstate)[i] = ctx.h[i];
}
// Some explaining would be appreciated
class COrphan
{
public:
CTransaction* ptx;
set<uint256> setDependsOn;
double dPriority;
double dFeePerKb;
COrphan(CTransaction* ptxIn)
{
ptx = ptxIn;
dPriority = dFeePerKb = 0;
}
void print() const
{
printf("COrphan(hash=%s, dPriority=%.1f, dFeePerKb=%.1f)\n",
ptx->GetHash().ToString().substr(0,10).c_str(), dPriority, dFeePerKb);
BOOST_FOREACH(uint256 hash, setDependsOn)
printf(" setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
}
};
uint64_t nLastBlockTx = 0;
uint64_t nLastBlockSize = 0;
int64_t nLastCoinStakeSearchInterval = 0;
// We want to sort transactions by priority and fee, so:
typedef boost::tuple<double, double, CTransaction*> TxPriority;
class TxPriorityCompare
{
bool byFee;
public:
TxPriorityCompare(bool _byFee) : byFee(_byFee) { }
bool operator()(const TxPriority& a, const TxPriority& b)
{
if (byFee)
{
if (a.get<1>() == b.get<1>())
return a.get<0>() < b.get<0>();
return a.get<1>() < b.get<1>();
}
else
{
if (a.get<0>() == b.get<0>())
return a.get<1>() < b.get<1>();
return a.get<0>() < b.get<0>();
}
}
};
// CreateNewBlock: create new block (without proof-of-work/proof-of-stake)
CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake, int64_t* pFees)
{
// Create new block
auto_ptr<CBlock> pblock(new CBlock());
if (!pblock.get())
return NULL;
CBlockIndex* pindexPrev = pindexBest;
// Create coinbase tx
CTransaction txNew;
txNew.vin.resize(1);
txNew.vin[0].prevout.SetNull();
txNew.vout.resize(1);
if (!fProofOfStake)
{
CReserveKey reservekey(pwallet);
CPubKey pubkey;
if (!reservekey.GetReservedKey(pubkey))
return NULL;
txNew.vout[0].scriptPubKey.SetDestination(pubkey.GetID());
}
else
{
// Height first in coinbase required for block.version=2
txNew.vin[0].scriptSig = (CScript() << pindexPrev->nHeight+1) + COINBASE_FLAGS;
assert(txNew.vin[0].scriptSig.size() <= 100);
txNew.vout[0].SetEmpty();
}
// Add our coinbase tx as first transaction
pblock->vtx.push_back(txNew);
// Largest block you're willing to create:
unsigned int nBlockMaxSize = GetArg("-blockmaxsize", MAX_BLOCK_SIZE_GEN/2);
// Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity:
nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize));
// How much of the block should be dedicated to high-priority transactions,
// included regardless of the fees they pay
unsigned int nBlockPrioritySize = GetArg("-blockprioritysize", 27000);
nBlockPrioritySize = std::min(nBlockMaxSize, nBlockPrioritySize);
// Minimum block size you want to create; block will be filled with free transactions
// until there are no more or the block reaches this size:
unsigned int nBlockMinSize = GetArg("-blockminsize", 0);
nBlockMinSize = std::min(nBlockMaxSize, nBlockMinSize);
// Fee-per-kilobyte amount considered the same as "free"
// Be careful setting this: if you set it to zero then
// a transaction spammer can cheaply fill blocks using
// 1-satoshi-fee transactions. It should be set above the real
// cost to you of processing a transaction.
int64_t nMinTxFee = MIN_TX_FEE;
if (mapArgs.count("-mintxfee"))
ParseMoney(mapArgs["-mintxfee"], nMinTxFee);
pblock->nBits = GetNextTargetRequired(pindexPrev, fProofOfStake);
// Collect memory pool transactions into the block
int64_t nFees = 0;
{
LOCK2(cs_main, mempool.cs);
CTxDB txdb("r");
// Priority order to process transactions
list<COrphan> vOrphan; // list memory doesn't move
map<uint256, vector<COrphan*> > mapDependers;
// This vector will be sorted into a priority queue:
vector<TxPriority> vecPriority;
vecPriority.reserve(mempool.mapTx.size());
for (map<uint256, CTransaction>::iterator mi = mempool.mapTx.begin(); mi != mempool.mapTx.end(); ++mi)
{
CTransaction& tx = (*mi).second;
if (tx.IsCoinBase() || tx.IsCoinStake() || !IsFinalTx(tx, pindexPrev->nHeight + 1))
continue;
COrphan* porphan = NULL;
double dPriority = 0;
int64_t nTotalIn = 0;
bool fMissingInputs = false;
BOOST_FOREACH(const CTxIn& txin, tx.vin)
{
// Read prev transaction
CTransaction txPrev;
CTxIndex txindex;
if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
{
// This should never happen; all transactions in the memory
// pool should connect to either transactions in the chain
// or other transactions in the memory pool.
if (!mempool.mapTx.count(txin.prevout.hash))
{
printf("ERROR: mempool transaction missing input\n");
if (fDebug) assert("mempool transaction missing input" == 0);
fMissingInputs = true;
if (porphan)
vOrphan.pop_back();
break;
}
// Has to wait for dependencies
if (!porphan)
{
// Use list for automatic deletion
vOrphan.push_back(COrphan(&tx));
porphan = &vOrphan.back();
}
mapDependers[txin.prevout.hash].push_back(porphan);
porphan->setDependsOn.insert(txin.prevout.hash);
nTotalIn += mempool.mapTx[txin.prevout.hash].vout[txin.prevout.n].nValue;
continue;
}
int64_t nValueIn = txPrev.vout[txin.prevout.n].nValue;
nTotalIn += nValueIn;
int nConf = txindex.GetDepthInMainChain();
dPriority += (double)nValueIn * nConf;
}
if (fMissingInputs) continue;
// Priority is sum(valuein * age) / txsize
unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
dPriority /= nTxSize;
// This is a more accurate fee-per-kilobyte than is used by the client code, because the
// client code rounds up the size to the nearest 1K. That's good, because it gives an
// incentive to create smaller transactions.
double dFeePerKb = double(nTotalIn-tx.GetValueOut()) / (double(nTxSize)/1000.0);
if (porphan)
{
porphan->dPriority = dPriority;
porphan->dFeePerKb = dFeePerKb;
}
else
vecPriority.push_back(TxPriority(dPriority, dFeePerKb, &(*mi).second));
}
// Collect transactions into block
map<uint256, CTxIndex> mapTestPool;
uint64_t nBlockSize = 1000;
uint64_t nBlockTx = 0;
int nBlockSigOps = 100;
bool fSortedByFee = (nBlockPrioritySize <= 0);
TxPriorityCompare comparer(fSortedByFee);
std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
while (!vecPriority.empty())
{
// Take highest priority transaction off the priority queue:
double dPriority = vecPriority.front().get<0>();
double dFeePerKb = vecPriority.front().get<1>();
CTransaction& tx = *(vecPriority.front().get<2>());
std::pop_heap(vecPriority.begin(), vecPriority.end(), comparer);
vecPriority.pop_back();
// Size limits
unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
if (nBlockSize + nTxSize >= nBlockMaxSize)
continue;
// Legacy limits on sigOps:
unsigned int nTxSigOps = tx.GetLegacySigOpCount();
if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
continue;
// Timestamp limit
if (tx.nTime > GetAdjustedTime() || (fProofOfStake && tx.nTime > pblock->vtx[0].nTime))
continue;
// Transaction fee
int64_t nMinFee = tx.GetMinFee(nBlockSize, GMF_BLOCK);
// Skip free transactions if we're past the minimum block size:
if (fSortedByFee && (dFeePerKb < nMinTxFee) && (nBlockSize + nTxSize >= nBlockMinSize))
continue;
// Prioritize by fee once past the priority size or we run out of high-priority
// transactions:
if (!fSortedByFee &&
((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < COIN * 144 / 250)))
{
fSortedByFee = true;
comparer = TxPriorityCompare(fSortedByFee);
std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
}
// Connecting shouldn't fail due to dependency on other memory pool transactions
// because we're already processing them in order of dependency
map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
MapPrevTx mapInputs;
bool fInvalid;
if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
continue;
int64_t nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
if (nTxFees < nMinFee)
continue;
nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
continue;
if (!tx.ConnectInputs(txdb, mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
continue;
mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
swap(mapTestPool, mapTestPoolTmp);
// Added
pblock->vtx.push_back(tx);
nBlockSize += nTxSize;
++nBlockTx;
nBlockSigOps += nTxSigOps;
nFees += nTxFees;
if (fDebug && GetBoolArg("-printpriority"))
{
printf("priority %.1f feeperkb %.1f txid %s\n",
dPriority, dFeePerKb, tx.GetHash().ToString().c_str());
}
// Add transactions that depend on this one to the priority queue
uint256 hash = tx.GetHash();
if (mapDependers.count(hash))
{
BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
{
if (!porphan->setDependsOn.empty())
{
porphan->setDependsOn.erase(hash);
if (porphan->setDependsOn.empty())
{
vecPriority.push_back(TxPriority(porphan->dPriority, porphan->dFeePerKb, porphan->ptx));
std::push_heap(vecPriority.begin(), vecPriority.end(), comparer);
}
}
}
}
}
nLastBlockTx = nBlockTx;
nLastBlockSize = nBlockSize;
if (fDebug && GetBoolArg("-printpriority"))
printf("CreateNewBlock(): total size %"PRIu64"\n", nBlockSize);
if (!fProofOfStake)
pblock->vtx[0].vout[0].nValue = GetProofOfWorkReward(nFees);
if (pFees)
*pFees = nFees;
// Fill in header
pblock->hashPrevBlock = pindexPrev->GetBlockHash();
pblock->nTime = max(pindexPrev->GetPastTimeLimit()+1, pblock->GetMaxTransactionTime());
pblock->nTime = max(pblock->GetBlockTime(), PastDrift(pindexPrev->GetBlockTime()));
if (!fProofOfStake)
pblock->UpdateTime(pindexPrev);
pblock->nNonce = 0;
}
return pblock.release();
}
void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
{
// Update nExtraNonce
static uint256 hashPrevBlock;
if (hashPrevBlock != pblock->hashPrevBlock)
{
nExtraNonce = 0;
hashPrevBlock = pblock->hashPrevBlock;
}
++nExtraNonce;
unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2
pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
pblock->hashMerkleRoot = pblock->BuildMerkleTree();
}
void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
{
//
// Pre-build hash buffers
//
struct
{
struct unnamed2
{
int nVersion;
uint256 hashPrevBlock;
uint256 hashMerkleRoot;
unsigned int nTime;
unsigned int nBits;
unsigned int nNonce;
}
block;
unsigned char pchPadding0[64];
uint256 hash1;
unsigned char pchPadding1[64];
}
tmp;
memset(&tmp, 0, sizeof(tmp));
tmp.block.nVersion = pblock->nVersion;
tmp.block.hashPrevBlock = pblock->hashPrevBlock;
tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
tmp.block.nTime = pblock->nTime;
tmp.block.nBits = pblock->nBits;
tmp.block.nNonce = pblock->nNonce;
FormatHashBlocks(&tmp.block, sizeof(tmp.block));
FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
// Byte swap all the input buffer
for (unsigned int i = 0; i < sizeof(tmp)/4; i++)
((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
// Precalc the first half of the first hash, which stays constant
SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
memcpy(pdata, &tmp.block, 128);
memcpy(phash1, &tmp.hash1, 64);
}
bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
{
uint256 hashBlock = pblock->GetHash();
uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
if(!pblock->IsProofOfWork())
return error("CheckWork() : %s is not a proof-of-work block", hashBlock.GetHex().c_str());
if (hashBlock > hashTarget)
return error("CheckWork() : proof-of-work not meeting target");
//// debug print
printf("CheckWork() : new proof-of-work block found \n hash: %s \ntarget: %s\n", hashBlock.GetHex().c_str(), hashTarget.GetHex().c_str());
pblock->print();
printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
// Found a solution
{
LOCK(cs_main);
if (pblock->hashPrevBlock != hashBestChain)
return error("CheckWork() : generated block is stale");
// Remove key from key pool
reservekey.KeepKey();
// Track how many getdata requests this block gets
{
LOCK(wallet.cs_wallet);
wallet.mapRequestCount[hashBlock] = 0;
}
// Process this block the same as if we had received it from another node
if (!ProcessBlock(NULL, pblock))
return error("CheckWork() : ProcessBlock, block not accepted");
}
return true;
}
bool CheckStake(CBlock* pblock, CWallet& wallet)
{
uint256 proofHash = 0, hashTarget = 0;
uint256 hashBlock = pblock->GetHash();
if(!pblock->IsProofOfStake())
return error("CheckStake() : %s is not a proof-of-stake block", hashBlock.GetHex().c_str());
// verify hash target and signature of coinstake tx
if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, proofHash, hashTarget))
return error("CheckStake() : proof-of-stake checking failed");
//// debug print
printf("CheckStake() : new proof-of-stake block found \n hash: %s \nproofhash: %s \ntarget: %s\n", hashBlock.GetHex().c_str(), proofHash.GetHex().c_str(), hashTarget.GetHex().c_str());
pblock->print();
printf("out %s\n", FormatMoney(pblock->vtx[1].GetValueOut()).c_str());
// Found a solution
{
LOCK(cs_main);
if (pblock->hashPrevBlock != hashBestChain)
return error("CheckStake() : generated block is stale");
// Track how many getdata requests this block gets
{
LOCK(wallet.cs_wallet);
wallet.mapRequestCount[hashBlock] = 0;
}
// Process this block the same as if we had received it from another node
if (!ProcessBlock(NULL, pblock))
return error("CheckStake() : ProcessBlock, block not accepted");
}
return true;
}
void StakeMiner(CWallet *pwallet)
{
SetThreadPriority(THREAD_PRIORITY_LOWEST);
// Make this thread recognisable as the mining thread
RenameThread("fastcash-miner");
bool fTryToSync = true;
while (true)
{
if (fShutdown)
return;
while (pwallet->IsLocked())
{
nLastCoinStakeSearchInterval = 0;
MilliSleep(1000);
if (fShutdown)
return;
}
while (vNodes.empty() || IsInitialBlockDownload())
{
nLastCoinStakeSearchInterval = 0;
fTryToSync = true;
MilliSleep(1000);
if (fShutdown)
return;
}
if (fTryToSync)
{
fTryToSync = false;
if (vNodes.size() < 3 || nBestHeight < GetNumBlocksOfPeers())
{
MilliSleep(60000);
continue;
}
}
//
// Create new block
//
int64_t nFees;
auto_ptr<CBlock> pblock(CreateNewBlock(pwallet, true, &nFees));
if (!pblock.get())
return;
// Trying to sign a block
if (pblock->SignBlock(*pwallet, nFees))
{
SetThreadPriority(THREAD_PRIORITY_NORMAL);
CheckStake(pblock.get(), *pwallet);
SetThreadPriority(THREAD_PRIORITY_LOWEST);
MilliSleep(500);
}
else
MilliSleep(nMinerSleep);
}
}
| [
"[email protected]"
] | |
3d396e37cd86ab046ae00a710927bb9c86d407c2 | b654c48c6a1f72140ca14defd05b835d4dec5a75 | /prog3/prog3.cpp | 336446d105389e59adc4dee80064b9f7110bdc4b | [] | no_license | johntalton/cs470 | 036ca995c48712d2506665a337a6d814ab11d347 | 187c87a60e2b2fdacd038eddb683a68ecd9c711d | refs/heads/master | 2021-01-22T17:57:09.139203 | 1999-06-28T17:32:00 | 2017-08-18T18:09:22 | 100,736,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,663 | cpp | #include <iostream.h>
#include "../glcontrol.h" //Include the basics for adding this into OpenGL
#include "../globals.h" // All global vars and functions
#include "../prog1/prog1.h" //Include OUR old basic code
#include "../prog2/prog2.h" // includ some of our primitive stuff
#include "prog3.h" // hope we get it all in there
int Animate = 1; // Use this to tell user whater we want to constanly redraw or not
#define PI 3.14159265359
Point3D Vlist0[] = { -10, 0, 0, //Xaxis
10, 0, 0,
0, -10, 0, //Yaxis
0, 10, 0,
0, 0, -10, //Zaxis
0, 0, 10
};
Edge3D Elist0[] = { 0, 1,
2, 3,
4, 5
};
Point3D Centroid1= { 0, 0.333 , 0
};
Point3D Vlist1[] = { -1.0, 0.0, 1.0, //0
1.0, 0.0, 1.0, //1
1.0, 0.0, -1.0, //2
-1.0, 0.0, -1.0, //3
0.0, 1.0, 0.0 //4
};
Edge3D Elist1[] = { 0, 1, // This sets up a pritty pyramid
1, 2,
2, 3,
3, 0,
0, 4,
1, 4,
2, 4,
3, 4
};
Point3D Centroid2= { 6, 1, 1
};
Point3D Vlist2[] = { 5.0, 0.0, 0.0, //0
7.0, 0.0, 0.0, //1
7.0, 0.0, 2.0, //2
5.0, 0.0, 2.0, //3
5.0, 2.0, 0.0, //4
7.0, 2.0, 0.0, //5
7.0, 2.0, 2.0, //6
5.0, 2.0, 2.0 //7
};
Edge3D Elist2[] = { 0, 1, //bottom
1, 2,
2, 3,
3, 0,
4, 5, //top
5, 6,
6, 7,
7, 4,
0, 4, //sides
1, 5,
2, 6,
3, 7
};
double t = 0;
Point3D O = { 0, 4, -5.4};
Point3D R = { 0, 0, 0};
Point3D V = { 0, 1, 0 };
Point3D newVlist1[10];
Point3D newVlist2[10];
/**************************************************************************
* DrawScene
* This is our function that is called on draw. This is really the
* only thing that neads to be in here.
* @param void
* @return void
**************************************************************************/
void DrawScene()
{
if(t < 4*PI){ // spin around twice
O.x = 17 * sin(t);
O.z = -17 * cos(t);
t = t + .01;
}else{ // and then zoom out Z axis if neg toward user
O.z = O.z - 0.5;
}
ViewPoint(O, R,V);
if(axison){
setColor(0.4,0.4,0.4);
Draw3DPoly(Vlist0,Elist0,6,3);
}
setColor(1,0,0);
//Scale(Vlist1,5,Centroid1,30,newVlist1);
Draw3DPoly(Vlist1,Elist1,5,8);
//Ortho(newVlist1,Elist1,5,8);
setColor(0,1,0);
//Scale(Vlist2,8,Centroid2,30,newVlist2);
Draw3DPoly(Vlist2,Elist2,8,12);
//Ortho(newVlist2,Elist2,8,12);
} | [
"[email protected]"
] | |
dd0c116e4461f38102dc4948a3a4ff5e506f25e5 | ec68c973b7cd3821dd70ed6787497a0f808e18e1 | /Cpp/SDK/TOD_PointLight_A_parameters.h | fd1daeb563e895b6dc63f449b8665bb11d38c767 | [] | no_license | Hengle/zRemnant-SDK | 05be5801567a8cf67e8b03c50010f590d4e2599d | be2d99fb54f44a09ca52abc5f898e665964a24cb | refs/heads/main | 2023-07-16T04:44:43.113226 | 2021-08-27T14:26:40 | 2021-08-27T14:26:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,011 | h | #pragma once
// Name: Remnant, Version: 1.0
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function TOD_PointLight_A.TOD_PointLight_A_C.MatchSunColor
struct ATOD_PointLight_A_C_MatchSunColor_Params
{
};
// Function TOD_PointLight_A.TOD_PointLight_A_C.TODLight
struct ATOD_PointLight_A_C_TODLight_Params
{
};
// Function TOD_PointLight_A.TOD_PointLight_A_C.UserConstructionScript
struct ATOD_PointLight_A_C_UserConstructionScript_Params
{
};
// Function TOD_PointLight_A.TOD_PointLight_A_C.ReceiveTick
struct ATOD_PointLight_A_C_ReceiveTick_Params
{
};
// Function TOD_PointLight_A.TOD_PointLight_A_C.ExecuteUbergraph_TOD_PointLight_A
struct ATOD_PointLight_A_C_ExecuteUbergraph_TOD_PointLight_A_Params
{
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"[email protected]"
] | |
b5a48293a3e78a0ef77669c555f74158a2e84199 | 85e875b32b26de82b877268b18c6b73ac3e2b804 | /plant/plant.ino | 0923286b8e4b7749c92528b03f9e239d00dee09b | [] | no_license | jeewonKim/manual | d6cda333b0419899513d18ce279c2111f87c403d | 35c924258445c2d71eb56d8e4b005258319f501c | refs/heads/master | 2021-01-23T16:14:43.254596 | 2017-06-04T04:08:57 | 2017-06-04T04:08:57 | 93,289,274 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 330 | ino | #define READPERIOD 5
unsigned long lastReadWrite;
void setup() {
Serial.begin(9600);
lastReadWrite = millis();
}
void loop() {
if (millis() - lastReadWrite > READPERIOD) {
int readValue = analogRead(A0);
Serial.print(readValue);
Serial.println();
Serial.flush();
lastReadWrite = millis();
}
}
| [
"[email protected]"
] | |
839a272864063506d45cc9ebc94f1928b8cf1168 | 1e10c085b20032a9c7c373bcb802ee2552b3fb27 | /alice/software/b3d2/src/action_perform_decay.cc | a0b282f6627845da7254edf525a97e40fac3e207 | [] | no_license | scottedwardpratt/hp | a5d65842fcfe24a43fb90c8df1b3328ad277f401 | 447fa5efdfc75681103542ff72e4d4a3dfee396f | refs/heads/master | 2022-01-31T00:10:06.546100 | 2022-01-19T20:48:01 | 2022-01-19T20:48:01 | 239,546,812 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,550 | cc | #ifndef __ACTION_PERFORM_DECAY_CC__
#define __ACTION_PERFORM_DECAY_CC__
#include "b3d.h"
#include "part.h"
#include "cell.h"
#include "resonances.h"
void CAction::PerformDecay(){
CPart *mother,*dptr;
CPartMap::iterator ppos;
int ibody,nbodies,alpha;
double mtot,mt,etamax=b3d->ETAMAX,mothermass;
double deleta;
FourVector Ptot;
ppos=partmap.begin();
mother=ppos->second;
b3d->GetDeadParts(product);
mothermass=mother->GetMass();
if(mother->cell!=NULL && mother->cell!=mother->FindCell() && tau<b3d->TAUCOLLMAX){
printf("Cells don't match for decaying mother\n");
mother->CheckRapidity();
mother->cell->Print();
mother->FindCell()->Print();
mother->Print();
exit(1);
}
if(tau>b3d->TAUCOLLMAX || mother->cell==NULL){
while(b3d->BJORKEN && (mother->eta<-etamax || mother->eta>etamax)){
if(mother->eta<-etamax) deleta=2.0*etamax*ceil((-etamax-mother->eta)/(2.0*etamax));
if(mother->eta>etamax) deleta=-2.0*etamax*ceil((mother->eta-etamax)/(2.0*etamax));
mother->eta+=deleta;
mother->y+=deleta;
mt=mother->GetMT();
mother->p[0]=mt*cosh(mother->y);
mother->p[3]=mt*sinh(mother->y);
mother->r[0]=tau*cosh(mother->eta);
mother->r[3]=tau*sinh(mother->eta);
}
}
int ntry=0;
do{
mtot=0.0;
if(ntry<25)
mother->resinfo->DecayGetResInfoPtr(nbodies,daughterresinfo);
else{
mother->resinfo->DecayGetResInfoPtr_minmass(nbodies,daughterresinfo);
}
for(ibody=0;ibody<nbodies;ibody++){
mtot+=daughterresinfo[ibody]->mass;
}
if(ntry>25){
printf("FATAL: action_perform_decay, ntry too big, mothermass=%g\n",mother->GetMass());
mother->Print();
exit(1);
}
ntry++;
}while(mtot>mothermass);
for(ibody=0;ibody<nbodies;ibody++){
product[ibody]->resinfo=daughterresinfo[ibody];
}
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
for(alpha=0;alpha<4;alpha++)
Ptot[alpha]=mother->p[alpha];
b3d->Decay(mother,nbodies,product);
for(alpha=0;alpha<4;alpha++){
for(ibody=0;ibody<nbodies;ibody++){
Ptot[alpha]-=product[ibody]->p[alpha];
}
}
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
mother->actionmother=b3d->nactions;
for(ibody=0;ibody<nbodies;ibody++){
dptr=product[ibody];
dptr->active=true;
dptr->bweight=mother->bweight;
dptr->balanceID=mother->balanceID;
dptr->nscatt=0;
dptr->tau_lastint=tau;
dptr->actionmother=b3d->nactions;
dptr->ChangeCell(dptr->FindCell());
if(dptr->currentmap!=&(b3d->PartMap))
dptr->ChangeMap(&(b3d->PartMap));
dptr->FindActions();
}
mother->Kill();
b3d->ndecay+=1;
}
#endif
| [
"[email protected]"
] | |
d702510e2f19624c1c373747d0edf2d02e223577 | 521ea4499e6360af48335e72802a1d536cad3233 | /Base2B/main.cpp | e678f52d279b09cdaa34bbc681616ebdf81cd908 | [] | no_license | ShirleyHou/3220_Asm3 | 3123505264fc2933c786cfb94e5e9dcae783ac08 | 3b47035465d40d931ee27105a479ef5f3d0a7c7f | refs/heads/master | 2020-05-26T19:33:24.482524 | 2019-05-24T03:45:25 | 2019-05-24T03:45:25 | 188,348,239 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,834 | cpp | #include "dialog.h"
#include <QApplication>
#include <iostream>
#include <QTextStream>
#include <QFileInfo>
#include <time.h>
#include <vector>
#include <tuple>
#include "entityfactory.h"
#include "jumpingstickman.h"
#include "colouredentity.h"
#include "flyingentity.h"
#include "stage2dialog.h"
#include "testrunner.h"
#include "testingdialog.h"
#include "collisiontest.h"
#include "jumptest.h"
#include "swaprendererstage.h"
#include "flyingobstacletest.h"
#include "stagefactory.h"
#include <iostream>
using namespace std;
inline bool exists(const std::string& name) {
QFileInfo fileInfo(name.c_str());
std::cout << name << std::endl;
return fileInfo.exists();
}
bool isNumber(string value) {
for (size_t i = 0; i < value.length(); i++) {
if(!isdigit(value[i])) {
return false;
}
}
return true;
}
// A better version of the above method, but I don't want to remove it in case I lose marks
bool isNumber(QString value) {
bool ok;
value.toInt(&ok);
return ok;
}
int main(int argc, char *argv[]) {
srand(time(nullptr));
QApplication a(argc, argv);
Game game;
// Set up background
Background background;
background.setSprite(":ground.png");
background.setCoordinate(Coordinate(0, 150, 450));
StageFactory::Config stageConfig;
vector<pair<unique_ptr<Entity>, int>> obstacles;
stageConfig.obstacles = &obstacles;
stageConfig.game = &game;
// Read config file and set basic game attributes
if (!exists("../Base2B/config.txt")) {
cout << "Config file not found. Terminating" << endl;
return 0;
}
QFile inputFile(QString("../Base2B/config.txt"));
inputFile.open(QIODevice::ReadOnly);
QTextStream stream(&inputFile);
QString line = stream.readLine();
while (!line.isNull()) {
QStringList args = line.split(" ");
if (args.length() != 2) {
cout << "Invalid config format. Terminating" << endl;
return 0;
}
string setting = line.split(" ").at(0).toStdString();
QString value = line.split(" ").at(1);
if (setting == "size:") {
std::string size = value.toStdString();
if (size.compare("tiny") != 0 &&
size.compare("normal") != 0 &&
size.compare("large") != 0 &&
size.compare("giant") != 0) {
cout << "Size must be tiny, normal, large or giant. Terminating" << endl;
return 0;
}
stageConfig.size = size;
} else if (setting == "x:") {
if (!isNumber(value.toStdString())) {
cout << "X coordinate must be set to a postive integer. Terminating";
return 0;
}
unsigned int x = value.toUInt();
if (x > 800) {
cout << "X coordinate must be between 0 and 800. Terminating";
return 0;
}
stageConfig.coord = Coordinate(x, 150, 450);
} else if (setting == "velocity:") {
if (!isNumber(value.toStdString())) {
cout << "Velocity must be set to a positive integer. Terminating";
return 0;
}
stageConfig.velocity = value.toInt();
} else if (setting == "background:") {
string path = value.toStdString();
if (exists(path)) {
stageConfig.background = path;
} else {
cout << "File \"" + path + "\" not found. Terminating";
return 0;
}
} else if (setting == "stage:") {
if (!isNumber(value.toStdString())) {
cout << "Stage value must be a positive integer. Terminating";
return 0;
}
stageConfig.stage = value.toInt();
if (stageConfig.stage != 1 && stageConfig.stage != 2) {
cout << "Invalid stage value. Terminating";
return 0;
}
} else if (setting == "obstacles:") {
QStringList parts = value.split("|");
EntityFactory factory;
for (QString &s : parts) {
QStringList sl = s.split(",");
// Make sure each obstacle config has 8 integer parameters
bool ok = true;
for (int i = 0; i < sl.length() && ok; i++) {
ok = isNumber(sl.at(i));
}
if (sl.length() != 8 || !ok) {
cout << "Invalid obstacle values. Terminating.";
return 0;
}
// Make a coloured bird obstacle according to the config
auto e = factory.getEntity("bird");
e = make_unique<ColouredEntity>(move(e), QColor(sl.at(4).toInt(), sl.at(5).toInt(), sl.at(6).toInt()));
e->setSize(sl.at(0).toInt(), sl.at(1).toInt());
e->getCoordinate().setYCoordinate(sl.at(2).toInt());
int flyRate = sl.at(7).toInt();
if (flyRate != 0) {
e = make_unique<FlyingEntity>(move(e), flyRate);
}
// Add the pair (obstacle, spacing_to_next_obstacle) to our obstacle layout
obstacles.push_back(make_pair(move(e), sl.at(3).toInt()));
}
} else if (setting == "testMode:") {
stageConfig.testMode = value.compare("on") == 0;
}
line = stream.readLine();
};
// Construct and set stage
game.setStage(StageFactory(stageConfig).createStage());
game.show();
return a.exec();
}
| [
"[email protected]"
] | |
f84f3f81fa949df71d408f2778385685136c645a | e81a82daa6542cd7c9e339f5bed5a3b17533d2ca | /test/MotionScriptRunnerTests.cc | 4a8f9b9aa457157ea537bb6a1fc762b66ce8626d | [
"Apache-2.0"
] | permissive | drewnoakes/bold-humanoid | 56ea9c06d673eff73bd07865bb0bea8d91371a04 | 6025fcc92cdf3ce9486d4fe5af4f30ee7a7a3335 | refs/heads/master | 2023-07-16T13:30:17.976858 | 2021-08-24T12:05:48 | 2021-08-24T12:05:48 | 398,125,395 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,150 | cc | #include <gtest/gtest.h>
#include "../CM730Snapshot/cm730snapshot.hh"
#include "../MotionScript/motionscript.hh"
#include "../MotionScriptRunner/motionscriptrunner.hh"
#include "../MotionTask/motiontask.hh"
#include "../MX28Snapshot/mx28snapshot.hh"
#include "../State/state.hh"
#include "../StateObject/HardwareState/hardwarestate.hh"
#include "../ThreadUtil/threadutil.hh"
#include <memory>
#include <vector>
#include <Eigen/Core>
using namespace bold;
using namespace Eigen;
using namespace std;
void pushStep(shared_ptr<MotionScript::Stage> stage, ushort value, uchar moveCycles, uchar pauseCycles = 0)
{
MotionScript::KeyFrame step;
step.moveCycles = moveCycles;
step.pauseCycles = pauseCycles;
for (uchar jointId = (uchar)JointId::MIN; jointId <= (uchar)JointId::MAX; jointId++)
step.values[jointId-1] = value;
stage->keyFrames.push_back(step);
}
// TODO unit test that runs through all motion script files on disk
TEST (DISABLED_MotionScriptRunnerTests, basics)
{
ThreadUtil::setThreadId(ThreadId::MotionLoop);
// TODO convenience method for populating a basic HardwareState object
auto cm730State = make_unique<CM730Snapshot const>();
auto mx28States = vector<unique_ptr<MX28Snapshot const>>();
for (uchar id = 0; id < 20; id++) {
auto mx28 = make_unique<MX28Snapshot>(id);
mx28->presentPositionValue = 0;
mx28States.push_back(move(mx28));
}
State::set<HardwareState>(make_shared<HardwareState>(move(cm730State), move(mx28States), 0, 0, 0));
auto stage = make_shared<MotionScript::Stage>();
pushStep(stage, 100, 5, 0);
vector<shared_ptr<MotionScript::Stage>> stages = { stage };
auto script = make_shared<MotionScript>("test-script", stages, true, true, true);
MotionScriptRunner runner(script);
EXPECT_EQ(MotionScriptRunnerStatus::Pending, runner.getStatus());
EXPECT_EQ(0, runner.getCurrentStageIndex());
EXPECT_EQ(0, runner.getCurrentKeyFrameIndex());
EXPECT_EQ(script, runner.getScript());
EXPECT_TRUE(runner.step(JointSelection::all()));
EXPECT_EQ(MotionScriptRunnerStatus::Running, runner.getStatus());
while (runner.step(JointSelection::all()))
{}
}
| [
"[email protected]"
] | |
ca7d741437661f28392e2f1c9ad8b3604a85eadc | 6c2bc6db5031e6cffaeb9e05022daa8ce98cfe20 | /Night_Light_Automation_System.ino | 2c2b154bd6ce192998563630ad511df7c5c35de9 | [] | no_license | NadaHussien12/Arduino-Final-Project-Team-5- | 520a219abbcb7e1c71c15b74c0831abb08ebb318 | de027f4f56aa4ee0a0a11586dd26962479b3e48c | refs/heads/main | 2023-07-24T01:35:57.581962 | 2021-09-10T14:52:33 | 2021-09-10T14:52:33 | 405,114,791 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,912 | ino | //Declaration and initialization of some variables:
#define LDR A0
#define LED 13
#include <Servo.h>
// constants won't change
const int TRIG_PIN = 6; // Arduino pin connected to Ultrasonic Sensor's TRIG pin
const int ECHO_PIN = 7; // Arduino pin connected to Ultrasonic Sensor's ECHO pin
const int SERVO_PIN = 9; // Arduino pin connected to Servo Motor's pin
const int DISTANCE_THRESHOLD = 50; // centimeters
int LDR_VAL;
Servo servo; // create servo object to control a servo
// variables will change:
float duration_us, distance_cm;
void setup()
{
Serial.begin (9600); // initialize serial port
pinMode(TRIG_PIN, OUTPUT); // set arduino pin to output mode
pinMode(ECHO_PIN, INPUT); // set arduino pin to input mode
pinMode(LDR,INPUT);
pinMode(LED,OUTPUT);
servo.attach(SERVO_PIN); // attaches the servo on pin 9 to the servo object
servo.write(0);
}
void loop()
{
digitalWrite(LED,LOW);
LDR_VAL= analogRead(LDR);
Serial.print("LDR VALUE = ");
Serial.println(LDR_VAL);
delay(1000);
// generate 10-microsecond pulse to TRIG pin
digitalWrite(TRIG_PIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIG_PIN, LOW);
// measure duration of pulse from ECHO pin
duration_us = pulseIn(ECHO_PIN, HIGH);
// calculate the distance
distance_cm = 0.017 * duration_us;
servo.write(180); // rotate servo motor to 90 degree
delay(500);
servo.write(0); // rotate servo motor to 0 degree
if(LDR_VAL>1000)
{
Serial.println("Day");
delay(1000);
}
else
{
Serial.println("At night");
delay(1000);
if(distance_cm < DISTANCE_THRESHOLD)
{
Serial.print("distance: ");
Serial.print(distance_cm);
Serial.println(" cm");
delay(1000);
Serial.println("There is someone in the room");
digitalWrite(LED,HIGH);
delay(3000);
}
else
{
Serial.println("Nobody in the room");
}
}
}
| [
"[email protected]"
] | |
52d80b603cee1d8af643492f19457a0eac4313bb | 7afa020b6e0cc14608cff1c4d5cbf0d67de3ffe5 | /src/qt/optionsdialog.h | 43586ce07c274ec672dee106592cc9f4e82ce063 | [
"MIT"
] | permissive | bitcointest527/tesbit12 | f032d9d469dadb8045a92c96956a2967d82b7dee | 71ab5ef78e2c5dc5cf57ce853e4d64930a05947e | refs/heads/master | 2023-08-08T08:40:41.473951 | 2019-11-28T15:44:40 | 2019-11-28T15:44:40 | 224,683,941 | 0 | 0 | MIT | 2023-07-22T22:55:34 | 2019-11-28T15:40:04 | C | UTF-8 | C++ | false | false | 1,838 | h | // Copyright (c) 2009-2017 The Bitcoin Core developers
// Copyright (c) 2019-2019 The bitcoinphantom Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef bitcoinphantom_QT_OPTIONSDIALOG_H
#define bitcoinphantom_QT_OPTIONSDIALOG_H
#include <QDialog>
#include <QValidator>
class OptionsModel;
class QValidatedLineEdit;
QT_BEGIN_NAMESPACE
class QDataWidgetMapper;
QT_END_NAMESPACE
namespace Ui {
class OptionsDialog;
}
/** Proxy address widget validator, checks for a valid proxy address.
*/
class ProxyAddressValidator : public QValidator
{
Q_OBJECT
public:
explicit ProxyAddressValidator(QObject *parent);
State validate(QString &input, int &pos) const;
};
/** Preferences dialog. */
class OptionsDialog : public QDialog
{
Q_OBJECT
public:
explicit OptionsDialog(QWidget *parent, bool enableWallet);
~OptionsDialog();
void setModel(OptionsModel *model);
void setMapper();
private Q_SLOTS:
/* set OK button state (enabled / disabled) */
void setOkButtonState(bool fState);
void on_resetButton_clicked();
void on_openbitcoinphantomConfButton_clicked();
void on_okButton_clicked();
void on_cancelButton_clicked();
void on_hideTrayIcon_stateChanged(int fState);
void togglePruneWarning(bool enabled);
void showRestartWarning(bool fPersistent = false);
void clearStatusLabel();
void updateProxyValidationState();
/* query the networks, for which the default proxy is used */
void updateDefaultProxyNets();
Q_SIGNALS:
void proxyIpChecks(QValidatedLineEdit *pUiProxyIp, int nProxyPort);
private:
Ui::OptionsDialog *ui;
OptionsModel *model;
QDataWidgetMapper *mapper;
};
#endif // bitcoinphantom_QT_OPTIONSDIALOG_H
| [
"[email protected]"
] | |
6766cc6353443f84a7640b2d34379f4643816fb3 | f55477989f690571822c034c44a4ff99ca86790d | /Server/network/Utility.cpp | 1c90b23ff73f491c1206acd08fb156977b726698 | [] | no_license | Arielce/c2p_server | 9532564c0ac7ed9ee6d5c938d26304722030349f | 8290cedb3b07ec2038aa5dcb69682b0386bf8071 | refs/heads/master | 2020-04-07T16:31:54.913823 | 2014-08-02T05:54:49 | 2014-08-02T05:54:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 452 | cpp | #include "Utility.h"
namespace cpnet
{
string GetProtoData(MessageHeader* pMsgHeader)
{
char* pBuf = (char*)pMsgHeader + sizeof(MessageHeader);
int uDataSize = pMsgHeader->uMsgSize - sizeof(MessageHeader);
return string(pBuf, uDataSize);
}
uint32_t GenRandom(uint32_t uMin, uint32_t uMax)
{
boost::random::mt19937 rng((uint32_t)std::time(0));
boost::random::uniform_int_distribution<> randGen(uMin, uMax);
return randGen(rng);
}
}
| [
"[email protected]"
] | |
bdd351b74b3bacd3de1f439e614d1a7e05473c98 | e0cd22a3dbf1589cee37c33374607ed2ce66e95e | /cpp/opensourcesrcs/vcf/include/implementerKit/GTKFileSaveDialog.h | 5bea8f3f0f97926d9c62afa893bcff40597e2eb3 | [] | no_license | CodeOpsTech/DesignPatternsCpp | 1335402e2c88a4b8715430210ec153af7bb733be | 2c67495ffdc65443fae98b2879f7b608e3562876 | refs/heads/master | 2021-01-11T19:19:48.498940 | 2017-07-19T02:52:56 | 2017-07-19T02:52:56 | 79,355,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,642 | h | /**
*Copyright (c) 2000-2001, Jim Crafton
*All rights reserved.
*Redistribution and use in source and binary forms, with or without
*modification, are permitted provided that the following conditions
*are met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the distribution.
*
*THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
*AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
*LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
*A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS
*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.
*
*NB: This software will not save the world.
*/
#ifndef _GTKFILESAVEDIALOG_H__
#define _GTKFILESAVEDIALOG_H__
namespace VCF {
class GTKFileSaveDialog {
public:
GTKFileSaveDialog();
virtual ~GTKFileSaveDialog();
};
}; //end of namespace VCF
#endif //_GTKFILESAVEDIALOG_H__ | [
"[email protected]"
] | |
b206cb31b07ea0d5d3cf1c4c439d7d472df1659b | 8aa5cd4de3323f6f3518834406ed51a27eed2c31 | /src/stl/map.h | 49eb0d37dc18243673d1405e625d4052e706b943 | [
"Zlib"
] | permissive | raptoravis/two | c07b0583ee643c2375323a74802850c3449ac610 | 4366fcf8b3072d0233eb8e1e91ac1105194f60f5 | refs/heads/master | 2020-07-24T12:32:48.848094 | 2019-09-12T00:51:43 | 2019-09-12T00:51:43 | 207,928,784 | 0 | 0 | Zlib | 2019-09-12T00:09:58 | 2019-09-12T00:09:58 | null | UTF-8 | C++ | false | false | 279 | h | #pragma once
#include <infra/Config.h>
#ifdef USE_STL
#include <map>
namespace stl
{
using std::map;
}
#else
#include <stl/unordered_map.h>
namespace stl
{
template <class K, class T>
using map = stl::unordered_map<K, T>;
}
#endif
namespace two
{
export_ using stl::map;
}
| [
"[email protected]"
] | |
188f7834bd30007214f94499f7b71ebe2a3423fa | 22bcbec7293f17147341383e19d8fb88cf9b82d1 | /Skeleton.cpp | ca53dd1f2df1ca0f107b0199a309b56cf52e2273 | [] | no_license | iscream1/graf17_2 | 553bdedbe1f16f1f61e783d5c1e88b5a0ad26d48 | 35e8f7baa333378f32b1c60d7dd4a8ff0f39001c | refs/heads/master | 2021-01-19T21:24:09.319237 | 2017-04-18T18:03:34 | 2017-04-18T18:03:34 | 88,654,697 | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 24,419 | cpp | //=============================================================================================
// Szamitogepes grafika hazi feladat keret. Ervenyes 2017-tol.
// A //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// sorokon beluli reszben celszeru garazdalkodni, mert a tobbit ugyis toroljuk.
// A beadott program csak ebben a fajlban lehet, a fajl 1 byte-os ASCII karaktereket tartalmazhat.
// Tilos:
// - mast "beincludolni", illetve mas konyvtarat hasznalni
// - faljmuveleteket vegezni a printf-et kivéve
// - new operatort hivni a lefoglalt adat korrekt felszabaditasa nelkul
// - felesleges programsorokat a beadott programban hagyni
// - felesleges kommenteket a beadott programba irni a forrasmegjelolest kommentjeit kiveve
// ---------------------------------------------------------------------------------------------
// A feladatot ANSI C++ nyelvu forditoprogrammal ellenorizzuk, a Visual Studio-hoz kepesti elteresekrol
// es a leggyakoribb hibakrol (pl. ideiglenes objektumot nem lehet referencia tipusnak ertekul adni)
// a hazibeado portal ad egy osszefoglalot.
// ---------------------------------------------------------------------------------------------
// A feladatmegoldasokban csak olyan OpenGL/GLUT fuggvenyek hasznalhatok, amelyek az oran a feladatkiadasig elhangzottak
//
// NYILATKOZAT
// ---------------------------------------------------------------------------------------------
// Nev : Csibi Martin
// Neptun : V5LSRD
// ---------------------------------------------------------------------------------------------
// ezennel kijelentem, hogy a feladatot magam keszitettem, es ha barmilyen segitseget igenybe vettem vagy
// mas szellemi termeket felhasznaltam, akkor a forrast es az atvett reszt kommentekben egyertelmuen jeloltem.
// A forrasmegjeloles kotelme vonatkozik az eloadas foliakat es a targy oktatoi, illetve a
// grafhazi doktor tanacsait kiveve barmilyen csatornan (szoban, irasban, Interneten, stb.) erkezo minden egyeb
// informaciora (keplet, program, algoritmus, stb.). Kijelentem, hogy a forrasmegjelolessel atvett reszeket is ertem,
// azok helyessegere matematikai bizonyitast tudok adni. Tisztaban vagyok azzal, hogy az atvett reszek nem szamitanak
// a sajat kontribucioba, igy a feladat elfogadasarol a tobbi resz mennyisege es minosege alapjan szuletik dontes.
// Tudomasul veszem, hogy a forrasmegjeloles kotelmenek megsertese eseten a hazifeladatra adhato pontokat
// negativ elojellel szamoljak el es ezzel parhuzamosan eljaras is indul velem szemben.
//=============================================================================================
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <vector>
#if defined(__APPLE__)
#include <GLUT/GLUT.h>
#include <OpenGL/gl3.h>
#include <OpenGL/glu.h>
#else
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
#include <windows.h>
#endif
#include <GL/glew.h> // must be downloaded
#include <GL/freeglut.h> // must be downloaded unless you have an Apple
#endif
const unsigned int windowWidth = 600, windowHeight = 600;
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// You are supposed to modify the code from here...
// OpenGL major and minor versions
int majorVersion = 3, minorVersion = 0;
void getErrorInfo(unsigned int handle) {
int logLen;
glGetShaderiv(handle, GL_INFO_LOG_LENGTH, &logLen);
if (logLen > 0) {
char * log = new char[logLen];
int written;
glGetShaderInfoLog(handle, logLen, &written, log);
printf("Shader log:\n%s", log);
delete log;
}
}
// check if shader could be compiled
void checkShader(unsigned int shader, char * message) {
int OK;
glGetShaderiv(shader, GL_COMPILE_STATUS, &OK);
if (!OK) {
printf("%s!\n", message);
getErrorInfo(shader);
}
}
// check if shader could be linked
void checkLinking(unsigned int program) {
int OK;
glGetProgramiv(program, GL_LINK_STATUS, &OK);
if (!OK) {
printf("Failed to link shader program!\n");
getErrorInfo(program);
}
}
// vertex shader in GLSL
const char *vertexSource = R"(
#version 130
precision highp float;
in vec2 vertexPosition; // variable input from Attrib Array selected by glBindAttribLocation
out vec2 texcoord; // output attribute: texture coordinate
void main() {
texcoord = (vertexPosition + vec2(1, 1))/2; // -1,1 to 0,1
gl_Position = vec4(vertexPosition.x, vertexPosition.y, 0, 1); // transform to clipping space
}
)";
// fragment shader in GLSL
const char *fragmentSource = R"(
#version 130
precision highp float;
uniform sampler2D textureUnit;
in vec2 texcoord; // interpolated texture coordinates
out vec4 fragmentColor; // output that goes to the raster memory as told by glBindFragDataLocation
void main() {
fragmentColor = texture(textureUnit, texcoord);
}
)";
struct vec4 {
float v[4];
vec4(float x = 0, float y = 0, float z = 0, float w = 1) {
v[0] = x; v[1] = y; v[2] = z; v[3] = w;
}
vec4 operator*(const float& f) {
vec4 result;
result.v[0]=f*v[0];
result.v[1]=f*v[1];
result.v[2]=f*v[2];
return result;
}
vec4 operator*(const vec4 f) {
vec4 result;
result.v[0]=v[1]*f.v[2]-v[2]*f.v[1];
result.v[1]=v[2]*f.v[0]-v[0]*f.v[2];
result.v[2]=v[0]*f.v[1]-v[1]-f.v[0];
return result;
}
vec4& operator=(const vec4 f) {
v[0]=f.v[0];
v[1]=f.v[1];
v[2]=f.v[2];
return *this;
}
vec4 operator-(const vec4& vx)
{
return vec4(v[0]-vx.v[0], v[1]-vx.v[1], v[2]-vx.v[2]);
}
vec4 operator+(const vec4& vx)
{
return vec4(v[0]+vx.v[0], v[1]+vx.v[1], v[2]+vx.v[2]);
}
vec4 operator+=(const vec4& f) {
*this=*this+f;
return *this;
}
vec4 operator/(const float& f) {
vec4 result;
result.v[0]=v[0]/f;
result.v[1]=v[1]/f;
result.v[2]=v[2]/f;
return result;
}
const vec4& normalize()
{
return *this=*this * (1/sqrtf(v[0]*v[0]+v[1]*v[1]+v[2]*v[2]));
}
float length()
{
return sqrt(v[0]*v[0]+v[1]*v[1]+v[2]*v[2]);
}
float dot(const vec4 &vx)
{
return v[0]*vx.v[0]+v[1]*vx.v[1]+v[2]*vx.v[2];
}
};
const float epsilon=1e-4;
#define PI 3.1415
#define DMAX 5
#define maxdepth 5
class Material
{
public:
vec4 F0;
float n;
vec4 ka;
vec4 kd;
vec4 ks;
float shine;
bool reflective=false;
bool refractive=false;
bool isReflective()
{
return reflective;
}
bool isRefractive()
{
return refractive;
}
vec4 reflect(vec4 inDir, vec4 normal)
{
return inDir-normal*normal.dot(inDir)*2.0f;
}
virtual vec4 refract(vec4, vec4)=0;
virtual vec4 Fresnel(vec4, vec4)=0;
virtual vec4 shade(vec4, vec4, vec4, vec4)=0;
};
class Ray
{
public:
vec4 p;
vec4 dv;
Ray(vec4 origin=0, vec4 dir=0)
{
p=origin;
dv=dir;
}
};
class SmoothMaterial : public Material
{
vec4 F0;
float n;
float shine=50;
vec4 kd=vec4(100,0,50);
vec4 ks=vec4(0,0,50);
bool reflective=false;
bool refractive=false;
public:
Smoothmaterial()
{
kd=vec4(100,0,50);
ks=vec4(0,0,50);
}
vec4 refract(vec4 inDir, vec4 normal)
{
float ior=n;
float cosa=-1*normal.dot(inDir);
if(cosa<0)
{
cosa=-1*cosa;
normal=normal*-1.0f;
ior=1/n;
}
float disc=1-(1-cosa*cosa)/ior/ior;
if(disc<0) return reflect(inDir, normal);
return inDir/ior+normal*(cosa/ior-sqrtf(disc));
}
vec4 Fresnel(vec4 inDir, vec4 normal)
{
float cosa=fabs(normal.dot(inDir));
return F0+(vec4(1,1,1)-F0)*pow(1-cosa, 5);
}
vec4 shade(vec4 normal, vec4 viewDir, vec4 lightDir, vec4 inRad)
{
vec4 reflRad;
float cosTheta=normal.dot(lightDir);
if(cosTheta<0) return reflRad;
reflRad=inRad/255*kd/255*cosTheta;
vec4 halfway=(viewDir+lightDir).normalize();
float cosDelta=normal.dot(halfway);
//printf("%f\n", cosDelta);
if(cosDelta<0) return reflRad;
return reflRad+inRad/255*ks/255*pow(cosDelta, shine);
}
};
struct Hit {
public:
float t;
vec4 position;
vec4 normal;
Material* material;
Hit(float tx=-1) { t = tx; }
void setT(float tx, Ray ray)
{
t=tx;
//printf("asd");
//material=new SmoothMaterial();
position=((ray.p)+(ray.dv*t));
}
};
struct Intersectable
{
Material* material;
virtual Hit intersect(Ray& ray)=0;
virtual vec4 surfNorm(vec4 p)=0;
};
class Camera
{
public:
int w=windowWidth;
int h=windowHeight;
int w2=w/2;
int h2=h/2;
vec4 eye;
vec4 lookat;
vec4 up;
vec4 right;
int XM;
int YM;
Ray getRay(int right, int up)
{
Ray ray;
ray.p=vec4(right-w2, up-h2, 0);
ray.dv=ray.p-eye;
ray.dv.normalize();
return ray;
}
};
Camera camera;
class RoughMaterial : public Material
{
vec4 kd, ks;
float shine;
public:
vec4 shade(vec4 normal, vec4 viewDir, vec4 lightDir, vec4 inRad)
{
vec4 reflRad;
float cosTheta=normal.dot(lightDir);
if(cosTheta<0) return reflRad;
reflRad=inRad*kd*cosTheta;
vec4 halfway=(viewDir+lightDir).normalize();
float cosDelta=normal.dot(halfway);
if(cosDelta<0) return reflRad;
return reflRad+inRad*ks*pow(cosDelta, shine);
}
};
class Sphere : public Intersectable
{
vec4 center=vec4(100,100,200);
float R=100.0f;
public:
Hit intersect(Ray& ray)
{
/*float dirx=ray.dv.v[0];
float diry=ray.dv.v[1];
float dirz=ray.dv.v[2];
float px=ray.p.v[0];
float py=ray.p.v[1];
float pz=ray.p.v[2];
float ox=center.v[0];
float oy=center.v[1];
float oz=center.v[2];
float a=dirx*dirx+diry*diry+dirz*dirz;
float b=2*dirx*(px-ox)+2*diry*(py-oy)+2*dirz*(pz-oz);
float c=ox*ox+oy*oy+oz*oz+px*px+py*py+pz*pz-2*(ox*px+oy*py+oz*pz)-R*R;*/
vec4 dv=ray.dv;
float a=dv.dot(ray.dv);
float b=2*(ray.p-center).dot(ray.dv);
float c=((ray.p-center).dot(camera.eye-center)-R*R);
float det=b*b-4*a*c;
//printf("%lf\n", det);
if(det<(0.0f-epsilon))
{
return Hit();
}
else if(det<epsilon)
{
det=0.0f;
}
float x=((-1.0f*b-sqrtf(det)) / (2.0f*a));
if(x>epsilon)
{
Hit ret;
ret.setT(x, ray);
ret.normal=surfNorm(ret.position);
return ret;
}
else return Hit(0.0f);
}
vec4 surfNorm(vec4 p)
{
return (p-center).normalize();
}
};
class Mesh : public Intersectable
{
Hit intersect(const Ray& ray);
};
class Color
{
public:
float r, g, b;
Color(float rr=0, float gg=0, float bb=0)
{
r=rr;
g=gg;
b=bb;
}
Color(const Color& c)
{
r=c.r;
g=c.g;
b=c.b;
}
Color& operator=(Color c)
{
r=c.r;
g=c.g;
b=c.b;
return *this;
}
Color operator+(Color& c)
{
Color res;
res.r=r+c.r;
res.g=g+c.g;
res.b=b+c.b;
return res;
}
Color operator/(float d)
{
Color res;
res.r=r/d;
res.g=g/d;
res.b=b/d;
return res;
}
};
class Light
{
public:
Color color;
vec4 o=vec4(200, -200, 100);
vec4 Lout=vec4(255, 128, 60);
bool type;
vec4 getLightDir();
vec4 getInRad();
vec4 getDist();
};
class Shape
{
public:
Color Kr;
Color color;
Color fr;
Color kappa;
bool isReflective;
bool isRefractive;
virtual float intersect(Ray& ray)=0;
virtual vec4 surfNorm(vec4& intersection)=0;
void ComputerFresnel(float cost)
{
Kr.r = ((pow((fr.r - 1.0), 2)) + (pow(kappa.r, 2)) + (pow((1.0 - cost), 5)) * (4 * fr.r)) / ((pow((fr.r + 1.0), 2)) + (pow(kappa.r, 2)));
Kr.g = ((pow((fr.g - 1.0), 2)) + (pow(kappa.g, 2)) + (pow((1.0 - cost), 5)) * (4 * fr.g)) / ((pow((fr.g + 1.0), 2)) + (pow(kappa.g, 2)));
Kr.b = ((pow((fr.b - 1.0), 2)) + (pow(kappa.b, 2)) + (pow((1.0 - cost), 5)) * (4 * fr.b)) / ((pow((fr.b + 1.0), 2)) + (pow(kappa.b, 2)));
}
};
vec4** wo;
class Scene
{
public:
Intersectable* shapes[100];
int shc=0;
Light light;
//int lightc=0;
vec4 La=vec4(0, 191, 255);
Camera camera;
//light.o=new vec4(500, 500, 500, 1);
Scene()
{
light.color=Color(255.0f,128.0f,60.0f);
light.o=vec4(200.0f,-200.0f,0.0f);
shc=0;
}
void build();
void render()
{
int w=windowWidth;
int h=windowHeight;
wo=new vec4*[w];
for(int i=0;i<w;i++)
wo[i]=new vec4[h];
for(int i=0;i<h;i++)
{
for(int j=0;j<w;j++)
{
Ray ray=camera.getRay(j, i);
wo[i][j]=trace(ray, 0);
}
}
}
void add(Intersectable* added)
{
shapes[shc]=added;
shc++;
}
Hit firstIntersect(Ray ray)
{
Hit bestHit;
for(int i=0;i<shc;i++)
{
Hit hit = shapes[i]->intersect(ray);
hit.material=shapes[i]->material;
if(hit.t > 0.0f && (bestHit.t < 0.0f || hit.t < bestHit.t))
{
bestHit = hit;
}
}
return bestHit;
}
float sign(float a)
{
return a>0;
}
vec4 trace(Ray ray, int depth)
{
if(depth>maxdepth) return La;
Hit hit=firstIntersect(ray);
if(hit.t<0) return La;
vec4 outRadiance=La*hit.material->ka;
{
vec4 ip=(ray.p)+(ray.dv*hit.position);
vec4 normal=hit.normal;
Ray ir;
ir.p=ip+normal*0.01f;
ir.dv=light.o-ip;
ir.dv.normalize();
float f=normal.dot(ir.dv);
if(f<0.0f) f=0.0f;
//printf("%f ", hit.material->kd.v[0]);
vec4 c=hit.material->kd;
//printf("%f ", c.v[0]);
c.v[0]=c.v[0]*(light.Lout.v[0])*f;
c.v[1]=c.v[1]*(light.Lout.v[1])*f;
c.v[2]=c.v[2]*(light.Lout.v[2])*f;
return c;
Ray shadowRay(hit.position+hit.normal*epsilon*sign((ray.dv*-1.0f).dot(hit.position)), light.o-hit.position);
Hit shadowHit=firstIntersect(shadowRay);
if((shadowHit.t<0.0f)||(shadowHit.t>(hit.position-light.o).length()))
outRadiance+=hit.material->shade(hit.normal,(ray.dv*-1.0f),light.o-hit.position,light.Lout);
}
if(hit.material->isReflective())
{
vec4 reflectionDir=hit.material->reflect((ray.dv*-1.0f), hit.normal);
Ray reflectedRay(hit.position+hit.normal*epsilon*sign((ray.dv*-1.0f).dot(hit.normal)), reflectionDir);
outRadiance+=trace(reflectedRay, depth+1)*hit.material->Fresnel((ray.dv*-1.0f), hit.normal);
}
if(hit.material->isRefractive())
{
vec4 refractionDir=hit.material->refract((ray.dv*-1.0f), hit.normal);
Ray refractedRay(hit.position-hit.normal*epsilon*sign((ray.dv*-1.0f).dot(hit.normal)), refractionDir);
outRadiance+=trace(refractedRay, depth+1)*(vec4(1,1,1)-hit.material->Fresnel((ray.dv*-1.0f), hit.normal));
}
return outRadiance;
}
void Create()
{
}
};
class cShape : public Shape
{
public:
vec4 o;
float r;
cShape(vec4 ox=vec4(0, 0, 0), float rx=1)
{
o=ox;
r=rx;
}
float intersect(Ray& ray)
{
float dirx=ray.dv.v[0];
float diry=ray.dv.v[1];
float dirz=ray.dv.v[2];
float px=ray.p.v[0];
float py=ray.p.v[1];
float pz=ray.p.v[2];
float ox=o.v[0];
float oy=o.v[1];
float oz=o.v[2];
float a=dirx*dirx+diry*diry+dirz*dirz;
float b=2*dirx*(px-ox)+2*diry*(py-oy)+2*dirz*(pz-oz);
float c=ox*ox+oy*oy+oz*oz+px*px+py*py+pz*pz-2*(ox*px+oy*py+oz*pz)-r*r;
float det=b*b-4*a*c;
if(det<0.0f)
{
return -1.0f;
}
float x=((-1.0f*b-sqrtf(det)) / (2.0f*a));
if(x>epsilon) return x;
else return 0.0f;
}
vec4 surfNorm(vec4& intersection)
{
return (intersection-o).normalize();
}
};
class Field : public Shape
{
public:
vec4 p;
vec4 norm;
Field(vec4 px, vec4 nx)
{
p=px;
norm=nx;
}
float intersect(Ray& ray)
{
float d=norm.dot(ray.dv);
if(d==0.0f) return -1.0f;
float nx=norm.v[0];
float ny=norm.v[1];
float nz=norm.v[2];
float pfx=p.v[0];
float pfy=p.v[1];
float pfz=p.v[2];
float dvx=ray.dv.v[0];
float dvy=ray.dv.v[1];
float dvz=ray.dv.v[2];
float prx=ray.p.v[0];
float pry=ray.p.v[1];
float prz=ray.p.v[2];
double x=-1.0f*(nx*prx-nx*pfx+ ny*pry-ny*pfy+ nz*prz-nz*pfz)/(nx*dvx + ny*dvy + nz*dvz);
if (x>epsilon) return x;
if (x>0) return 0.0f;
return -1;
}
vec4 surfNorm(vec4& vec)
{
return norm;
}
};
Scene scene;
static vec4 background[windowWidth * windowHeight];
// handle of the shader program
unsigned int shaderProgram;
class FullScreenTexturedQuad {
unsigned int vao, textureId; // vertex array object id and texture id
public:
void Create(vec4 image[windowWidth * windowHeight]) {
glGenVertexArrays(1, &vao); // create 1 vertex array object
glBindVertexArray(vao); // make it active
unsigned int vbo; // vertex buffer objects
glGenBuffers(1, &vbo); // Generate 1 vertex buffer objects
// vertex coordinates: vbo[0] -> Attrib Array 0 -> vertexPosition of the vertex shader
glBindBuffer(GL_ARRAY_BUFFER, vbo); // make it active, it is an array
static float vertexCoords[] = { -1, -1, 1, -1, -1, 1,
1, -1, 1, 1, -1, 1 }; // two triangles forming a quad
glBufferData(GL_ARRAY_BUFFER, sizeof(vertexCoords), vertexCoords, GL_STATIC_DRAW); // copy to that part of the memory which is not modified
// Map Attribute Array 0 to the current bound vertex buffer (vbo[0])
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, NULL); // stride and offset: it is tightly packed
// Create objects by setting up their vertex data on the GPU
glGenTextures(1, &textureId); // id generation
glBindTexture(GL_TEXTURE_2D, textureId); // binding
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, windowWidth, windowHeight, 0, GL_RGBA, GL_FLOAT, image); // To GPU
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); // sampling
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
}
void Draw() {
glBindVertexArray(vao); // make the vao and its vbos active playing the role of the data source
int location = glGetUniformLocation(shaderProgram, "textureUnit");
if (location >= 0) {
glUniform1i(location, 0); // texture sampling unit is TEXTURE0
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, textureId); // connect the texture to the sampler
}
glDrawArrays(GL_TRIANGLES, 0, 6); // draw two triangles forming a quad
}
};
// The virtual world: single quad
FullScreenTexturedQuad fullScreenTexturedQuad;
Sphere *sphere;
// Initialization, create an OpenGL context
void onInitialization() {
glViewport(0, 0, windowWidth, windowHeight);
//static vec4 background[windowWidth * windowHeight];
/*for (unsigned int x = 0; x < windowWidth; x++) {
for (unsigned int y = 0; y < windowHeight; y++) {
background[y * windowWidth + x] = vec4((float)x / windowWidth, (float)y / windowHeight, 0, 1);
}
}*/
scene.camera.eye=vec4(0.0f, 0.0f, -300.0f);
sphere=new Sphere();
sphere->material=new SmoothMaterial();
scene.add(sphere);
scene.render();
for(int i = 0; i < windowHeight; i++)
{
for(int j = 0; j < windowWidth; j++)
{
background[(windowHeight-1-i) * windowWidth + j] = vec4(wo[i][j].v[0]/255, wo[i][j].v[1]/255, wo[i][j].v[2]/255, 1.0f);
}
}
fullScreenTexturedQuad.Create( background );
for(int i = 0; i < windowWidth; i++)
{
delete[] wo[i];
}
delete[] wo;
delete sphere->material;
delete sphere;
// Create vertex shader from string
unsigned int vertexShader = glCreateShader(GL_VERTEX_SHADER);
if (!vertexShader) {
printf("Error in vertex shader creation\n");
exit(1);
}
glShaderSource(vertexShader, 1, &vertexSource, NULL);
glCompileShader(vertexShader);
checkShader(vertexShader, "Vertex shader error");
// Create fragment shader from string
unsigned int fragmentShader = glCreateShader(GL_FRAGMENT_SHADER);
if (!fragmentShader) {
printf("Error in fragment shader creation\n");
exit(1);
}
glShaderSource(fragmentShader, 1, &fragmentSource, NULL);
glCompileShader(fragmentShader);
checkShader(fragmentShader, "Fragment shader error");
// Attach shaders to a single program
shaderProgram = glCreateProgram();
if (!shaderProgram) {
printf("Error in shader program creation\n");
exit(1);
}
glAttachShader(shaderProgram, vertexShader);
glAttachShader(shaderProgram, fragmentShader);
// Connect Attrib Arrays to input variables of the vertex shader
glBindAttribLocation(shaderProgram, 0, "vertexPosition"); // vertexPosition gets values from Attrib Array 0
// Connect the fragmentColor to the frame buffer memory
glBindFragDataLocation(shaderProgram, 0, "fragmentColor"); // fragmentColor goes to the frame buffer memory
// program packaging
glLinkProgram(shaderProgram);
checkLinking(shaderProgram);
// make this program run
glUseProgram(shaderProgram);
}
void onExit() {
glDeleteProgram(shaderProgram);
printf("exit");
}
// Window has become invalid: Redraw
void onDisplay() {
glClearColor(0, 0, 0, 0); // background color
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // clear the screen
fullScreenTexturedQuad.Draw();
glutSwapBuffers(); // exchange the two buffers
}
// Key of ASCII code pressed
void onKeyboard(unsigned char key, int pX, int pY) {
if (key == 'd') glutPostRedisplay(); // if d, invalidate display, i.e. redraw
}
// Key of ASCII code released
void onKeyboardUp(unsigned char key, int pX, int pY) {
}
// Mouse click event
void onMouse(int button, int state, int pX, int pY) {
if (button == GLUT_LEFT_BUTTON && state == GLUT_DOWN) { // GLUT_LEFT_BUTTON / GLUT_RIGHT_BUTTON and GLUT_DOWN / GLUT_UP
}
}
// Move mouse with key pressed
void onMouseMotion(int pX, int pY) {
}
// Idle event indicating that some time elapsed: do animation here
void onIdle() {
long time = glutGet(GLUT_ELAPSED_TIME); // elapsed time since the start of the program
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Do not touch the code below this line
int main(int argc, char * argv[]) {
glutInit(&argc, argv);
#if !defined(__APPLE__)
glutInitContextVersion(majorVersion, minorVersion);
#endif
glutInitWindowSize(windowWidth, windowHeight); // Application window is initially of resolution 600x600
glutInitWindowPosition(100, 100); // Relative location of the application window
#if defined(__APPLE__)
glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH | GLUT_3_3_CORE_PROFILE); // 8 bit R,G,B,A + double buffer + depth buffer
#else
glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH);
#endif
glutCreateWindow(argv[0]);
#if !defined(__APPLE__)
glewExperimental = true; // magic
glewInit();
#endif
printf("GL Vendor : %s\n", glGetString(GL_VENDOR));
printf("GL Renderer : %s\n", glGetString(GL_RENDERER));
printf("GL Version (string) : %s\n", glGetString(GL_VERSION));
glGetIntegerv(GL_MAJOR_VERSION, &majorVersion);
glGetIntegerv(GL_MINOR_VERSION, &minorVersion);
printf("GL Version (integer) : %d.%d\n", majorVersion, minorVersion);
printf("GLSL Version : %s\n", glGetString(GL_SHADING_LANGUAGE_VERSION));
onInitialization();
glutDisplayFunc(onDisplay); // Register event handlers
glutMouseFunc(onMouse);
glutIdleFunc(onIdle);
glutKeyboardFunc(onKeyboard);
glutKeyboardUpFunc(onKeyboardUp);
glutMotionFunc(onMouseMotion);
glutMainLoop();
onExit();
return 1;
}
| [
"[email protected]"
] | |
94a23708fa462093f96ec7bf53ec43fdeb6f9526 | 5ee7069d787f644edb981e2d26d0aa3c80f87166 | /CodeChef/Practice/Beginner/Magic Set/Sol.cpp | 148ece3fedba2ff94e07ce2f8eadefaee9536c46 | [] | no_license | Sachindrck/Programs-in-cplusplus | bf9d60433e413d0482e77a26b60e6839e67fdca1 | 50152b73dd82ca2163215046a49778a429b14aaf | refs/heads/master | 2023-04-13T15:48:25.819602 | 2021-04-15T18:48:44 | 2021-04-15T18:48:44 | 280,042,507 | 2 | 0 | null | 2021-04-14T07:08:48 | 2020-07-16T03:25:12 | C++ | UTF-8 | C++ | false | false | 487 | cpp |
#include<iostream>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n,m;
cin>>n>>m;
int a[n];
for(int i=0;i<n;i++)
{
cin>>a[i];
}
int count =0;
for(int i=0;i<n;i++)
{
if(a[i]%m==0)
count++;
}
long long res = 1;
while(count --) {
res *= 2;
}
cout << res - 1 << endl;
}
return 0;
}
| [
"[email protected]"
] | |
d017fadecaf4be945c8ac208252cb37e8b5ecdeb | 647f81510c40c58943aba4a5ba7fece6d1bb46ef | /app/src/main/cpp/SystemAbstraction/Application/CapAfri/demo.hpp | c75a212be86334e9c6ca51912e1be869d88db7fb | [] | no_license | rafal-tarnow/endless_tunnel_multiplatform_tempelate | 3d12e4fc809ec0a1b1aa5b295167ac0ab2b9ec79 | 2e710e57754465bfc3196476914871bd48327075 | refs/heads/master | 2021-05-12T00:19:20.582363 | 2019-05-23T06:15:18 | 2019-05-23T06:15:18 | 117,531,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,617 | hpp | #pragma once
#include "./Application/libs/nuklear/implementation/nuklear_gles2.hpp"
#include "system_abstraction.hpp"
#include <string>
using namespace std;
#define UNUSED(a) (void)a
#define MAX(a,b) ((a) < (b) ? (b) : (a))
class MapEditorGuiEventListener{
public:
virtual void gui_onSaveMapButtonClicked() = 0;
virtual void gui_onClearMapButtonClicked() = 0;
virtual void gui_onTestButtonClicked() = 0;
virtual void gui_onCursorModeChanged(int mode) = 0;
virtual void gui_onCurrentMapChanged(unsigned int currentMap) = 0;
};
enum theme {THEME_BLACK, THEME_WHITE, THEME_RED, THEME_BLUE, THEME_DARK};
void set_style(struct nk_context *ctx, enum theme theme);
void demo_init(int width, int height, float scale);
void demo_setScale(int width, int height, float scale);
struct nk_context * demo_getContext();
void demo_onCharCallback(unsigned int codepoint);
void demo_onScrollCallback(double yoffset);
void demo_onMouseButtonCallback(SystemAbstraction::MouseButton mouseButton, SystemAbstraction::ButtonEvent event, int x, int y);
void demo_onMouseMoveCallcack(int x, int y);
void demo_onPointerMoveCallback(int pointerId, const struct PointerCoords *coords);
void demo_onKeyCallback(SystemAbstraction::ButtonEvent event, SystemAbstraction::Key key, SystemAbstraction::Mods mods, int x, int y);
void demo_setCursorModeText_dbg(string cursorMode);
void demo_setFantModeText_dbg(string fantMode);
int mapEditorGui_isAnyWindowHovered();
void mapEditorGui_setEventListener(MapEditorGuiEventListener *eventListener);
void mapEditorGui_render(int fb_width, int fb_height);
void demo_uninit();
| [
"[email protected]"
] | |
6235eb63211549a8f44c2c4e5b1c874c07c4a792 | 1f26962debe644c50c4f04a2f6deb58973aa7df4 | /mainwindow.cpp | 361ca3a527c01c027f56d2e26482f5288141e5cb | [
"MIT"
] | permissive | lanser-z/qmultisel | 2fe1510f99b2dead5c5f96ca1cc30cebba9c5ee9 | 24bfcf7a3668bcb2b40302eba25a484e4292ba60 | refs/heads/master | 2020-06-20T00:37:13.090714 | 2019-07-15T10:46:09 | 2019-07-15T10:46:09 | 196,930,662 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,543 | cpp | #include "mainwindow.h"
#include <QVBoxLayout>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent), m_rangeTable(this), m_addButton("+", this), m_subButton("-", this)
{
setMinimumSize(800, 600);
setWindowTitle("Merge multiple videos");
m_addButton.move(0, -2);
m_subButton.move(50, -2);
m_addButton.setChecked(true);
connect(&m_addButton, &QRadioButton::pressed, [this]{m_rangeTable.SetSelectionMode(true);} );
connect(&m_subButton, &QRadioButton::pressed, [this]{m_rangeTable.SetSelectionMode(false);} );
}
MainWindow::~MainWindow()
{
}
void MainWindow::SetupLayout()
{
// 设置时间轴
QStringList timeline;
timeline << "00:00" << "01:00" << "02:00" << "03:00" << "04:00" << "05:00" << "06:00" << "07:00" << "08:00" << "09:00" << "10:00";
timeline << "11:00" << "12:00" << "13:00" << "14:00" << "15:00" << "16:00" << "17:00" << "18:00" << "19:00" << "20:00";
m_rangeTable.SetHeader(timeline, 100); // 每列宽100
// 设置视频名
QStringList videos;
videos << "camera 1" << "camera 2" << "camera 3" << "camera 4" << "camera 5" << "camera 6" << "camera 7" << "camera 8" << "camera 9" << "camera 10";
m_rangeTable.SetRows(videos, 100); // 每行高100
// 创建布局并映射到时间范围
m_rangeTable.SetupLayout(timeline.size()*60); // 每列1min
// 添加表格数据
m_rangeTable.AddCellData(0, 0, QImage(":/demo/1x1.png"));
m_rangeTable.AddCellData(1, 1, QImage(":/demo/2x2.png"));
setCentralWidget(&m_rangeTable);
}
| [
"[email protected]"
] | |
c7478139b561c9ffc602af64f864f59b3d6295d9 | 970f47b70ab7aefd5c510e0806615a51d5bc35cb | /hmodproduct.h | 94fa6ce208b1560c9854fbd340e6107f60cbb01c | [] | no_license | fblabs/HamletMODSF | 0d6ce7f93cdf889b14503b49c5e29fb62f203857 | f2da591e4240675739775c15e7587a029d047b16 | refs/heads/master | 2022-12-06T01:53:21.986719 | 2020-08-26T17:08:12 | 2020-08-26T17:08:12 | 269,602,982 | 0 | 0 | null | 2020-07-22T10:47:41 | 2020-06-05T10:37:32 | C++ | UTF-8 | C++ | false | false | 978 | h | #ifndef HMODPRODUCT_H
#define HMODPRODUCT_H
#include <QWidget>
#include <QSqlDatabase>
#include <QSqlRelationalTableModel>
#include <QDataWidgetMapper>
#include <QSqlTableModel>
#include "huser.h"
enum FIELDS{
ID=0,
CODICE=1,
DESCRIZIONE=2,
TIPO=3,
ALLERGENE=4,
ATTIVO=5,
BIO=6,
PRICE=7
};
namespace Ui {
class HModProduct;
}
class HModProduct : public QWidget
{
Q_OBJECT
public:
explicit HModProduct(int pID=-1, QSqlDatabase pdb=QSqlDatabase(), QWidget *parent = 0);
~HModProduct();
private:
Ui::HModProduct *ui;
QSqlDatabase db;
QSqlRelationalTableModel *productsmodel;
QSqlTableModel *typemod;
QDataWidgetMapper *map;
int ID;
private slots:
bool getProductData();
void on_pbClose_clicked();
void on_pbSave_clicked();
void setModifyEnabled(bool enable=false);
void save();
signals:
void done();
};
#endif // HMODPRODUCT_H
| [
"[email protected]"
] | |
650689813b9d39259b8332d1192514f85d392438 | 7c2ad32683d4096041a129ddce907a0247f57fe3 | /Source/stdafx.h | edd6a76a4f4bbc26ffc63ddffe714b5e811a4a8a | [] | no_license | nico3000/Geordi | 24e9a3d4abd3cfb0dd1c01fed35cc5d25bc22212 | 0ec9bce49767ed4065e7f0a0caf7112f925d115b | refs/heads/master | 2016-09-05T18:23:30.797661 | 2012-06-03T14:40:19 | 2012-06-03T14:40:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,754 | h | // stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define _CRTDBG_MAP_ALLOC // debug memory leaks
// Windows Header Files:
#include <windows.h>
// C RunTime Header Files
#include <stdlib.h>
#include <crtdbg.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
// TODO: reference additional headers your program requires here
#include <d3d11.h>
#include <D3DX11.h>
#include <xnamath.h>
#pragma comment(lib, "d3d11.lib")
#pragma comment(lib, "d3dx11.lib")
#include <intsafe.h>
#include <memory>
#include <vector>
#include <list>
#include <hash_map>
#include <queue>
#include <string>
using std::wstring;
using std::string;
#ifndef DEBUG_NEW
#define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
#define new DEBUG_NEW
#endif
#include "DebugConsole.h"
#include "GameTimer.h"
namespace LostIsland {
extern GameTimer g_timer;
extern BOOL g_continue;
};
// defines
#define SCREEN_WIDTH 1280
#define SCREEN_HEIGHT 720
#define SAFE_RELEASE(_resource){ if((_resource) != NULL) { (_resource)->Release(); (_resource) = NULL; } }
#define SAFE_DELETE(_ptr) { if((_ptr) != NULL) { delete (_ptr); (_ptr) = NULL; } }
#define RETURN_IF_FAILED(_hr, _errorMsg) { if(FAILED(_hr)) { ERROR(_errorMsg); return hr; } }
#define ERROR(_msg) { DebugConsole::PrintError(_msg, __FILE__, __LINE__); }
#define CLAMP(_val, _min, _max) max(_min, min(_val, _max))
#define LERP(_val, _min, _max) (((_val) - (_min)) / ((_max) - (_min)))
#define MIX(_val1, _val2, _t) ((1.0f - _t) * (_val1) + (_t) * (_val2))
| [
"[email protected]"
] | |
6ad5c60415d6442e7288f57778e62748223f110a | 06788ba303a526b4f8e34ae1c08a95c38c928643 | /v8-link/jsc-v8-wrap.cc.inl | 76dadd6fb01cd730ad545fd2f994d26b4d47574c | [
"BSD-3-Clause"
] | permissive | kisskillkiss/ngui | e11ad7b41ad905330cc38c0367eaf948a2184425 | 007649890b27a5ef7edc66711a16706a2e4f7a8a | refs/heads/master | 2021-08-22T04:44:38.851207 | 2017-11-29T09:29:12 | 2017-11-29T09:29:12 | 112,547,452 | 1 | 0 | null | 2017-11-30T01:15:37 | 2017-11-30T01:15:37 | null | UTF-8 | C++ | false | false | 4,837 | inl | /* ***** BEGIN LICENSE BLOCK *****
* Distributed under the BSD license:
*
* Copyright (c) 2015, xuewen.chu
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of xuewen.chu nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL xuewen.chu 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.
*
* ***** END LICENSE BLOCK ***** */
v8_ns(internal)
static int wrap_mark_ptr = 0;
constexpr int kPointerSize = sizeof(void*);
/**
* @class Wrap
* 这个类的功能主要为了方便内存管理`Wrap->m_handle`被回收时`Wrap`也会被删除
*/
class Wrap: public PrivateDataBase {
public:
Wrap(Isolate* isolate): m_isolate(isolate) {
m_mark = &wrap_mark_ptr;
m_handle = JSObjectMake(isolate->jscc(), CInfo::WrapHandleClass, this);
DCHECK(m_handle);
isolate->ScopeRetain(m_handle);
}
virtual ~Wrap() {
CHECK(Handle() == nullptr);
}
virtual Wrap* AsWrap() { return this; }
inline void retain() {
JSValueProtect(m_isolate->jscc(), Handle());
}
inline void release() {
if (!m_isolate->HasDestroy())
JSValueUnprotect(m_isolate->jscc(), Handle());
}
inline Isolate* GetIsolate() const {
return m_isolate;
}
inline JSObjectRef Handle() const {
return m_handle;
}
inline static bool IsWrap(Object* o) {
DCHECK(o);
auto w = reinterpret_cast<Wrap*>(o);
if (kPointerSize == 8) {
if (0xffff == (size_t(w) >> 48)) {
return false;
}
}
if (size_t(w) < 0xffff) {
return false;
}
return w->m_mark == &wrap_mark_ptr;
}
inline static bool IsWrap(Local<v8::Data> o) {
return IsWrap(reinterpret_cast<Object*>(*o));
}
inline void Reference(Wrap* child, JSStringRef name = nullptr) {
if (child)
Reference(child->Handle(), name);
}
void Reference(JSValueRef child, JSStringRef name = nullptr) {
if (child) {
JSValueRef ex = 0;
if (name) {
JSObjectSetProperty(m_isolate->jscc(), Handle(), name, child, 0, &ex);
} else {
static int id = 0;
JSObjectSetPropertyAtIndex(m_isolate->jscc(), Handle(), id++, child, &ex);
}
DCHECK(!ex);
}
}
JSValueRef GetReference(JSStringRef name) {
JSValueRef ex = 0;
auto r = JSObjectGetProperty(m_isolate->jscc(), Handle(), name, &ex);
DCHECK(!ex);
return r;
}
static Wrap* Unwrap(JSObjectRef obj) {
auto priv = (PrivateDataBase*)JSObjectGetPrivate(obj);
return priv ? priv->AsWrap() : nullptr;
}
private:
int* m_mark;
Isolate* m_isolate;
JSObjectRef m_handle;
friend class CallbackInfo;
};
/**
* @class Private
*/
class Private: public Wrap {
public:
Private(Isolate* iso, JSValueRef name)
: Wrap(iso), m_name(nullptr), m_private_value(nullptr) {
ENV(iso);
m_name = JSValueToStringCopy(ctx, name, &ex);
DCHECK(!ex);
auto value = JSObjectCallAsFunction(ctx, isolate->newPrivateValue(), 0, 1, &name, &ex);
DCHECK(!ex);
m_private_value = JSValueToStringCopy(ctx, value, &ex);
DCHECK(!ex);
JSStringRetain(m_name);
JSStringRetain(m_private_value);
}
virtual ~Private() {
JSStringRelease(m_name);
JSStringRelease(m_private_value);
}
inline JSStringRef Name() const { return m_name; }
inline JSStringRef Value() const { return m_private_value; }
static JSStringRef PrivateValue(Local<v8::Private> priv) {
auto p = reinterpret_cast<i::Private*>(*priv);
return p->m_private_value;
}
private:
JSStringRef m_name;
JSStringRef m_private_value;
};
v8_ns_end
| [
"[email protected]"
] | |
c57fe08b0bcc8520848351777f34dedd06ee46b5 | e4d6c925c9fa1b2312b66951f4402b18bb02e6e9 | /recursos/GI_1/CameraPerspective.h | 31e6b3bd90391c750c9e64b16aba255882876155 | [] | no_license | miguel7penteado/ComputacaoHeterogenea | 51e11f64d91fa93e49a008c803bfe45acd96ddc5 | d2c4c381c4442a94f7233592dc0feae21505f296 | refs/heads/master | 2021-01-08T04:40:21.219013 | 2020-03-02T14:09:26 | 2020-03-02T14:09:26 | 241,915,790 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 701 | h | /*
* CameraPerspective.h
*
* Created on: Nov 15, 2018
* Author: jack
*/
#ifndef CAMERAPERSPECTIVE_H_
#define CAMERAPERSPECTIVE_H_
#include "Camera.h"
class CameraPerspective : public Camera {
public:
CameraPerspective();
virtual ~CameraPerspective();
inline CameraPerspective(vec3 camPos,vec3 lookAt,vec2 size,float zoom){
this->camPos=camPos;
this->lookAt=lookAt;
this->size=size;
this->zoom=zoom;
this->aspect=size.x/size.y;
this->camUp=vec3(0,1,0);
}
vec3 camPos;
vec3 camUp;
vec3 lookAt;
vec2 size;
float zoom;
float aspect;
Ray getRay(vec2 uv);
};
#define CameraPerspective_withDir(p,d,s,z) CameraPerspective(p,p+d,s,z)
#endif /* CAMERAPERSPECTIVE_H_ */
| [
"sp-miguel@pernilongo"
] | sp-miguel@pernilongo |
7a5759f25a4fa3a4496a60def17a95b66a00e3d3 | 0dca3325c194509a48d0c4056909175d6c29f7bc | /sas/src/model/DescribeWebLockConfigListResult.cc | 6187abb3711b34edad4912368dfb93be82ba7874 | [
"Apache-2.0"
] | permissive | dingshiyu/aliyun-openapi-cpp-sdk | 3eebd9149c2e6a2b835aba9d746ef9e6bef9ad62 | 4edd799a79f9b94330d5705bb0789105b6d0bb44 | refs/heads/master | 2023-07-31T10:11:20.446221 | 2021-09-26T10:08:42 | 2021-09-26T10:08:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,356 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <alibabacloud/sas/model/DescribeWebLockConfigListResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Sas;
using namespace AlibabaCloud::Sas::Model;
DescribeWebLockConfigListResult::DescribeWebLockConfigListResult() :
ServiceResult()
{}
DescribeWebLockConfigListResult::DescribeWebLockConfigListResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
DescribeWebLockConfigListResult::~DescribeWebLockConfigListResult()
{}
void DescribeWebLockConfigListResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allConfigListNode = value["ConfigList"]["ConfigInfo"];
for (auto valueConfigListConfigInfo : allConfigListNode)
{
ConfigInfo configListObject;
if(!valueConfigListConfigInfo["Id"].isNull())
configListObject.id = valueConfigListConfigInfo["Id"].asString();
if(!valueConfigListConfigInfo["Uuid"].isNull())
configListObject.uuid = valueConfigListConfigInfo["Uuid"].asString();
if(!valueConfigListConfigInfo["Dir"].isNull())
configListObject.dir = valueConfigListConfigInfo["Dir"].asString();
if(!valueConfigListConfigInfo["ExclusiveDir"].isNull())
configListObject.exclusiveDir = valueConfigListConfigInfo["ExclusiveDir"].asString();
if(!valueConfigListConfigInfo["ExclusiveFileType"].isNull())
configListObject.exclusiveFileType = valueConfigListConfigInfo["ExclusiveFileType"].asString();
if(!valueConfigListConfigInfo["LocalBackupDir"].isNull())
configListObject.localBackupDir = valueConfigListConfigInfo["LocalBackupDir"].asString();
if(!valueConfigListConfigInfo["Mode"].isNull())
configListObject.mode = valueConfigListConfigInfo["Mode"].asString();
if(!valueConfigListConfigInfo["InclusiveFileType"].isNull())
configListObject.inclusiveFileType = valueConfigListConfigInfo["InclusiveFileType"].asString();
if(!valueConfigListConfigInfo["ExclusiveFile"].isNull())
configListObject.exclusiveFile = valueConfigListConfigInfo["ExclusiveFile"].asString();
if(!valueConfigListConfigInfo["InclusiveFile"].isNull())
configListObject.inclusiveFile = valueConfigListConfigInfo["InclusiveFile"].asString();
if(!valueConfigListConfigInfo["DefenceMode"].isNull())
configListObject.defenceMode = valueConfigListConfigInfo["DefenceMode"].asString();
configList_.push_back(configListObject);
}
if(!value["TotalCount"].isNull())
totalCount_ = std::stoi(value["TotalCount"].asString());
}
int DescribeWebLockConfigListResult::getTotalCount()const
{
return totalCount_;
}
std::vector<DescribeWebLockConfigListResult::ConfigInfo> DescribeWebLockConfigListResult::getConfigList()const
{
return configList_;
}
| [
"[email protected]"
] | |
8dc32159786249d88d6e8484ca0bfbd5e3d98cfc | b8a27c530318a49d2b30b3e4cc7b29687a2a739f | /Quadcopter.ino | 1de9acc96f10f3a7a9ebbbbb429a241747890c27 | [] | no_license | jdryden572/Quadcopter | e4dbda53519ba53d7e85e00e529d0ca31647cdd6 | 30be7b517b6efb8874694cbd436370e8a8a7a969 | refs/heads/master | 2021-01-18T14:48:38.254358 | 2014-12-30T03:53:00 | 2014-12-30T03:53:00 | 28,355,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,225 | ino | /* Quadcopter
By James Dryden & Ryan Barbaccia
For Penn State ME 445 - Microcomputer Interfacing
*/
#include <Wire.h>
#include <QuadPID.h>
#include "Config.h"
#include "Def.h"
#ifdef USE_SERVO_LIB
#include <Servo.h>
#endif
// ============================================================================
// === GLOBAL VARIABLES ===
// ============================================================================
// ----------Rx GLOBALS----------------------
// Declare variables shared b/w interrupts & program as volatile
volatile byte updateFlagsShared;
volatile int rxValShared[NUMBER_CHANNELS];
// define timer variables for interrupts (not volatile b/c not shared)
unsigned long rxStart[NUMBER_CHANNELS];
// define global Rx value variable
int rxVal[NUMBER_CHANNELS];
// variables for Rx desired setpoints
float rxThro, rxRoll, rxPitch, rxYaw;
// variable for rate mode switch state
boolean rateModeSwitch = false;
// ----------MOTOR GLOBALS-------------------
// Motor setpoints
int motorVal[4];
// global arming variable for motors
boolean motorsArmed = false;
// ----------Sensor Globals------------------
// new sensor reading flag variable
byte newSensorFlag;
// raw accelerometer and gyro reading vars
int accX, accY, accZ;
float gyroX, gyroY, gyroZ;
// sensor reading offset variables
int accXOffset, accYOffset, accZOffset;
float gyroXOffset, gyroYOffset, gyroZOffset;
// estimated pitch and roll angles
float pitch, roll;
#ifdef MAG
// if using magnetometer, new mag flag, raw mag readings, and calculated heading
int magX, magY, magZ;
int heading;
#endif
// create each PID object
QuadPID yawPID(YAW_PID_KP, YAW_PID_KI, YAW_PID_KD, PID_SMPL_TIME, I_MAX);
QuadPID rollPID(ROLL_PID_KP, ROLL_PID_KI, ROLL_PID_KD, PID_SMPL_TIME, I_MAX);
QuadPID pitchPID(PITCH_PID_KP, PITCH_PID_KI, PITCH_PID_KD, PID_SMPL_TIME, I_MAX);
// ============================================================================
// === SETUP ===
// ============================================================================
void setup() {
// start Serial
Serial.begin(115200);
Serial.println("Quadcopter");
// initialize LEDs
ledInit();
// initialize sensors. Includes gyro only if ARMED not defined
sensorInit();
#ifdef MAG
magInit();
#endif
// initialize Rx interface
rxInit();
// delay to allow Rx readings to begin
delay(100);
#ifdef ARMED
// initialize the motors. This begins arming sequence
motorInit();
#endif
#ifndef USE_SERIAL
Serial.end();
#endif
}
// ============================================================================
// === LOOP ===
// ============================================================================
void loop() {
// update sensor readings and state estimation
updateSensors();
updateStateEst();
#ifdef ARMED
// update Rx control and motors
flightControl();
#endif
#ifdef DEBUG_ANGLES
Serial.print(millis()); Serial.print('\t');
Serial.print(roll); Serial.print('\t');
Serial.println(pitch);
#endif
#ifdef DEBUG_SENSOR_RAW
Serial.print(accX);
Serial.print("\t");
Serial.print(accY);
Serial.print("\t");
Serial.print(accZ);
Serial.print("\t");
Serial.print(gyroX);
Serial.print("\t");
Serial.print(gyroY);
Serial.print("\t");
Serial.println(gyroZ);
#endif
#ifdef DEBUG_MAG
Serial.print(magX);
Serial.print(" ");
Serial.print(magY);
Serial.print(" ");
Serial.println(magZ);
#endif
#ifdef DEBUG_MOTOR_SETPOINTS
Serial.print(motorVal[0]); Serial.print('\t');
Serial.print(motorVal[1]); Serial.print('\t');
Serial.print(motorVal[2]); Serial.print('\t');
Serial.println(motorVal[3]);
#endif
#ifdef LOOP_TIMER
//static int longestLoopTime;
static unsigned long startLoopTime;
unsigned long timeLoopNow = micros();
if(timeLoopNow > 5000000){
int elapsed = timeLoopNow - startLoopTime;
Serial.println(elapsed);
}
startLoopTime = timeLoopNow;
#endif
}
| [
"[email protected]"
] | |
75f59a42c10b46f3d55d4052d51aa64178af2ea1 | 3e4a7f76fb4563fbc6e2be63c280438a5950b284 | /src/testing/performance/kd_performance.cpp | c1777d1b1af3e18fa9cffc775d1ae258e23c431a | [] | no_license | kluopaja/raycaster-tira | af0eaee13054b20451e42fdb162f82e96fed6660 | 4bfdde05b4e6455879dc9ccf8da2dddc8169b292 | refs/heads/master | 2023-01-06T22:16:11.970836 | 2020-10-28T06:50:13 | 2020-10-28T06:50:13 | 292,952,246 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,448 | cpp | #include <algorithm>
#include <chrono>
#include <cmath>
#include <iomanip>
#include <iostream>
#include <random>
#include <string>
#include "../../model_loader.h"
#include "../../raycaster.h"
#include "../../utils.h"
#include "../../vector.h"
#include "../test_utils.h"
#include "performance_utils.h"
namespace {
void generateKdStructureReport() {
Model bunny_model;
if (!loadModel("../models/bunny/bunny_hires.obj", bunny_model,
NormalType::kRough)) {
std::cerr << "Failed loading bunny model" << std::endl;
std::exit(1);
}
std::cout << "Generating a kd tree structure report." << std::endl;
std::cout << "From bunny_hires.obj with"
" parameters k_t = 15, k_i = 20..."
<< std::endl;
Timer timer;
timer.start();
Tree bunny_tree = bunny_model.buildKdTree(15.0, 20.0);
double time = timer.elapsed();
std::cout << "time: " << time / 1e6 << std::endl;
std::cout << "numLeaves: " << bunny_tree.numLeaves() << std::endl;
std::cout << "triangles: " << bunny_model.scene_triangles.size() << std::endl;
std::cout << "nonEmptyLeaves: " << bunny_tree.numNonEmptyLeaves()
<< std::endl;
std::cout << "cost " << bunny_tree.cost(15, 20) << std::endl;
std::cout << "average triangles in non-empty leaves: "
<< bunny_tree.averageTrianglesInLeaf() << std::endl;
}
struct RunTimes {
double kd_tree_time = 0;
double naive_time = 0;
};
RunTimes operator+(const RunTimes& a, const RunTimes& b) {
return {a.kd_tree_time + b.kd_tree_time, a.naive_time + b.naive_time};
}
RunTimes operator/(const RunTimes& a, double b) {
return {a.kd_tree_time / b, a.naive_time / b};
}
std::ostream& operator<<(std::ostream& out, const RunTimes& a) {
out << std::left;
out << std::setw(25);
out << "Kd tree time: " << a.kd_tree_time / 1e6 << "ms" << std::endl;
out << std::setw(25);
out << "naive time: " << a.naive_time / 1e6 << "ms" << std::endl;
return out;
}
RunTimes runRandomQueries(const std::string& file, int n_queries) {
Model model;
if (!loadModel(file, model, NormalType::kRough)) {
std::cerr << "Failed loading model" << std::endl;
std::exit(0);
}
Tree tree = model.buildKdTree(15, 20);
Voxel bb = tree.boundingBox();
std::mt19937 mt(1337);
Vector<Ray> rays;
for (int i = 0; i < n_queries; ++i) {
Vec3 ray_start;
for (int j = 0; j < 3; ++j) {
std::uniform_real_distribution dist(bb.lo[j], bb.hi[j]);
ray_start[j] = dist(mt);
}
Ray r(ray_start, uniformRandomSpherePoint(mt) / 100);
rays.pushBack(r);
}
// Extract Triangles for firstRayTriangleIntersection
Vector<SceneTriangle*> scene_p;
for (auto& x : model.scene_triangles) {
scene_p.pushBack(&x);
}
Vector<Triangle> triangles = extractTriangles(scene_p);
RunTimes query_times;
std::cout << "triangles: " << triangles.size() << std::endl;
Timer timer;
timer.start();
int n_intersections_naive = 0;
for (auto ray : rays) {
RayTriangleIntersection rti = firstRayTriangleIntersection(triangles, ray);
if (rti.index < triangles.size()) {
++n_intersections_naive;
}
}
query_times.naive_time = timer.elapsed();
timer.start();
int n_intersections_kd_tree = 0;
for (auto ray : rays) {
ScenePoint sp = tree.getClosestRayIntersection(ray);
if (sp.scene_triangle != nullptr) {
++n_intersections_kd_tree;
}
}
query_times.kd_tree_time = timer.elapsed();
assert(n_intersections_naive == n_intersections_kd_tree);
std::cout << query_times << std::endl;
return query_times;
}
void generateKdQueryReport() {
std::cout << "**********************" << std::endl;
std::cout << "Generating Kd tree query report..." << std::endl;
RunTimes query_times = {0.0, 0.0};
for (int i = 0; i < 10; ++i) {
RunTimes tmp = runRandomQueries("../models/armadillo/armadillo.obj", 100);
query_times = query_times + tmp;
}
query_times = query_times / 10;
std::cout << "100 queries for armadillo.obj (mean of 10 repeats):\n";
std::cout << query_times << std::endl;
}
void generateKdRenderReport() {
std::cout << "**********************" << std::endl;
std::cout << "Generating Kd tree rendering report..." << std::endl;
Camera camera(Vec3(0.0, 0.1, 6.0), Vec3(0.0, 0.0, -0.1), Vec3(0.0, 1.0, 0.0),
kPi / 4.0, kPi / 4.0);
Scene scene(camera);
scene.addModelFromFile("../models/bunny/bunny_hires.obj", Vec3(0.0, 0.0, 0.0),
NormalType::kRough);
scene.addPointLight(Vec3(5.0, 5.0, 5.0), Vec3(20.0, 20.0, 20.0));
Timer timer;
RunTimes render_times;
timer.start();
Image result1 = scene.render(100, 100, 1, 6, 2);
render_times.kd_tree_time = timer.elapsed();
// Set tree traversal cost to very high to generate
// only one node to the tree
scene.setCosts(1e20, 2 * EPS);
timer.start();
Image result2 = scene.render(100, 100, 1, 6, 2);
render_times.naive_time = timer.elapsed();
// check that the results are the same
assert(result1.distanceTo(result2) < EPS);
std::cout
<< "total rendering times (including building time of the kd tree): "
<< std::endl;
std::cout << render_times << std::endl;
}
} // namespace
// Prints performance test results to std::cout
void generateKdReport() {
std::cout << std::string(20, '*') << std::endl;
std::cout << "Kd tree performance report" << std::endl;
generateKdStructureReport();
generateKdQueryReport();
generateKdRenderReport();
}
| [
"[email protected]"
] | |
3b8d6bced429eb79b55683c23f3936d6ffca33dd | 612f1daaf7d2b72a69f880c075fceba47bf6ba58 | /core/utils/mpls.h | 3e686e6ad2fe61b959f84c3b8043a8c085514604 | [
"BSD-3-Clause"
] | permissive | gampel/bess | 5b10f893154e79f6b6fbd157f521ec8afeb76778 | 5a42a7741a106bb85a096e63ed7b77c908e2a601 | refs/heads/master | 2020-12-02T22:28:21.570997 | 2017-07-14T02:45:30 | 2017-07-14T02:45:30 | 96,136,664 | 0 | 0 | null | 2017-07-03T17:51:50 | 2017-07-03T17:51:50 | null | UTF-8 | C++ | false | false | 1,339 | h | #ifndef BESS_UTILS_MPLS_H_
#define BESS_UTILS_MPLS_H_
#include "rte_byteorder.h"
namespace bess {
namespace utils {
// MPLS header definition, Reference: RFC 5462, RFC 3032
//
// 0 1 2 3
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | Label | TC |S| TTL |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//
// Label: Label Value, 20 bits
// TC: Traffic Class field, 3 bits
// S: Bottom of Stack, 1 bit
// TTL: Time to Live, 8 bits
struct[[gnu::packed]] Mpls {
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
uint32_t ttl : 8; // Time to Live, 8 bits
uint32_t s : 1; // Bottom of Stack, 1 bit
uint32_t tc : 3; // Traffic Class field, 3 bits
uint32_t label : 20; // Label Value, 20 bits
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
uint32_t label : 20; // Label Value, 20 bits
uint32_t tc : 3; // Traffic Class field, 3 bits
uint32_t s : 1; // Bottom of Stack, 1 bit
uint32_t ttl : 8; // Time to Live, 8 bits
#endif
};
static_assert(sizeof(Mpls) == 4, "struct Mpls size is incorrect");
} // namespace utils
} // namespace bess
#endif /* BESS_UTILS_MPLS_H_ */
| [
"[email protected]"
] | |
ca8ec368a2b2b4134b23ba66a13d4b82c2c1de47 | 73c8a3179b944b63b2a798542896e4cdf0937b6e | /Notebook/src/Mathematics - Miller-Rabin Primality Test.cpp | 54f399d4d07bb7c52df9e58bacc436dd530159ea | [
"Apache-2.0"
] | permissive | aajjbb/contest-files | c151f1ab9b562ca91d2f8f4070cb0aac126a188d | 71de602a798b598b0365c570dd5db539fecf5b8c | refs/heads/master | 2023-07-23T19:34:12.565296 | 2023-07-16T00:57:55 | 2023-07-16T00:57:59 | 52,963,297 | 2 | 4 | null | 2017-08-03T20:12:19 | 2016-03-02T13:05:25 | C++ | UTF-8 | C++ | false | false | 1,170 | cpp | bool miillerTest(Int d, Int n) {
// Pick a random number in [2..n-2]
// Corner cases make sure that n > 4
Int a = 2 + rand() % (n - 4);
// Compute a^d % n
Int x = modPow(a, d, n);
if (x == 1 || x == n-1) {
return true;
}
// Keep squaring x while one of the following doesn't
// happen
// (i) d does not reach n-1
// (ii) (x^2) % n is not 1
// (iii) (x^2) % n is not n-1
while (d != n-1) {
x = (x * x) % n;
d *= 2;
if (x == 1) {
return false;
}
if (x == n-1) {
return true;
}
}
// Return composite
return false;
}
// It returns false if n is composite and returns true if n
// is probably prime. k is an input parameter that determines
// accuracy level. Higher value of k indicates more accuracy.
bool isPrime(Int n, int k) {
if (n <= 1 || n == 4) return false;
if (n <= 3) return true;
Int d = n - 1;
while (d % 2 == 0) {
d /= 2;
}
for (int i = 0; i < k; i++) {
if (miillerTest(d, n) == false) {
return false;
}
}
return true;
}
| [
"[email protected]"
] | |
b47315cdf271420bc28a84c92392e4bc19a6359c | 6848723448cc22474863f6506f30bdbac2b6293e | /tools/mosesdecoder-master/mert/SentenceLevelScorer.cpp | 0d1c15140494a10d6d93c9d845f9ff74e8edc7ea | [
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"LGPL-2.1-or-later",
"LicenseRef-scancode-other-copyleft",
"GPL-2.0-only",
"Apache-2.0"
] | permissive | Pangeamt/nectm | 74b3052ba51f227cd508b89d3c565feccc0d2f4f | 6b84f048698f2530b9fdbb30695f2e2217c3fbfe | refs/heads/master | 2022-04-09T11:21:56.646469 | 2020-03-30T07:37:41 | 2020-03-30T07:37:41 | 250,306,101 | 1 | 0 | Apache-2.0 | 2020-03-26T16:05:11 | 2020-03-26T16:05:10 | null | UTF-8 | C++ | false | false | 5,022 | cpp | //
// SentenceLevelScorer.cpp
// mert_lib
//
// Created by Hieu Hoang on 22/06/2012.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//
#include "SentenceLevelScorer.h"
#include <iostream>
#include <boost/spirit/home/support/detail/lexer/runtime_error.hpp>
using namespace std;
namespace MosesTuning
{
SentenceLevelScorer::SentenceLevelScorer(const string& name, const string& config)
: Scorer(name, config),
m_regularisationStrategy(REG_NONE),
m_regularisationWindow(0)
{
Init();
}
SentenceLevelScorer::~SentenceLevelScorer() {}
void SentenceLevelScorer::Init()
{
// Configure regularisation.
static string KEY_TYPE = "regtype";
static string KEY_WINDOW = "regwin";
static string KEY_CASE = "case";
static string TYPE_NONE = "none";
static string TYPE_AVERAGE = "average";
static string TYPE_MINIMUM = "min";
static string TRUE = "true";
static string FALSE = "false";
const string type = getConfig(KEY_TYPE, TYPE_NONE);
if (type == TYPE_NONE) {
m_regularisationStrategy = REG_NONE;
} else if (type == TYPE_AVERAGE) {
m_regularisationStrategy = REG_AVERAGE;
} else if (type == TYPE_MINIMUM) {
m_regularisationStrategy = REG_MINIMUM;
} else {
throw boost::lexer::runtime_error("Unknown scorer regularisation strategy: " + type);
}
cerr << "Using scorer regularisation strategy: " << type << endl;
const string window = getConfig(KEY_WINDOW, "0");
m_regularisationWindow = atoi(window.c_str());
cerr << "Using scorer regularisation window: " << m_regularisationWindow << endl;
const string preservecase = getConfig(KEY_CASE, TRUE);
if (preservecase == TRUE) {
m_enable_preserve_case = true;
} else if (preservecase == FALSE) {
m_enable_preserve_case = false;
}
cerr << "Using case preservation: " << m_enable_preserve_case << endl;
}
void SentenceLevelScorer::score(const candidates_t& candidates, const diffs_t& diffs,
statscores_t& scores)
{
//cout << "*******SentenceLevelScorer::score" << endl;
if (!m_score_data) {
throw runtime_error("Score data not loaded");
}
//calculate the score for the candidates
if (m_score_data->size() == 0) {
throw runtime_error("Score data is empty");
}
if (candidates.size() == 0) {
throw runtime_error("No candidates supplied");
}
const int numCounts = m_score_data->get(0,candidates[0]).size();
vector<float> totals(numCounts);
for (size_t i = 0; i < candidates.size(); ++i) {
//cout << " i " << i << " candi " << candidates[i] ;
ScoreStats stats = m_score_data->get(i,candidates[i]);
if (stats.size() != totals.size()) {
stringstream msg;
msg << "Statistics for (" << "," << candidates[i] << ") have incorrect "
<< "number of fields. Found: " << stats.size() << " Expected: "
<< totals.size();
throw runtime_error(msg.str());
}
//Add up scores for all sentences, would normally be just one score
for (size_t k = 0; k < totals.size(); ++k) {
totals[k] += stats.get(k);
//cout << " stats " << stats.get(k) ;
}
//cout << endl;
}
//take average
for (size_t k = 0; k < totals.size(); ++k) {
//cout << "totals = " << totals[k] << endl;
//cout << "cand = " << candidates.size() << endl;
totals[k] /= candidates.size();
//cout << "finaltotals = " << totals[k] << endl;
}
scores.push_back(calculateScore(totals));
candidates_t last_candidates(candidates);
//apply each of the diffs, and get new scores
for (size_t i = 0; i < diffs.size(); ++i) {
for (size_t j = 0; j < diffs[i].size(); ++j) {
const size_t sid = diffs[i][j].first;
const size_t nid = diffs[i][j].second;
//cout << "sid = " << sid << endl;
//cout << "nid = " << nid << endl;
const size_t last_nid = last_candidates[sid];
for (size_t k = 0; k < totals.size(); ++k) {
const float diff = m_score_data->get(sid,nid).get(k)
- m_score_data->get(sid,last_nid).get(k);
//cout << "diff = " << diff << endl;
totals[k] += diff/candidates.size();
//cout << "totals = " << totals[k] << endl;
}
last_candidates[sid] = nid;
}
scores.push_back(calculateScore(totals));
}
//regularisation. This can either be none, or the min or average as described in
//Cer, Jurafsky and Manning at WMT08
if (m_regularisationStrategy == REG_NONE || m_regularisationWindow <= 0) {
//no regularisation
return;
}
//window size specifies the +/- in each direction
statscores_t raw_scores(scores);//copy scores
for (size_t i = 0; i < scores.size(); ++i) {
size_t start = 0;
if (i >= m_regularisationWindow) {
start = i - m_regularisationWindow;
}
const size_t end = min(scores.size(), i + m_regularisationWindow+1);
if (m_regularisationStrategy == REG_AVERAGE) {
scores[i] = score_average(raw_scores, start, end);
} else {
scores[i] = score_min(raw_scores, start, end);
}
}
}
}
| [
"[email protected]"
] | |
a077dbf6fb7a779be25989a37006410e927726e7 | 1766a5640e34c1073e943f7a223cd0c3a994c4db | /third/3rd_qwt/qwt_plot_zoomer.h | ed2a63733e649c5bd8594b3dccb332ad5896e8f8 | [
"LicenseRef-scancode-mulanpsl-1.0-en",
"MulanPSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | feiyangqingyun/QWidgetDemo | 0c6ca8ee5b048dab50795270e91676f526c4bd74 | 9af16093a20ed140c772d20fb7c5691848534e4e | refs/heads/master | 2023-09-01T22:17:05.797092 | 2023-08-17T02:28:48 | 2023-08-17T02:28:48 | 212,790,745 | 4,856 | 1,440 | NOASSERTION | 2023-07-09T08:50:30 | 2019-10-04T10:34:00 | C++ | UTF-8 | C++ | false | false | 4,290 | h | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#ifndef QWT_PLOT_ZOOMER_H
#define QWT_PLOT_ZOOMER_H
#include "qwt_global.h"
#include "qwt_plot_picker.h"
#include <qstack.h>
/*!
\brief QwtPlotZoomer provides stacked zooming for a plot widget
QwtPlotZoomer selects rectangles from user inputs ( mouse or keyboard )
translates them into plot coordinates and adjusts the axes to them.
The selection is supported by a rubber band and optionally by displaying
the coordinates of the current mouse position.
Zooming can be repeated as often as possible, limited only by
maxStackDepth() or minZoomSize(). Each rectangle is pushed on a stack.
The default setting how to select rectangles is
a QwtPickerDragRectMachine with the following bindings:
- QwtEventPattern::MouseSelect1\n
The first point of the zoom rectangle is selected by a mouse press,
the second point from the position, where the mouse is released.
- QwtEventPattern::KeySelect1\n
The first key press selects the first, the second key press
selects the second point.
- QwtEventPattern::KeyAbort\n
Discard the selection in the state, where the first point
is selected.
To traverse the zoom stack the following bindings are used:
- QwtEventPattern::MouseSelect3, QwtEventPattern::KeyUndo\n
Zoom out one position on the zoom stack
- QwtEventPattern::MouseSelect6, QwtEventPattern::KeyRedo\n
Zoom in one position on the zoom stack
- QwtEventPattern::MouseSelect2, QwtEventPattern::KeyHome\n
Zoom to the zoom base
The setKeyPattern() and setMousePattern() functions can be used
to configure the zoomer actions. The following example
shows, how to configure the 'I' and 'O' keys for zooming in and out
one position on the zoom stack. The "Home" key is used to
"unzoom" the plot.
\code
zoomer = new QwtPlotZoomer( plot );
zoomer->setKeyPattern( QwtEventPattern::KeyRedo, Qt::Key_I, Qt::ShiftModifier );
zoomer->setKeyPattern( QwtEventPattern::KeyUndo, Qt::Key_O, Qt::ShiftModifier );
zoomer->setKeyPattern( QwtEventPattern::KeyHome, Qt::Key_Home );
\endcode
QwtPlotZoomer is tailored for plots with one x and y axis, but it is
allowed to attach a second QwtPlotZoomer ( without rubber band and tracker )
for the other axes.
\note The realtime example includes an derived zoomer class that adds
scrollbars to the plot canvas.
\sa QwtPlotPanner, QwtPlotMagnifier
*/
class QWT_EXPORT QwtPlotZoomer: public QwtPlotPicker
{
Q_OBJECT
public:
explicit QwtPlotZoomer( QWidget *, bool doReplot = true );
explicit QwtPlotZoomer( int xAxis, int yAxis,
QWidget *, bool doReplot = true );
virtual ~QwtPlotZoomer();
virtual void setZoomBase( bool doReplot = true );
virtual void setZoomBase( const QRectF & );
QRectF zoomBase() const;
QRectF zoomRect() const;
virtual void setAxis( int xAxis, int yAxis );
void setMaxStackDepth( int );
int maxStackDepth() const;
const QStack<QRectF> &zoomStack() const;
void setZoomStack( const QStack<QRectF> &,
int zoomRectIndex = -1 );
uint zoomRectIndex() const;
public Q_SLOTS:
void moveBy( double dx, double dy );
virtual void moveTo( const QPointF & );
virtual void zoom( const QRectF & );
virtual void zoom( int offset );
Q_SIGNALS:
/*!
A signal emitting the zoomRect(), when the plot has been
zoomed in or out.
\param rect Current zoom rectangle.
*/
void zoomed( const QRectF &rect );
protected:
virtual void rescale();
virtual QSizeF minZoomSize() const;
virtual void widgetMouseReleaseEvent( QMouseEvent * );
virtual void widgetKeyPressEvent( QKeyEvent * );
virtual void begin();
virtual bool end( bool ok = true );
virtual bool accept( QPolygon & ) const;
private:
void init( bool doReplot );
class PrivateData;
PrivateData *d_data;
};
#endif
| [
"[email protected]"
] | |
fd44c1e1c7af87699c47c0872da6913eb82f3207 | 34491e8a3ed1499d840e0d18dcb8101546150720 | /SPARKS/RebeccaAIMLSpark/Dependencies/include/rebecca/framework/Tag.h | 9830b589343d290675bd5a6c14c8749394371427 | [
"MIT"
] | permissive | adele-robots/fiona | 128061a86593bc75b3c5b0cf591de2158c681cc6 | 1ef1fb18e620e18b2187e79e4cca31d66d3f1fd2 | refs/heads/master | 2020-06-19T04:42:14.203355 | 2020-06-10T10:46:58 | 2020-06-10T10:46:58 | 196,561,178 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,361 | h | #ifndef REBECCA_FRAMEWORK_TAG_H
#define REBECCA_FRAMEWORK_TAG_H
/*
* RebeccaAIML, Artificial Intelligence Markup Language
* C++ api and engine.
*
* Copyright (C) 2005 Frank Hassanabad
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* Disable Windows VC 7.x warning about
* shared_ptr needing dll-interface and
* about it ignoring the throw specification
*/
#ifdef _WIN32
# pragma warning ( push )
# pragma warning( disable : 4251 )
# pragma warning( disable : 4290 )
#endif
//rebecca includes
#include <rebecca/StringPimpl.h>
#include <rebecca/exports.h>
#include <rebecca/Exceptions.h>
//Boost includes
#include <boost/shared_ptr.hpp>
namespace rebecca
{
namespace framework
{
namespace impl
{
using namespace boost;
/*
* Forward declerations
*/
/**
* The private implementation in which
* you cannot get access to.
*
* This class holds the private methods
* and private attributes of this class. This
* makes ABI (Application Binary Interface) more
* resilient to change. See the private implementation
* idiom on the internet for more information about this.
*/
class TagImpl;
/**
* The abstract AIML XML Tag class that all other AIML
* XML tags should inherit from.
*
* This class contains the methods in which every AIML XML
* could have. It also cotains utility methods in which every
* XML AIML tag could use.
*/
class REBECCA_EXPORT Tag
{
public:
/**
* Default constructor to initalize
* the private implementation (m_pimpl)
* data.
*
* \exception InternalProgrammerErrorException is thrown
* only if the error is so grave that the entire AIML
* engine has to be shut down.
*/
Tag()
throw(InternalProgrammerErrorException &);
/**
* Characters inbetween AIML XML begin tags and end
* tags are added through this method.
*
* Whenver a xml tag has characters inbetween them
* such as <srai>blah</srai> the words such as blah
* will be sent to this method. There's no guarantee
* that all the characters inbetween the tags will be
* sent all at once. It could be the case that one word
* at a time will be sent, or two at a time, or all at a
* time. But they will be sent in correct order from left
* to right.
*
* Not all AIML XML tags have character data inbetwen the
* begin and end tags. Those classes will not implement this
* method. When not implemented this method is a no-operations
* method. It does nothing when not implemented.
*
* \param characters One or more characters that are inbetween
* the AIML XML tag.
* \exception InternalProgrammerErrorException is thrown
* only if the error is so grave that the entire AIML
* engine has to be shut down.
*/
virtual void addCharacters(const StringPimpl &characters)
throw(InternalProgrammerErrorException &);
/**
* Whenever a AIML XML end tag is reached, it will be sent as
* an argument to its parent or outermost AIML XML tag.
*
* As an example look at this InnerTemplate,
* <think><srai>blah</srai></think>. When the Srai end tag is
* reached, </srai>, the entire Srai tag object will be sent
* as an argument to handlerInnerTag on the Think object.
*
* This gives the outermost tag/parent tag an opportunity to handle each
* inner tag/child tag. Not all AIML XML tags need to handle inner AIML
* XML tags. When not implemented this method is a no-operations
* method. It does nothing when not implemented.
*
* \param tag The AIML XML tag that is nested inside of this AIML
* XML tag.
*
* \exception InternalProgrammerErrorException is thrown
* only if the error is so grave that the entire AIML
* engine has to be shut down.
*/
virtual void handleInnerTag(const shared_ptr<Tag> &tag)
throw(InternalProgrammerErrorException &);
/**
* Attributes of the AIML XML tags will be sent through this method.
*
* As an example, <get name="blah"/> will set name to "name" and value to
* "blah". Not all AIML XML tags have attributes.
* When not implemented this method is a no-operations
* method. It does nothing when not implemented.
*
* \param name The name of the AIML XML attribute
*
* \param value The value of the AIML XML attribute
*
* \exception InternalProgrammerErrorException is thrown
* only if the error is so grave that the entire AIML
* engine has to be shut down.
*/
virtual void setAttribute(const StringPimpl &name, const StringPimpl &value)
throw(InternalProgrammerErrorException &);
/**
* Determines if the AIML XML tag object inherits from
* another AIML XML tag class somewhere in the hierarchy.
*
* Use this in conjuction with static_cast<> to downcast
* AIML XML tags safetly as well as to determine if the AIML XML
* tag is an instance of another AIML XML tag. This only
* works if the object registered its self with Tag::addInstanceOf.
* All AIML XML tags in the framework should use Tag::addInstanceOf
* to guarantee this.
*
* Sometimes you get an AIML XML tag object in an argument in a method
* such as Tag::handleInnerTag in which you need to downcast it. Instead
* of blindly downcasting to what the AIML XML tag you think you should have
* recieved you can use this method first to determine if it is indeed
* an instance of that AIML XML tag. If it is, then you can safetly downcast
* it using static_cast<>.
*
* I use this method in conjunction with static_cast as a replacement
* for dynamic_cast<>. dynamic_cast<> is not guaranteed to work across
* dll boundaries and thus it cannot be used with custom framework dll's.
* You SHOULD NEVER USE dynamic_cast<> with RebeccaAIML since it is a dll.
* You should always use this method in conjunction with static_cast<> for
* all your downcasting needs.
*
* \param instance Name of the AIML XML tag class that this
* AIML XML tag object might have inherited from.
*
* \return Returns true if this object is an instance of the
* AIML XML tag and false if it is not.
*
* \exception InternalProgrammerErrorException is thrown
* only if the error is so grave that the entire AIML
* engine has to be shut down.
*/
bool instanceOf(const char * const instance)
throw(InternalProgrammerErrorException &);
/**
* Default virtual destructor. Destroys the private implementation
* (m_pimpl) data.
*/
virtual ~Tag();
protected:
/**
* Whenever a AIML XML tag inherits from any AIML XML tag
* it should absolutely use this method in its constructor to add
* its class name.
*
* For example since Srai inherits from another AIML XML tag it inherits
* this method. It calls this method in its constructor to add
* its name as in addInstanceOf("Srai").
*
* The method Tag::instanceOf will not operate correctly if you do not call
* this method within your constructors of AIML Tags.
*
* \param instance The name of your class
*
* \exception InternalProgrammerErrorException is thrown
* only if the error is so grave that the entire AIML
* engine has to be shut down.
*/
void addInstanceOf(const char * const instance)
throw(InternalProgrammerErrorException &);
private:
/**
* The private implementation in which
* you cannot get access to.
*
* This shared_ptr holds the private methods
* and private member variables of this class. This
* makes ABI (Application Binary Interface) more
* resilient to change. See the private implementation
* idiom on the internet for more information about this.
*/
shared_ptr<TagImpl> m_pimpl;
/**
* The assignment operator.
*
* For now, I am not allowing a copy to be made. The
* tags shouldn't be copied amongst themselves.
*
* \param tag The standard second reference.
*/
Tag &operator=(const Tag &tag);
/**
* The copy constructor.
*
* For now, I am not allowing this to be invoked.
* The tags shouldn't be allowed to be copied
* amongst themselves.
*
* \param tag The standard second reference
*/
Tag(const Tag& tag);
};
} //end of namespace impl
//Expose just the class name to the framework namespace
using rebecca::framework::impl::Tag;
/*
* Expose the rebecca namespace to the framework namespace.
* Since all the tags include this file, they will all
* get the rebecca namespace also.
*/
using namespace rebecca;
} //end of namespace framework
} //end of namespace rebecca
#ifdef _WIN32
# pragma warning ( pop )
#endif
#endif
| [
"[email protected]"
] | |
852b3171e67bde93b58fc98e930c57f7492e56a4 | bc6c9971280fe06717d1afbe28f8a56a40679e47 | /provox/Window/Window.cpp | a502904975fd945c99544d59d1e16678dcc03ef9 | [
"MIT"
] | permissive | keyboardsmoke/provox | 59d0cee66898729d66978b58d75454ff0726ccc3 | 4efc9acc0b0991f47c1031c58b6453c9e167d500 | refs/heads/master | 2023-04-18T08:43:21.861362 | 2020-05-24T10:34:42 | 2020-05-24T10:34:42 | 261,407,151 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 392 | cpp | #include "pch.h"
#include "window.h"
#include "Win32Window.h"
#include "XLibWindow.h"
Window* Window::Create(Float x, Float y, Float width, Float height)
{
Window* win = nullptr;
#if PROVOX_PLATFORM == PLATFORM_WINDOWS
win = new Win32Window();
#else
#endif
if (!win->Initialize(x, y, width, height))
{
delete win;
return nullptr;
}
return win;
}
| [
"[email protected]"
] | |
5f6630a168c9b551a6e52177e01e7903e2feb866 | 79663a9d2a219e4038085d966eddde2211e99c5e | /source/baseSha32.cpp | cbfab1f7f33c97b943e1638c97a1da7c7cb8a4e1 | [] | no_license | NightOfTwelve/HashDigester-x | 11f52d82dbb1e3c765246bcc8bfa8a4e6d0a0f1d | 0804a09a048cb7a79de9fe3cfaa006cf324fda77 | refs/heads/master | 2020-04-06T06:34:50.088605 | 2015-01-30T16:33:41 | 2015-01-30T16:33:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,304 | cpp | //
// Creator: http://www.dicelocksecurity.com
// Version: vers.6.0.0.1
//
// Copyright 2009-2012 DiceLock Security, LLC. All rights reserved.
//
// DISCLAIMER
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
// REGENTS 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.
//
// DICELOCK IS A REGISTERED TRADEMARK OR TRADEMARK OF THE OWNERS.
//
#include <memory.h>
#include "baseSha32.h"
namespace DiceLockSecurity {
namespace Hash {
// Number of data bits to compute hash
const unsigned short int BaseSha32::hashBlockBits = BASESHA_32_BLOCKBITS;
// Number of data unsigned chars to compute hash
const unsigned short int BaseSha32::hashBlockUCs = BASESHA_32_BLOCKUCHARS;
// Number of data unsigned long shorts to compute hash
const unsigned short int BaseSha32::hashBlockUSs = BASESHA_32_BLOCKUSHORTS;
// Number of data unsigned long ints to compute hash
const unsigned short int BaseSha32::hashBlockULs = BASESHA_32_BLOCKULONGS;
// Equation modulo constant value
const unsigned short int BaseSha32::equationModulo = BASESHA_32_EQUATIONMODULO;
// Adds messaage length processed, if it is greater than unsigned long makes use
// of another usigned long to store overflow
void BaseSha32::AddMessageLength(unsigned long int byteLength) {
if ((this->messageBitLengthLow + (byteLength * BYTEBITS)) < this->messageBitLengthLow)
// add overflow of unsigned long
this->messageBitLengthHigh++;
this->messageBitLengthLow += (byteLength * BYTEBITS);
}
// Swap bytes for little endian
void BaseSha32::SwapLittleEndian(void) {
unsigned long int swap, i;
for ( i = 0; i < this->messageDigest->GetULLength(); i++ ) {
swap = this->messageDigest->GetULPosition(i);
this->messageDigest->SetUCPosition( (i * 4), (unsigned char)(swap >> 24) & 0xFF);
this->messageDigest->SetUCPosition( (i * 4) + 1, (unsigned char)(swap >> 16) & 0xFF);
this->messageDigest->SetUCPosition( (i * 4) + 2, (unsigned char)(swap >> 8) & 0xFF);
this->messageDigest->SetUCPosition( (i * 4) + 3, (unsigned char)(swap & 0xFF));
}
}
// Constructor, default
BaseSha32::BaseSha32() {
this->remainingBytesLength = 0;
this->messageBitLengthHigh = 0;
this->messageBitLengthLow = 0;
}
// Destructor
BaseSha32::~BaseSha32() {
this->remainingBytesLength = 0;
this->messageBitLengthHigh = 0;
this->messageBitLengthLow = 0;
}
// Adds the BaseCryptoRandomStream to the hash
void BaseSha32::Add(BaseCryptoRandomStream* stream) {
unsigned long int startStreamByte = 0, processBytes = 0;
unsigned long int numBytes = 0;
// If bytes left from previous added stream, then they will be processed now with added data from new stream
if (this->remainingBytesLength) {
if ((this->remainingBytesLength + stream->GetUCLength()) > ((unsigned long int)this->GetUCHashBlockLength() - 1)) {
// Setting the point to start the current stream processed
startStreamByte = this->GetUCHashBlockLength() - this->remainingBytesLength;
processBytes = stream->GetUCLength() - (this->GetUCHashBlockLength() - this->remainingBytesLength);
memcpy(this->remainingBytes + this->remainingBytesLength, stream->GetUCAddressPosition(0), this->GetUCHashBlockLength() - this->remainingBytesLength);
// Process remaining bytes of previous streams adn 64 byte padding of current stream
this->Compress(this->messageDigest, this->remainingBytes);
// Updating message byt length processed
this->AddMessageLength(this->GetUCHashBlockLength());
// Remaining bytes of previous strema set to 0
this->remainingBytesLength = 0;
}
else {
processBytes = stream->GetUCLength();
}
}
else {
processBytes = stream->GetUCLength();
startStreamByte = 0;
}
for (numBytes = 0; processBytes > ((unsigned long int)this->GetUCHashBlockLength() - 1); numBytes += this->GetUCHashBlockLength()) {
// Process the chunk
this->Compress(this->messageDigest, stream->GetUCAddressPosition(startStreamByte + numBytes));
// Updating message byt length processed
this->AddMessageLength(this->GetUCHashBlockLength());
processBytes -= this->GetUCHashBlockLength();
}
// If remaining bytes left, they will be copied for the next added stream
if (processBytes > 0) {
memcpy(this->remainingBytes + this->remainingBytesLength, stream->GetUCAddressPosition(stream->GetUCLength() - processBytes), processBytes);
this->remainingBytesLength += processBytes;
}
}
// Finalize the hash
void BaseSha32::Finalize(void) {
this->remainingBytes[this->remainingBytesLength] = 0x80;
if ((this->remainingBytesLength * BYTEBITS) % this->hashBlockBits >= this->equationModulo) {
memset(this->remainingBytes + this->remainingBytesLength + 1, 0, this->GetUCHashBlockLength() - this->remainingBytesLength -1);
this->Compress(this->messageDigest, this->remainingBytes);
this->AddMessageLength(this->remainingBytesLength);
memset(this->remainingBytes, 0, this->GetUCHashBlockLength());
this->remainingBytesLength = 0;
}
else {
memset(this->remainingBytes + this->remainingBytesLength + 1, 0, this->GetUCHashBlockLength() - this->remainingBytesLength -1);
}
this->AddMessageLength(this->remainingBytesLength);
this->remainingBytes[56] = (this->messageBitLengthHigh >> 24) & 255;
this->remainingBytes[57] = (this->messageBitLengthHigh >> 16) & 255;
this->remainingBytes[58] = (this->messageBitLengthHigh >> 8) & 255;
this->remainingBytes[59] = (this->messageBitLengthHigh) & 255;
this->remainingBytes[60] = (this->messageBitLengthLow >> 24) & 255;
this->remainingBytes[61] = (this->messageBitLengthLow >> 16) & 255;
this->remainingBytes[62] = (this->messageBitLengthLow >> 8) & 255;
this->remainingBytes[63] = (this->messageBitLengthLow) & 255;
this->Compress(this->messageDigest, this->remainingBytes);
}
// Gets the number of bits in the hash block to be hashed
unsigned short int BaseSha32::GetBitHashBlockLength(void) {
return this->hashBlockBits;
}
// Gets the number of unsigned chars in the hash block to be hashed
unsigned short int BaseSha32::GetUCHashBlockLength(void) {
return this->hashBlockUCs;
}
// Gets the number of unsigned short ints in the hash block to be hashed
unsigned short int BaseSha32::GetUSHashBlockLength(void) {
return this->hashBlockUSs;
}
// Gets the number of unsigned long ints in the hash block to be hashed
unsigned short int BaseSha32::GetULHashBlockLength(void) {
return this->hashBlockULs;
}
}
}
| [
"[email protected]"
] | |
842c0be071f364c804eb9ded1958072ff765396b | 5c3482acee610df29c3a5e4fac24bd35485a496c | /example/dump-symbols.cpp | 8754156a31d8e0ebbeaed25d036972181025be35 | [
"BSL-1.0"
] | permissive | MattiRegenhardt/pdb | 52996cf40fff1f368c71133c42b946222640ae93 | 90a7cbedd5ae4dd4451dcf30159753882b559aa0 | refs/heads/master | 2023-03-12T18:17:25.865283 | 2021-03-01T02:35:11 | 2021-03-01T02:35:11 | 343,000,431 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,469 | cpp | //
// Created by Matti on 28.02.2021.
//
#include <iostream>
#include <cstdint>
#include <fstream>
#include <memory>
#include <pdb/pdb.hpp>
std::int32_t main(std::int32_t argc, char const* argv[])
{
for (auto i = 1; i < argc; ++i)
{
std::ifstream in{ argv[i], std::ifstream::in | std::ifstream::binary | std::ifstream::ate };
if (!in)
{
std::cerr << "Can't open input \"" << argv[i] << "\"!\n";
continue;
}
std::size_t size = in.tellg();
if (size == 0u)
{
std::cerr << "Input \"" << argv[i] << "\" is empty!\n";
continue;
}
in.seekg(0, std::ifstream::beg);
auto const buffer = std::make_unique<std::uint8_t[]>(size);
if (!buffer)
{
std::cerr << "Can't allocate " << size << " bytes for input \"" << argv[i] << "\"!\n";
continue;
}
in.read(reinterpret_cast<char*>(buffer.get()), size);
in.close();
pdb::pdb_t p;
std::error_code ec;
std::cin.get();
if (!p.parse(buffer.get(), size, ec))
{
std::cerr << "Can't parse input \"" << argv[i] << "\": " << ec.message() << '\n';
continue;
}
std::cout << "Block Size: " << p.msf().block_size() << '\n';
std::cout << "Age: " << p.dbi().age() << '\n';
std::array<char, 1024u> symname{};
std::cout << "Symbols:\n";
for (auto const& sym : p.dbi().symbol_stream())
{
sym.name(std::data(symname), std::size(symname));
symname[std::size(symname) - 1u] = '\0';
std::cout << std::data(symname) << '\n';
}
if (p.dbi().omap_to_src_stream())
{
std::cout << "OMap to source:\n";
auto omap_stream = p.dbi().omap_to_src_stream().value();
for (auto const& omap : omap_stream)
{
std::cout << omap.source() << " -> " << omap.target() << '\n';
}
}
if (p.dbi().omap_to_src_stream())
{
std::cout << "OMap from source:\n";
auto omap_stream = p.dbi().omap_from_src_stream().value();
for (auto const& omap : omap_stream)
{
std::cout << omap.source() << " -> " << omap.target() << '\n';
}
}
if (p.dbi().section_stream())
{
std::cout << "Sections:\n";
auto section_stream = p.dbi().section_stream().value();
for (auto const& section : section_stream)
{
std::cout << section.name() << '\n';
}
}
if (p.dbi().original_section_stream())
{
std::cout << "Original Sections:\n";
auto section_stream = p.dbi().original_section_stream().value();
for (auto const& section : section_stream)
{
std::cout << section.name() << '\n';
}
}
}
return 0;
}
| [
"[email protected]"
] | |
41559e45fe1d76e1bd67db67c17556ffe97a2c55 | fef58dcd0c1434724a0a0a82e4c84ae906200289 | /usages/0x7CE1CCB9B293020E.cpp | 47ab97692b670a7c578721378b28dce95e346fb8 | [] | no_license | DottieDot/gta5-additional-nativedb-data | a8945d29a60c04dc202f180e947cbdb3e0842ace | aea92b8b66833f063f391cb86cbcf4d58e1d7da3 | refs/heads/main | 2023-06-14T08:09:24.230253 | 2021-07-11T20:43:48 | 2021-07-11T20:43:48 | 380,364,689 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 350 | cpp | // abigail1.ysc @ L36547
int func_248(int iParam0)
{
int iVar0;
char* sVar1;
iVar0 = ENTITY::GET_ENTITY_MODEL(iParam0);
sVar1 = VEHICLE::GET_VEHICLE_NUMBER_PLATE_TEXT(iParam0);
if (iVar0 == joaat("SPEEDO") && MISC::ARE_STRINGS_EQUAL(sVar1, "LAMAR G "))
{
return 1;
}
if (!func_239(iVar0, 0))
{
return 1;
}
return 0;
} | [
"[email protected]"
] | |
b3507ee9469ba91d306be15eefc3343d48159fb3 | 122c628a8dc72460e9c568b1f77482017004f658 | /src/map.cpp | 99de79bab1c9d6a8b3e78bf1f5f2b830b79fd9f6 | [
"MIT"
] | permissive | ferorga/CarND-Path-Planning-Project | 44dad39b7095291871a2796d32521778a6caac93 | 3c3fdef76758819ccccd8a12f92de4d94f2b6803 | refs/heads/master | 2020-04-26T01:22:42.371546 | 2019-04-04T19:06:19 | 2019-04-04T19:06:19 | 173,202,355 | 0 | 0 | null | 2019-02-28T23:21:19 | 2019-02-28T23:21:18 | null | UTF-8 | C++ | false | false | 3,488 | cpp | #include <iostream>
#include <vector>
#include <math.h>
#include "map.h"
#include "helpers.h"
#include "spline.h"
using namespace std;
static const double MAX_TRACK_S = 6945.554;
// Map::Map(){}
Map &Map::getInstance()
{
// Guaranteed to be instantiated on first use
static Map instance;
return instance;
}
void Map::addWaypoint(double x, double y, double s, double dx, double dy)
{
this->map_waypoints_x.push_back(x);
this->map_waypoints_y.push_back(y);
this->map_waypoints_s.push_back(s);
this->map_waypoints_dx.push_back(dx);
this->map_waypoints_dy.push_back(dy);
}
void Map::buildSplines()
{
this->sp_x_s.set_points(this->map_waypoints_s, this->map_waypoints_x);
this->sp_y_s.set_points(this->map_waypoints_s, this->map_waypoints_y);
this->sp_dx_s.set_points(this->map_waypoints_s, this->map_waypoints_dx);
this->sp_dy_s.set_points(this->map_waypoints_s, this->map_waypoints_dy);
}
int Map::closestWaypoint(double x, double y)
{
double closestLen = 100000; //large number
int closestWaypoint = 0;
for (int i = 0; i < this->map_waypoints_x.size(); i++)
{
double map_x = this->map_waypoints_x[i];
double map_y = this->map_waypoints_y[i];
double dist = distance(x, y, map_x, map_y);
if (dist < closestLen)
{
closestLen = dist;
closestWaypoint = i;
}
}
return closestWaypoint;
}
int Map::nextWaypoint(double x, double y, double theta)
{
int closestWaypoint = ClosestWaypoint(x,y,map_waypoints_x,map_waypoints_y);
double map_x = map_waypoints_x[closestWaypoint];
double map_y = map_waypoints_y[closestWaypoint];
double heading = atan2((map_y-y),(map_x-x));
double angle = fabs(theta-heading);
angle = std::min(2*pi() - angle, angle);
if (angle > pi()/2) {
++closestWaypoint;
if (closestWaypoint == map_waypoints_x.size()) {
closestWaypoint = 0;
}
}
return closestWaypoint;
}
vector<double> Map::toFrenet(double x, double y, double theta)
{
int next_wp = this->nextWaypoint(x,y, theta);
int prev_wp;
prev_wp = next_wp-1;
if (next_wp == 0) {
prev_wp = map_waypoints_x.size()-1;
}
double n_x = map_waypoints_x[next_wp]-map_waypoints_x[prev_wp];
double n_y = map_waypoints_y[next_wp]-map_waypoints_y[prev_wp];
double x_x = x - map_waypoints_x[prev_wp];
double x_y = y - map_waypoints_y[prev_wp];
// find the projection of x onto n
double proj_norm = (x_x*n_x+x_y*n_y)/(n_x*n_x+n_y*n_y);
double proj_x = proj_norm*n_x;
double proj_y = proj_norm*n_y;
double frenet_d = distance(x_x,x_y,proj_x,proj_y);
//see if d value is positive or negative by comparing it to a center point
double center_x = 1000-map_waypoints_x[prev_wp];
double center_y = 2000-map_waypoints_y[prev_wp];
double centerToPos = distance(center_x,center_y,x_x,x_y);
double centerToRef = distance(center_x,center_y,proj_x,proj_y);
if (centerToPos <= centerToRef) {
frenet_d *= -1;
}
// calculate s value
double frenet_s = 0;
for (int i = 0; i < prev_wp; ++i) {
frenet_s += distance(map_waypoints_x[i],map_waypoints_y[i],map_waypoints_x[i+1],map_waypoints_y[i+1]);
}
frenet_s += distance(0,0,proj_x,proj_y);
return {frenet_s,frenet_d};
}
vector<double> Map::toXY(double s, double d)
{
return getXY(s, d, this->map_waypoints_s, this->map_waypoints_x, this->map_waypoints_y);
}
vector<double> Map::toRealWorldXY(double s, double d)
{
s = fmod(s, MAX_TRACK_S);
// Use the spline we have created to get a smoother path
double x = sp_x_s(s) + d * sp_dx_s(s);
double y = sp_y_s(s) + d * sp_dy_s(s);
return {x, y};
} | [
"[email protected]"
] | |
122427d1c2d76543c6cf4e806090059517d23b22 | f3c8d78b4f8af9a5a0d047fbae32a5c2fca0edab | /Qt/other/http/src/httpwindow.h | 94565926794a0e4f19b460af802e78b5bad72246 | [] | no_license | RinatB2017/mega_GIT | 7ddaa3ff258afee1a89503e42b6719fb57a3cc32 | f322e460a1a5029385843646ead7d6874479861e | refs/heads/master | 2023-09-02T03:44:33.869767 | 2023-08-21T08:20:14 | 2023-08-21T08:20:14 | 97,226,298 | 5 | 2 | null | 2022-12-09T10:31:43 | 2017-07-14T11:17:39 | C++ | UTF-8 | C++ | false | false | 4,039 | h | /****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "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 The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef HTTPWINDOW_H
#define HTTPWINDOW_H
#include <QProgressDialog>
#include <QNetworkAccessManager>
#include <QUrl>
#include <memory>
QT_BEGIN_NAMESPACE
class QFile;
class QLabel;
class QLineEdit;
class QPushButton;
class QSslError;
class QAuthenticator;
class QNetworkReply;
class QCheckBox;
QT_END_NAMESPACE
class ProgressDialog : public QProgressDialog {
Q_OBJECT
public:
explicit ProgressDialog(const QUrl &url, QWidget *parent = nullptr);
~ProgressDialog();
public slots:
void networkReplyProgress(qint64 bytesRead, qint64 totalBytes);
};
class HttpWindow : public QDialog
{
Q_OBJECT
public:
explicit HttpWindow(QWidget *parent = nullptr);
~HttpWindow();
void startRequest(const QUrl &requestedUrl);
private slots:
void downloadFile();
void cancelDownload();
void httpFinished();
void httpReadyRead();
void enableDownloadButton();
void slotAuthenticationRequired(QNetworkReply *, QAuthenticator *authenticator);
#ifndef QT_NO_SSL
void sslErrors(QNetworkReply *, const QList<QSslError> &errors);
#endif
private:
std::unique_ptr<QFile> openFileForWrite(const QString &fileName);
QLabel *statusLabel = nullptr;
QLineEdit *urlLineEdit = nullptr;
QPushButton *downloadButton = nullptr;
QCheckBox *launchCheckBox = nullptr;
QLineEdit *defaultFileLineEdit = nullptr;
QLineEdit *downloadDirectoryLineEdit = nullptr;
QUrl url;
QNetworkAccessManager qnam;
QNetworkReply *reply = nullptr;
std::unique_ptr<QFile> file;
bool httpRequestAborted;
};
#endif
| [
"[email protected]"
] | |
e4852ce8db84b089f46884319bc8d53ccbb36f75 | b411a60c033a4cddabaa2afb5ea681224e0293d6 | /Levitan/Library/Il2cppBuildCache/Android/armeabi-v7a/il2cppOutput/Vuforia.Unity.Engine4.cpp | ea99caa4a5beb6e60b6c7dfd1f8fc38ad8e4e14b | [] | no_license | SanyaKirilv/LevitanAR | b3f8be457a35ef9fec5d68a361521bf88992cfe1 | 3bae2a611c072046483b6c577bb39d21455390c3 | refs/heads/main | 2023-09-03T18:56:28.651375 | 2021-10-22T17:49:44 | 2021-10-22T17:49:44 | 352,144,747 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,456,428 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtualActionInvoker0
{
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>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtualActionInvoker2
{
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, typename T2, typename T3>
struct VirtualActionInvoker3
{
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 VirtualActionInvoker4
{
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>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
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, typename T1, typename T2>
struct VirtualFuncInvoker2
{
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, typename T4>
struct VirtualFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
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>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename 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 R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// System.Action`1<System.Object>
struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC;
// System.Action`2<System.Object,System.Object>
struct Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D;
// Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.Object,System.Object>
struct BidirectionalDictionary_2_tF5910A1CA208761BB9A143CBCB7EF2AE93F71236;
// Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>
struct BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C;
// System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.JsonConverter>
struct Collection_1_t9876F48633FD88C40E0659BF371CE5316A16BF09;
// System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4;
// System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct Collection_1_tE61D7E145066C8E3FEA6D1C7B1B3F7F46D3F1F0C;
// System.Collections.ObjectModel.Collection`1<System.Object>
struct Collection_1_tC70665E043EEEEE0CE76CFA285D8ACDB39D36EB0;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402;
// System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3;
// System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D;
// System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>
struct Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D;
// System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey,Vuforia.Newtonsoft.Json.Serialization.JsonContract>
struct Dictionary_2_t8DB9B22BC8AA28D1598D601D2EB5A6037B93AF9C;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct Dictionary_2_tB6D39D2EA64B753A2C7411BBFD691D0EF09E4C58;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE;
// System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Newtonsoft.Json.ReadType>
struct Dictionary_2_tC98EA567A068D9806C4D7D71FA81B4C3DE836199;
// Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>
struct EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B;
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20;
// System.Collections.Generic.EqualityComparer`1<System.String>
struct EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E;
// System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs>
struct EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B;
// System.EventHandler`1<System.Object>
struct EventHandler_1_tFA1C30E54FA1061D79E711F65F9A174BFBD8CDCB;
// System.Func`1<Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver>
struct Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A;
// System.Func`1<Vuforia.Newtonsoft.Json.JsonSerializerSettings>
struct Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB;
// System.Func`1<System.Object>
struct Func_1_t807CEE610086E24A0167BAA97A64062016E09D49;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Boolean>
struct Func_2_tE4EF6EBE822D562C019A333535E7AD2FC7D00F05;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>,System.Boolean>
struct Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063;
// System.Func`2<System.Int32Enum,System.Boolean>
struct Func_2_t8D00E17E9D1413C71B5B12D3538C754C4F141A2E;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String>
struct Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69;
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.Boolean>
struct Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E;
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.String>
struct Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419;
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType,System.Boolean>
struct Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C;
// System.Func`2<System.Object,System.Int32Enum>
struct Func_2_t5F736F0790996C5081310C4EC14EA3E5A3FC1274;
// System.Func`2<System.Object,System.Object>
struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436;
// System.Func`2<System.Object,System.String>
struct Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82;
// System.Func`2<System.String,System.String>
struct Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A;
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema,System.Boolean>
struct Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext,System.Boolean>
struct Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2;
// Vuforia.Newtonsoft.Json.IArrayPool`1<System.Char>
struct IArrayPool_1_t3885222652178AF2B845CEBD043145B41519E33A;
// System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.JsonConverter>
struct ICollection_1_t94CA9FEDC89CB2440AB1AC9A80CD64F3346D6940;
// System.Collections.Generic.ICollection`1<System.Object>
struct ICollection_1_t35488BE070734B4C5D136DC1A68CBC9CE507D488;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_t20C0141C3FEEDAA44BFE8521FEEDDF47289CB40B;
// System.Collections.Generic.IComparer`1<System.String>
struct IComparer_1_t9D94970C7FA2307DB453148499A627C3F64331AE;
// System.Collections.Generic.IDictionary`2<System.Object,System.Object>
struct IDictionary_2_tC51B0D1CF3D0A1E45BBD8B79324FE5CEA1C1CB72;
// System.Collections.Generic.IDictionary`2<System.Object,System.String>
struct IDictionary_2_t40A414459A31A872F5615092949F94688053C067;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct IDictionary_2_tDD38EE0A7BD9CD204A53723E8AB7269730B7FBCF;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct IDictionary_2_tFDCEAF6D3EFC758712C1FEFC0B219B668E4EE11B;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct IDictionary_2_t16793F2E5B1E952FF76A9D37439D35DBFA96B452;
// System.Collections.Generic.IDictionary`2<System.String,System.Object>
struct IDictionary_2_tED3FAE588A6FD3ED0A4589C52122AB8F53D8A3B8;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>
struct IEnumerable_1_tAF484DDC76B2ABD6DBFDABCBA483FC98F123D77E;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IEnumerable_1_t22A35158F9E40077A7147A082319C0D1DFFBE2FD;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>
struct IEnumerable_1_t7DF6899F2BA1397B41A6840049A6007E241BDD6D;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>>
struct IEnumerable_1_t9F3ECFAC492C4E62C7218116F291AE5ACA3E5BF2;
// System.Collections.Generic.IEnumerable`1<System.Int32Enum>
struct IEnumerable_1_t28FB40D8E33C5846AB04F37C78130A4948569C7C;
// System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Linq.JToken>
struct IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6;
// System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct IEnumerable_1_t97FBAC83FED295ED8B0598D21D5D555FD1456E32;
// System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4;
// System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct IEnumerable_1_t3274188473078646713D1CB5286086EA9C05233F;
// System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct IEnumerable_1_t34982A91F6D7E54FCD0BFCF4A049AF65199FAB92;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D;
// System.Collections.Generic.IEnumerable`1<System.String>
struct IEnumerable_1_tBD60400523D840591A17E4CBBACC79397F68FAA2;
// System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>
struct IEnumerable_1_t390217A1F31BBC85869F1403E757B14B57313F11;
// System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>
struct IEnumerable_1_t7E5E2A138A55F7CC566706E14F3494E2663F6933;
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Linq.JToken>>
struct IEnumerator_1_tE03E1BBD154A5C2166F2594D06E8826FD537BEC5;
// System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct IEnumerator_1_t5EFD102786697C03ED0BEB3B6811F347BE6A6241;
// System.Collections.Generic.IEnumerator`1<System.Object>
struct IEnumerator_1_t2DC97C7D486BF9E077C2BC2E517E434F393AA76E;
// System.Collections.Generic.IEqualityComparer`1<Vuforia.Newtonsoft.Json.Linq.JToken>
struct IEqualityComparer_1_tD19F2B75E46F2FAF89BA37C92763BD6266B78FBA;
// System.Collections.Generic.IEqualityComparer`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct IEqualityComparer_1_t740CD4E0456FAC83389BC616FF2BF1709F1EBDE4;
// System.Collections.Generic.IEqualityComparer`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct IEqualityComparer_1_tFE8E82FBBB7E23B9320680AF171F89980DE53C1D;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>>
struct IList_1_tBE0DE2E1AE757926E7712482C2410395ABC50831;
// System.Collections.Generic.IList`1<System.Int32Enum>
struct IList_1_tE0002E258079D2EBF8A4EE773CE9AE69DDB99607;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken>
struct IList_1_t3B6D56F1FAB574422D58B0F381112EAC3E0A18BA;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.JsonConverter>
struct IList_1_tBA29273CF051E6D6E9CFCBF347D6E8B9E43E052B;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct IList_1_t4D481B9E325FF0D0247314097BE81FC4465FC196;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct IList_1_tDFCE5D160688937EFB20C4EDB4C44DBD25D39B9C;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct IList_1_t259A9A4C30650E83FB77AC51DA534A52667B8EB7;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct IList_1_tC5D786096068F23888FB8B2F4A5D3CC450893E6D;
// System.Collections.Generic.IList`1<System.Object>
struct IList_1_t707982BD768B18C51D263C759F33BCDBDFA44901;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback>
struct IList_1_t05E462F38ABA82AB5141AFF2ECB76BB8EB223352;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationErrorCallback>
struct IList_1_tE8D352C732FE688F4137B16BA114C2E573781191;
// System.Collections.Generic.IList`1<System.String>
struct IList_1_t54B152FB364EC47FC3BD440154FEB50A17503847;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>
struct IList_1_tB075478F7EC1995F2E30FDC1BD56F685DB9E2066;
// System.Linq.IOrderedEnumerable`1<System.Object>
struct IOrderedEnumerable_1_tB9F2319177B9E63FFCBB89F9E57F8529A97CC77B;
// System.Linq.IOrderedEnumerable`1<System.String>
struct IOrderedEnumerable_1_tA057917A0FD1900902CFEE43E1D27AE5A1777F0D;
// System.Collections.Generic.Dictionary`2/KeyCollection<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct KeyCollection_tDB3C5D23E9946E858CC498C99C63B72C4C9AA738;
// System.Collections.Generic.Dictionary`2/KeyCollection<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct KeyCollection_tD5EA88BF9C965A8BF538FF340FC82F4D9D2E5AFC;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct KeyCollection_tEAE56C4E4EA68E165BBE898588CFF9C30BE403C1;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct KeyCollection_tDBE3D18E05918BFB84913CE3DF48ED32E1F3E55C;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct KeyCollection_t353D6E350D0AECB16F4B6F248F42E05869BB1A97;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct KeyCollection_tFF74B63AEE1138D77842ACF024933CB2C34A44AF;
// System.Collections.ObjectModel.KeyedCollection`2<System.Object,System.Object>
struct KeyedCollection_2_t161B04E3917472A1DAB55ADFBBD25D59B65BBC6B;
// System.Collections.ObjectModel.KeyedCollection`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B;
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E;
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>
struct List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4;
// System.Collections.Generic.List`1<System.Int32Enum>
struct List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Linq.JToken>
struct List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.JsonPosition>
struct List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct List_1_t7BEB3214D71C5459F22E372E3FD892DDA2A68E03;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback>
struct List_1_tB537E4096AC908C2646013141D5C72E300A0B5D3;
// System.Collections.Generic.List`1<System.String>
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>
struct List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>
struct List_1_t7EE065C775D6730C17E63329CAEE50D15274E511;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF;
// System.Predicate`1<System.Object>
struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB;
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3;
// System.Collections.Generic.Stack`1<System.Collections.IList>
struct Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC;
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981;
// Vuforia.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type>
struct ThreadSafeStore_2_tB3DDD4C13B9232BD24BDDC947411958C85538C37;
// System.Collections.Generic.Dictionary`2/ValueCollection<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct ValueCollection_tF55B326AC5342752F97D91923D6B9BD1F42109D5;
// System.Collections.Generic.Dictionary`2/ValueCollection<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct ValueCollection_tD44DA8CDD4190BAF6A8E4F30688FE13F07C4D2A4;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct ValueCollection_t29AE3E249218B491C07ECE6B4044214228B09D56;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct ValueCollection_tE5A9D125768780175C8800D57B55D56E7E625BA1;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct ValueCollection_tB482F4BD3987AFF88F57695ACDB8E4DC0BE14551;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct ValueCollection_t2C8BFB0D1E70218AE824EDB806E409E11DBDFE7D;
// System.Collections.Generic.Dictionary`2/Entry<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>[]
struct EntryU5BU5D_t686F11215775D35D5321B913560CEE212C8C77E6;
// System.Collections.Generic.Dictionary`2/Entry<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>[]
struct EntryU5BU5D_t0A1B585E90789570DE906E44C42B9A85D0032ED2;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>[]
struct EntryU5BU5D_t16692499A239C3B01E600C58C9A91A9A6605850F;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>[]
struct EntryU5BU5D_tAD45B4C2EE2BA58BBFC31FDED095A7EC9D52A159;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>[]
struct EntryU5BU5D_t02A19F50EA158224BF304DDCD29737C8043F694D;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>[]
struct EntryU5BU5D_tADC4ABC1F82D483B1EB1AED831449F7A5C13F2BE;
// System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>[]
struct KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E;
// Vuforia.Newtonsoft.Json.JsonWriter/State[][]
struct StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511;
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// System.Collections.IList[]
struct IListU5BU5D_t432212082C228AB2BEEC4107E901D2B734B3429B;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// Vuforia.Newtonsoft.Json.Linq.JToken[]
struct JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[]
struct JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF;
// Vuforia.Newtonsoft.Json.JsonConverter[]
struct JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461;
// Vuforia.Newtonsoft.Json.Schema.JsonSchema[]
struct JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel[]
struct JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode[]
struct JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType[]
struct JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema[]
struct TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext[]
struct CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A;
// Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable/Entry[]
struct EntryU5BU5D_t446AE6308F624FEF7828F895337E05852C3AE684;
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71;
// Vuforia.Newtonsoft.Json.Utilities.Base64Encoder
struct Base64Encoder_tF29E645A13F9C03B8285586049896462EAFF45D9;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// System.Globalization.Calendar
struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A;
// System.Globalization.CompareInfo
struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B;
// System.Globalization.CultureData
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529;
// System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90;
// Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver
struct DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9;
// Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolverState
struct DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE;
// Vuforia.Newtonsoft.Json.Serialization.DefaultReferenceResolver
struct DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// Vuforia.Newtonsoft.Json.Serialization.ErrorContext
struct ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589;
// Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs
struct ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0;
// System.Exception
struct Exception_t;
// Vuforia.Newtonsoft.Json.Serialization.ExtensionDataGetter
struct ExtensionDataGetter_t132E91B650EF1BCB46858F03EC06E9B429D11CE8;
// Vuforia.Newtonsoft.Json.Serialization.ExtensionDataSetter
struct ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// Vuforia.Newtonsoft.Json.Serialization.IAttributeProvider
struct IAttributeProvider_tCA7842339BCA3A52832E9F303AB4BFCB4018B9D1;
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver
struct IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68;
// System.IFormatProvider
struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF;
// Vuforia.Newtonsoft.Json.IJsonLineInfo
struct IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C;
// System.Collections.IList
struct IList_tB15A9D6625D09661D6E47976BB626C703EC81910;
// Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver
struct IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F;
// Vuforia.Newtonsoft.Json.Serialization.ITraceWriter
struct ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB;
// Vuforia.Newtonsoft.Json.Serialization.IValueProvider
struct IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3;
// Vuforia.Newtonsoft.Json.Utilities.IWrappedCollection
struct IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE;
// Vuforia.Newtonsoft.Json.Utilities.IWrappedDictionary
struct IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747;
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB;
// Vuforia.Newtonsoft.Json.Linq.JContainer
struct JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC;
// Vuforia.Newtonsoft.Json.Linq.JObject
struct JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08;
// Vuforia.Newtonsoft.Json.Linq.JProperty
struct JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F;
// Vuforia.Newtonsoft.Json.Linq.JPropertyKeyedCollection
struct JPropertyKeyedCollection_t47E4D041F1F49C9E4D170A1A91D125B47A014567;
// Vuforia.Newtonsoft.Json.Linq.JRaw
struct JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C;
// Vuforia.Newtonsoft.Json.Linq.JToken
struct JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426;
// Vuforia.Newtonsoft.Json.Linq.JTokenEqualityComparer
struct JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01;
// Vuforia.Newtonsoft.Json.Linq.JTokenReader
struct JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B;
// Vuforia.Newtonsoft.Json.Linq.JTokenWriter
struct JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320;
// Vuforia.Newtonsoft.Json.Linq.JValue
struct JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F;
// Vuforia.Newtonsoft.Json.JsonArrayAttribute
struct JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67;
// Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract
struct JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245;
// Vuforia.Newtonsoft.Json.JsonContainerAttribute
struct JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2;
// Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract
struct JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990;
// Vuforia.Newtonsoft.Json.Serialization.JsonContract
struct JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0;
// Vuforia.Newtonsoft.Json.JsonConverter
struct JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C;
// Vuforia.Newtonsoft.Json.JsonConverterCollection
struct JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D;
// Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract
struct JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976;
// Vuforia.Newtonsoft.Json.JsonException
struct JsonException_tA0851478052E710490C73E995BE27E80545D03F2;
// Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract
struct JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416;
// Vuforia.Newtonsoft.Json.Serialization.JsonPrimitiveContract
struct JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000;
// Vuforia.Newtonsoft.Json.Serialization.JsonProperty
struct JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574;
// Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection
struct JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E;
// Vuforia.Newtonsoft.Json.JsonReader
struct JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96;
// Vuforia.Newtonsoft.Json.JsonReaderException
struct JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388;
// Vuforia.Newtonsoft.Json.JsonRequiredAttribute
struct JsonRequiredAttribute_t216E6F733636BD23EC632AB32545DD063EA6A2E6;
// Vuforia.Newtonsoft.Json.Schema.JsonSchema
struct JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder
struct JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaException
struct JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator
struct JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel
struct JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder
struct JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode
struct JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNodeCollection
struct JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver
struct JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter
struct JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A;
// Vuforia.Newtonsoft.Json.JsonSerializationException
struct JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07;
// Vuforia.Newtonsoft.Json.JsonSerializer
struct JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase
struct JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader
struct JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter
struct JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy
struct JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2;
// Vuforia.Newtonsoft.Json.JsonSerializerSettings
struct JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06;
// Vuforia.Newtonsoft.Json.JsonTextReader
struct JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE;
// Vuforia.Newtonsoft.Json.JsonTextWriter
struct JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0;
// Vuforia.Newtonsoft.Json.JsonWriter
struct JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D;
// System.ComponentModel.PropertyChangedEventHandler
struct PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99;
// Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable
struct PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// Vuforia.Newtonsoft.Json.SerializationBinder
struct SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.StringComparer
struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6;
// System.IO.StringReader
struct StringReader_t74E352C280EAC22C878867444978741F19E1F895;
// System.IO.StringWriter
struct StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839;
// System.Globalization.TextInfo
struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C;
// System.IO.TextReader
struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F;
// System.IO.TextWriter
struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643;
// Vuforia.Newtonsoft.Json.Serialization.TraceJsonReader
struct TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B;
// Vuforia.Newtonsoft.Json.Serialization.TraceJsonWriter
struct TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A;
// System.Type
struct Type_t;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// Vuforia.Newtonsoft.Json.Linq.JProperty/JPropertyList
struct JPropertyList_tEEDE310F4115D19B5180C68016EBE239E6FA2EAC;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder/<>c__DisplayClass23_0
struct U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/<>c__DisplayClass23_0
struct U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema
struct TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver/<>c__DisplayClass5_0
struct U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase/ReferenceEqualsEqualityComparer
struct ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c__DisplayClass34_0
struct U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext
struct CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConvertUtils_tE67B037CB4024E301EF5FF99A76C04AEAD465E24_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeUtils_t75ECF8E592F8AEB84A6CEFBAA0E22AABE4667A80_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnumUtils_t588E51899B1B70CA035A284B5C5D10D7368A2CF6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t089F01F78F1F68B4BD588C27CA1BA75014341A6A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t131073A2CB9F69A5308A5AA52335DC13EAE4B5DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t22C936EC9711AF16BD6FD305D78698670FB49C24_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t69BE548547D2B8FA4957D450B8F03A7319F53F28_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t6ACA7D9F7FB10319A5DE8ECF6919F79A7740F218_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t94CA9FEDC89CB2440AB1AC9A80CD64F3346D6940_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tDE4AD2D87BDB1031ADAF959CD6A1948E3CEE697E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t16793F2E5B1E952FF76A9D37439D35DBFA96B452_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tDD38EE0A7BD9CD204A53723E8AB7269730B7FBCF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tFDCEAF6D3EFC758712C1FEFC0B219B668E4EE11B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t34982A91F6D7E54FCD0BFCF4A049AF65199FAB92_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t7DF6899F2BA1397B41A6840049A6007E241BDD6D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tA61E5719275F614ACAD0430ACC399DAE3C25352C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t5EFD102786697C03ED0BEB3B6811F347BE6A6241_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t9B7286E28DDF27F42FEA121F400EFFC965EC21EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tD5F33258EBEFB9C172E4D2490B25EFE8C30ECE84_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tE03E1BBD154A5C2166F2594D06E8826FD537BEC5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tE4BF4B4E3806D342141C1DB193ABA59EC105EDC6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tB075478F7EC1995F2E30FDC1BD56F685DB9E2066_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tBA29273CF051E6D6E9CFCBF347D6E8B9E43E052B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tC5D786096068F23888FB8B2F4A5D3CC450893E6D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_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* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t7EE065C775D6730C17E63329CAEE50D15274E511_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PrimitiveTypeCode_tA1245D8181181974698A4A3580EBFB359C077562_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringReader_t74E352C280EAC22C878867444978741F19E1F895_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral010BE521575CBE91F7F54CF892BD7A978E39A25A;
IL2CPP_EXTERN_C String_t* _stringLiteral042D5257625C9358C840FA1BA4A978DC0470104F;
IL2CPP_EXTERN_C String_t* _stringLiteral0512293E6F61F58E38D68B7E133717E5776E156D;
IL2CPP_EXTERN_C String_t* _stringLiteral060BD55633A7BB0DB575F9B05139A7E7F61D0BA6;
IL2CPP_EXTERN_C String_t* _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3;
IL2CPP_EXTERN_C String_t* _stringLiteral0C420681CE5E1D75C30F0335EBE679C79B4579F9;
IL2CPP_EXTERN_C String_t* _stringLiteral0E62D1EEC1CF40EEC3E55E672939594A78C717D9;
IL2CPP_EXTERN_C String_t* _stringLiteral0FACD530D9781E204FA5DC4E8F07428706A07E18;
IL2CPP_EXTERN_C String_t* _stringLiteral11F941DFBA062769D6F047F85D846335446DFB0E;
IL2CPP_EXTERN_C String_t* _stringLiteral1298EC2264C4F9A0D3A04140873D9D01F481050B;
IL2CPP_EXTERN_C String_t* _stringLiteral12D3D88FEB452D8CC18F3B31FCF2964F2639457E;
IL2CPP_EXTERN_C String_t* _stringLiteral151B85A346A60325BAC130B4146B00C7EC6269D6;
IL2CPP_EXTERN_C String_t* _stringLiteral16561D07670D55C476332044336131172499C1F9;
IL2CPP_EXTERN_C String_t* _stringLiteral1686F48CC3AD3DD2B612D62EB88622FEC5B6DD43;
IL2CPP_EXTERN_C String_t* _stringLiteral1798B22F19EFFB0D5FBC900A0362B6DBB8EEC6AF;
IL2CPP_EXTERN_C String_t* _stringLiteral1AB53659FE30FD798C42B2EE484D281FF6C0EC43;
IL2CPP_EXTERN_C String_t* _stringLiteral1ECE8F16329BB427EB64D725A279F3122C550A55;
IL2CPP_EXTERN_C String_t* _stringLiteral20AFD03F1885A0F2821CAFC2EFDCAAFA4559B765;
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
IL2CPP_EXTERN_C String_t* _stringLiteral28D1ACF86DE60159D623D170E2603670999293A5;
IL2CPP_EXTERN_C String_t* _stringLiteral2980C76AF500BE97C70A4DFDFDA3B38072E2BE4D;
IL2CPP_EXTERN_C String_t* _stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9;
IL2CPP_EXTERN_C String_t* _stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE;
IL2CPP_EXTERN_C String_t* _stringLiteral30E1C2C9FEE07DA6978797C6C97BFFBF823DFA55;
IL2CPP_EXTERN_C String_t* _stringLiteral31908A1F2D84CB426D65A394B11281246101E4C8;
IL2CPP_EXTERN_C String_t* _stringLiteral320772EF40302B49A179DB96BAD02224E97B4018;
IL2CPP_EXTERN_C String_t* _stringLiteral33F9FFFE7C929143FD00A01257379A6DB6234926;
IL2CPP_EXTERN_C String_t* _stringLiteral34AC5C40D830EF0A8EF122F54B008863A6142239;
IL2CPP_EXTERN_C String_t* _stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26;
IL2CPP_EXTERN_C String_t* _stringLiteral37F0398E165BACF30D3A975D97E35DC44E292611;
IL2CPP_EXTERN_C String_t* _stringLiteral384565B8399EC9A224FB52B7078096010121FA9F;
IL2CPP_EXTERN_C String_t* _stringLiteral39A41E7578A2C13FD9882701980A541BE351F584;
IL2CPP_EXTERN_C String_t* _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0;
IL2CPP_EXTERN_C String_t* _stringLiteral3BD4A42EB6DB13C6BF2B222FE0C9931581AAB477;
IL2CPP_EXTERN_C String_t* _stringLiteral3BF805384F666FCD6F750EF73F99B07A2F8CEA8A;
IL2CPP_EXTERN_C String_t* _stringLiteral3D85C6147D6190E2337474AF1EA989B1EBA8D6B0;
IL2CPP_EXTERN_C String_t* _stringLiteral3DCE883D2A9076C6A618D7C0896D09E8CE52BF50;
IL2CPP_EXTERN_C String_t* _stringLiteral4007673E3F5027936FAA7FB6877DEFB8CE58B9E5;
IL2CPP_EXTERN_C String_t* _stringLiteral4200CEC6A675006F1CDF8C63ADD1E8B60954E858;
IL2CPP_EXTERN_C String_t* _stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84;
IL2CPP_EXTERN_C String_t* _stringLiteral43F7FEDB08A496C6B9ABF07064618C633D6C633A;
IL2CPP_EXTERN_C String_t* _stringLiteral445E6BD7D8A16B7525D74B2955F0DA9632B031EC;
IL2CPP_EXTERN_C String_t* _stringLiteral44825BA1FE24FA125A1477D51A5B3D81E49CE809;
IL2CPP_EXTERN_C String_t* _stringLiteral4621200C144ADD9591375B7800437CC2D0927AE9;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral4853B58E4CE76A956E53529C8FDA397E751A7287;
IL2CPP_EXTERN_C String_t* _stringLiteral4B109B989AF932AF20A3B83814B2C123ED5EE391;
IL2CPP_EXTERN_C String_t* _stringLiteral53652561DEA177633565FE197F2CBF3DCD08AFD2;
IL2CPP_EXTERN_C String_t* _stringLiteral5443E3CFB150296B686B12DEC5A9A906246EC008;
IL2CPP_EXTERN_C String_t* _stringLiteral554ECA773158094C164F69EA4C321EE591591850;
IL2CPP_EXTERN_C String_t* _stringLiteral55AF7DBF13B32167FCB3F5C1105702295D67D528;
IL2CPP_EXTERN_C String_t* _stringLiteral582CA839E138CD30C2D18043773A48C9AB5FCBBC;
IL2CPP_EXTERN_C String_t* _stringLiteral587117E6A7D3415E8BD609AB6FC74A4316406B97;
IL2CPP_EXTERN_C String_t* _stringLiteral58D203C52FA1BB369FD8FEFE8F3C441B5EB10C22;
IL2CPP_EXTERN_C String_t* _stringLiteral59AAE90D26AB95D797186FB8118A57880C2A1138;
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
IL2CPP_EXTERN_C String_t* _stringLiteral6069E2EAB74D6040838072F6667CDE859AFD7BD1;
IL2CPP_EXTERN_C String_t* _stringLiteral61C8278BCCC51C9E2872532A915F18BF6DE5EA61;
IL2CPP_EXTERN_C String_t* _stringLiteral624220B630D1F7A203600DDF128C76CC987066A6;
IL2CPP_EXTERN_C String_t* _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0;
IL2CPP_EXTERN_C String_t* _stringLiteral64ED1863761604D415FD07FF71070927F8507689;
IL2CPP_EXTERN_C String_t* _stringLiteral69EAD0680C31199A21504A099291CE4D98A76C82;
IL2CPP_EXTERN_C String_t* _stringLiteral6A69264340AEB99E5A3239168210940B46D35B69;
IL2CPP_EXTERN_C String_t* _stringLiteral6BADA9E39CAE98306330E4979DC19CA580A4F31A;
IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044;
IL2CPP_EXTERN_C String_t* _stringLiteral6FCD854BA7485F443120CDBF6B37C0A26D14C53D;
IL2CPP_EXTERN_C String_t* _stringLiteral7382F358493FAF83F88043238506DB8232A14C5C;
IL2CPP_EXTERN_C String_t* _stringLiteral73F309C03289E6D649CAEE0E88EC2DE4F673E05E;
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
IL2CPP_EXTERN_C String_t* _stringLiteral75943AF587C23BD0440669483018246AA68D3FEB;
IL2CPP_EXTERN_C String_t* _stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA;
IL2CPP_EXTERN_C String_t* _stringLiteral7682690C14A574DB67D4BAE609A1BB421CED26E5;
IL2CPP_EXTERN_C String_t* _stringLiteral76D1E865270F30E671453C0D6A3670330AC9DE85;
IL2CPP_EXTERN_C String_t* _stringLiteral79E8141926B919A282CF23E5A415248A65AFAF0B;
IL2CPP_EXTERN_C String_t* _stringLiteral7A05A136E34451BA838B56C57A62ABDD1887D741;
IL2CPP_EXTERN_C String_t* _stringLiteral7A3D36BBA91B774B57A5FDA3FC20C586EA25BA2D;
IL2CPP_EXTERN_C String_t* _stringLiteral7DE5FDD57A0D84DA8F3CDC564E9B16BEF0AA963C;
IL2CPP_EXTERN_C String_t* _stringLiteral8070F9A18AEE653E353F430FE2A2533C696CEA8B;
IL2CPP_EXTERN_C String_t* _stringLiteral826438A672612091F3BC5B6DF6F787E2854B5885;
IL2CPP_EXTERN_C String_t* _stringLiteral829DD8C65921D16DD04C9B1B107DA10B23699427;
IL2CPP_EXTERN_C String_t* _stringLiteral82B97C4F4CFDEC66B7B8C9D844653B1B44AC9A0D;
IL2CPP_EXTERN_C String_t* _stringLiteral856E49BD180C1280035E1FD8DB7E1DB6F896F2AA;
IL2CPP_EXTERN_C String_t* _stringLiteral8640B5B3EA5D79BF55FFD3D0D0AADA17A24415C1;
IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
IL2CPP_EXTERN_C String_t* _stringLiteral8903E18FA11D41A7A89310F5B8AD5069A67C6332;
IL2CPP_EXTERN_C String_t* _stringLiteral899FCAB0E7F26F69A2F0358DD419D1346CCA9FEF;
IL2CPP_EXTERN_C String_t* _stringLiteral8C800344B86B72313ADC8BF6108C4ABC7BED787A;
IL2CPP_EXTERN_C String_t* _stringLiteral90E1EF43D917BC61986A139BB53FB7DE4EFA863E;
IL2CPP_EXTERN_C String_t* _stringLiteral9123101C0B385390321554D1CC5A3EC38ECB37DF;
IL2CPP_EXTERN_C String_t* _stringLiteral9452A87FAA0073A5238C5BF8FBCAE0BFB2A7512D;
IL2CPP_EXTERN_C String_t* _stringLiteral95E7540E7EC26CC76468A4809603CCFB51A22AC9;
IL2CPP_EXTERN_C String_t* _stringLiteral982B8642554EB3F56947299FADE52DB3942C46FF;
IL2CPP_EXTERN_C String_t* _stringLiteral994646925CBD93D6385097937A64FEE9113E5712;
IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694;
IL2CPP_EXTERN_C String_t* _stringLiteral99A6C960DEDF9A76FC230C814F2CA93C0CB90972;
IL2CPP_EXTERN_C String_t* _stringLiteral99E9F2CC6DAC8AD0A2109D6567FD0302893A6846;
IL2CPP_EXTERN_C String_t* _stringLiteral99EEDFE6D595D330AF92BAF70C03F73752481663;
IL2CPP_EXTERN_C String_t* _stringLiteral9ADF661B6726FA08EA0DC9349348E697A9F8CA8B;
IL2CPP_EXTERN_C String_t* _stringLiteral9B9C41BB5EAB4B82AA512303E3BD01EC37D9F169;
IL2CPP_EXTERN_C String_t* _stringLiteral9D724FB21446D07DD3C5F55AB648A18D936C3598;
IL2CPP_EXTERN_C String_t* _stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443;
IL2CPP_EXTERN_C String_t* _stringLiteralA129B5F194E8BEDE2529D38FADCD24DFAD305791;
IL2CPP_EXTERN_C String_t* _stringLiteralA32663807A568FB91925525AAFB75C7656184AAD;
IL2CPP_EXTERN_C String_t* _stringLiteralAB288DF9A2916D57A7E6D73226C3C1BAF54C9408;
IL2CPP_EXTERN_C String_t* _stringLiteralABE5C9736BF7B5384ED17BE19B13E69EAD5C6956;
IL2CPP_EXTERN_C String_t* _stringLiteralB060CFF77406762F0D469FCDA47BF024E278ED7A;
IL2CPP_EXTERN_C String_t* _stringLiteralB0A1C47352664275E2D7F477FA4C62FC016B575F;
IL2CPP_EXTERN_C String_t* _stringLiteralB37AE67F3C57752CD1552584DC20CD2A99D62AE3;
IL2CPP_EXTERN_C String_t* _stringLiteralB56B1A8EB1266CAF5186ABF821BE92341AEB5FAF;
IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
IL2CPP_EXTERN_C String_t* _stringLiteralBBF246D9E5C2F38F2F5F541F0033922424A7E29F;
IL2CPP_EXTERN_C String_t* _stringLiteralBDA7FC09DA5C880BF9D6040156838ACE1A02817F;
IL2CPP_EXTERN_C String_t* _stringLiteralC26187BA68752A355F8C67922A058062EB40E709;
IL2CPP_EXTERN_C String_t* _stringLiteralC7B4D926EF9532A71B25AEC040A33D52C926425F;
IL2CPP_EXTERN_C String_t* _stringLiteralCD2956AE0ADA8B1B0E3E0C4A03F3BD968CA54060;
IL2CPP_EXTERN_C String_t* _stringLiteralD0C75D963913FC4C08CFBF915E87770A8B5A6228;
IL2CPP_EXTERN_C String_t* _stringLiteralD150B768BC4907FDDB1BE9F66C5E43806644D97C;
IL2CPP_EXTERN_C String_t* _stringLiteralD4D9A9B316A5ADCF1BDC4BFFDF434656B0D814AA;
IL2CPP_EXTERN_C String_t* _stringLiteralD5DF2EF4DE357485D20796D7594D4647A84321E5;
IL2CPP_EXTERN_C String_t* _stringLiteralD8CD2F2DA1948373D6BFA8C44122166BC25E3FC0;
IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1;
IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC;
IL2CPP_EXTERN_C String_t* _stringLiteralE189C8EC0DE127E663B9599C9EE39ED347AA28AE;
IL2CPP_EXTERN_C String_t* _stringLiteralE25928FDF622DA8A88884DE94A7261E227714E38;
IL2CPP_EXTERN_C String_t* _stringLiteralE3C2FADD6E8DD7DE92530B3AA431AAF7D3D456D0;
IL2CPP_EXTERN_C String_t* _stringLiteralE42E8BB820D4F7550A0F04619F4E15FDC56943B9;
IL2CPP_EXTERN_C String_t* _stringLiteralE5F8646EEBCBFD1FE550D61889D957ED81DCDF93;
IL2CPP_EXTERN_C String_t* _stringLiteralEA04D4286952D44B4CB5C87E7D30E05FE4153434;
IL2CPP_EXTERN_C String_t* _stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA;
IL2CPP_EXTERN_C String_t* _stringLiteralEA8E92A345B807AA9388C8CDCF2A98E6D997D6AF;
IL2CPP_EXTERN_C String_t* _stringLiteralEB0F4A24C5FE376D8216F48DFEAD9D5F27475997;
IL2CPP_EXTERN_C String_t* _stringLiteralEB534843932D1025EEE09575458F840C63DC1063;
IL2CPP_EXTERN_C String_t* _stringLiteralEBEFE00D9826F57DF92563511F63A82DDD84B35E;
IL2CPP_EXTERN_C String_t* _stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490;
IL2CPP_EXTERN_C String_t* _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31;
IL2CPP_EXTERN_C String_t* _stringLiteralED62F142374ED70E80FC0B3DD8F56DD83CC6F281;
IL2CPP_EXTERN_C String_t* _stringLiteralEE9EC4DC6A89D61E3B8BB758D61C093B7C1A9AE6;
IL2CPP_EXTERN_C String_t* _stringLiteralEED90E62E98F456B07784C50EAB999B69FCF0B19;
IL2CPP_EXTERN_C String_t* _stringLiteralF062B62A7A557839E147FF7C109EACBC83046E2F;
IL2CPP_EXTERN_C String_t* _stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D;
IL2CPP_EXTERN_C String_t* _stringLiteralF1F2425FA9930B9F296B8CC8059ED97FDF9594FA;
IL2CPP_EXTERN_C String_t* _stringLiteralF2C38C9CA6E2C1C890FE7CED0D017FF5DC0206AB;
IL2CPP_EXTERN_C String_t* _stringLiteralF300D2310959AF105732D339376803869D9B2B91;
IL2CPP_EXTERN_C String_t* _stringLiteralF32EC47E8782F454C25DF702A5E68A56E0E2D422;
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382;
IL2CPP_EXTERN_C String_t* _stringLiteralF98184461BCF923C9A48FD59EFC231C3A79732ED;
IL2CPP_EXTERN_C String_t* _stringLiteralFC49204A8BDC722121A335B23FD825A0748F9208;
IL2CPP_EXTERN_C String_t* _stringLiteralFD0BD4C28C5DD340193C602B92723689D3AD161B;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_m2E2FDF87BAE323A8D7D02657BE1A08C063C62171_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BidirectionalDictionary_2__ctor_m43BCA1E828FD90928EBDB8BFE89ABC1EBAC3AD9E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_AddDistinct_TisString_t_m3774AD69BE246EEECD735E76055E7AEEB1E215E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_AddRangeDistinct_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mA695752C95842B876955494309517A3CD42F6DBC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_IsNullOrEmpty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_mF299FB8F3B747B9C29CBF70B239572FB2917815D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_Add_m3A5C023BFE7F7967C248D5C8249EAEF9C202D9BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_IndexOf_mC341ABED2EBA87DC323C54204BD605BA5A719381_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_Insert_mEBC0E9E49EC561D32EFFC9F03CFBBE41391EB568_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m1898A011255BD54A3F696DE2D486C51C96E47ED5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m225475E4E83E522DD62EED59A3CEE0C3EDB59F00_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m6AC44986777C1BBB268576DA82DD82802C4A85D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m35EB95EA65469F78AE0E1B7AC7D448D68C4C342B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m52CA765FCCA2E48BD97DC24E93C1D625CFF7A4F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m92C624D3C25D257CA2B9E779C9E7B98987FBC84C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m961E3EC8E476FA149BC0EDDD496DAC164064976F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m7A13430904DFDA191E1C82F8C6BF45B16C7DC017_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mC35A51160C074B79577C5DF4E2E623727F6A2323_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnumUtils_GetFlagsValues_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mD413E86AEC861FFCA27E971F22FB10053445D957_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnumUtils_GetNamesAndValues_TisInt64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_m88F1B9B0C479873ACAD0C1D77500290E3ADBE5C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_All_TisCreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_mFFEA488B654659723EC5B2BA79E04CF4BDF6353E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Any_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mFAD5A570936ED2070D3D6F104342CB2C98F5FA6A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Count_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mD963C851B6FD41A405A306E18A8F8AD2986C1310_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_LastOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m72E65EF91439D3311898D0B5622FA6B44E5D4BE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_LastOrDefault_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mBE0AE0BA080A562C059D22C226E327D70F7E521E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_OrderBy_TisString_t_TisString_t_m1E85D28DB2DE3ED553500801E1EF8B577D90A196_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisString_t_m2A3D13F042FA0225593804B4E63880D528ABACD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_TisString_t_mC71C0D1B8428E68C1B59EBB91E85DE64B414892F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_SingleOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m0BBCBD11C7A5EC18148E37C2748511A9A1998732_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Single_TisKeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C_mC10ED89BA0E24629D7F54C161DFCCFAC691C4C5F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToDictionary_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisPropertyPresence_tE5B047BC0A04B238D59B572B5A704F5318A90A6B_m5C1EE5851C3D9A15081274ABFA50DA24494D2F33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mAB328558697EB651EDF687507ADA9C1410216D85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mE585C55012AF958EF1DB29B42274FED62CE32398_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisKeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE_m1350D4DBE3BB8CC21533333A7A432C3DA09080B3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Where_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mE1019DF8B412D2CBC104B92C8E809BF9D94266D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m114499EADC9D2B89AD415914552F19A3FFC48F5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2768168018C781F46BAD0CF6983FE8A80E80DCB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m50EEF239A5C444908DC656A4A19996183F9F3501_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mD66272CDD8C9C33F90E46BCBDEBF9DC171D9BAB3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5D78F7645DF53B1AD2A16931A56F977B70564C44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5E2A1AC26FB33B567A1A57433325029C8781EDFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m697A3AA9E4E62D7197D00C3D0F357C09F4C46B54_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9EDC02A676866A036489999DC124DF43D2BE9B66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m157F0F75082A445F2ED1105ED4909524C29020A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5FF8D629A6DD271836E95FE685520918657FBCB1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m7554B4F006BDAC276CE86C6ACD4567757CE3C090_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mD23D7FEEE77C663D8C88D4847D639694CF3AD6E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1_get_Default_m7C5EC964D0664BC8D6A3AE994AAA1159DAC8A836_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1_Invoke_m136FFCAEDA0BFA5B52F8A91815A88D5B3A5F1D1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_mE2BC2D36632969E97D0EED98E2CF3E6F6A6CC3B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_mF7F8897D57AFD82627D0067498090FA0760D8D0A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m19BBB060B4743D7235D420006F697CA01DA131DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m22403E6E9EC24A3D8103D29D9D66B5EEEA0AC69E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m53A02ABD52B5A765CA1FB9BEB69D861B4402E34F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m5AD7BEF2DCBFD1927500FFEF0F94969E81CCEDF8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m6B0B44B48E4B584E16F5B2051A36FB48852F50A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m7A62CE76198D4B225C82B5BFD112FE8C73738104_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m8B6B2D3577FF227C1C36A1F78C0BB682C3634656_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mB80C1DBAC6EBC6330E49EAEF7FBD08560094C33E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mD6A40784A3BF1580E589768D2C4549F9AB683B81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mE856C7A5862B47592399BC91363D477EBB21FB8A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaBuilder_MapType_m47780DF0134F439B9FBB2D515E1C5FCAE9E5EF25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaBuilder_ProcessEnum_mC5660571FC0EC28AC9A58CF7BC268DCE8AF5D407_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaBuilder_ProcessItems_m6CF5B48A0D8AA53B4AEEE8DCAA14A59F8499D374_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaBuilder_ProcessProperties_mCD45017B97943E291958FDA2B6960BEEC7718B86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaBuilder_ProcessType_m6DE22FBE83675C0ADB22D4ECADE98CA1CF03027B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSchemaGenerator_GetJsonSchemaType_m218797C2A4903C28A40C17AD3790079D6F3235B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalBase_ClearErrorContext_m13BE0970C0D153472880BEF45A97F079504784E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalBase_GetErrorContext_m19A4032DCA0A1E4B4516E1F59A6499DDE2EFB5CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_CreateJObject_mDD45A15AC45803D1E1F7D7DBDE34F960543607E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_CreateNewDictionary_mFA1A66BB86EE4864CB12C49EBDFF6BFD00D50B66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_CreateNewList_m3750B64E6CE99D30375C4DC66E3CE8195CD6A4B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_CreateNewObject_mD9BBCC02F1FE14D85F8DAE3035E3D71768A24DC0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_EnsureArrayContract_mBAF9619065E088954C5A59AB052E2FD0D0CDEA4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_GetExpectedDescription_m9EC69D92138EB0051D0E68AD0A6E67C68BEC0AB3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_PopulateMultidimensionalArray_mAB445EFB76C13BF0091C79166158B6F28F068876_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_ReadMetadataPropertiesToken_mB8D6EFC61B31A381189C1FFD0E8D9C1CD5D3AEA7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_ReadMetadataProperties_m53E9E27D4CEB8410EA0D00AFF421EB5AA4A377CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_SetExtensionData_m384D01058E7D604A21369BA6679D44C12BB61D40_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_Binder_m3B0C07727E69E34BC56F4B10698F9C8C88AC930D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_ConstructorHandling_mEF22C82FDD717F7801516118A0D652E9D9EB78B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_DefaultValueHandling_m61794B3CA51E8F469DA5B66290B9C3A63A0F805D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_MaxDepth_m01C623343973102970B26F33F5F894F3AB4AB05A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_MetadataPropertyHandling_m230F22B478E800BD741BA83807C945DC507AD0DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_MissingMemberHandling_m78C7E0ECAA241BF7690948BE719225E76235A5F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_NullValueHandling_mC248AC35999674CF2DEE4138037DE7711C82299B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_ObjectCreationHandling_m8454C03CA78F7CC57C5B380D247FB57512890275_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_PreserveReferencesHandling_m4F19115351DDF0AC9C4776275DB66EF4677FBDC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_ReferenceLoopHandling_mD4FDD7EC96C26CCFD25892D99E276FB11902E4A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_ReferenceResolver_m5AA42BE91BA4767426D948E9030AA6952C9A1D4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_TypeNameAssemblyFormat_m61DEC75BE40A16153C4EEBE11D09A7AB0CCC8AF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonSerializer_set_TypeNameHandling_m1027F8E59BA49CBA97562209F5F2068AE85BB4F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetCachedAttribute_TisJsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67_m58AF80822B3946DA06E1E67A40939EDB8D2D7BB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m0DC7AE685FF1C2F7E0038363668B9D3583474471_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m5CE8A5AF744019B78C385AF3FAB11A424D135480_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m9199B1BF019BFCE5364F5706D158861CBEBDEB76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_mEC1D37965D28CC9D2560F21B01A962D2D1B201BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m0D17F179802CEE9674FCB335B47210AEFE7C36A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_mA4A5284294F43CF0779FEC979D057359BF95D83B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyedCollection_2_Contains_m69A8FD8070340A46FC65CF67CAB73C4743694366_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyedCollection_2__ctor_m48A600BEFDD1FEC28EA581FC3D528B9040B9C50E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyedCollection_2_get_Item_m542C4F66BC961ACA5A7DF102D52C56BBF4E353B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m539B9C5AEFD365A6F584290E6DC600FAD49B42C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m7ADF7BEFC5894B7234ED409535024A10BC328C79_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m3E62BA9D468CE5F737CF008AE9AF0AAC8146074A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m922296E3F839C8D0AADA354F60A9B508EFC90CE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1BCB824DBA7CA0D9CB62B72D886DE789CF54C108_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m47ACAF0DE63A171CC0E4B96737540E1F9CDDE594_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mB907091DD72A6D2506461A16B86CDF4F2585DFF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC62CE1867CC9B4535B2681E8C4A3CC57735A08FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE348095099D15AC7CFA9980F30366D8AC4607951_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE5461E6B9EC16BCA8AC942A0F3AE6B6274CE90DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mBA23A4CC4EFCE2EA3D3C22802D824971741EAEFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mACAD93BE1CBD3BF09E92CFEF97B1416A7286923E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mAE81CE6260AAB19E7B95D2C832B9BB8F1B799A67_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m6887AE493086930CEF3A683492F3AD2AA1E1C60B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m88EA3C6DB2CBBF8587DD2891E56AAB44B71CCBC2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mA3DF7B266E62947143C277E6A616F6913CBE28C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mF2798C0AEE4344D50B89FA536125729BEB8FA49E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mC341C2414A46784FE243AA8F98ED52D1461DCB27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m0A7DA228818AD92DD59452001FC63E0069BA3C1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m11A58E870866616D1A3DFDE1370389594B0FC64C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m226492ED52703200F6A1A4C190D07FB3393CB855_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m64F5B977257CFBB20DE258F6F6567B8DCF91570D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m7A43A8CFC0AC024A40B50313E4252BE99F9AFB4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m82C80B692AFEFF6593F6C624B0DC743C050CA59D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m8C4B9339DAFB9B8973E415AAA2513F0E4ECBFD9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mBD300EB3CF7634BC42666F4775052069E12A1D03_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mF1C55F03F081410943CDC7EA670948E74A749C2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Predicate_1_Invoke_m9D3C9A756002DA052F4A0129DFF1DA165D7FE913_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_Contains_m6C04C6F8A87787663493D488B88A771E553F5D5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_m81BBA8C1F4529D628559B7B58182BBEC34AF61EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_mC273ABADFD326D9949509DFA020F04A64518D9CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m87B86ED53BBE83FB3CEC83D26371B4D4137526F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m790AE37267D1C376801B8E5A2A039F21A671881A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_mC832BF38D820FC36997AAF894B302B4734811BFD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringUtils_ForgivingCaseSensitiveFind_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_m6F75DAAC00903901AA7A9C070A9F5F2F2E5AA608_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__34_0_m9CA37F8B7C615C015DB8902ABD507CAAD4089524_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__34_2_mE1C1376A397CA7D3B4B4044C0F5882BF2E7B34F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetIdU3Eb__31_0_m05CC4F7690E0993641F634E11754E1B8340C2E55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetIdU3Eb__31_1_m6D941F36A1B53F413FB526E81EAF9B4415C40578_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CPopulateObjectU3Eb__39_0_m7B5E19EA7638DA4B6F54ECF33AF494D732BA902C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CPopulateObjectU3Eb__39_1_m6FD64536C62B0B8E4C25D3A773A7A68F4B7AE895_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CWriteTypeU3Eb__7_0_m416B01C5275A0182E39310794DA494831EE917DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass23_0_U3CGenerateInternalU3Eb__0_m6882178CB478DDE227C7BDD85644546AC0E87F7C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass23_0_U3CMapTypeU3Eb__0_m6B89D86A1E0B367BEC0CC3B6DB73AB654D23DFB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass34_0_U3CCreateObjectUsingCreatorWithParametersU3Eb__1_m9B6BEA0D85505EC458548AFEF013785BE9F8539A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass5_0_U3CGetSchemaU3Eb__0_m73ED2812EAC528A349B004BCF2B0F17F6CF82FB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass5_0_U3CGetSchemaU3Eb__1_mE63608A4F6798371811763D3B8786F03E14E1F8F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com;
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke;
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com;
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
struct JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461;
struct JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
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
// Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>
struct BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C : public RuntimeObject
{
public:
// System.Collections.Generic.IDictionary`2<TFirst,TSecond> Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_firstToSecond
RuntimeObject* ____firstToSecond_0;
// System.Collections.Generic.IDictionary`2<TSecond,TFirst> Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_secondToFirst
RuntimeObject* ____secondToFirst_1;
// System.String Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_duplicateFirstErrorMessage
String_t* ____duplicateFirstErrorMessage_2;
// System.String Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_duplicateSecondErrorMessage
String_t* ____duplicateSecondErrorMessage_3;
public:
inline static int32_t get_offset_of__firstToSecond_0() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C, ____firstToSecond_0)); }
inline RuntimeObject* get__firstToSecond_0() const { return ____firstToSecond_0; }
inline RuntimeObject** get_address_of__firstToSecond_0() { return &____firstToSecond_0; }
inline void set__firstToSecond_0(RuntimeObject* value)
{
____firstToSecond_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____firstToSecond_0), (void*)value);
}
inline static int32_t get_offset_of__secondToFirst_1() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C, ____secondToFirst_1)); }
inline RuntimeObject* get__secondToFirst_1() const { return ____secondToFirst_1; }
inline RuntimeObject** get_address_of__secondToFirst_1() { return &____secondToFirst_1; }
inline void set__secondToFirst_1(RuntimeObject* value)
{
____secondToFirst_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____secondToFirst_1), (void*)value);
}
inline static int32_t get_offset_of__duplicateFirstErrorMessage_2() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C, ____duplicateFirstErrorMessage_2)); }
inline String_t* get__duplicateFirstErrorMessage_2() const { return ____duplicateFirstErrorMessage_2; }
inline String_t** get_address_of__duplicateFirstErrorMessage_2() { return &____duplicateFirstErrorMessage_2; }
inline void set__duplicateFirstErrorMessage_2(String_t* value)
{
____duplicateFirstErrorMessage_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____duplicateFirstErrorMessage_2), (void*)value);
}
inline static int32_t get_offset_of__duplicateSecondErrorMessage_3() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C, ____duplicateSecondErrorMessage_3)); }
inline String_t* get__duplicateSecondErrorMessage_3() const { return ____duplicateSecondErrorMessage_3; }
inline String_t** get_address_of__duplicateSecondErrorMessage_3() { return &____duplicateSecondErrorMessage_3; }
inline void set__duplicateSecondErrorMessage_3(String_t* value)
{
____duplicateSecondErrorMessage_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____duplicateSecondErrorMessage_3), (void*)value);
}
};
// System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.JsonConverter>
struct Collection_1_t9876F48633FD88C40E0659BF371CE5316A16BF09 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.Collection`1::items
RuntimeObject* ___items_0;
// System.Object System.Collections.ObjectModel.Collection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Collection_1_t9876F48633FD88C40E0659BF371CE5316A16BF09, ___items_0)); }
inline RuntimeObject* get_items_0() const { return ___items_0; }
inline RuntimeObject** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(RuntimeObject* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(Collection_1_t9876F48633FD88C40E0659BF371CE5316A16BF09, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.Collection`1::items
RuntimeObject* ___items_0;
// System.Object System.Collections.ObjectModel.Collection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4, ___items_0)); }
inline RuntimeObject* get_items_0() const { return ___items_0; }
inline RuntimeObject** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(RuntimeObject* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct Collection_1_tE61D7E145066C8E3FEA6D1C7B1B3F7F46D3F1F0C : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.Collection`1::items
RuntimeObject* ___items_0;
// System.Object System.Collections.ObjectModel.Collection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Collection_1_tE61D7E145066C8E3FEA6D1C7B1B3F7F46D3F1F0C, ___items_0)); }
inline RuntimeObject* get_items_0() const { return ___items_0; }
inline RuntimeObject** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(RuntimeObject* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(Collection_1_tE61D7E145066C8E3FEA6D1C7B1B3F7F46D3F1F0C, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t686F11215775D35D5321B913560CEE212C8C77E6* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tDB3C5D23E9946E858CC498C99C63B72C4C9AA738 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tF55B326AC5342752F97D91923D6B9BD1F42109D5 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___entries_1)); }
inline EntryU5BU5D_t686F11215775D35D5321B913560CEE212C8C77E6* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t686F11215775D35D5321B913560CEE212C8C77E6** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t686F11215775D35D5321B913560CEE212C8C77E6* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___keys_7)); }
inline KeyCollection_tDB3C5D23E9946E858CC498C99C63B72C4C9AA738 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tDB3C5D23E9946E858CC498C99C63B72C4C9AA738 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tDB3C5D23E9946E858CC498C99C63B72C4C9AA738 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ___values_8)); }
inline ValueCollection_tF55B326AC5342752F97D91923D6B9BD1F42109D5 * get_values_8() const { return ___values_8; }
inline ValueCollection_tF55B326AC5342752F97D91923D6B9BD1F42109D5 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tF55B326AC5342752F97D91923D6B9BD1F42109D5 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t0A1B585E90789570DE906E44C42B9A85D0032ED2* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tD5EA88BF9C965A8BF538FF340FC82F4D9D2E5AFC * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tD44DA8CDD4190BAF6A8E4F30688FE13F07C4D2A4 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___entries_1)); }
inline EntryU5BU5D_t0A1B585E90789570DE906E44C42B9A85D0032ED2* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t0A1B585E90789570DE906E44C42B9A85D0032ED2** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t0A1B585E90789570DE906E44C42B9A85D0032ED2* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___keys_7)); }
inline KeyCollection_tD5EA88BF9C965A8BF538FF340FC82F4D9D2E5AFC * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tD5EA88BF9C965A8BF538FF340FC82F4D9D2E5AFC ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tD5EA88BF9C965A8BF538FF340FC82F4D9D2E5AFC * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ___values_8)); }
inline ValueCollection_tD44DA8CDD4190BAF6A8E4F30688FE13F07C4D2A4 * get_values_8() const { return ___values_8; }
inline ValueCollection_tD44DA8CDD4190BAF6A8E4F30688FE13F07C4D2A4 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tD44DA8CDD4190BAF6A8E4F30688FE13F07C4D2A4 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t16692499A239C3B01E600C58C9A91A9A6605850F* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tEAE56C4E4EA68E165BBE898588CFF9C30BE403C1 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t29AE3E249218B491C07ECE6B4044214228B09D56 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___entries_1)); }
inline EntryU5BU5D_t16692499A239C3B01E600C58C9A91A9A6605850F* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t16692499A239C3B01E600C58C9A91A9A6605850F** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t16692499A239C3B01E600C58C9A91A9A6605850F* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___keys_7)); }
inline KeyCollection_tEAE56C4E4EA68E165BBE898588CFF9C30BE403C1 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tEAE56C4E4EA68E165BBE898588CFF9C30BE403C1 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tEAE56C4E4EA68E165BBE898588CFF9C30BE403C1 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ___values_8)); }
inline ValueCollection_t29AE3E249218B491C07ECE6B4044214228B09D56 * get_values_8() const { return ___values_8; }
inline ValueCollection_t29AE3E249218B491C07ECE6B4044214228B09D56 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t29AE3E249218B491C07ECE6B4044214228B09D56 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tAD45B4C2EE2BA58BBFC31FDED095A7EC9D52A159* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tDBE3D18E05918BFB84913CE3DF48ED32E1F3E55C * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tE5A9D125768780175C8800D57B55D56E7E625BA1 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___entries_1)); }
inline EntryU5BU5D_tAD45B4C2EE2BA58BBFC31FDED095A7EC9D52A159* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tAD45B4C2EE2BA58BBFC31FDED095A7EC9D52A159** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tAD45B4C2EE2BA58BBFC31FDED095A7EC9D52A159* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___keys_7)); }
inline KeyCollection_tDBE3D18E05918BFB84913CE3DF48ED32E1F3E55C * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tDBE3D18E05918BFB84913CE3DF48ED32E1F3E55C ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tDBE3D18E05918BFB84913CE3DF48ED32E1F3E55C * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ___values_8)); }
inline ValueCollection_tE5A9D125768780175C8800D57B55D56E7E625BA1 * get_values_8() const { return ___values_8; }
inline ValueCollection_tE5A9D125768780175C8800D57B55D56E7E625BA1 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tE5A9D125768780175C8800D57B55D56E7E625BA1 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t02A19F50EA158224BF304DDCD29737C8043F694D* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t353D6E350D0AECB16F4B6F248F42E05869BB1A97 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tB482F4BD3987AFF88F57695ACDB8E4DC0BE14551 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___entries_1)); }
inline EntryU5BU5D_t02A19F50EA158224BF304DDCD29737C8043F694D* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t02A19F50EA158224BF304DDCD29737C8043F694D** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t02A19F50EA158224BF304DDCD29737C8043F694D* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___keys_7)); }
inline KeyCollection_t353D6E350D0AECB16F4B6F248F42E05869BB1A97 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t353D6E350D0AECB16F4B6F248F42E05869BB1A97 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t353D6E350D0AECB16F4B6F248F42E05869BB1A97 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ___values_8)); }
inline ValueCollection_tB482F4BD3987AFF88F57695ACDB8E4DC0BE14551 * get_values_8() const { return ___values_8; }
inline ValueCollection_tB482F4BD3987AFF88F57695ACDB8E4DC0BE14551 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tB482F4BD3987AFF88F57695ACDB8E4DC0BE14551 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tADC4ABC1F82D483B1EB1AED831449F7A5C13F2BE* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tFF74B63AEE1138D77842ACF024933CB2C34A44AF * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t2C8BFB0D1E70218AE824EDB806E409E11DBDFE7D * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___entries_1)); }
inline EntryU5BU5D_tADC4ABC1F82D483B1EB1AED831449F7A5C13F2BE* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tADC4ABC1F82D483B1EB1AED831449F7A5C13F2BE** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tADC4ABC1F82D483B1EB1AED831449F7A5C13F2BE* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___keys_7)); }
inline KeyCollection_tFF74B63AEE1138D77842ACF024933CB2C34A44AF * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tFF74B63AEE1138D77842ACF024933CB2C34A44AF ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tFF74B63AEE1138D77842ACF024933CB2C34A44AF * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ___values_8)); }
inline ValueCollection_t2C8BFB0D1E70218AE824EDB806E409E11DBDFE7D * get_values_8() const { return ___values_8; }
inline ValueCollection_t2C8BFB0D1E70218AE824EDB806E409E11DBDFE7D ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t2C8BFB0D1E70218AE824EDB806E409E11DBDFE7D * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>
struct EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B : public RuntimeObject
{
public:
// System.String Vuforia.Newtonsoft.Json.Utilities.EnumValue`1::_name
String_t* ____name_0;
// T Vuforia.Newtonsoft.Json.Utilities.EnumValue`1::_value
int64_t ____value_1;
public:
inline static int32_t get_offset_of__name_0() { return static_cast<int32_t>(offsetof(EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B, ____name_0)); }
inline String_t* get__name_0() const { return ____name_0; }
inline String_t** get_address_of__name_0() { return &____name_0; }
inline void set__name_0(String_t* value)
{
____name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____name_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B, ____value_1)); }
inline int64_t get__value_1() const { return ____value_1; }
inline int64_t* get_address_of__value_1() { return &____value_1; }
inline void set__value_1(int64_t value)
{
____value_1 = value;
}
};
// System.Collections.Generic.EqualityComparer`1<System.String>
struct EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>
struct List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E* ____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_t442421A5A06764B8D853440DFAFB3F122D52E8C4, ____items_1)); }
inline KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E* get__items_1() const { return ____items_1; }
inline KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E* 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_t442421A5A06764B8D853440DFAFB3F122D52E8C4, ____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_t442421A5A06764B8D853440DFAFB3F122D52E8C4, ____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_t442421A5A06764B8D853440DFAFB3F122D52E8C4, ____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_t442421A5A06764B8D853440DFAFB3F122D52E8C4_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4_StaticFields, ____emptyArray_5)); }
inline KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E* get__emptyArray_5() const { return ____emptyArray_5; }
inline KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(KeyValuePair_2U5BU5D_t46A5C02672D1D615A81689C64D0C574A55741E7E* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Linq.JToken>
struct List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956* ____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_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902, ____items_1)); }
inline JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956* get__items_1() const { return ____items_1; }
inline JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956* 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_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902, ____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_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902, ____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_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902, ____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_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_StaticFields, ____emptyArray_5)); }
inline JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956* get__emptyArray_5() const { return ____emptyArray_5; }
inline JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JTokenU5BU5D_tF3EF445F10027E1E87DC7D860CCFF460E3143956* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* ____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_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92, ____items_1)); }
inline JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* get__items_1() const { return ____items_1; }
inline JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* 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_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92, ____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_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92, ____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_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92, ____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_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_StaticFields, ____emptyArray_5)); }
inline JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* get__emptyArray_5() const { return ____emptyArray_5; }
inline JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>
struct List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F* ____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_t36FB429C864BBEEE732594FA82A79598A0E4AAB9, ____items_1)); }
inline JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F* get__items_1() const { return ____items_1; }
inline JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F* 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_t36FB429C864BBEEE732594FA82A79598A0E4AAB9, ____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_t36FB429C864BBEEE732594FA82A79598A0E4AAB9, ____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_t36FB429C864BBEEE732594FA82A79598A0E4AAB9, ____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_t36FB429C864BBEEE732594FA82A79598A0E4AAB9_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9_StaticFields, ____emptyArray_5)); }
inline JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F* get__emptyArray_5() const { return ____emptyArray_5; }
inline JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JsonSchemaModelU5BU5D_t95280ECABC30C076F646DB16F10243D558EE043F* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E* ____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_t260F3D14C487E2E93A2EB03BA581084C8FA315B3, ____items_1)); }
inline JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E* get__items_1() const { return ____items_1; }
inline JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E* 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_t260F3D14C487E2E93A2EB03BA581084C8FA315B3, ____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_t260F3D14C487E2E93A2EB03BA581084C8FA315B3, ____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_t260F3D14C487E2E93A2EB03BA581084C8FA315B3, ____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_t260F3D14C487E2E93A2EB03BA581084C8FA315B3_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3_StaticFields, ____emptyArray_5)); }
inline JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E* get__emptyArray_5() const { return ____emptyArray_5; }
inline JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JsonSchemaNodeU5BU5D_tC00D1DBE85CF80753DB5D4B0DE2801737C787C2E* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511* ____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_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A, ____items_1)); }
inline JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511* get__items_1() const { return ____items_1; }
inline JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511* 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_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A, ____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_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A, ____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_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A, ____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_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A_StaticFields, ____emptyArray_5)); }
inline JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511* get__emptyArray_5() const { return ____emptyArray_5; }
inline JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JsonSchemaTypeU5BU5D_t5205951EF943C9551235CC0122AB116D87067511* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// 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<System.String>
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____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_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* 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_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____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_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____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_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____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_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>
struct List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD* ____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_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA, ____items_1)); }
inline TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD* get__items_1() const { return ____items_1; }
inline TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD* 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_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA, ____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_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA, ____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_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA, ____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_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA_StaticFields, ____emptyArray_5)); }
inline TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD* get__emptyArray_5() const { return ____emptyArray_5; }
inline TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TypeSchemaU5BU5D_t95BBF20BEBBBC20D10EA26323BD59E6731833BBD* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>
struct List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A* ____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_t7EE065C775D6730C17E63329CAEE50D15274E511, ____items_1)); }
inline CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A* get__items_1() const { return ____items_1; }
inline CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A* 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_t7EE065C775D6730C17E63329CAEE50D15274E511, ____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_t7EE065C775D6730C17E63329CAEE50D15274E511, ____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_t7EE065C775D6730C17E63329CAEE50D15274E511, ____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_t7EE065C775D6730C17E63329CAEE50D15274E511_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t7EE065C775D6730C17E63329CAEE50D15274E511_StaticFields, ____emptyArray_5)); }
inline CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A* get__emptyArray_5() const { return ____emptyArray_5; }
inline CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(CreatorPropertyContextU5BU5D_t88730F7F73EE9C47BFB2EC19EA4F8609E19D738A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.Generic.Stack`1<System.Collections.IList>
struct Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
IListU5BU5D_t432212082C228AB2BEEC4107E901D2B734B3429B* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC, ____array_0)); }
inline IListU5BU5D_t432212082C228AB2BEEC4107E901D2B734B3429B* get__array_0() const { return ____array_0; }
inline IListU5BU5D_t432212082C228AB2BEEC4107E901D2B734B3429B** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(IListU5BU5D_t432212082C228AB2BEEC4107E901D2B734B3429B* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____array_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
{
public:
public:
};
// System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 : public RuntimeObject
{
public:
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
public:
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isReadOnly_3)); }
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
inline void set_m_isReadOnly_3(bool value)
{
___m_isReadOnly_3 = value;
}
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cultureID_4)); }
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
inline void set_cultureID_4(int32_t value)
{
___cultureID_4 = value;
}
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_lcid_5)); }
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
inline void set_parent_lcid_5(int32_t value)
{
___parent_lcid_5 = value;
}
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___datetime_index_6)); }
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
inline void set_datetime_index_6(int32_t value)
{
___datetime_index_6 = value;
}
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___number_index_7)); }
inline int32_t get_number_index_7() const { return ___number_index_7; }
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
inline void set_number_index_7(int32_t value)
{
___number_index_7 = value;
}
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___default_calendar_type_8)); }
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
inline void set_default_calendar_type_8(int32_t value)
{
___default_calendar_type_8 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_useUserOverride_9)); }
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
inline void set_m_useUserOverride_9(bool value)
{
___m_useUserOverride_9 = value;
}
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___numInfo_10)); }
inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_numInfo_10() const { return ___numInfo_10; }
inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_numInfo_10() { return &___numInfo_10; }
inline void set_numInfo_10(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value)
{
___numInfo_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value);
}
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___dateTimeInfo_11)); }
inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
inline void set_dateTimeInfo_11(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value)
{
___dateTimeInfo_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value);
}
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textInfo_12)); }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_12() const { return ___textInfo_12; }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_12() { return &___textInfo_12; }
inline void set_textInfo_12(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value)
{
___textInfo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value);
}
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_name_13)); }
inline String_t* get_m_name_13() const { return ___m_name_13; }
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
inline void set_m_name_13(String_t* value)
{
___m_name_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value);
}
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___englishname_14)); }
inline String_t* get_englishname_14() const { return ___englishname_14; }
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
inline void set_englishname_14(String_t* value)
{
___englishname_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value);
}
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___nativename_15)); }
inline String_t* get_nativename_15() const { return ___nativename_15; }
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
inline void set_nativename_15(String_t* value)
{
___nativename_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value);
}
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso3lang_16)); }
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
inline void set_iso3lang_16(String_t* value)
{
___iso3lang_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value);
}
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso2lang_17)); }
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
inline void set_iso2lang_17(String_t* value)
{
___iso2lang_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value);
}
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___win3lang_18)); }
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
inline void set_win3lang_18(String_t* value)
{
___win3lang_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value);
}
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___territory_19)); }
inline String_t* get_territory_19() const { return ___territory_19; }
inline String_t** get_address_of_territory_19() { return &___territory_19; }
inline void set_territory_19(String_t* value)
{
___territory_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value);
}
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___native_calendar_names_20)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
inline void set_native_calendar_names_20(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___native_calendar_names_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value);
}
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___compareInfo_21)); }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_compareInfo_21() const { return ___compareInfo_21; }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
inline void set_compareInfo_21(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value)
{
___compareInfo_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value);
}
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textinfo_data_22)); }
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
inline void set_textinfo_data_22(void* value)
{
___textinfo_data_22 = value;
}
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_dataItem_23)); }
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
inline void set_m_dataItem_23(int32_t value)
{
___m_dataItem_23 = value;
}
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___calendar_24)); }
inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_24() const { return ___calendar_24; }
inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_24() { return &___calendar_24; }
inline void set_calendar_24(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value)
{
___calendar_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value);
}
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_culture_25)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_parent_culture_25() const { return ___parent_culture_25; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
inline void set_parent_culture_25(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___parent_culture_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value);
}
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___constructed_26)); }
inline bool get_constructed_26() const { return ___constructed_26; }
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
inline void set_constructed_26(bool value)
{
___constructed_26 = value;
}
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cached_serialized_form_27)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
inline void set_cached_serialized_form_27(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___cached_serialized_form_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value);
}
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_cultureData_28)); }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_28() const { return ___m_cultureData_28; }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
inline void set_m_cultureData_28(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value)
{
___m_cultureData_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value);
}
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isInherited_29)); }
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
inline void set_m_isInherited_29(bool value)
{
___m_isInherited_29 = value;
}
};
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject * ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentUICulture_33;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentCulture_34;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * ___shared_by_number_35;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * ___shared_by_name_36;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_37;
public:
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___invariant_culture_info_0)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
inline void set_invariant_culture_info_0(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___invariant_culture_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value);
}
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_table_lock_1)); }
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
inline void set_shared_table_lock_1(RuntimeObject * value)
{
___shared_table_lock_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value);
}
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___default_current_culture_2)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_default_current_culture_2() const { return ___default_current_culture_2; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
inline void set_default_current_culture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___default_current_culture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___s_DefaultThreadCurrentUICulture_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___s_DefaultThreadCurrentCulture_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value);
}
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_number_35)); }
inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * get_shared_by_number_35() const { return ___shared_by_number_35; }
inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
inline void set_shared_by_number_35(Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * value)
{
___shared_by_number_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value);
}
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_name_36)); }
inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * get_shared_by_name_36() const { return ___shared_by_name_36; }
inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
inline void set_shared_by_name_36(Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * value)
{
___shared_by_name_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value);
}
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___IsTaiwanSku_37)); }
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
inline void set_IsTaiwanSku_37(bool value)
{
___IsTaiwanSku_37 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10;
DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11;
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10;
DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11;
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolverState
struct DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.ResolverContractKey,Vuforia.Newtonsoft.Json.Serialization.JsonContract> Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolverState::ContractCache
Dictionary_2_t8DB9B22BC8AA28D1598D601D2EB5A6037B93AF9C * ___ContractCache_0;
// Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolverState::NameTable
PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 * ___NameTable_1;
public:
inline static int32_t get_offset_of_ContractCache_0() { return static_cast<int32_t>(offsetof(DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE, ___ContractCache_0)); }
inline Dictionary_2_t8DB9B22BC8AA28D1598D601D2EB5A6037B93AF9C * get_ContractCache_0() const { return ___ContractCache_0; }
inline Dictionary_2_t8DB9B22BC8AA28D1598D601D2EB5A6037B93AF9C ** get_address_of_ContractCache_0() { return &___ContractCache_0; }
inline void set_ContractCache_0(Dictionary_2_t8DB9B22BC8AA28D1598D601D2EB5A6037B93AF9C * value)
{
___ContractCache_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ContractCache_0), (void*)value);
}
inline static int32_t get_offset_of_NameTable_1() { return static_cast<int32_t>(offsetof(DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE, ___NameTable_1)); }
inline PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 * get_NameTable_1() const { return ___NameTable_1; }
inline PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 ** get_address_of_NameTable_1() { return &___NameTable_1; }
inline void set_NameTable_1(PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 * value)
{
___NameTable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NameTable_1), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.DefaultReferenceResolver
struct DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106 : public RuntimeObject
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Serialization.DefaultReferenceResolver::_referenceCount
int32_t ____referenceCount_0;
public:
inline static int32_t get_offset_of__referenceCount_0() { return static_cast<int32_t>(offsetof(DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106, ____referenceCount_0)); }
inline int32_t get__referenceCount_0() const { return ____referenceCount_0; }
inline int32_t* get_address_of__referenceCount_0() { return &____referenceCount_0; }
inline void set__referenceCount_0(int32_t value)
{
____referenceCount_0 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.ErrorContext
struct ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 : public RuntimeObject
{
public:
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.ErrorContext::<Traced>k__BackingField
bool ___U3CTracedU3Ek__BackingField_0;
// System.Exception Vuforia.Newtonsoft.Json.Serialization.ErrorContext::<Error>k__BackingField
Exception_t * ___U3CErrorU3Ek__BackingField_1;
// System.Object Vuforia.Newtonsoft.Json.Serialization.ErrorContext::<OriginalObject>k__BackingField
RuntimeObject * ___U3COriginalObjectU3Ek__BackingField_2;
// System.Object Vuforia.Newtonsoft.Json.Serialization.ErrorContext::<Member>k__BackingField
RuntimeObject * ___U3CMemberU3Ek__BackingField_3;
// System.String Vuforia.Newtonsoft.Json.Serialization.ErrorContext::<Path>k__BackingField
String_t* ___U3CPathU3Ek__BackingField_4;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.ErrorContext::<Handled>k__BackingField
bool ___U3CHandledU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CTracedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589, ___U3CTracedU3Ek__BackingField_0)); }
inline bool get_U3CTracedU3Ek__BackingField_0() const { return ___U3CTracedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CTracedU3Ek__BackingField_0() { return &___U3CTracedU3Ek__BackingField_0; }
inline void set_U3CTracedU3Ek__BackingField_0(bool value)
{
___U3CTracedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CErrorU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589, ___U3CErrorU3Ek__BackingField_1)); }
inline Exception_t * get_U3CErrorU3Ek__BackingField_1() const { return ___U3CErrorU3Ek__BackingField_1; }
inline Exception_t ** get_address_of_U3CErrorU3Ek__BackingField_1() { return &___U3CErrorU3Ek__BackingField_1; }
inline void set_U3CErrorU3Ek__BackingField_1(Exception_t * value)
{
___U3CErrorU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CErrorU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3COriginalObjectU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589, ___U3COriginalObjectU3Ek__BackingField_2)); }
inline RuntimeObject * get_U3COriginalObjectU3Ek__BackingField_2() const { return ___U3COriginalObjectU3Ek__BackingField_2; }
inline RuntimeObject ** get_address_of_U3COriginalObjectU3Ek__BackingField_2() { return &___U3COriginalObjectU3Ek__BackingField_2; }
inline void set_U3COriginalObjectU3Ek__BackingField_2(RuntimeObject * value)
{
___U3COriginalObjectU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3COriginalObjectU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CMemberU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589, ___U3CMemberU3Ek__BackingField_3)); }
inline RuntimeObject * get_U3CMemberU3Ek__BackingField_3() const { return ___U3CMemberU3Ek__BackingField_3; }
inline RuntimeObject ** get_address_of_U3CMemberU3Ek__BackingField_3() { return &___U3CMemberU3Ek__BackingField_3; }
inline void set_U3CMemberU3Ek__BackingField_3(RuntimeObject * value)
{
___U3CMemberU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMemberU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CPathU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589, ___U3CPathU3Ek__BackingField_4)); }
inline String_t* get_U3CPathU3Ek__BackingField_4() const { return ___U3CPathU3Ek__BackingField_4; }
inline String_t** get_address_of_U3CPathU3Ek__BackingField_4() { return &___U3CPathU3Ek__BackingField_4; }
inline void set_U3CPathU3Ek__BackingField_4(String_t* value)
{
___U3CPathU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPathU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CHandledU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589, ___U3CHandledU3Ek__BackingField_5)); }
inline bool get_U3CHandledU3Ek__BackingField_5() const { return ___U3CHandledU3Ek__BackingField_5; }
inline bool* get_address_of_U3CHandledU3Ek__BackingField_5() { return &___U3CHandledU3Ek__BackingField_5; }
inline void set_U3CHandledU3Ek__BackingField_5(bool value)
{
___U3CHandledU3Ek__BackingField_5 = value;
}
};
// System.EventArgs
struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA : public RuntimeObject
{
public:
public:
};
struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields
{
public:
// System.EventArgs System.EventArgs::Empty
EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields, ___Empty_0)); }
inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * get_Empty_0() const { return ___Empty_0; }
inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Linq.JToken
struct JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.Linq.JContainer Vuforia.Newtonsoft.Json.Linq.JToken::_parent
JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * ____parent_1;
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::_previous
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ____previous_2;
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::_next
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ____next_3;
// System.Object Vuforia.Newtonsoft.Json.Linq.JToken::_annotations
RuntimeObject * ____annotations_4;
public:
inline static int32_t get_offset_of__parent_1() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426, ____parent_1)); }
inline JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * get__parent_1() const { return ____parent_1; }
inline JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC ** get_address_of__parent_1() { return &____parent_1; }
inline void set__parent_1(JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * value)
{
____parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_1), (void*)value);
}
inline static int32_t get_offset_of__previous_2() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426, ____previous_2)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get__previous_2() const { return ____previous_2; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of__previous_2() { return &____previous_2; }
inline void set__previous_2(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
____previous_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____previous_2), (void*)value);
}
inline static int32_t get_offset_of__next_3() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426, ____next_3)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get__next_3() const { return ____next_3; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of__next_3() { return &____next_3; }
inline void set__next_3(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
____next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____next_3), (void*)value);
}
inline static int32_t get_offset_of__annotations_4() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426, ____annotations_4)); }
inline RuntimeObject * get__annotations_4() const { return ____annotations_4; }
inline RuntimeObject ** get_address_of__annotations_4() { return &____annotations_4; }
inline void set__annotations_4(RuntimeObject * value)
{
____annotations_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____annotations_4), (void*)value);
}
};
struct JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields
{
public:
// Vuforia.Newtonsoft.Json.Linq.JTokenEqualityComparer Vuforia.Newtonsoft.Json.Linq.JToken::_equalityComparer
JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01 * ____equalityComparer_0;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::BooleanTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___BooleanTypes_5;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::NumberTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___NumberTypes_6;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::StringTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___StringTypes_7;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::GuidTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___GuidTypes_8;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::TimeSpanTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___TimeSpanTypes_9;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::UriTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___UriTypes_10;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::CharTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___CharTypes_11;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::DateTimeTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___DateTimeTypes_12;
// Vuforia.Newtonsoft.Json.Linq.JTokenType[] Vuforia.Newtonsoft.Json.Linq.JToken::BytesTypes
JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* ___BytesTypes_13;
public:
inline static int32_t get_offset_of__equalityComparer_0() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ____equalityComparer_0)); }
inline JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01 * get__equalityComparer_0() const { return ____equalityComparer_0; }
inline JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01 ** get_address_of__equalityComparer_0() { return &____equalityComparer_0; }
inline void set__equalityComparer_0(JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01 * value)
{
____equalityComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____equalityComparer_0), (void*)value);
}
inline static int32_t get_offset_of_BooleanTypes_5() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___BooleanTypes_5)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_BooleanTypes_5() const { return ___BooleanTypes_5; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_BooleanTypes_5() { return &___BooleanTypes_5; }
inline void set_BooleanTypes_5(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___BooleanTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BooleanTypes_5), (void*)value);
}
inline static int32_t get_offset_of_NumberTypes_6() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___NumberTypes_6)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_NumberTypes_6() const { return ___NumberTypes_6; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_NumberTypes_6() { return &___NumberTypes_6; }
inline void set_NumberTypes_6(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___NumberTypes_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NumberTypes_6), (void*)value);
}
inline static int32_t get_offset_of_StringTypes_7() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___StringTypes_7)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_StringTypes_7() const { return ___StringTypes_7; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_StringTypes_7() { return &___StringTypes_7; }
inline void set_StringTypes_7(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___StringTypes_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StringTypes_7), (void*)value);
}
inline static int32_t get_offset_of_GuidTypes_8() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___GuidTypes_8)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_GuidTypes_8() const { return ___GuidTypes_8; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_GuidTypes_8() { return &___GuidTypes_8; }
inline void set_GuidTypes_8(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___GuidTypes_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___GuidTypes_8), (void*)value);
}
inline static int32_t get_offset_of_TimeSpanTypes_9() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___TimeSpanTypes_9)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_TimeSpanTypes_9() const { return ___TimeSpanTypes_9; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_TimeSpanTypes_9() { return &___TimeSpanTypes_9; }
inline void set_TimeSpanTypes_9(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___TimeSpanTypes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TimeSpanTypes_9), (void*)value);
}
inline static int32_t get_offset_of_UriTypes_10() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___UriTypes_10)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_UriTypes_10() const { return ___UriTypes_10; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_UriTypes_10() { return &___UriTypes_10; }
inline void set_UriTypes_10(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___UriTypes_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriTypes_10), (void*)value);
}
inline static int32_t get_offset_of_CharTypes_11() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___CharTypes_11)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_CharTypes_11() const { return ___CharTypes_11; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_CharTypes_11() { return &___CharTypes_11; }
inline void set_CharTypes_11(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___CharTypes_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CharTypes_11), (void*)value);
}
inline static int32_t get_offset_of_DateTimeTypes_12() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___DateTimeTypes_12)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_DateTimeTypes_12() const { return ___DateTimeTypes_12; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_DateTimeTypes_12() { return &___DateTimeTypes_12; }
inline void set_DateTimeTypes_12(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___DateTimeTypes_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DateTimeTypes_12), (void*)value);
}
inline static int32_t get_offset_of_BytesTypes_13() { return static_cast<int32_t>(offsetof(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_StaticFields, ___BytesTypes_13)); }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* get_BytesTypes_13() const { return ___BytesTypes_13; }
inline JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF** get_address_of_BytesTypes_13() { return &___BytesTypes_13; }
inline void set_BytesTypes_13(JTokenTypeU5BU5D_tFB5B6C9A4E9F2E55FD58CE9358174456548CDFBF* value)
{
___BytesTypes_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BytesTypes_13), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Linq.JTokenEqualityComparer
struct JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01 : public RuntimeObject
{
public:
public:
};
// Vuforia.Newtonsoft.Json.JsonConvert
struct JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2 : public RuntimeObject
{
public:
public:
};
struct JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields
{
public:
// System.Func`1<Vuforia.Newtonsoft.Json.JsonSerializerSettings> Vuforia.Newtonsoft.Json.JsonConvert::<DefaultSettings>k__BackingField
Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * ___U3CDefaultSettingsU3Ek__BackingField_0;
// System.String Vuforia.Newtonsoft.Json.JsonConvert::True
String_t* ___True_1;
// System.String Vuforia.Newtonsoft.Json.JsonConvert::False
String_t* ___False_2;
// System.String Vuforia.Newtonsoft.Json.JsonConvert::Null
String_t* ___Null_3;
// System.String Vuforia.Newtonsoft.Json.JsonConvert::Undefined
String_t* ___Undefined_4;
// System.String Vuforia.Newtonsoft.Json.JsonConvert::PositiveInfinity
String_t* ___PositiveInfinity_5;
// System.String Vuforia.Newtonsoft.Json.JsonConvert::NegativeInfinity
String_t* ___NegativeInfinity_6;
// System.String Vuforia.Newtonsoft.Json.JsonConvert::NaN
String_t* ___NaN_7;
// Vuforia.Newtonsoft.Json.JsonSerializerSettings Vuforia.Newtonsoft.Json.JsonConvert::InitialSerializerSettings
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * ___InitialSerializerSettings_8;
public:
inline static int32_t get_offset_of_U3CDefaultSettingsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___U3CDefaultSettingsU3Ek__BackingField_0)); }
inline Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * get_U3CDefaultSettingsU3Ek__BackingField_0() const { return ___U3CDefaultSettingsU3Ek__BackingField_0; }
inline Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB ** get_address_of_U3CDefaultSettingsU3Ek__BackingField_0() { return &___U3CDefaultSettingsU3Ek__BackingField_0; }
inline void set_U3CDefaultSettingsU3Ek__BackingField_0(Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * value)
{
___U3CDefaultSettingsU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultSettingsU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_True_1() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___True_1)); }
inline String_t* get_True_1() const { return ___True_1; }
inline String_t** get_address_of_True_1() { return &___True_1; }
inline void set_True_1(String_t* value)
{
___True_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___True_1), (void*)value);
}
inline static int32_t get_offset_of_False_2() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___False_2)); }
inline String_t* get_False_2() const { return ___False_2; }
inline String_t** get_address_of_False_2() { return &___False_2; }
inline void set_False_2(String_t* value)
{
___False_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___False_2), (void*)value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___Null_3)); }
inline String_t* get_Null_3() const { return ___Null_3; }
inline String_t** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(String_t* value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
}
inline static int32_t get_offset_of_Undefined_4() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___Undefined_4)); }
inline String_t* get_Undefined_4() const { return ___Undefined_4; }
inline String_t** get_address_of_Undefined_4() { return &___Undefined_4; }
inline void set_Undefined_4(String_t* value)
{
___Undefined_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Undefined_4), (void*)value);
}
inline static int32_t get_offset_of_PositiveInfinity_5() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___PositiveInfinity_5)); }
inline String_t* get_PositiveInfinity_5() const { return ___PositiveInfinity_5; }
inline String_t** get_address_of_PositiveInfinity_5() { return &___PositiveInfinity_5; }
inline void set_PositiveInfinity_5(String_t* value)
{
___PositiveInfinity_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PositiveInfinity_5), (void*)value);
}
inline static int32_t get_offset_of_NegativeInfinity_6() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___NegativeInfinity_6)); }
inline String_t* get_NegativeInfinity_6() const { return ___NegativeInfinity_6; }
inline String_t** get_address_of_NegativeInfinity_6() { return &___NegativeInfinity_6; }
inline void set_NegativeInfinity_6(String_t* value)
{
___NegativeInfinity_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NegativeInfinity_6), (void*)value);
}
inline static int32_t get_offset_of_NaN_7() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___NaN_7)); }
inline String_t* get_NaN_7() const { return ___NaN_7; }
inline String_t** get_address_of_NaN_7() { return &___NaN_7; }
inline void set_NaN_7(String_t* value)
{
___NaN_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NaN_7), (void*)value);
}
inline static int32_t get_offset_of_InitialSerializerSettings_8() { return static_cast<int32_t>(offsetof(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields, ___InitialSerializerSettings_8)); }
inline JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * get_InitialSerializerSettings_8() const { return ___InitialSerializerSettings_8; }
inline JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 ** get_address_of_InitialSerializerSettings_8() { return &___InitialSerializerSettings_8; }
inline void set_InitialSerializerSettings_8(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * value)
{
___InitialSerializerSettings_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InitialSerializerSettings_8), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonConverter
struct JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C : public RuntimeObject
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder
struct JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::_stack
RuntimeObject* ____stack_0;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::_resolver
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ____resolver_1;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::_documentSchemas
RuntimeObject* ____documentSchemas_2;
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::_currentSchema
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ____currentSchema_3;
// Vuforia.Newtonsoft.Json.Linq.JObject Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::_rootSchema
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * ____rootSchema_4;
public:
inline static int32_t get_offset_of__stack_0() { return static_cast<int32_t>(offsetof(JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B, ____stack_0)); }
inline RuntimeObject* get__stack_0() const { return ____stack_0; }
inline RuntimeObject** get_address_of__stack_0() { return &____stack_0; }
inline void set__stack_0(RuntimeObject* value)
{
____stack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stack_0), (void*)value);
}
inline static int32_t get_offset_of__resolver_1() { return static_cast<int32_t>(offsetof(JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B, ____resolver_1)); }
inline JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * get__resolver_1() const { return ____resolver_1; }
inline JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 ** get_address_of__resolver_1() { return &____resolver_1; }
inline void set__resolver_1(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * value)
{
____resolver_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resolver_1), (void*)value);
}
inline static int32_t get_offset_of__documentSchemas_2() { return static_cast<int32_t>(offsetof(JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B, ____documentSchemas_2)); }
inline RuntimeObject* get__documentSchemas_2() const { return ____documentSchemas_2; }
inline RuntimeObject** get_address_of__documentSchemas_2() { return &____documentSchemas_2; }
inline void set__documentSchemas_2(RuntimeObject* value)
{
____documentSchemas_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____documentSchemas_2), (void*)value);
}
inline static int32_t get_offset_of__currentSchema_3() { return static_cast<int32_t>(offsetof(JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B, ____currentSchema_3)); }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * get__currentSchema_3() const { return ____currentSchema_3; }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** get_address_of__currentSchema_3() { return &____currentSchema_3; }
inline void set__currentSchema_3(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
____currentSchema_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____currentSchema_3), (void*)value);
}
inline static int32_t get_offset_of__rootSchema_4() { return static_cast<int32_t>(offsetof(JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B, ____rootSchema_4)); }
inline JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * get__rootSchema_4() const { return ____rootSchema_4; }
inline JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 ** get_address_of__rootSchema_4() { return &____rootSchema_4; }
inline void set__rootSchema_4(JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * value)
{
____rootSchema_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rootSchema_4), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaConstants
struct JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283 : public RuntimeObject
{
public:
public:
};
struct JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_StaticFields
{
public:
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchemaConstants::JsonSchemaTypeMapping
RuntimeObject* ___JsonSchemaTypeMapping_32;
public:
inline static int32_t get_offset_of_JsonSchemaTypeMapping_32() { return static_cast<int32_t>(offsetof(JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_StaticFields, ___JsonSchemaTypeMapping_32)); }
inline RuntimeObject* get_JsonSchemaTypeMapping_32() const { return ___JsonSchemaTypeMapping_32; }
inline RuntimeObject** get_address_of_JsonSchemaTypeMapping_32() { return &___JsonSchemaTypeMapping_32; }
inline void set_JsonSchemaTypeMapping_32(RuntimeObject* value)
{
___JsonSchemaTypeMapping_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___JsonSchemaTypeMapping_32), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder
struct JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNodeCollection Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::_nodes
JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * ____nodes_0;
// System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::_nodeModels
Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * ____nodeModels_1;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::_node
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ____node_2;
public:
inline static int32_t get_offset_of__nodes_0() { return static_cast<int32_t>(offsetof(JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9, ____nodes_0)); }
inline JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * get__nodes_0() const { return ____nodes_0; }
inline JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C ** get_address_of__nodes_0() { return &____nodes_0; }
inline void set__nodes_0(JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * value)
{
____nodes_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nodes_0), (void*)value);
}
inline static int32_t get_offset_of__nodeModels_1() { return static_cast<int32_t>(offsetof(JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9, ____nodeModels_1)); }
inline Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * get__nodeModels_1() const { return ____nodeModels_1; }
inline Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D ** get_address_of__nodeModels_1() { return &____nodeModels_1; }
inline void set__nodeModels_1(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * value)
{
____nodeModels_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nodeModels_1), (void*)value);
}
inline static int32_t get_offset_of__node_2() { return static_cast<int32_t>(offsetof(JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9, ____node_2)); }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * get__node_2() const { return ____node_2; }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A ** get_address_of__node_2() { return &____node_2; }
inline void set__node_2(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * value)
{
____node_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____node_2), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode
struct JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A : public RuntimeObject
{
public:
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::<Id>k__BackingField
String_t* ___U3CIdU3Ek__BackingField_0;
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::<Schemas>k__BackingField
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * ___U3CSchemasU3Ek__BackingField_1;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::<Properties>k__BackingField
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___U3CPropertiesU3Ek__BackingField_2;
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::<PatternProperties>k__BackingField
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___U3CPatternPropertiesU3Ek__BackingField_3;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::<Items>k__BackingField
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * ___U3CItemsU3Ek__BackingField_4;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::<AdditionalProperties>k__BackingField
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___U3CAdditionalPropertiesU3Ek__BackingField_5;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::<AdditionalItems>k__BackingField
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___U3CAdditionalItemsU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A, ___U3CIdU3Ek__BackingField_0)); }
inline String_t* get_U3CIdU3Ek__BackingField_0() const { return ___U3CIdU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CIdU3Ek__BackingField_0() { return &___U3CIdU3Ek__BackingField_0; }
inline void set_U3CIdU3Ek__BackingField_0(String_t* value)
{
___U3CIdU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CIdU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CSchemasU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A, ___U3CSchemasU3Ek__BackingField_1)); }
inline ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * get_U3CSchemasU3Ek__BackingField_1() const { return ___U3CSchemasU3Ek__BackingField_1; }
inline ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D ** get_address_of_U3CSchemasU3Ek__BackingField_1() { return &___U3CSchemasU3Ek__BackingField_1; }
inline void set_U3CSchemasU3Ek__BackingField_1(ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * value)
{
___U3CSchemasU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CSchemasU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CPropertiesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A, ___U3CPropertiesU3Ek__BackingField_2)); }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * get_U3CPropertiesU3Ek__BackingField_2() const { return ___U3CPropertiesU3Ek__BackingField_2; }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A ** get_address_of_U3CPropertiesU3Ek__BackingField_2() { return &___U3CPropertiesU3Ek__BackingField_2; }
inline void set_U3CPropertiesU3Ek__BackingField_2(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * value)
{
___U3CPropertiesU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertiesU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CPatternPropertiesU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A, ___U3CPatternPropertiesU3Ek__BackingField_3)); }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * get_U3CPatternPropertiesU3Ek__BackingField_3() const { return ___U3CPatternPropertiesU3Ek__BackingField_3; }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A ** get_address_of_U3CPatternPropertiesU3Ek__BackingField_3() { return &___U3CPatternPropertiesU3Ek__BackingField_3; }
inline void set_U3CPatternPropertiesU3Ek__BackingField_3(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * value)
{
___U3CPatternPropertiesU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPatternPropertiesU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CItemsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A, ___U3CItemsU3Ek__BackingField_4)); }
inline List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * get_U3CItemsU3Ek__BackingField_4() const { return ___U3CItemsU3Ek__BackingField_4; }
inline List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 ** get_address_of_U3CItemsU3Ek__BackingField_4() { return &___U3CItemsU3Ek__BackingField_4; }
inline void set_U3CItemsU3Ek__BackingField_4(List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * value)
{
___U3CItemsU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemsU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CAdditionalPropertiesU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A, ___U3CAdditionalPropertiesU3Ek__BackingField_5)); }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * get_U3CAdditionalPropertiesU3Ek__BackingField_5() const { return ___U3CAdditionalPropertiesU3Ek__BackingField_5; }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A ** get_address_of_U3CAdditionalPropertiesU3Ek__BackingField_5() { return &___U3CAdditionalPropertiesU3Ek__BackingField_5; }
inline void set_U3CAdditionalPropertiesU3Ek__BackingField_5(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * value)
{
___U3CAdditionalPropertiesU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAdditionalPropertiesU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CAdditionalItemsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A, ___U3CAdditionalItemsU3Ek__BackingField_6)); }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * get_U3CAdditionalItemsU3Ek__BackingField_6() const { return ___U3CAdditionalItemsU3Ek__BackingField_6; }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A ** get_address_of_U3CAdditionalItemsU3Ek__BackingField_6() { return &___U3CAdditionalItemsU3Ek__BackingField_6; }
inline void set_U3CAdditionalItemsU3Ek__BackingField_6(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * value)
{
___U3CAdditionalItemsU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAdditionalItemsU3Ek__BackingField_6), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver
struct JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::<LoadedSchemas>k__BackingField
RuntimeObject* ___U3CLoadedSchemasU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CLoadedSchemasU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543, ___U3CLoadedSchemasU3Ek__BackingField_0)); }
inline RuntimeObject* get_U3CLoadedSchemasU3Ek__BackingField_0() const { return ___U3CLoadedSchemasU3Ek__BackingField_0; }
inline RuntimeObject** get_address_of_U3CLoadedSchemasU3Ek__BackingField_0() { return &___U3CLoadedSchemasU3Ek__BackingField_0; }
inline void set_U3CLoadedSchemasU3Ek__BackingField_0(RuntimeObject* value)
{
___U3CLoadedSchemasU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CLoadedSchemasU3Ek__BackingField_0), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter
struct JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.JsonWriter Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::_writer
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ____writer_0;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::_resolver
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ____resolver_1;
public:
inline static int32_t get_offset_of__writer_0() { return static_cast<int32_t>(offsetof(JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A, ____writer_0)); }
inline JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * get__writer_0() const { return ____writer_0; }
inline JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D ** get_address_of__writer_0() { return &____writer_0; }
inline void set__writer_0(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * value)
{
____writer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____writer_0), (void*)value);
}
inline static int32_t get_offset_of__resolver_1() { return static_cast<int32_t>(offsetof(JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A, ____resolver_1)); }
inline JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * get__resolver_1() const { return ____resolver_1; }
inline JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 ** get_address_of__resolver_1() { return &____resolver_1; }
inline void set__resolver_1(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * value)
{
____resolver_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resolver_1), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase
struct JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.Serialization.ErrorContext Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::_currentErrorContext
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * ____currentErrorContext_0;
// Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::_mappings
BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * ____mappings_1;
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::Serializer
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___Serializer_2;
// Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::TraceWriter
RuntimeObject* ___TraceWriter_3;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::InternalSerializer
JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * ___InternalSerializer_4;
public:
inline static int32_t get_offset_of__currentErrorContext_0() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC, ____currentErrorContext_0)); }
inline ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * get__currentErrorContext_0() const { return ____currentErrorContext_0; }
inline ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 ** get_address_of__currentErrorContext_0() { return &____currentErrorContext_0; }
inline void set__currentErrorContext_0(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * value)
{
____currentErrorContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____currentErrorContext_0), (void*)value);
}
inline static int32_t get_offset_of__mappings_1() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC, ____mappings_1)); }
inline BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * get__mappings_1() const { return ____mappings_1; }
inline BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C ** get_address_of__mappings_1() { return &____mappings_1; }
inline void set__mappings_1(BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * value)
{
____mappings_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____mappings_1), (void*)value);
}
inline static int32_t get_offset_of_Serializer_2() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC, ___Serializer_2)); }
inline JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * get_Serializer_2() const { return ___Serializer_2; }
inline JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 ** get_address_of_Serializer_2() { return &___Serializer_2; }
inline void set_Serializer_2(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * value)
{
___Serializer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Serializer_2), (void*)value);
}
inline static int32_t get_offset_of_TraceWriter_3() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC, ___TraceWriter_3)); }
inline RuntimeObject* get_TraceWriter_3() const { return ___TraceWriter_3; }
inline RuntimeObject** get_address_of_TraceWriter_3() { return &___TraceWriter_3; }
inline void set_TraceWriter_3(RuntimeObject* value)
{
___TraceWriter_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TraceWriter_3), (void*)value);
}
inline static int32_t get_offset_of_InternalSerializer_4() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC, ___InternalSerializer_4)); }
inline JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * get_InternalSerializer_4() const { return ___InternalSerializer_4; }
inline JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 ** get_address_of_InternalSerializer_4() { return &___InternalSerializer_4; }
inline void set_InternalSerializer_4(JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * value)
{
___InternalSerializer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalSerializer_4), (void*)value);
}
};
// System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject
{
public:
// System.Object System.MarshalByRefObject::_identity
RuntimeObject * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); }
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(RuntimeObject * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable
struct PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 : public RuntimeObject
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable::_count
int32_t ____count_1;
// Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable/Entry[] Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable::_entries
EntryU5BU5D_t446AE6308F624FEF7828F895337E05852C3AE684* ____entries_2;
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable::_mask
int32_t ____mask_3;
public:
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
inline static int32_t get_offset_of__entries_2() { return static_cast<int32_t>(offsetof(PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285, ____entries_2)); }
inline EntryU5BU5D_t446AE6308F624FEF7828F895337E05852C3AE684* get__entries_2() const { return ____entries_2; }
inline EntryU5BU5D_t446AE6308F624FEF7828F895337E05852C3AE684** get_address_of__entries_2() { return &____entries_2; }
inline void set__entries_2(EntryU5BU5D_t446AE6308F624FEF7828F895337E05852C3AE684* value)
{
____entries_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____entries_2), (void*)value);
}
inline static int32_t get_offset_of__mask_3() { return static_cast<int32_t>(offsetof(PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285, ____mask_3)); }
inline int32_t get__mask_3() const { return ____mask_3; }
inline int32_t* get_address_of__mask_3() { return &____mask_3; }
inline void set__mask_3(int32_t value)
{
____mask_3 = value;
}
};
struct PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285_StaticFields
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable::HashCodeRandomizer
int32_t ___HashCodeRandomizer_0;
public:
inline static int32_t get_offset_of_HashCodeRandomizer_0() { return static_cast<int32_t>(offsetof(PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285_StaticFields, ___HashCodeRandomizer_0)); }
inline int32_t get_HashCodeRandomizer_0() const { return ___HashCodeRandomizer_0; }
inline int32_t* get_address_of_HashCodeRandomizer_0() { return &___HashCodeRandomizer_0; }
inline void set_HashCodeRandomizer_0(int32_t value)
{
___HashCodeRandomizer_0 = value;
}
};
// Vuforia.Newtonsoft.Json.SerializationBinder
struct SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC : 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.StringComparer
struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 : public RuntimeObject
{
public:
public:
};
struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields
{
public:
// System.StringComparer System.StringComparer::_invariantCulture
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCulture_0;
// System.StringComparer System.StringComparer::_invariantCultureIgnoreCase
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCultureIgnoreCase_1;
// System.StringComparer System.StringComparer::_ordinal
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinal_2;
// System.StringComparer System.StringComparer::_ordinalIgnoreCase
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinalIgnoreCase_3;
public:
inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCulture_0)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCulture_0() const { return ____invariantCulture_0; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; }
inline void set__invariantCulture_0(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____invariantCulture_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value);
}
inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCultureIgnoreCase_1)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; }
inline void set__invariantCultureIgnoreCase_1(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____invariantCultureIgnoreCase_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value);
}
inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinal_2)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinal_2() const { return ____ordinal_2; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinal_2() { return &____ordinal_2; }
inline void set__ordinal_2(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____ordinal_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value);
}
inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinalIgnoreCase_3)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; }
inline void set__ordinalIgnoreCase_3(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____ordinalIgnoreCase_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_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
{
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/<>c__DisplayClass23_0
struct U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 : public RuntimeObject
{
public:
// System.Type Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/<>c__DisplayClass23_0::type
Type_t * ___type_0;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema
struct TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 : public RuntimeObject
{
public:
// System.Type Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema::<Type>k__BackingField
Type_t * ___U3CTypeU3Ek__BackingField_0;
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema::<Schema>k__BackingField
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___U3CSchemaU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969, ___U3CTypeU3Ek__BackingField_0)); }
inline Type_t * get_U3CTypeU3Ek__BackingField_0() const { return ___U3CTypeU3Ek__BackingField_0; }
inline Type_t ** get_address_of_U3CTypeU3Ek__BackingField_0() { return &___U3CTypeU3Ek__BackingField_0; }
inline void set_U3CTypeU3Ek__BackingField_0(Type_t * value)
{
___U3CTypeU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTypeU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CSchemaU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969, ___U3CSchemaU3Ek__BackingField_1)); }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * get_U3CSchemaU3Ek__BackingField_1() const { return ___U3CSchemaU3Ek__BackingField_1; }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** get_address_of_U3CSchemaU3Ek__BackingField_1() { return &___U3CSchemaU3Ek__BackingField_1; }
inline void set_U3CSchemaU3Ek__BackingField_1(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
___U3CSchemaU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CSchemaU3Ek__BackingField_1), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode/<>c
struct U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields
{
public:
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode/<>c Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode/<>c::<>9
U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226 * ___U3CU3E9_0;
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.String> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode/<>c::<>9__31_0
Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * ___U3CU3E9__31_0_1;
// System.Func`2<System.String,System.String> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode/<>c::<>9__31_1
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * ___U3CU3E9__31_1_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__31_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields, ___U3CU3E9__31_0_1)); }
inline Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * get_U3CU3E9__31_0_1() const { return ___U3CU3E9__31_0_1; }
inline Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 ** get_address_of_U3CU3E9__31_0_1() { return &___U3CU3E9__31_0_1; }
inline void set_U3CU3E9__31_0_1(Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * value)
{
___U3CU3E9__31_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__31_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__31_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields, ___U3CU3E9__31_1_2)); }
inline Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * get_U3CU3E9__31_1_2() const { return ___U3CU3E9__31_1_2; }
inline Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A ** get_address_of_U3CU3E9__31_1_2() { return &___U3CU3E9__31_1_2; }
inline void set_U3CU3E9__31_1_2(Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * value)
{
___U3CU3E9__31_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__31_1_2), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver/<>c__DisplayClass5_0
struct U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C : public RuntimeObject
{
public:
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver/<>c__DisplayClass5_0::reference
String_t* ___reference_0;
public:
inline static int32_t get_offset_of_reference_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C, ___reference_0)); }
inline String_t* get_reference_0() const { return ___reference_0; }
inline String_t** get_address_of_reference_0() { return &___reference_0; }
inline void set_reference_0(String_t* value)
{
___reference_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reference_0), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter/<>c
struct U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_StaticFields
{
public:
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter/<>c Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter/<>c::<>9
U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3 * ___U3CU3E9_0;
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType,System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter/<>c::<>9__7_0
Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * ___U3CU3E9__7_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__7_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_StaticFields, ___U3CU3E9__7_0_1)); }
inline Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * get_U3CU3E9__7_0_1() const { return ___U3CU3E9__7_0_1; }
inline Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 ** get_address_of_U3CU3E9__7_0_1() { return &___U3CU3E9__7_0_1; }
inline void set_U3CU3E9__7_0_1(Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * value)
{
___U3CU3E9__7_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__7_0_1), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase/ReferenceEqualsEqualityComparer
struct ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8 : public RuntimeObject
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c
struct U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields
{
public:
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<>9
U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 * ___U3CU3E9_0;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<>9__34_0
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * ___U3CU3E9__34_0_1;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<>9__34_2
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * ___U3CU3E9__34_2_2;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonProperty> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<>9__39_0
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * ___U3CU3E9__39_0_3;
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<>9__39_1
Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * ___U3CU3E9__39_1_4;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__34_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields, ___U3CU3E9__34_0_1)); }
inline Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * get_U3CU3E9__34_0_1() const { return ___U3CU3E9__34_0_1; }
inline Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D ** get_address_of_U3CU3E9__34_0_1() { return &___U3CU3E9__34_0_1; }
inline void set_U3CU3E9__34_0_1(Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * value)
{
___U3CU3E9__34_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__34_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__34_2_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields, ___U3CU3E9__34_2_2)); }
inline Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * get_U3CU3E9__34_2_2() const { return ___U3CU3E9__34_2_2; }
inline Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D ** get_address_of_U3CU3E9__34_2_2() { return &___U3CU3E9__34_2_2; }
inline void set_U3CU3E9__34_2_2(Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * value)
{
___U3CU3E9__34_2_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__34_2_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__39_0_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields, ___U3CU3E9__39_0_3)); }
inline Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * get_U3CU3E9__39_0_3() const { return ___U3CU3E9__39_0_3; }
inline Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 ** get_address_of_U3CU3E9__39_0_3() { return &___U3CU3E9__39_0_3; }
inline void set_U3CU3E9__39_0_3(Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * value)
{
___U3CU3E9__39_0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__39_0_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__39_1_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields, ___U3CU3E9__39_1_4)); }
inline Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * get_U3CU3E9__39_1_4() const { return ___U3CU3E9__39_1_4; }
inline Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 ** get_address_of_U3CU3E9__39_1_4() { return &___U3CU3E9__39_1_4; }
inline void set_U3CU3E9__39_1_4(Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * value)
{
___U3CU3E9__39_1_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__39_1_4), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c__DisplayClass34_0
struct U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.Serialization.JsonProperty Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c__DisplayClass34_0::property
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property_0;
public:
inline static int32_t get_offset_of_property_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B, ___property_0)); }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * get_property_0() const { return ___property_0; }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 ** get_address_of_property_0() { return &___property_0; }
inline void set_property_0(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * value)
{
___property_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___property_0), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5, ___list_0)); }
inline List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * get_list_0() const { return ___list_0; }
inline List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5, ___current_3)); }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * get_current_3() const { return ___current_3; }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
RuntimeObject * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___current_3)); }
inline RuntimeObject * get_current_3() const { return ___current_3; }
inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RuntimeObject * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>
struct Enumerator_tD2B4347F303B521183E778585E0070661A40FB60
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tD2B4347F303B521183E778585E0070661A40FB60, ___list_0)); }
inline List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * get_list_0() const { return ___list_0; }
inline List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tD2B4347F303B521183E778585E0070661A40FB60, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tD2B4347F303B521183E778585E0070661A40FB60, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tD2B4347F303B521183E778585E0070661A40FB60, ___current_3)); }
inline CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * get_current_3() const { return ___current_3; }
inline CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_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.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Linq.JToken>
struct KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* 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_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296, ___value_1)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get_value_1() const { return ___value_1; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>
struct KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* 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_t6423DB70F3785EBFEAB798AE39C9C03283E083FE, ___value_1)); }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * get_value_1() const { return ___value_1; }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* 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_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77, ___value_1)); }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * get_value_1() const { return ___value_1; }
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.ObjectModel.KeyedCollection`2<System.String,Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct KeyedCollection_2_t372E8BABF94D4EC0BBA28B0277F84EB40FD41C90 : public Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4
{
public:
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.ObjectModel.KeyedCollection`2::comparer
RuntimeObject* ___comparer_2;
// System.Collections.Generic.Dictionary`2<TKey,TItem> System.Collections.ObjectModel.KeyedCollection`2::dict
Dictionary_2_tB6D39D2EA64B753A2C7411BBFD691D0EF09E4C58 * ___dict_3;
// System.Int32 System.Collections.ObjectModel.KeyedCollection`2::keyCount
int32_t ___keyCount_4;
// System.Int32 System.Collections.ObjectModel.KeyedCollection`2::threshold
int32_t ___threshold_5;
public:
inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t372E8BABF94D4EC0BBA28B0277F84EB40FD41C90, ___comparer_2)); }
inline RuntimeObject* get_comparer_2() const { return ___comparer_2; }
inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; }
inline void set_comparer_2(RuntimeObject* value)
{
___comparer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value);
}
inline static int32_t get_offset_of_dict_3() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t372E8BABF94D4EC0BBA28B0277F84EB40FD41C90, ___dict_3)); }
inline Dictionary_2_tB6D39D2EA64B753A2C7411BBFD691D0EF09E4C58 * get_dict_3() const { return ___dict_3; }
inline Dictionary_2_tB6D39D2EA64B753A2C7411BBFD691D0EF09E4C58 ** get_address_of_dict_3() { return &___dict_3; }
inline void set_dict_3(Dictionary_2_tB6D39D2EA64B753A2C7411BBFD691D0EF09E4C58 * value)
{
___dict_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dict_3), (void*)value);
}
inline static int32_t get_offset_of_keyCount_4() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t372E8BABF94D4EC0BBA28B0277F84EB40FD41C90, ___keyCount_4)); }
inline int32_t get_keyCount_4() const { return ___keyCount_4; }
inline int32_t* get_address_of_keyCount_4() { return &___keyCount_4; }
inline void set_keyCount_4(int32_t value)
{
___keyCount_4 = value;
}
inline static int32_t get_offset_of_threshold_5() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t372E8BABF94D4EC0BBA28B0277F84EB40FD41C90, ___threshold_5)); }
inline int32_t get_threshold_5() const { return ___threshold_5; }
inline int32_t* get_address_of_threshold_5() { return &___threshold_5; }
inline void set_threshold_5(int32_t value)
{
___threshold_5 = value;
}
};
// System.Collections.ObjectModel.KeyedCollection`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B : public Collection_1_tE61D7E145066C8E3FEA6D1C7B1B3F7F46D3F1F0C
{
public:
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.ObjectModel.KeyedCollection`2::comparer
RuntimeObject* ___comparer_2;
// System.Collections.Generic.Dictionary`2<TKey,TItem> System.Collections.ObjectModel.KeyedCollection`2::dict
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___dict_3;
// System.Int32 System.Collections.ObjectModel.KeyedCollection`2::keyCount
int32_t ___keyCount_4;
// System.Int32 System.Collections.ObjectModel.KeyedCollection`2::threshold
int32_t ___threshold_5;
public:
inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B, ___comparer_2)); }
inline RuntimeObject* get_comparer_2() const { return ___comparer_2; }
inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; }
inline void set_comparer_2(RuntimeObject* value)
{
___comparer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value);
}
inline static int32_t get_offset_of_dict_3() { return static_cast<int32_t>(offsetof(KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B, ___dict_3)); }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * get_dict_3() const { return ___dict_3; }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A ** get_address_of_dict_3() { return &___dict_3; }
inline void set_dict_3(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * value)
{
___dict_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dict_3), (void*)value);
}
inline static int32_t get_offset_of_keyCount_4() { return static_cast<int32_t>(offsetof(KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B, ___keyCount_4)); }
inline int32_t get_keyCount_4() const { return ___keyCount_4; }
inline int32_t* get_address_of_keyCount_4() { return &___keyCount_4; }
inline void set_keyCount_4(int32_t value)
{
___keyCount_4 = value;
}
inline static int32_t get_offset_of_threshold_5() { return static_cast<int32_t>(offsetof(KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B, ___threshold_5)); }
inline int32_t get_threshold_5() const { return ___threshold_5; }
inline int32_t* get_address_of_threshold_5() { return &___threshold_5; }
inline void set_threshold_5(int32_t value)
{
___threshold_5 = value;
}
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3
{
public:
// T System.Nullable`1::value
bool ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___value_0)); }
inline bool get_value_0() const { return ___value_0; }
inline bool* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(bool value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Double>
struct Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209
{
public:
// T System.Nullable`1::value
double ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209, ___value_0)); }
inline double get_value_0() const { return ___value_0; }
inline double* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(double value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Int32>
struct Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.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.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;
}
};
// Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder
struct DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA : public SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC
{
public:
// Vuforia.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type> Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder::_typeCache
ThreadSafeStore_2_tB3DDD4C13B9232BD24BDDC947411958C85538C37 * ____typeCache_1;
public:
inline static int32_t get_offset_of__typeCache_1() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA, ____typeCache_1)); }
inline ThreadSafeStore_2_tB3DDD4C13B9232BD24BDDC947411958C85538C37 * get__typeCache_1() const { return ____typeCache_1; }
inline ThreadSafeStore_2_tB3DDD4C13B9232BD24BDDC947411958C85538C37 ** get_address_of__typeCache_1() { return &____typeCache_1; }
inline void set__typeCache_1(ThreadSafeStore_2_tB3DDD4C13B9232BD24BDDC947411958C85538C37 * value)
{
____typeCache_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeCache_1), (void*)value);
}
};
struct DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA_StaticFields
{
public:
// Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder Vuforia.Newtonsoft.Json.Serialization.DefaultSerializationBinder::Instance
DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA_StaticFields, ___Instance_0)); }
inline DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA * get_Instance_0() const { return ___Instance_0; }
inline DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____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(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// 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
{
};
// Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs
struct ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA
{
public:
// System.Object Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs::<CurrentObject>k__BackingField
RuntimeObject * ___U3CCurrentObjectU3Ek__BackingField_1;
// Vuforia.Newtonsoft.Json.Serialization.ErrorContext Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs::<ErrorContext>k__BackingField
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * ___U3CErrorContextU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CCurrentObjectU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0, ___U3CCurrentObjectU3Ek__BackingField_1)); }
inline RuntimeObject * get_U3CCurrentObjectU3Ek__BackingField_1() const { return ___U3CCurrentObjectU3Ek__BackingField_1; }
inline RuntimeObject ** get_address_of_U3CCurrentObjectU3Ek__BackingField_1() { return &___U3CCurrentObjectU3Ek__BackingField_1; }
inline void set_U3CCurrentObjectU3Ek__BackingField_1(RuntimeObject * value)
{
___U3CCurrentObjectU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCurrentObjectU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CErrorContextU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0, ___U3CErrorContextU3Ek__BackingField_2)); }
inline ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * get_U3CErrorContextU3Ek__BackingField_2() const { return ___U3CErrorContextU3Ek__BackingField_2; }
inline ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 ** get_address_of_U3CErrorContextU3Ek__BackingField_2() { return &___U3CErrorContextU3Ek__BackingField_2; }
inline void set_U3CErrorContextU3Ek__BackingField_2(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * value)
{
___U3CErrorContextU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CErrorContextU3Ek__BackingField_2), (void*)value);
}
};
// 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.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;
}
};
// Vuforia.Newtonsoft.Json.Linq.JContainer
struct JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC : public JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426
{
public:
// System.Object Vuforia.Newtonsoft.Json.Linq.JContainer::_syncRoot
RuntimeObject * ____syncRoot_14;
public:
inline static int32_t get_offset_of__syncRoot_14() { return static_cast<int32_t>(offsetof(JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC, ____syncRoot_14)); }
inline RuntimeObject * get__syncRoot_14() const { return ____syncRoot_14; }
inline RuntimeObject ** get_address_of__syncRoot_14() { return &____syncRoot_14; }
inline void set__syncRoot_14(RuntimeObject * value)
{
____syncRoot_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_14), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonConverterCollection
struct JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D : public Collection_1_t9876F48633FD88C40E0659BF371CE5316A16BF09
{
public:
public:
};
// Vuforia.Newtonsoft.Json.JsonRequiredAttribute
struct JsonRequiredAttribute_t216E6F733636BD23EC632AB32545DD063EA6A2E6 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader
struct JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 : public JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter
struct JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 : public JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC
{
public:
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::_rootType
Type_t * ____rootType_5;
// System.Int32 Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::_rootLevel
int32_t ____rootLevel_6;
// System.Collections.Generic.List`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::_serializeStack
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ____serializeStack_7;
public:
inline static int32_t get_offset_of__rootType_5() { return static_cast<int32_t>(offsetof(JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267, ____rootType_5)); }
inline Type_t * get__rootType_5() const { return ____rootType_5; }
inline Type_t ** get_address_of__rootType_5() { return &____rootType_5; }
inline void set__rootType_5(Type_t * value)
{
____rootType_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rootType_5), (void*)value);
}
inline static int32_t get_offset_of__rootLevel_6() { return static_cast<int32_t>(offsetof(JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267, ____rootLevel_6)); }
inline int32_t get__rootLevel_6() const { return ____rootLevel_6; }
inline int32_t* get_address_of__rootLevel_6() { return &____rootLevel_6; }
inline void set__rootLevel_6(int32_t value)
{
____rootLevel_6 = value;
}
inline static int32_t get_offset_of__serializeStack_7() { return static_cast<int32_t>(offsetof(JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267, ____serializeStack_7)); }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get__serializeStack_7() const { return ____serializeStack_7; }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of__serializeStack_7() { return &____serializeStack_7; }
inline void set__serializeStack_7(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value)
{
____serializeStack_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializeStack_7), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Utilities.StringBuffer
struct StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50
{
public:
// System.Char[] Vuforia.Newtonsoft.Json.Utilities.StringBuffer::_buffer
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____buffer_0;
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.StringBuffer::_position
int32_t ____position_1;
public:
inline static int32_t get_offset_of__buffer_0() { return static_cast<int32_t>(offsetof(StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50, ____buffer_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__buffer_0() const { return ____buffer_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__buffer_0() { return &____buffer_0; }
inline void set__buffer_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____buffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_0), (void*)value);
}
inline static int32_t get_offset_of__position_1() { return static_cast<int32_t>(offsetof(StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50, ____position_1)); }
inline int32_t get__position_1() const { return ____position_1; }
inline int32_t* get_address_of__position_1() { return &____position_1; }
inline void set__position_1(int32_t value)
{
____position_1 = value;
}
};
// Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.Utilities.StringBuffer
struct StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50_marshaled_pinvoke
{
uint8_t* ____buffer_0;
int32_t ____position_1;
};
// Native definition for COM marshalling of Vuforia.Newtonsoft.Json.Utilities.StringBuffer
struct StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50_marshaled_com
{
uint8_t* ____buffer_0;
int32_t ____position_1;
};
// Vuforia.Newtonsoft.Json.Utilities.StringReference
struct StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B
{
public:
// System.Char[] Vuforia.Newtonsoft.Json.Utilities.StringReference::_chars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____chars_0;
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.StringReference::_startIndex
int32_t ____startIndex_1;
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.StringReference::_length
int32_t ____length_2;
public:
inline static int32_t get_offset_of__chars_0() { return static_cast<int32_t>(offsetof(StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B, ____chars_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__chars_0() const { return ____chars_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__chars_0() { return &____chars_0; }
inline void set__chars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____chars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____chars_0), (void*)value);
}
inline static int32_t get_offset_of__startIndex_1() { return static_cast<int32_t>(offsetof(StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B, ____startIndex_1)); }
inline int32_t get__startIndex_1() const { return ____startIndex_1; }
inline int32_t* get_address_of__startIndex_1() { return &____startIndex_1; }
inline void set__startIndex_1(int32_t value)
{
____startIndex_1 = value;
}
inline static int32_t get_offset_of__length_2() { return static_cast<int32_t>(offsetof(StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B, ____length_2)); }
inline int32_t get__length_2() const { return ____length_2; }
inline int32_t* get_address_of__length_2() { return &____length_2; }
inline void set__length_2(int32_t value)
{
____length_2 = value;
}
};
// Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.Utilities.StringReference
struct StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B_marshaled_pinvoke
{
uint8_t* ____chars_0;
int32_t ____startIndex_1;
int32_t ____length_2;
};
// Native definition for COM marshalling of Vuforia.Newtonsoft.Json.Utilities.StringReference
struct StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B_marshaled_com
{
uint8_t* ____chars_0;
int32_t ____startIndex_1;
int32_t ____length_2;
};
// System.IO.TextReader
struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
public:
};
struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields
{
public:
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * ____ReadLineDelegate_1;
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ____ReadDelegate_2;
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___Null_3;
public:
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadLineDelegate_1)); }
inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
inline void set__ReadLineDelegate_1(Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * value)
{
____ReadLineDelegate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value);
}
inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadDelegate_2)); }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
inline void set__ReadDelegate_2(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value)
{
____ReadDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ___Null_3)); }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_Null_3() const { return ___Null_3; }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
}
};
// System.IO.TextWriter
struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___CoreNewLine_9;
// System.IFormatProvider System.IO.TextWriter::InternalFormatProvider
RuntimeObject* ___InternalFormatProvider_10;
public:
inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___CoreNewLine_9)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_CoreNewLine_9() const { return ___CoreNewLine_9; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; }
inline void set_CoreNewLine_9(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___CoreNewLine_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CoreNewLine_9), (void*)value);
}
inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___InternalFormatProvider_10)); }
inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; }
inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; }
inline void set_InternalFormatProvider_10(RuntimeObject* value)
{
___InternalFormatProvider_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalFormatProvider_10), (void*)value);
}
};
struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___Null_1;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharDelegate_2;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteStringDelegate_3;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharArrayRangeDelegate_4;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharDelegate_5;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineStringDelegate_6;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharArrayRangeDelegate_7;
// System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____FlushDelegate_8;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ___Null_1)); }
inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharDelegate_2)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; }
inline void set__WriteCharDelegate_2(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteCharDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharDelegate_2), (void*)value);
}
inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteStringDelegate_3)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; }
inline void set__WriteStringDelegate_3(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteStringDelegate_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteStringDelegate_3), (void*)value);
}
inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharArrayRangeDelegate_4)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; }
inline void set__WriteCharArrayRangeDelegate_4(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteCharArrayRangeDelegate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharArrayRangeDelegate_4), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharDelegate_5)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; }
inline void set__WriteLineCharDelegate_5(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteLineCharDelegate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharDelegate_5), (void*)value);
}
inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineStringDelegate_6)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; }
inline void set__WriteLineStringDelegate_6(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteLineStringDelegate_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineStringDelegate_6), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; }
inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteLineCharArrayRangeDelegate_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharArrayRangeDelegate_7), (void*)value);
}
inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____FlushDelegate_8)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__FlushDelegate_8() const { return ____FlushDelegate_8; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; }
inline void set__FlushDelegate_8(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____FlushDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)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.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___list_0)); }
inline List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * get_list_0() const { return ___list_0; }
inline List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___current_3)); }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>
struct Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435, ___list_0)); }
inline List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * get_list_0() const { return ___list_0; }
inline List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435, ___current_3)); }
inline KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
struct Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary
Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___dictionary_0)); }
inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___current_3)); }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>
struct Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current
KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41, ___dictionary_0)); }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41, ___current_3)); }
inline KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Nullable`1<System.DateTime>
struct Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D
{
public:
// T System.Nullable`1::value
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D, ___value_0)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_value_0() const { return ___value_0; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Decimal>
struct Nullable_1_tD7EB7EB39E548910812AA4DC702F9C7E3E84A84E
{
public:
// T System.Nullable`1::value
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tD7EB7EB39E548910812AA4DC702F9C7E3E84A84E, ___value_0)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_value_0() const { return ___value_0; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tD7EB7EB39E548910812AA4DC702F9C7E3E84A84E, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_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;
}
};
// Vuforia.Newtonsoft.Json.ConstructorHandling
struct ConstructorHandling_t438C11E075A12F37F453197E2D1E65723E32B638
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.ConstructorHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConstructorHandling_t438C11E075A12F37F453197E2D1E65723E32B638, ___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;
}
};
// Vuforia.Newtonsoft.Json.DateFormatHandling
struct DateFormatHandling_tB56832BB6BE43407E01F45F99403E7E0CF98A777
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.DateFormatHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateFormatHandling_tB56832BB6BE43407E01F45F99403E7E0CF98A777, ___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;
}
};
// Vuforia.Newtonsoft.Json.DateParseHandling
struct DateParseHandling_t184744C1B4816BCAF618CAEB3AA6A8285400B8C2
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.DateParseHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateParseHandling_t184744C1B4816BCAF618CAEB3AA6A8285400B8C2, ___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.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;
}
};
// Vuforia.Newtonsoft.Json.DateTimeZoneHandling
struct DateTimeZoneHandling_tFBC8D0DD36B8CDD8B91FE13766C2E6818188BA5E
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.DateTimeZoneHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeZoneHandling_tFBC8D0DD36B8CDD8B91FE13766C2E6818188BA5E, ___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;
}
};
// Vuforia.Newtonsoft.Json.DefaultValueHandling
struct DefaultValueHandling_t9E61BC48D3A0543280465CAE686BD0F866CCD9E7
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.DefaultValueHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DefaultValueHandling_t9E61BC48D3A0543280465CAE686BD0F866CCD9E7, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_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;
};
// Vuforia.Newtonsoft.Json.FloatFormatHandling
struct FloatFormatHandling_tF56B73343F9C143C0EB85082D06A268BDE8065C0
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.FloatFormatHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FloatFormatHandling_tF56B73343F9C143C0EB85082D06A268BDE8065C0, ___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;
}
};
// Vuforia.Newtonsoft.Json.FloatParseHandling
struct FloatParseHandling_t150C16E2F9319F42B71CB3332F8B589AE09B4399
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.FloatParseHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FloatParseHandling_t150C16E2F9319F42B71CB3332F8B589AE09B4399, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle
struct FormatterAssemblyStyle_t326E0C955824D87B8981473A74C1668F8DBF5B4C
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.FormatterAssemblyStyle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterAssemblyStyle_t326E0C955824D87B8981473A74C1668F8DBF5B4C, ___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;
}
};
// Vuforia.Newtonsoft.Json.Formatting
struct Formatting_tB7F470A6A5AD36DA54BB2DE643D5EDCCFCCD5BDC
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Formatting::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Formatting_tB7F470A6A5AD36DA54BB2DE643D5EDCCFCCD5BDC, ___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.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;
}
};
// Vuforia.Newtonsoft.Json.Linq.JObject
struct JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 : public JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC
{
public:
// Vuforia.Newtonsoft.Json.Linq.JPropertyKeyedCollection Vuforia.Newtonsoft.Json.Linq.JObject::_properties
JPropertyKeyedCollection_t47E4D041F1F49C9E4D170A1A91D125B47A014567 * ____properties_15;
// System.ComponentModel.PropertyChangedEventHandler Vuforia.Newtonsoft.Json.Linq.JObject::PropertyChanged
PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 * ___PropertyChanged_16;
public:
inline static int32_t get_offset_of__properties_15() { return static_cast<int32_t>(offsetof(JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08, ____properties_15)); }
inline JPropertyKeyedCollection_t47E4D041F1F49C9E4D170A1A91D125B47A014567 * get__properties_15() const { return ____properties_15; }
inline JPropertyKeyedCollection_t47E4D041F1F49C9E4D170A1A91D125B47A014567 ** get_address_of__properties_15() { return &____properties_15; }
inline void set__properties_15(JPropertyKeyedCollection_t47E4D041F1F49C9E4D170A1A91D125B47A014567 * value)
{
____properties_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_15), (void*)value);
}
inline static int32_t get_offset_of_PropertyChanged_16() { return static_cast<int32_t>(offsetof(JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08, ___PropertyChanged_16)); }
inline PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 * get_PropertyChanged_16() const { return ___PropertyChanged_16; }
inline PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 ** get_address_of_PropertyChanged_16() { return &___PropertyChanged_16; }
inline void set_PropertyChanged_16(PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 * value)
{
___PropertyChanged_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropertyChanged_16), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Linq.JProperty
struct JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F : public JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC
{
public:
// Vuforia.Newtonsoft.Json.Linq.JProperty/JPropertyList Vuforia.Newtonsoft.Json.Linq.JProperty::_content
JPropertyList_tEEDE310F4115D19B5180C68016EBE239E6FA2EAC * ____content_15;
// System.String Vuforia.Newtonsoft.Json.Linq.JProperty::_name
String_t* ____name_16;
public:
inline static int32_t get_offset_of__content_15() { return static_cast<int32_t>(offsetof(JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F, ____content_15)); }
inline JPropertyList_tEEDE310F4115D19B5180C68016EBE239E6FA2EAC * get__content_15() const { return ____content_15; }
inline JPropertyList_tEEDE310F4115D19B5180C68016EBE239E6FA2EAC ** get_address_of__content_15() { return &____content_15; }
inline void set__content_15(JPropertyList_tEEDE310F4115D19B5180C68016EBE239E6FA2EAC * value)
{
____content_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____content_15), (void*)value);
}
inline static int32_t get_offset_of__name_16() { return static_cast<int32_t>(offsetof(JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F, ____name_16)); }
inline String_t* get__name_16() const { return ____name_16; }
inline String_t** get_address_of__name_16() { return &____name_16; }
inline void set__name_16(String_t* value)
{
____name_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____name_16), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Linq.JTokenType
struct JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Linq.JTokenType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6, ___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;
}
};
// Vuforia.Newtonsoft.Json.JsonContainerType
struct JsonContainerType_tEA730FFEB173C802D6577FF6A7F6AA19F5261C07
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.JsonContainerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonContainerType_tEA730FFEB173C802D6577FF6A7F6AA19F5261C07, ___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;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonContractType
struct JsonContractType_tC12A24EC5D0AABC9219B300ADBCE4F824279BE96
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Serialization.JsonContractType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonContractType_tC12A24EC5D0AABC9219B300ADBCE4F824279BE96, ___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;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection
struct JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E : public KeyedCollection_2_t372E8BABF94D4EC0BBA28B0277F84EB40FD41C90
{
public:
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection::_type
Type_t * ____type_6;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty> Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection::_list
List_1_t7BEB3214D71C5459F22E372E3FD892DDA2A68E03 * ____list_7;
public:
inline static int32_t get_offset_of__type_6() { return static_cast<int32_t>(offsetof(JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E, ____type_6)); }
inline Type_t * get__type_6() const { return ____type_6; }
inline Type_t ** get_address_of__type_6() { return &____type_6; }
inline void set__type_6(Type_t * value)
{
____type_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____type_6), (void*)value);
}
inline static int32_t get_offset_of__list_7() { return static_cast<int32_t>(offsetof(JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E, ____list_7)); }
inline List_1_t7BEB3214D71C5459F22E372E3FD892DDA2A68E03 * get__list_7() const { return ____list_7; }
inline List_1_t7BEB3214D71C5459F22E372E3FD892DDA2A68E03 ** get_address_of__list_7() { return &____list_7; }
inline void set__list_7(List_1_t7BEB3214D71C5459F22E372E3FD892DDA2A68E03 * value)
{
____list_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____list_7), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNodeCollection
struct JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C : public KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType
struct JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Schema.JsonSchemaType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3, ___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;
}
};
// Vuforia.Newtonsoft.Json.JsonToken
struct JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.JsonToken::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD, ___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;
}
};
// Vuforia.Newtonsoft.Json.MemberSerialization
struct MemberSerialization_t53B3D69A71EB975018F507070F2772174AE6B172
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.MemberSerialization::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MemberSerialization_t53B3D69A71EB975018F507070F2772174AE6B172, ___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;
}
};
// Vuforia.Newtonsoft.Json.MetadataPropertyHandling
struct MetadataPropertyHandling_t74313B50F09D33C17CED4726488250F6ED9F10B2
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.MetadataPropertyHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MetadataPropertyHandling_t74313B50F09D33C17CED4726488250F6ED9F10B2, ___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;
}
};
// Vuforia.Newtonsoft.Json.MissingMemberHandling
struct MissingMemberHandling_t7DC4689BAC06B6D609BCBE857C82EE55FC2E265D
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.MissingMemberHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MissingMemberHandling_t7DC4689BAC06B6D609BCBE857C82EE55FC2E265D, ___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;
}
};
// Vuforia.Newtonsoft.Json.NullValueHandling
struct NullValueHandling_t03AA8DD38FFDEE1B5FD0CEDC1808DB4EDF8303AD
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.NullValueHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NullValueHandling_t03AA8DD38FFDEE1B5FD0CEDC1808DB4EDF8303AD, ___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;
}
};
// Vuforia.Newtonsoft.Json.ObjectCreationHandling
struct ObjectCreationHandling_t8921A83419CD220DC44B461CBD4C8D456887C657
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.ObjectCreationHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ObjectCreationHandling_t8921A83419CD220DC44B461CBD4C8D456887C657, ___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;
}
};
// Vuforia.Newtonsoft.Json.PreserveReferencesHandling
struct PreserveReferencesHandling_tFC1DDEB8F28EF5C34F42FB06CF103F7314353D2E
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.PreserveReferencesHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PreserveReferencesHandling_tFC1DDEB8F28EF5C34F42FB06CF103F7314353D2E, ___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;
}
};
// Vuforia.Newtonsoft.Json.Utilities.PrimitiveTypeCode
struct PrimitiveTypeCode_tA1245D8181181974698A4A3580EBFB359C077562
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Utilities.PrimitiveTypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PrimitiveTypeCode_tA1245D8181181974698A4A3580EBFB359C077562, ___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;
}
};
// Vuforia.Newtonsoft.Json.ReadType
struct ReadType_t3B31AB27B27FA9E31445A17A7510D1EE35E9196C
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.ReadType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ReadType_t3B31AB27B27FA9E31445A17A7510D1EE35E9196C, ___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;
}
};
// Vuforia.Newtonsoft.Json.ReferenceLoopHandling
struct ReferenceLoopHandling_tE3D17B626CBC1B3E3C78C2F800823857E1D9B0BC
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.ReferenceLoopHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ReferenceLoopHandling_tE3D17B626CBC1B3E3C78C2F800823857E1D9B0BC, ___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;
}
};
// Vuforia.Newtonsoft.Json.Required
struct Required_tFF6A30F75B68E13C3C837E2495EF349E6FE8440B
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Required::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Required_tFF6A30F75B68E13C3C837E2495EF349E6FE8440B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_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.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3, ___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.StringComparison
struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998
{
public:
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___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;
}
};
// Vuforia.Newtonsoft.Json.StringEscapeHandling
struct StringEscapeHandling_t14BBDD0869A4722692D0BE0B1ACDF4219CA5EEEC
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.StringEscapeHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringEscapeHandling_t14BBDD0869A4722692D0BE0B1ACDF4219CA5EEEC, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.StringReader
struct StringReader_t74E352C280EAC22C878867444978741F19E1F895 : public TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F
{
public:
// System.String System.IO.StringReader::_s
String_t* ____s_4;
// System.Int32 System.IO.StringReader::_pos
int32_t ____pos_5;
// System.Int32 System.IO.StringReader::_length
int32_t ____length_6;
public:
inline static int32_t get_offset_of__s_4() { return static_cast<int32_t>(offsetof(StringReader_t74E352C280EAC22C878867444978741F19E1F895, ____s_4)); }
inline String_t* get__s_4() const { return ____s_4; }
inline String_t** get_address_of__s_4() { return &____s_4; }
inline void set__s_4(String_t* value)
{
____s_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____s_4), (void*)value);
}
inline static int32_t get_offset_of__pos_5() { return static_cast<int32_t>(offsetof(StringReader_t74E352C280EAC22C878867444978741F19E1F895, ____pos_5)); }
inline int32_t get__pos_5() const { return ____pos_5; }
inline int32_t* get_address_of__pos_5() { return &____pos_5; }
inline void set__pos_5(int32_t value)
{
____pos_5 = value;
}
inline static int32_t get_offset_of__length_6() { return static_cast<int32_t>(offsetof(StringReader_t74E352C280EAC22C878867444978741F19E1F895, ____length_6)); }
inline int32_t get__length_6() const { return ____length_6; }
inline int32_t* get_address_of__length_6() { return &____length_6; }
inline void set__length_6(int32_t value)
{
____length_6 = value;
}
};
// System.StringSplitOptions
struct StringSplitOptions_tCBE57E9DF0385CEE90AEE9C25D18BD20E30D29D3
{
public:
// System.Int32 System.StringSplitOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringSplitOptions_tCBE57E9DF0385CEE90AEE9C25D18BD20E30D29D3, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.IO.StringWriter
struct StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 : public TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643
{
public:
// System.Text.StringBuilder System.IO.StringWriter::_sb
StringBuilder_t * ____sb_11;
// System.Boolean System.IO.StringWriter::_isOpen
bool ____isOpen_12;
public:
inline static int32_t get_offset_of__sb_11() { return static_cast<int32_t>(offsetof(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839, ____sb_11)); }
inline StringBuilder_t * get__sb_11() const { return ____sb_11; }
inline StringBuilder_t ** get_address_of__sb_11() { return &____sb_11; }
inline void set__sb_11(StringBuilder_t * value)
{
____sb_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sb_11), (void*)value);
}
inline static int32_t get_offset_of__isOpen_12() { return static_cast<int32_t>(offsetof(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839, ____isOpen_12)); }
inline bool get__isOpen_12() const { return ____isOpen_12; }
inline bool* get_address_of__isOpen_12() { return &____isOpen_12; }
inline void set__isOpen_12(bool value)
{
____isOpen_12 = value;
}
};
// Vuforia.Newtonsoft.Json.TraceLevel
struct TraceLevel_tC878A645E9C0CD63E5821B7AB5D832185C59F06D
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.TraceLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TraceLevel_tC878A645E9C0CD63E5821B7AB5D832185C59F06D, ___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;
}
};
// Vuforia.Newtonsoft.Json.TypeNameHandling
struct TypeNameHandling_tC29A9E47E07530A4B17AF9C8F568A8C79B8617AA
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.TypeNameHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeNameHandling_tC29A9E47E07530A4B17AF9C8F568A8C79B8617AA, ___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;
}
};
// Vuforia.Newtonsoft.Json.Schema.UndefinedSchemaIdHandling
struct UndefinedSchemaIdHandling_t61FD09430E07D8A96F2B9911A619864E75522F9A
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Schema.UndefinedSchemaIdHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UndefinedSchemaIdHandling_t61FD09430E07D8A96F2B9911A619864E75522F9A, ___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;
}
};
// Vuforia.Newtonsoft.Json.JsonReader/State
struct State_tC3AF67509DF88F085E95B719236A2F786F603F3D
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.JsonReader/State::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_tC3AF67509DF88F085E95B719236A2F786F603F3D, ___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;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence
struct PropertyPresence_tE5B047BC0A04B238D59B572B5A704F5318A90A6B
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyPresence_tE5B047BC0A04B238D59B572B5A704F5318A90A6B, ___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;
}
};
// Vuforia.Newtonsoft.Json.JsonWriter/State
struct State_t5E3E45E95125C48250DCF2A59E3505E1F6AA8A41
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.JsonWriter/State::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_t5E3E45E95125C48250DCF2A59E3505E1F6AA8A41, ___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.Collections.Generic.KeyValuePair`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E, ___key_0)); }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * get_key_0() const { return ___key_0; }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * 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_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>
struct KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297, ___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_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* 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_t34BFBDA8D77B50F80001762D1E71D98001A6269C, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.ConstructorHandling>
struct Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateFormatHandling>
struct Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>
struct Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.DateTimeOffset>
struct Nullable_1_t862AD0841486B81E2FD6C56B0467C57F00E804C7
{
public:
// T System.Nullable`1::value
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t862AD0841486B81E2FD6C56B0467C57F00E804C7, ___value_0)); }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_value_0() const { return ___value_0; }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t862AD0841486B81E2FD6C56B0467C57F00E804C7, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>
struct Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.DefaultValueHandling>
struct Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.FloatFormatHandling>
struct Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>
struct Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Runtime.Serialization.Formatters.FormatterAssemblyStyle>
struct Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.Formatting>
struct Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Int32Enum>
struct Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>
struct Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.MetadataPropertyHandling>
struct Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.MissingMemberHandling>
struct Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.NullValueHandling>
struct Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.ObjectCreationHandling>
struct Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.PreserveReferencesHandling>
struct Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.ReferenceLoopHandling>
struct Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.Required>
struct Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.StringEscapeHandling>
struct Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling>
struct Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver
struct DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9 : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolverState Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::_instanceState
DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * ____instanceState_4;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::_sharedCache
bool ____sharedCache_5;
// System.Reflection.BindingFlags Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::<DefaultMembersSearchFlags>k__BackingField
int32_t ___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::<SerializeCompilerGeneratedMembers>k__BackingField
bool ___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of__instanceState_4() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9, ____instanceState_4)); }
inline DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * get__instanceState_4() const { return ____instanceState_4; }
inline DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE ** get_address_of__instanceState_4() { return &____instanceState_4; }
inline void set__instanceState_4(DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * value)
{
____instanceState_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____instanceState_4), (void*)value);
}
inline static int32_t get_offset_of__sharedCache_5() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9, ____sharedCache_5)); }
inline bool get__sharedCache_5() const { return ____sharedCache_5; }
inline bool* get_address_of__sharedCache_5() { return &____sharedCache_5; }
inline void set__sharedCache_5(bool value)
{
____sharedCache_5 = value;
}
inline static int32_t get_offset_of_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9, ___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6)); }
inline int32_t get_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6() const { return ___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6() { return &___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6; }
inline void set_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6(int32_t value)
{
___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9, ___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7)); }
inline bool get_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7() const { return ___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7; }
inline bool* get_address_of_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7() { return &___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7; }
inline void set_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7(bool value)
{
___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7 = value;
}
};
struct DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_StaticFields
{
public:
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::_instance
RuntimeObject* ____instance_0;
// Vuforia.Newtonsoft.Json.JsonConverter[] Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::BuiltInConverters
JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* ___BuiltInConverters_1;
// System.Object Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::TypeContractCacheLock
RuntimeObject * ___TypeContractCacheLock_2;
// Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolverState Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::_sharedState
DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * ____sharedState_3;
public:
inline static int32_t get_offset_of__instance_0() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_StaticFields, ____instance_0)); }
inline RuntimeObject* get__instance_0() const { return ____instance_0; }
inline RuntimeObject** get_address_of__instance_0() { return &____instance_0; }
inline void set__instance_0(RuntimeObject* value)
{
____instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____instance_0), (void*)value);
}
inline static int32_t get_offset_of_BuiltInConverters_1() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_StaticFields, ___BuiltInConverters_1)); }
inline JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* get_BuiltInConverters_1() const { return ___BuiltInConverters_1; }
inline JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461** get_address_of_BuiltInConverters_1() { return &___BuiltInConverters_1; }
inline void set_BuiltInConverters_1(JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* value)
{
___BuiltInConverters_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BuiltInConverters_1), (void*)value);
}
inline static int32_t get_offset_of_TypeContractCacheLock_2() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_StaticFields, ___TypeContractCacheLock_2)); }
inline RuntimeObject * get_TypeContractCacheLock_2() const { return ___TypeContractCacheLock_2; }
inline RuntimeObject ** get_address_of_TypeContractCacheLock_2() { return &___TypeContractCacheLock_2; }
inline void set_TypeContractCacheLock_2(RuntimeObject * value)
{
___TypeContractCacheLock_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeContractCacheLock_2), (void*)value);
}
inline static int32_t get_offset_of__sharedState_3() { return static_cast<int32_t>(offsetof(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_StaticFields, ____sharedState_3)); }
inline DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * get__sharedState_3() const { return ____sharedState_3; }
inline DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE ** get_address_of__sharedState_3() { return &____sharedState_3; }
inline void set__sharedState_3(DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * value)
{
____sharedState_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sharedState_3), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Linq.JValue
struct JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F : public JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426
{
public:
// Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JValue::_valueType
int32_t ____valueType_14;
// System.Object Vuforia.Newtonsoft.Json.Linq.JValue::_value
RuntimeObject * ____value_15;
public:
inline static int32_t get_offset_of__valueType_14() { return static_cast<int32_t>(offsetof(JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F, ____valueType_14)); }
inline int32_t get__valueType_14() const { return ____valueType_14; }
inline int32_t* get_address_of__valueType_14() { return &____valueType_14; }
inline void set__valueType_14(int32_t value)
{
____valueType_14 = value;
}
inline static int32_t get_offset_of__value_15() { return static_cast<int32_t>(offsetof(JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F, ____value_15)); }
inline RuntimeObject * get__value_15() const { return ____value_15; }
inline RuntimeObject ** get_address_of__value_15() { return &____value_15; }
inline void set__value_15(RuntimeObject * value)
{
____value_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_15), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonContract
struct JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 : public RuntimeObject
{
public:
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::IsNullable
bool ___IsNullable_0;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::IsConvertable
bool ___IsConvertable_1;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::IsEnum
bool ___IsEnum_2;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonContract::NonNullableUnderlyingType
Type_t * ___NonNullableUnderlyingType_3;
// Vuforia.Newtonsoft.Json.ReadType Vuforia.Newtonsoft.Json.Serialization.JsonContract::InternalReadType
int32_t ___InternalReadType_4;
// Vuforia.Newtonsoft.Json.Serialization.JsonContractType Vuforia.Newtonsoft.Json.Serialization.JsonContract::ContractType
int32_t ___ContractType_5;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::IsReadOnlyOrFixedSize
bool ___IsReadOnlyOrFixedSize_6;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::IsSealed
bool ___IsSealed_7;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::IsInstantiable
bool ___IsInstantiable_8;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback> Vuforia.Newtonsoft.Json.Serialization.JsonContract::_onDeserializedCallbacks
List_1_tB537E4096AC908C2646013141D5C72E300A0B5D3 * ____onDeserializedCallbacks_9;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback> Vuforia.Newtonsoft.Json.Serialization.JsonContract::_onDeserializingCallbacks
RuntimeObject* ____onDeserializingCallbacks_10;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback> Vuforia.Newtonsoft.Json.Serialization.JsonContract::_onSerializedCallbacks
RuntimeObject* ____onSerializedCallbacks_11;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback> Vuforia.Newtonsoft.Json.Serialization.JsonContract::_onSerializingCallbacks
RuntimeObject* ____onSerializingCallbacks_12;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationErrorCallback> Vuforia.Newtonsoft.Json.Serialization.JsonContract::_onErrorCallbacks
RuntimeObject* ____onErrorCallbacks_13;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonContract::_createdType
Type_t * ____createdType_14;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonContract::<UnderlyingType>k__BackingField
Type_t * ___U3CUnderlyingTypeU3Ek__BackingField_15;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Serialization.JsonContract::<IsReference>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CIsReferenceU3Ek__BackingField_16;
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonContract::<Converter>k__BackingField
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___U3CConverterU3Ek__BackingField_17;
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonContract::<InternalConverter>k__BackingField
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___U3CInternalConverterU3Ek__BackingField_18;
// System.Func`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonContract::<DefaultCreator>k__BackingField
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * ___U3CDefaultCreatorU3Ek__BackingField_19;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::<DefaultCreatorNonPublic>k__BackingField
bool ___U3CDefaultCreatorNonPublicU3Ek__BackingField_20;
public:
inline static int32_t get_offset_of_IsNullable_0() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___IsNullable_0)); }
inline bool get_IsNullable_0() const { return ___IsNullable_0; }
inline bool* get_address_of_IsNullable_0() { return &___IsNullable_0; }
inline void set_IsNullable_0(bool value)
{
___IsNullable_0 = value;
}
inline static int32_t get_offset_of_IsConvertable_1() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___IsConvertable_1)); }
inline bool get_IsConvertable_1() const { return ___IsConvertable_1; }
inline bool* get_address_of_IsConvertable_1() { return &___IsConvertable_1; }
inline void set_IsConvertable_1(bool value)
{
___IsConvertable_1 = value;
}
inline static int32_t get_offset_of_IsEnum_2() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___IsEnum_2)); }
inline bool get_IsEnum_2() const { return ___IsEnum_2; }
inline bool* get_address_of_IsEnum_2() { return &___IsEnum_2; }
inline void set_IsEnum_2(bool value)
{
___IsEnum_2 = value;
}
inline static int32_t get_offset_of_NonNullableUnderlyingType_3() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___NonNullableUnderlyingType_3)); }
inline Type_t * get_NonNullableUnderlyingType_3() const { return ___NonNullableUnderlyingType_3; }
inline Type_t ** get_address_of_NonNullableUnderlyingType_3() { return &___NonNullableUnderlyingType_3; }
inline void set_NonNullableUnderlyingType_3(Type_t * value)
{
___NonNullableUnderlyingType_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NonNullableUnderlyingType_3), (void*)value);
}
inline static int32_t get_offset_of_InternalReadType_4() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___InternalReadType_4)); }
inline int32_t get_InternalReadType_4() const { return ___InternalReadType_4; }
inline int32_t* get_address_of_InternalReadType_4() { return &___InternalReadType_4; }
inline void set_InternalReadType_4(int32_t value)
{
___InternalReadType_4 = value;
}
inline static int32_t get_offset_of_ContractType_5() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___ContractType_5)); }
inline int32_t get_ContractType_5() const { return ___ContractType_5; }
inline int32_t* get_address_of_ContractType_5() { return &___ContractType_5; }
inline void set_ContractType_5(int32_t value)
{
___ContractType_5 = value;
}
inline static int32_t get_offset_of_IsReadOnlyOrFixedSize_6() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___IsReadOnlyOrFixedSize_6)); }
inline bool get_IsReadOnlyOrFixedSize_6() const { return ___IsReadOnlyOrFixedSize_6; }
inline bool* get_address_of_IsReadOnlyOrFixedSize_6() { return &___IsReadOnlyOrFixedSize_6; }
inline void set_IsReadOnlyOrFixedSize_6(bool value)
{
___IsReadOnlyOrFixedSize_6 = value;
}
inline static int32_t get_offset_of_IsSealed_7() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___IsSealed_7)); }
inline bool get_IsSealed_7() const { return ___IsSealed_7; }
inline bool* get_address_of_IsSealed_7() { return &___IsSealed_7; }
inline void set_IsSealed_7(bool value)
{
___IsSealed_7 = value;
}
inline static int32_t get_offset_of_IsInstantiable_8() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___IsInstantiable_8)); }
inline bool get_IsInstantiable_8() const { return ___IsInstantiable_8; }
inline bool* get_address_of_IsInstantiable_8() { return &___IsInstantiable_8; }
inline void set_IsInstantiable_8(bool value)
{
___IsInstantiable_8 = value;
}
inline static int32_t get_offset_of__onDeserializedCallbacks_9() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ____onDeserializedCallbacks_9)); }
inline List_1_tB537E4096AC908C2646013141D5C72E300A0B5D3 * get__onDeserializedCallbacks_9() const { return ____onDeserializedCallbacks_9; }
inline List_1_tB537E4096AC908C2646013141D5C72E300A0B5D3 ** get_address_of__onDeserializedCallbacks_9() { return &____onDeserializedCallbacks_9; }
inline void set__onDeserializedCallbacks_9(List_1_tB537E4096AC908C2646013141D5C72E300A0B5D3 * value)
{
____onDeserializedCallbacks_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onDeserializedCallbacks_9), (void*)value);
}
inline static int32_t get_offset_of__onDeserializingCallbacks_10() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ____onDeserializingCallbacks_10)); }
inline RuntimeObject* get__onDeserializingCallbacks_10() const { return ____onDeserializingCallbacks_10; }
inline RuntimeObject** get_address_of__onDeserializingCallbacks_10() { return &____onDeserializingCallbacks_10; }
inline void set__onDeserializingCallbacks_10(RuntimeObject* value)
{
____onDeserializingCallbacks_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onDeserializingCallbacks_10), (void*)value);
}
inline static int32_t get_offset_of__onSerializedCallbacks_11() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ____onSerializedCallbacks_11)); }
inline RuntimeObject* get__onSerializedCallbacks_11() const { return ____onSerializedCallbacks_11; }
inline RuntimeObject** get_address_of__onSerializedCallbacks_11() { return &____onSerializedCallbacks_11; }
inline void set__onSerializedCallbacks_11(RuntimeObject* value)
{
____onSerializedCallbacks_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onSerializedCallbacks_11), (void*)value);
}
inline static int32_t get_offset_of__onSerializingCallbacks_12() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ____onSerializingCallbacks_12)); }
inline RuntimeObject* get__onSerializingCallbacks_12() const { return ____onSerializingCallbacks_12; }
inline RuntimeObject** get_address_of__onSerializingCallbacks_12() { return &____onSerializingCallbacks_12; }
inline void set__onSerializingCallbacks_12(RuntimeObject* value)
{
____onSerializingCallbacks_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onSerializingCallbacks_12), (void*)value);
}
inline static int32_t get_offset_of__onErrorCallbacks_13() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ____onErrorCallbacks_13)); }
inline RuntimeObject* get__onErrorCallbacks_13() const { return ____onErrorCallbacks_13; }
inline RuntimeObject** get_address_of__onErrorCallbacks_13() { return &____onErrorCallbacks_13; }
inline void set__onErrorCallbacks_13(RuntimeObject* value)
{
____onErrorCallbacks_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onErrorCallbacks_13), (void*)value);
}
inline static int32_t get_offset_of__createdType_14() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ____createdType_14)); }
inline Type_t * get__createdType_14() const { return ____createdType_14; }
inline Type_t ** get_address_of__createdType_14() { return &____createdType_14; }
inline void set__createdType_14(Type_t * value)
{
____createdType_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____createdType_14), (void*)value);
}
inline static int32_t get_offset_of_U3CUnderlyingTypeU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___U3CUnderlyingTypeU3Ek__BackingField_15)); }
inline Type_t * get_U3CUnderlyingTypeU3Ek__BackingField_15() const { return ___U3CUnderlyingTypeU3Ek__BackingField_15; }
inline Type_t ** get_address_of_U3CUnderlyingTypeU3Ek__BackingField_15() { return &___U3CUnderlyingTypeU3Ek__BackingField_15; }
inline void set_U3CUnderlyingTypeU3Ek__BackingField_15(Type_t * value)
{
___U3CUnderlyingTypeU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CUnderlyingTypeU3Ek__BackingField_15), (void*)value);
}
inline static int32_t get_offset_of_U3CIsReferenceU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___U3CIsReferenceU3Ek__BackingField_16)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CIsReferenceU3Ek__BackingField_16() const { return ___U3CIsReferenceU3Ek__BackingField_16; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CIsReferenceU3Ek__BackingField_16() { return &___U3CIsReferenceU3Ek__BackingField_16; }
inline void set_U3CIsReferenceU3Ek__BackingField_16(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CIsReferenceU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CConverterU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___U3CConverterU3Ek__BackingField_17)); }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * get_U3CConverterU3Ek__BackingField_17() const { return ___U3CConverterU3Ek__BackingField_17; }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** get_address_of_U3CConverterU3Ek__BackingField_17() { return &___U3CConverterU3Ek__BackingField_17; }
inline void set_U3CConverterU3Ek__BackingField_17(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
___U3CConverterU3Ek__BackingField_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CConverterU3Ek__BackingField_17), (void*)value);
}
inline static int32_t get_offset_of_U3CInternalConverterU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___U3CInternalConverterU3Ek__BackingField_18)); }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * get_U3CInternalConverterU3Ek__BackingField_18() const { return ___U3CInternalConverterU3Ek__BackingField_18; }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** get_address_of_U3CInternalConverterU3Ek__BackingField_18() { return &___U3CInternalConverterU3Ek__BackingField_18; }
inline void set_U3CInternalConverterU3Ek__BackingField_18(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
___U3CInternalConverterU3Ek__BackingField_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CInternalConverterU3Ek__BackingField_18), (void*)value);
}
inline static int32_t get_offset_of_U3CDefaultCreatorU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___U3CDefaultCreatorU3Ek__BackingField_19)); }
inline Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * get_U3CDefaultCreatorU3Ek__BackingField_19() const { return ___U3CDefaultCreatorU3Ek__BackingField_19; }
inline Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 ** get_address_of_U3CDefaultCreatorU3Ek__BackingField_19() { return &___U3CDefaultCreatorU3Ek__BackingField_19; }
inline void set_U3CDefaultCreatorU3Ek__BackingField_19(Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * value)
{
___U3CDefaultCreatorU3Ek__BackingField_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultCreatorU3Ek__BackingField_19), (void*)value);
}
inline static int32_t get_offset_of_U3CDefaultCreatorNonPublicU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0, ___U3CDefaultCreatorNonPublicU3Ek__BackingField_20)); }
inline bool get_U3CDefaultCreatorNonPublicU3Ek__BackingField_20() const { return ___U3CDefaultCreatorNonPublicU3Ek__BackingField_20; }
inline bool* get_address_of_U3CDefaultCreatorNonPublicU3Ek__BackingField_20() { return &___U3CDefaultCreatorNonPublicU3Ek__BackingField_20; }
inline void set_U3CDefaultCreatorNonPublicU3Ek__BackingField_20(bool value)
{
___U3CDefaultCreatorNonPublicU3Ek__BackingField_20 = value;
}
};
// Vuforia.Newtonsoft.Json.JsonException
struct JsonException_tA0851478052E710490C73E995BE27E80545D03F2 : public Exception_t
{
public:
public:
};
// Vuforia.Newtonsoft.Json.JsonPosition
struct JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD
{
public:
// Vuforia.Newtonsoft.Json.JsonContainerType Vuforia.Newtonsoft.Json.JsonPosition::Type
int32_t ___Type_1;
// System.Int32 Vuforia.Newtonsoft.Json.JsonPosition::Position
int32_t ___Position_2;
// System.String Vuforia.Newtonsoft.Json.JsonPosition::PropertyName
String_t* ___PropertyName_3;
// System.Boolean Vuforia.Newtonsoft.Json.JsonPosition::HasIndex
bool ___HasIndex_4;
public:
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD, ___Type_1)); }
inline int32_t get_Type_1() const { return ___Type_1; }
inline int32_t* get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(int32_t value)
{
___Type_1 = value;
}
inline static int32_t get_offset_of_Position_2() { return static_cast<int32_t>(offsetof(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD, ___Position_2)); }
inline int32_t get_Position_2() const { return ___Position_2; }
inline int32_t* get_address_of_Position_2() { return &___Position_2; }
inline void set_Position_2(int32_t value)
{
___Position_2 = value;
}
inline static int32_t get_offset_of_PropertyName_3() { return static_cast<int32_t>(offsetof(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD, ___PropertyName_3)); }
inline String_t* get_PropertyName_3() const { return ___PropertyName_3; }
inline String_t** get_address_of_PropertyName_3() { return &___PropertyName_3; }
inline void set_PropertyName_3(String_t* value)
{
___PropertyName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropertyName_3), (void*)value);
}
inline static int32_t get_offset_of_HasIndex_4() { return static_cast<int32_t>(offsetof(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD, ___HasIndex_4)); }
inline bool get_HasIndex_4() const { return ___HasIndex_4; }
inline bool* get_address_of_HasIndex_4() { return &___HasIndex_4; }
inline void set_HasIndex_4(bool value)
{
___HasIndex_4 = value;
}
};
struct JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_StaticFields
{
public:
// System.Char[] Vuforia.Newtonsoft.Json.JsonPosition::SpecialCharacters
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___SpecialCharacters_0;
public:
inline static int32_t get_offset_of_SpecialCharacters_0() { return static_cast<int32_t>(offsetof(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_StaticFields, ___SpecialCharacters_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_SpecialCharacters_0() const { return ___SpecialCharacters_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_SpecialCharacters_0() { return &___SpecialCharacters_0; }
inline void set_SpecialCharacters_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___SpecialCharacters_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SpecialCharacters_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.JsonPosition
struct JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_marshaled_pinvoke
{
int32_t ___Type_1;
int32_t ___Position_2;
char* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// Native definition for COM marshalling of Vuforia.Newtonsoft.Json.JsonPosition
struct JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_marshaled_com
{
int32_t ___Type_1;
int32_t ___Position_2;
Il2CppChar* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator
struct JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.Schema.UndefinedSchemaIdHandling Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::<UndefinedSchemaIdHandling>k__BackingField
int32_t ___U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0;
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::_contractResolver
RuntimeObject* ____contractResolver_1;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::_resolver
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ____resolver_2;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::_stack
RuntimeObject* ____stack_3;
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::_currentSchema
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ____currentSchema_4;
public:
inline static int32_t get_offset_of_U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57, ___U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0)); }
inline int32_t get_U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0() const { return ___U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0() { return &___U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0; }
inline void set_U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0(int32_t value)
{
___U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of__contractResolver_1() { return static_cast<int32_t>(offsetof(JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57, ____contractResolver_1)); }
inline RuntimeObject* get__contractResolver_1() const { return ____contractResolver_1; }
inline RuntimeObject** get_address_of__contractResolver_1() { return &____contractResolver_1; }
inline void set__contractResolver_1(RuntimeObject* value)
{
____contractResolver_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____contractResolver_1), (void*)value);
}
inline static int32_t get_offset_of__resolver_2() { return static_cast<int32_t>(offsetof(JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57, ____resolver_2)); }
inline JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * get__resolver_2() const { return ____resolver_2; }
inline JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 ** get_address_of__resolver_2() { return &____resolver_2; }
inline void set__resolver_2(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * value)
{
____resolver_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resolver_2), (void*)value);
}
inline static int32_t get_offset_of__stack_3() { return static_cast<int32_t>(offsetof(JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57, ____stack_3)); }
inline RuntimeObject* get__stack_3() const { return ____stack_3; }
inline RuntimeObject** get_address_of__stack_3() { return &____stack_3; }
inline void set__stack_3(RuntimeObject* value)
{
____stack_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stack_3), (void*)value);
}
inline static int32_t get_offset_of__currentSchema_4() { return static_cast<int32_t>(offsetof(JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57, ____currentSchema_4)); }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * get__currentSchema_4() const { return ____currentSchema_4; }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** get_address_of__currentSchema_4() { return &____currentSchema_4; }
inline void set__currentSchema_4(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
____currentSchema_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____currentSchema_4), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel
struct JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC : public RuntimeObject
{
public:
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Required>k__BackingField
bool ___U3CRequiredU3Ek__BackingField_0;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Type>k__BackingField
int32_t ___U3CTypeU3Ek__BackingField_1;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<MinimumLength>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMinimumLengthU3Ek__BackingField_2;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<MaximumLength>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMaximumLengthU3Ek__BackingField_3;
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<DivisibleBy>k__BackingField
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___U3CDivisibleByU3Ek__BackingField_4;
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Minimum>k__BackingField
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___U3CMinimumU3Ek__BackingField_5;
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Maximum>k__BackingField
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___U3CMaximumU3Ek__BackingField_6;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<ExclusiveMinimum>k__BackingField
bool ___U3CExclusiveMinimumU3Ek__BackingField_7;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<ExclusiveMaximum>k__BackingField
bool ___U3CExclusiveMaximumU3Ek__BackingField_8;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<MinimumItems>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMinimumItemsU3Ek__BackingField_9;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<MaximumItems>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMaximumItemsU3Ek__BackingField_10;
// System.Collections.Generic.IList`1<System.String> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Patterns>k__BackingField
RuntimeObject* ___U3CPatternsU3Ek__BackingField_11;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Items>k__BackingField
RuntimeObject* ___U3CItemsU3Ek__BackingField_12;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Properties>k__BackingField
RuntimeObject* ___U3CPropertiesU3Ek__BackingField_13;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<PatternProperties>k__BackingField
RuntimeObject* ___U3CPatternPropertiesU3Ek__BackingField_14;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<AdditionalProperties>k__BackingField
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___U3CAdditionalPropertiesU3Ek__BackingField_15;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<AdditionalItems>k__BackingField
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___U3CAdditionalItemsU3Ek__BackingField_16;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<PositionalItemsValidation>k__BackingField
bool ___U3CPositionalItemsValidationU3Ek__BackingField_17;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<AllowAdditionalProperties>k__BackingField
bool ___U3CAllowAdditionalPropertiesU3Ek__BackingField_18;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<AllowAdditionalItems>k__BackingField
bool ___U3CAllowAdditionalItemsU3Ek__BackingField_19;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<UniqueItems>k__BackingField
bool ___U3CUniqueItemsU3Ek__BackingField_20;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Enum>k__BackingField
RuntimeObject* ___U3CEnumU3Ek__BackingField_21;
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::<Disallow>k__BackingField
int32_t ___U3CDisallowU3Ek__BackingField_22;
public:
inline static int32_t get_offset_of_U3CRequiredU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CRequiredU3Ek__BackingField_0)); }
inline bool get_U3CRequiredU3Ek__BackingField_0() const { return ___U3CRequiredU3Ek__BackingField_0; }
inline bool* get_address_of_U3CRequiredU3Ek__BackingField_0() { return &___U3CRequiredU3Ek__BackingField_0; }
inline void set_U3CRequiredU3Ek__BackingField_0(bool value)
{
___U3CRequiredU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CTypeU3Ek__BackingField_1)); }
inline int32_t get_U3CTypeU3Ek__BackingField_1() const { return ___U3CTypeU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CTypeU3Ek__BackingField_1() { return &___U3CTypeU3Ek__BackingField_1; }
inline void set_U3CTypeU3Ek__BackingField_1(int32_t value)
{
___U3CTypeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CMinimumLengthU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CMinimumLengthU3Ek__BackingField_2)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMinimumLengthU3Ek__BackingField_2() const { return ___U3CMinimumLengthU3Ek__BackingField_2; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMinimumLengthU3Ek__BackingField_2() { return &___U3CMinimumLengthU3Ek__BackingField_2; }
inline void set_U3CMinimumLengthU3Ek__BackingField_2(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMinimumLengthU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CMaximumLengthU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CMaximumLengthU3Ek__BackingField_3)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMaximumLengthU3Ek__BackingField_3() const { return ___U3CMaximumLengthU3Ek__BackingField_3; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMaximumLengthU3Ek__BackingField_3() { return &___U3CMaximumLengthU3Ek__BackingField_3; }
inline void set_U3CMaximumLengthU3Ek__BackingField_3(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMaximumLengthU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CDivisibleByU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CDivisibleByU3Ek__BackingField_4)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_U3CDivisibleByU3Ek__BackingField_4() const { return ___U3CDivisibleByU3Ek__BackingField_4; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_U3CDivisibleByU3Ek__BackingField_4() { return &___U3CDivisibleByU3Ek__BackingField_4; }
inline void set_U3CDivisibleByU3Ek__BackingField_4(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___U3CDivisibleByU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CMinimumU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CMinimumU3Ek__BackingField_5)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_U3CMinimumU3Ek__BackingField_5() const { return ___U3CMinimumU3Ek__BackingField_5; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_U3CMinimumU3Ek__BackingField_5() { return &___U3CMinimumU3Ek__BackingField_5; }
inline void set_U3CMinimumU3Ek__BackingField_5(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___U3CMinimumU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CMaximumU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CMaximumU3Ek__BackingField_6)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_U3CMaximumU3Ek__BackingField_6() const { return ___U3CMaximumU3Ek__BackingField_6; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_U3CMaximumU3Ek__BackingField_6() { return &___U3CMaximumU3Ek__BackingField_6; }
inline void set_U3CMaximumU3Ek__BackingField_6(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___U3CMaximumU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CExclusiveMinimumU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CExclusiveMinimumU3Ek__BackingField_7)); }
inline bool get_U3CExclusiveMinimumU3Ek__BackingField_7() const { return ___U3CExclusiveMinimumU3Ek__BackingField_7; }
inline bool* get_address_of_U3CExclusiveMinimumU3Ek__BackingField_7() { return &___U3CExclusiveMinimumU3Ek__BackingField_7; }
inline void set_U3CExclusiveMinimumU3Ek__BackingField_7(bool value)
{
___U3CExclusiveMinimumU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CExclusiveMaximumU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CExclusiveMaximumU3Ek__BackingField_8)); }
inline bool get_U3CExclusiveMaximumU3Ek__BackingField_8() const { return ___U3CExclusiveMaximumU3Ek__BackingField_8; }
inline bool* get_address_of_U3CExclusiveMaximumU3Ek__BackingField_8() { return &___U3CExclusiveMaximumU3Ek__BackingField_8; }
inline void set_U3CExclusiveMaximumU3Ek__BackingField_8(bool value)
{
___U3CExclusiveMaximumU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CMinimumItemsU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CMinimumItemsU3Ek__BackingField_9)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMinimumItemsU3Ek__BackingField_9() const { return ___U3CMinimumItemsU3Ek__BackingField_9; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMinimumItemsU3Ek__BackingField_9() { return &___U3CMinimumItemsU3Ek__BackingField_9; }
inline void set_U3CMinimumItemsU3Ek__BackingField_9(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMinimumItemsU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CMaximumItemsU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CMaximumItemsU3Ek__BackingField_10)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMaximumItemsU3Ek__BackingField_10() const { return ___U3CMaximumItemsU3Ek__BackingField_10; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMaximumItemsU3Ek__BackingField_10() { return &___U3CMaximumItemsU3Ek__BackingField_10; }
inline void set_U3CMaximumItemsU3Ek__BackingField_10(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMaximumItemsU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CPatternsU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CPatternsU3Ek__BackingField_11)); }
inline RuntimeObject* get_U3CPatternsU3Ek__BackingField_11() const { return ___U3CPatternsU3Ek__BackingField_11; }
inline RuntimeObject** get_address_of_U3CPatternsU3Ek__BackingField_11() { return &___U3CPatternsU3Ek__BackingField_11; }
inline void set_U3CPatternsU3Ek__BackingField_11(RuntimeObject* value)
{
___U3CPatternsU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPatternsU3Ek__BackingField_11), (void*)value);
}
inline static int32_t get_offset_of_U3CItemsU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CItemsU3Ek__BackingField_12)); }
inline RuntimeObject* get_U3CItemsU3Ek__BackingField_12() const { return ___U3CItemsU3Ek__BackingField_12; }
inline RuntimeObject** get_address_of_U3CItemsU3Ek__BackingField_12() { return &___U3CItemsU3Ek__BackingField_12; }
inline void set_U3CItemsU3Ek__BackingField_12(RuntimeObject* value)
{
___U3CItemsU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemsU3Ek__BackingField_12), (void*)value);
}
inline static int32_t get_offset_of_U3CPropertiesU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CPropertiesU3Ek__BackingField_13)); }
inline RuntimeObject* get_U3CPropertiesU3Ek__BackingField_13() const { return ___U3CPropertiesU3Ek__BackingField_13; }
inline RuntimeObject** get_address_of_U3CPropertiesU3Ek__BackingField_13() { return &___U3CPropertiesU3Ek__BackingField_13; }
inline void set_U3CPropertiesU3Ek__BackingField_13(RuntimeObject* value)
{
___U3CPropertiesU3Ek__BackingField_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertiesU3Ek__BackingField_13), (void*)value);
}
inline static int32_t get_offset_of_U3CPatternPropertiesU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CPatternPropertiesU3Ek__BackingField_14)); }
inline RuntimeObject* get_U3CPatternPropertiesU3Ek__BackingField_14() const { return ___U3CPatternPropertiesU3Ek__BackingField_14; }
inline RuntimeObject** get_address_of_U3CPatternPropertiesU3Ek__BackingField_14() { return &___U3CPatternPropertiesU3Ek__BackingField_14; }
inline void set_U3CPatternPropertiesU3Ek__BackingField_14(RuntimeObject* value)
{
___U3CPatternPropertiesU3Ek__BackingField_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPatternPropertiesU3Ek__BackingField_14), (void*)value);
}
inline static int32_t get_offset_of_U3CAdditionalPropertiesU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CAdditionalPropertiesU3Ek__BackingField_15)); }
inline JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * get_U3CAdditionalPropertiesU3Ek__BackingField_15() const { return ___U3CAdditionalPropertiesU3Ek__BackingField_15; }
inline JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC ** get_address_of_U3CAdditionalPropertiesU3Ek__BackingField_15() { return &___U3CAdditionalPropertiesU3Ek__BackingField_15; }
inline void set_U3CAdditionalPropertiesU3Ek__BackingField_15(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * value)
{
___U3CAdditionalPropertiesU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAdditionalPropertiesU3Ek__BackingField_15), (void*)value);
}
inline static int32_t get_offset_of_U3CAdditionalItemsU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CAdditionalItemsU3Ek__BackingField_16)); }
inline JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * get_U3CAdditionalItemsU3Ek__BackingField_16() const { return ___U3CAdditionalItemsU3Ek__BackingField_16; }
inline JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC ** get_address_of_U3CAdditionalItemsU3Ek__BackingField_16() { return &___U3CAdditionalItemsU3Ek__BackingField_16; }
inline void set_U3CAdditionalItemsU3Ek__BackingField_16(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * value)
{
___U3CAdditionalItemsU3Ek__BackingField_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAdditionalItemsU3Ek__BackingField_16), (void*)value);
}
inline static int32_t get_offset_of_U3CPositionalItemsValidationU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CPositionalItemsValidationU3Ek__BackingField_17)); }
inline bool get_U3CPositionalItemsValidationU3Ek__BackingField_17() const { return ___U3CPositionalItemsValidationU3Ek__BackingField_17; }
inline bool* get_address_of_U3CPositionalItemsValidationU3Ek__BackingField_17() { return &___U3CPositionalItemsValidationU3Ek__BackingField_17; }
inline void set_U3CPositionalItemsValidationU3Ek__BackingField_17(bool value)
{
___U3CPositionalItemsValidationU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CAllowAdditionalPropertiesU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CAllowAdditionalPropertiesU3Ek__BackingField_18)); }
inline bool get_U3CAllowAdditionalPropertiesU3Ek__BackingField_18() const { return ___U3CAllowAdditionalPropertiesU3Ek__BackingField_18; }
inline bool* get_address_of_U3CAllowAdditionalPropertiesU3Ek__BackingField_18() { return &___U3CAllowAdditionalPropertiesU3Ek__BackingField_18; }
inline void set_U3CAllowAdditionalPropertiesU3Ek__BackingField_18(bool value)
{
___U3CAllowAdditionalPropertiesU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CAllowAdditionalItemsU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CAllowAdditionalItemsU3Ek__BackingField_19)); }
inline bool get_U3CAllowAdditionalItemsU3Ek__BackingField_19() const { return ___U3CAllowAdditionalItemsU3Ek__BackingField_19; }
inline bool* get_address_of_U3CAllowAdditionalItemsU3Ek__BackingField_19() { return &___U3CAllowAdditionalItemsU3Ek__BackingField_19; }
inline void set_U3CAllowAdditionalItemsU3Ek__BackingField_19(bool value)
{
___U3CAllowAdditionalItemsU3Ek__BackingField_19 = value;
}
inline static int32_t get_offset_of_U3CUniqueItemsU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CUniqueItemsU3Ek__BackingField_20)); }
inline bool get_U3CUniqueItemsU3Ek__BackingField_20() const { return ___U3CUniqueItemsU3Ek__BackingField_20; }
inline bool* get_address_of_U3CUniqueItemsU3Ek__BackingField_20() { return &___U3CUniqueItemsU3Ek__BackingField_20; }
inline void set_U3CUniqueItemsU3Ek__BackingField_20(bool value)
{
___U3CUniqueItemsU3Ek__BackingField_20 = value;
}
inline static int32_t get_offset_of_U3CEnumU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CEnumU3Ek__BackingField_21)); }
inline RuntimeObject* get_U3CEnumU3Ek__BackingField_21() const { return ___U3CEnumU3Ek__BackingField_21; }
inline RuntimeObject** get_address_of_U3CEnumU3Ek__BackingField_21() { return &___U3CEnumU3Ek__BackingField_21; }
inline void set_U3CEnumU3Ek__BackingField_21(RuntimeObject* value)
{
___U3CEnumU3Ek__BackingField_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CEnumU3Ek__BackingField_21), (void*)value);
}
inline static int32_t get_offset_of_U3CDisallowU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC, ___U3CDisallowU3Ek__BackingField_22)); }
inline int32_t get_U3CDisallowU3Ek__BackingField_22() const { return ___U3CDisallowU3Ek__BackingField_22; }
inline int32_t* get_address_of_U3CDisallowU3Ek__BackingField_22() { return &___U3CDisallowU3Ek__BackingField_22; }
inline void set_U3CDisallowU3Ek__BackingField_22(int32_t value)
{
___U3CDisallowU3Ek__BackingField_22 = 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.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505
{
public:
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject * ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
public:
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_additionalContext_0)); }
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
inline void set_m_additionalContext_0(RuntimeObject * value)
{
___m_additionalContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_state_1)); }
inline int32_t get_m_state_1() const { return ___m_state_1; }
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(int32_t value)
{
___m_state_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// 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);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder/<>c__DisplayClass23_0
struct U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099 : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder/<>c__DisplayClass23_0::type
int32_t ___type_0;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099, ___type_0)); }
inline int32_t get_type_0() const { return ___type_0; }
inline int32_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int32_t value)
{
___type_0 = value;
}
};
// System.Action`2<System.Object,System.Object>
struct Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D : public MulticastDelegate_t
{
public:
public:
};
// System.Collections.Generic.Dictionary`2/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current
KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6, ___dictionary_0)); }
inline Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6, ___current_3)); }
inline KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>
struct Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary
Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current
KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD, ___dictionary_0)); }
inline Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD, ___current_3)); }
inline KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs>
struct EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver>
struct Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<Vuforia.Newtonsoft.Json.JsonSerializerSettings>
struct Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<System.Object>
struct Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>,System.Boolean>
struct Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonProperty>
struct Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String>
struct Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>
struct Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.Boolean>
struct Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.String>
struct Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType,System.Boolean>
struct Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.String,System.String>
struct Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema,System.Boolean>
struct Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext,System.Boolean>
struct Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2 : public MulticastDelegate_t
{
public:
public:
};
// System.Nullable`1<System.Runtime.Serialization.StreamingContext>
struct Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15
{
public:
// T System.Nullable`1::value
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15, ___value_0)); }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 get_value_0() const { return ___value_0; }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_additionalContext_0), (void*)NULL);
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF : public MulticastDelegate_t
{
public:
public:
};
// System.Predicate`1<System.Object>
struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB : public MulticastDelegate_t
{
public:
public:
};
// 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);
}
};
// Vuforia.Newtonsoft.Json.Serialization.ExtensionDataSetter
struct ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 : public MulticastDelegate_t
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// Vuforia.Newtonsoft.Json.Linq.JRaw
struct JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C : public JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F
{
public:
public:
};
// Vuforia.Newtonsoft.Json.JsonContainerAttribute
struct JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String Vuforia.Newtonsoft.Json.JsonContainerAttribute::<Id>k__BackingField
String_t* ___U3CIdU3Ek__BackingField_0;
// System.String Vuforia.Newtonsoft.Json.JsonContainerAttribute::<Title>k__BackingField
String_t* ___U3CTitleU3Ek__BackingField_1;
// System.String Vuforia.Newtonsoft.Json.JsonContainerAttribute::<Description>k__BackingField
String_t* ___U3CDescriptionU3Ek__BackingField_2;
// System.Type Vuforia.Newtonsoft.Json.JsonContainerAttribute::<ItemConverterType>k__BackingField
Type_t * ___U3CItemConverterTypeU3Ek__BackingField_3;
// System.Object[] Vuforia.Newtonsoft.Json.JsonContainerAttribute::<ItemConverterParameters>k__BackingField
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___U3CItemConverterParametersU3Ek__BackingField_4;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.JsonContainerAttribute::_isReference
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ____isReference_5;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.JsonContainerAttribute::_itemIsReference
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ____itemIsReference_6;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ReferenceLoopHandling> Vuforia.Newtonsoft.Json.JsonContainerAttribute::_itemReferenceLoopHandling
Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB ____itemReferenceLoopHandling_7;
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.JsonContainerAttribute::_itemTypeNameHandling
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ____itemTypeNameHandling_8;
public:
inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ___U3CIdU3Ek__BackingField_0)); }
inline String_t* get_U3CIdU3Ek__BackingField_0() const { return ___U3CIdU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CIdU3Ek__BackingField_0() { return &___U3CIdU3Ek__BackingField_0; }
inline void set_U3CIdU3Ek__BackingField_0(String_t* value)
{
___U3CIdU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CIdU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CTitleU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ___U3CTitleU3Ek__BackingField_1)); }
inline String_t* get_U3CTitleU3Ek__BackingField_1() const { return ___U3CTitleU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CTitleU3Ek__BackingField_1() { return &___U3CTitleU3Ek__BackingField_1; }
inline void set_U3CTitleU3Ek__BackingField_1(String_t* value)
{
___U3CTitleU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTitleU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CDescriptionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ___U3CDescriptionU3Ek__BackingField_2)); }
inline String_t* get_U3CDescriptionU3Ek__BackingField_2() const { return ___U3CDescriptionU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CDescriptionU3Ek__BackingField_2() { return &___U3CDescriptionU3Ek__BackingField_2; }
inline void set_U3CDescriptionU3Ek__BackingField_2(String_t* value)
{
___U3CDescriptionU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDescriptionU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ___U3CItemConverterTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CItemConverterTypeU3Ek__BackingField_3() const { return ___U3CItemConverterTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CItemConverterTypeU3Ek__BackingField_3() { return &___U3CItemConverterTypeU3Ek__BackingField_3; }
inline void set_U3CItemConverterTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CItemConverterTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterParametersU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ___U3CItemConverterParametersU3Ek__BackingField_4)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_U3CItemConverterParametersU3Ek__BackingField_4() const { return ___U3CItemConverterParametersU3Ek__BackingField_4; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_U3CItemConverterParametersU3Ek__BackingField_4() { return &___U3CItemConverterParametersU3Ek__BackingField_4; }
inline void set_U3CItemConverterParametersU3Ek__BackingField_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___U3CItemConverterParametersU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterParametersU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of__isReference_5() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ____isReference_5)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get__isReference_5() const { return ____isReference_5; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of__isReference_5() { return &____isReference_5; }
inline void set__isReference_5(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
____isReference_5 = value;
}
inline static int32_t get_offset_of__itemIsReference_6() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ____itemIsReference_6)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get__itemIsReference_6() const { return ____itemIsReference_6; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of__itemIsReference_6() { return &____itemIsReference_6; }
inline void set__itemIsReference_6(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
____itemIsReference_6 = value;
}
inline static int32_t get_offset_of__itemReferenceLoopHandling_7() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ____itemReferenceLoopHandling_7)); }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB get__itemReferenceLoopHandling_7() const { return ____itemReferenceLoopHandling_7; }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB * get_address_of__itemReferenceLoopHandling_7() { return &____itemReferenceLoopHandling_7; }
inline void set__itemReferenceLoopHandling_7(Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB value)
{
____itemReferenceLoopHandling_7 = value;
}
inline static int32_t get_offset_of__itemTypeNameHandling_8() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2, ____itemTypeNameHandling_8)); }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 get__itemTypeNameHandling_8() const { return ____itemTypeNameHandling_8; }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * get_address_of__itemTypeNameHandling_8() { return &____itemTypeNameHandling_8; }
inline void set__itemTypeNameHandling_8(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 value)
{
____itemTypeNameHandling_8 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract
struct JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 : public JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0
{
public:
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::_itemContract
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ____itemContract_21;
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::_finalItemContract
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ____finalItemContract_22;
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemConverter>k__BackingField
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___U3CItemConverterU3Ek__BackingField_23;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemIsReference>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CItemIsReferenceU3Ek__BackingField_24;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ReferenceLoopHandling> Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemReferenceLoopHandling>k__BackingField
Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB ___U3CItemReferenceLoopHandlingU3Ek__BackingField_25;
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemTypeNameHandling>k__BackingField
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ___U3CItemTypeNameHandlingU3Ek__BackingField_26;
public:
inline static int32_t get_offset_of__itemContract_21() { return static_cast<int32_t>(offsetof(JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990, ____itemContract_21)); }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * get__itemContract_21() const { return ____itemContract_21; }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** get_address_of__itemContract_21() { return &____itemContract_21; }
inline void set__itemContract_21(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * value)
{
____itemContract_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&____itemContract_21), (void*)value);
}
inline static int32_t get_offset_of__finalItemContract_22() { return static_cast<int32_t>(offsetof(JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990, ____finalItemContract_22)); }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * get__finalItemContract_22() const { return ____finalItemContract_22; }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** get_address_of__finalItemContract_22() { return &____finalItemContract_22; }
inline void set__finalItemContract_22(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * value)
{
____finalItemContract_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____finalItemContract_22), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990, ___U3CItemConverterU3Ek__BackingField_23)); }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * get_U3CItemConverterU3Ek__BackingField_23() const { return ___U3CItemConverterU3Ek__BackingField_23; }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** get_address_of_U3CItemConverterU3Ek__BackingField_23() { return &___U3CItemConverterU3Ek__BackingField_23; }
inline void set_U3CItemConverterU3Ek__BackingField_23(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
___U3CItemConverterU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CItemIsReferenceU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990, ___U3CItemIsReferenceU3Ek__BackingField_24)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CItemIsReferenceU3Ek__BackingField_24() const { return ___U3CItemIsReferenceU3Ek__BackingField_24; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CItemIsReferenceU3Ek__BackingField_24() { return &___U3CItemIsReferenceU3Ek__BackingField_24; }
inline void set_U3CItemIsReferenceU3Ek__BackingField_24(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CItemIsReferenceU3Ek__BackingField_24 = value;
}
inline static int32_t get_offset_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990, ___U3CItemReferenceLoopHandlingU3Ek__BackingField_25)); }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB get_U3CItemReferenceLoopHandlingU3Ek__BackingField_25() const { return ___U3CItemReferenceLoopHandlingU3Ek__BackingField_25; }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB * get_address_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_25() { return &___U3CItemReferenceLoopHandlingU3Ek__BackingField_25; }
inline void set_U3CItemReferenceLoopHandlingU3Ek__BackingField_25(Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB value)
{
___U3CItemReferenceLoopHandlingU3Ek__BackingField_25 = value;
}
inline static int32_t get_offset_of_U3CItemTypeNameHandlingU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990, ___U3CItemTypeNameHandlingU3Ek__BackingField_26)); }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 get_U3CItemTypeNameHandlingU3Ek__BackingField_26() const { return ___U3CItemTypeNameHandlingU3Ek__BackingField_26; }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * get_address_of_U3CItemTypeNameHandlingU3Ek__BackingField_26() { return &___U3CItemTypeNameHandlingU3Ek__BackingField_26; }
inline void set_U3CItemTypeNameHandlingU3Ek__BackingField_26(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 value)
{
___U3CItemTypeNameHandlingU3Ek__BackingField_26 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonPrimitiveContract
struct JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 : public JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0
{
public:
// Vuforia.Newtonsoft.Json.Utilities.PrimitiveTypeCode Vuforia.Newtonsoft.Json.Serialization.JsonPrimitiveContract::<TypeCode>k__BackingField
int32_t ___U3CTypeCodeU3Ek__BackingField_21;
public:
inline static int32_t get_offset_of_U3CTypeCodeU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000, ___U3CTypeCodeU3Ek__BackingField_21)); }
inline int32_t get_U3CTypeCodeU3Ek__BackingField_21() const { return ___U3CTypeCodeU3Ek__BackingField_21; }
inline int32_t* get_address_of_U3CTypeCodeU3Ek__BackingField_21() { return &___U3CTypeCodeU3Ek__BackingField_21; }
inline void set_U3CTypeCodeU3Ek__BackingField_21(int32_t value)
{
___U3CTypeCodeU3Ek__BackingField_21 = value;
}
};
struct JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Newtonsoft.Json.ReadType> Vuforia.Newtonsoft.Json.Serialization.JsonPrimitiveContract::ReadTypeMap
Dictionary_2_tC98EA567A068D9806C4D7D71FA81B4C3DE836199 * ___ReadTypeMap_22;
public:
inline static int32_t get_offset_of_ReadTypeMap_22() { return static_cast<int32_t>(offsetof(JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_StaticFields, ___ReadTypeMap_22)); }
inline Dictionary_2_tC98EA567A068D9806C4D7D71FA81B4C3DE836199 * get_ReadTypeMap_22() const { return ___ReadTypeMap_22; }
inline Dictionary_2_tC98EA567A068D9806C4D7D71FA81B4C3DE836199 ** get_address_of_ReadTypeMap_22() { return &___ReadTypeMap_22; }
inline void set_ReadTypeMap_22(Dictionary_2_tC98EA567A068D9806C4D7D71FA81B4C3DE836199 * value)
{
___ReadTypeMap_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ReadTypeMap_22), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonProperty
struct JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 : public RuntimeObject
{
public:
// System.Nullable`1<Vuforia.Newtonsoft.Json.Required> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::_required
Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED ____required_0;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::_hasExplicitDefaultValue
bool ____hasExplicitDefaultValue_1;
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonProperty::_defaultValue
RuntimeObject * ____defaultValue_2;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::_hasGeneratedDefaultValue
bool ____hasGeneratedDefaultValue_3;
// System.String Vuforia.Newtonsoft.Json.Serialization.JsonProperty::_propertyName
String_t* ____propertyName_4;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::_skipPropertyNameEscape
bool ____skipPropertyNameEscape_5;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonProperty::_propertyType
Type_t * ____propertyType_6;
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<PropertyContract>k__BackingField
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___U3CPropertyContractU3Ek__BackingField_7;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<DeclaringType>k__BackingField
Type_t * ___U3CDeclaringTypeU3Ek__BackingField_8;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<Order>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3COrderU3Ek__BackingField_9;
// System.String Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<UnderlyingName>k__BackingField
String_t* ___U3CUnderlyingNameU3Ek__BackingField_10;
// Vuforia.Newtonsoft.Json.Serialization.IValueProvider Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ValueProvider>k__BackingField
RuntimeObject* ___U3CValueProviderU3Ek__BackingField_11;
// Vuforia.Newtonsoft.Json.Serialization.IAttributeProvider Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<AttributeProvider>k__BackingField
RuntimeObject* ___U3CAttributeProviderU3Ek__BackingField_12;
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<Converter>k__BackingField
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___U3CConverterU3Ek__BackingField_13;
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<MemberConverter>k__BackingField
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___U3CMemberConverterU3Ek__BackingField_14;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<Ignored>k__BackingField
bool ___U3CIgnoredU3Ek__BackingField_15;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<Readable>k__BackingField
bool ___U3CReadableU3Ek__BackingField_16;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<Writable>k__BackingField
bool ___U3CWritableU3Ek__BackingField_17;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<HasMemberAttribute>k__BackingField
bool ___U3CHasMemberAttributeU3Ek__BackingField_18;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<IsReference>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CIsReferenceU3Ek__BackingField_19;
// System.Nullable`1<Vuforia.Newtonsoft.Json.NullValueHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<NullValueHandling>k__BackingField
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 ___U3CNullValueHandlingU3Ek__BackingField_20;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DefaultValueHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<DefaultValueHandling>k__BackingField
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 ___U3CDefaultValueHandlingU3Ek__BackingField_21;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ReferenceLoopHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ReferenceLoopHandling>k__BackingField
Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB ___U3CReferenceLoopHandlingU3Ek__BackingField_22;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ObjectCreationHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ObjectCreationHandling>k__BackingField
Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 ___U3CObjectCreationHandlingU3Ek__BackingField_23;
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<TypeNameHandling>k__BackingField
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ___U3CTypeNameHandlingU3Ek__BackingField_24;
// System.Predicate`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ShouldSerialize>k__BackingField
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___U3CShouldSerializeU3Ek__BackingField_25;
// System.Predicate`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ShouldDeserialize>k__BackingField
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___U3CShouldDeserializeU3Ek__BackingField_26;
// System.Predicate`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<GetIsSpecified>k__BackingField
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___U3CGetIsSpecifiedU3Ek__BackingField_27;
// System.Action`2<System.Object,System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<SetIsSpecified>k__BackingField
Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * ___U3CSetIsSpecifiedU3Ek__BackingField_28;
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ItemConverter>k__BackingField
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___U3CItemConverterU3Ek__BackingField_29;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ItemIsReference>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CItemIsReferenceU3Ek__BackingField_30;
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ItemTypeNameHandling>k__BackingField
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ___U3CItemTypeNameHandlingU3Ek__BackingField_31;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ReferenceLoopHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::<ItemReferenceLoopHandling>k__BackingField
Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB ___U3CItemReferenceLoopHandlingU3Ek__BackingField_32;
public:
inline static int32_t get_offset_of__required_0() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ____required_0)); }
inline Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED get__required_0() const { return ____required_0; }
inline Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED * get_address_of__required_0() { return &____required_0; }
inline void set__required_0(Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED value)
{
____required_0 = value;
}
inline static int32_t get_offset_of__hasExplicitDefaultValue_1() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ____hasExplicitDefaultValue_1)); }
inline bool get__hasExplicitDefaultValue_1() const { return ____hasExplicitDefaultValue_1; }
inline bool* get_address_of__hasExplicitDefaultValue_1() { return &____hasExplicitDefaultValue_1; }
inline void set__hasExplicitDefaultValue_1(bool value)
{
____hasExplicitDefaultValue_1 = value;
}
inline static int32_t get_offset_of__defaultValue_2() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ____defaultValue_2)); }
inline RuntimeObject * get__defaultValue_2() const { return ____defaultValue_2; }
inline RuntimeObject ** get_address_of__defaultValue_2() { return &____defaultValue_2; }
inline void set__defaultValue_2(RuntimeObject * value)
{
____defaultValue_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____defaultValue_2), (void*)value);
}
inline static int32_t get_offset_of__hasGeneratedDefaultValue_3() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ____hasGeneratedDefaultValue_3)); }
inline bool get__hasGeneratedDefaultValue_3() const { return ____hasGeneratedDefaultValue_3; }
inline bool* get_address_of__hasGeneratedDefaultValue_3() { return &____hasGeneratedDefaultValue_3; }
inline void set__hasGeneratedDefaultValue_3(bool value)
{
____hasGeneratedDefaultValue_3 = value;
}
inline static int32_t get_offset_of__propertyName_4() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ____propertyName_4)); }
inline String_t* get__propertyName_4() const { return ____propertyName_4; }
inline String_t** get_address_of__propertyName_4() { return &____propertyName_4; }
inline void set__propertyName_4(String_t* value)
{
____propertyName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertyName_4), (void*)value);
}
inline static int32_t get_offset_of__skipPropertyNameEscape_5() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ____skipPropertyNameEscape_5)); }
inline bool get__skipPropertyNameEscape_5() const { return ____skipPropertyNameEscape_5; }
inline bool* get_address_of__skipPropertyNameEscape_5() { return &____skipPropertyNameEscape_5; }
inline void set__skipPropertyNameEscape_5(bool value)
{
____skipPropertyNameEscape_5 = value;
}
inline static int32_t get_offset_of__propertyType_6() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ____propertyType_6)); }
inline Type_t * get__propertyType_6() const { return ____propertyType_6; }
inline Type_t ** get_address_of__propertyType_6() { return &____propertyType_6; }
inline void set__propertyType_6(Type_t * value)
{
____propertyType_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertyType_6), (void*)value);
}
inline static int32_t get_offset_of_U3CPropertyContractU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CPropertyContractU3Ek__BackingField_7)); }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * get_U3CPropertyContractU3Ek__BackingField_7() const { return ___U3CPropertyContractU3Ek__BackingField_7; }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** get_address_of_U3CPropertyContractU3Ek__BackingField_7() { return &___U3CPropertyContractU3Ek__BackingField_7; }
inline void set_U3CPropertyContractU3Ek__BackingField_7(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * value)
{
___U3CPropertyContractU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertyContractU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CDeclaringTypeU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CDeclaringTypeU3Ek__BackingField_8)); }
inline Type_t * get_U3CDeclaringTypeU3Ek__BackingField_8() const { return ___U3CDeclaringTypeU3Ek__BackingField_8; }
inline Type_t ** get_address_of_U3CDeclaringTypeU3Ek__BackingField_8() { return &___U3CDeclaringTypeU3Ek__BackingField_8; }
inline void set_U3CDeclaringTypeU3Ek__BackingField_8(Type_t * value)
{
___U3CDeclaringTypeU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDeclaringTypeU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_U3COrderU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3COrderU3Ek__BackingField_9)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3COrderU3Ek__BackingField_9() const { return ___U3COrderU3Ek__BackingField_9; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3COrderU3Ek__BackingField_9() { return &___U3COrderU3Ek__BackingField_9; }
inline void set_U3COrderU3Ek__BackingField_9(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3COrderU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CUnderlyingNameU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CUnderlyingNameU3Ek__BackingField_10)); }
inline String_t* get_U3CUnderlyingNameU3Ek__BackingField_10() const { return ___U3CUnderlyingNameU3Ek__BackingField_10; }
inline String_t** get_address_of_U3CUnderlyingNameU3Ek__BackingField_10() { return &___U3CUnderlyingNameU3Ek__BackingField_10; }
inline void set_U3CUnderlyingNameU3Ek__BackingField_10(String_t* value)
{
___U3CUnderlyingNameU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CUnderlyingNameU3Ek__BackingField_10), (void*)value);
}
inline static int32_t get_offset_of_U3CValueProviderU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CValueProviderU3Ek__BackingField_11)); }
inline RuntimeObject* get_U3CValueProviderU3Ek__BackingField_11() const { return ___U3CValueProviderU3Ek__BackingField_11; }
inline RuntimeObject** get_address_of_U3CValueProviderU3Ek__BackingField_11() { return &___U3CValueProviderU3Ek__BackingField_11; }
inline void set_U3CValueProviderU3Ek__BackingField_11(RuntimeObject* value)
{
___U3CValueProviderU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CValueProviderU3Ek__BackingField_11), (void*)value);
}
inline static int32_t get_offset_of_U3CAttributeProviderU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CAttributeProviderU3Ek__BackingField_12)); }
inline RuntimeObject* get_U3CAttributeProviderU3Ek__BackingField_12() const { return ___U3CAttributeProviderU3Ek__BackingField_12; }
inline RuntimeObject** get_address_of_U3CAttributeProviderU3Ek__BackingField_12() { return &___U3CAttributeProviderU3Ek__BackingField_12; }
inline void set_U3CAttributeProviderU3Ek__BackingField_12(RuntimeObject* value)
{
___U3CAttributeProviderU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAttributeProviderU3Ek__BackingField_12), (void*)value);
}
inline static int32_t get_offset_of_U3CConverterU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CConverterU3Ek__BackingField_13)); }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * get_U3CConverterU3Ek__BackingField_13() const { return ___U3CConverterU3Ek__BackingField_13; }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** get_address_of_U3CConverterU3Ek__BackingField_13() { return &___U3CConverterU3Ek__BackingField_13; }
inline void set_U3CConverterU3Ek__BackingField_13(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
___U3CConverterU3Ek__BackingField_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CConverterU3Ek__BackingField_13), (void*)value);
}
inline static int32_t get_offset_of_U3CMemberConverterU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CMemberConverterU3Ek__BackingField_14)); }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * get_U3CMemberConverterU3Ek__BackingField_14() const { return ___U3CMemberConverterU3Ek__BackingField_14; }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** get_address_of_U3CMemberConverterU3Ek__BackingField_14() { return &___U3CMemberConverterU3Ek__BackingField_14; }
inline void set_U3CMemberConverterU3Ek__BackingField_14(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
___U3CMemberConverterU3Ek__BackingField_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMemberConverterU3Ek__BackingField_14), (void*)value);
}
inline static int32_t get_offset_of_U3CIgnoredU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CIgnoredU3Ek__BackingField_15)); }
inline bool get_U3CIgnoredU3Ek__BackingField_15() const { return ___U3CIgnoredU3Ek__BackingField_15; }
inline bool* get_address_of_U3CIgnoredU3Ek__BackingField_15() { return &___U3CIgnoredU3Ek__BackingField_15; }
inline void set_U3CIgnoredU3Ek__BackingField_15(bool value)
{
___U3CIgnoredU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CReadableU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CReadableU3Ek__BackingField_16)); }
inline bool get_U3CReadableU3Ek__BackingField_16() const { return ___U3CReadableU3Ek__BackingField_16; }
inline bool* get_address_of_U3CReadableU3Ek__BackingField_16() { return &___U3CReadableU3Ek__BackingField_16; }
inline void set_U3CReadableU3Ek__BackingField_16(bool value)
{
___U3CReadableU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CWritableU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CWritableU3Ek__BackingField_17)); }
inline bool get_U3CWritableU3Ek__BackingField_17() const { return ___U3CWritableU3Ek__BackingField_17; }
inline bool* get_address_of_U3CWritableU3Ek__BackingField_17() { return &___U3CWritableU3Ek__BackingField_17; }
inline void set_U3CWritableU3Ek__BackingField_17(bool value)
{
___U3CWritableU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CHasMemberAttributeU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CHasMemberAttributeU3Ek__BackingField_18)); }
inline bool get_U3CHasMemberAttributeU3Ek__BackingField_18() const { return ___U3CHasMemberAttributeU3Ek__BackingField_18; }
inline bool* get_address_of_U3CHasMemberAttributeU3Ek__BackingField_18() { return &___U3CHasMemberAttributeU3Ek__BackingField_18; }
inline void set_U3CHasMemberAttributeU3Ek__BackingField_18(bool value)
{
___U3CHasMemberAttributeU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CIsReferenceU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CIsReferenceU3Ek__BackingField_19)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CIsReferenceU3Ek__BackingField_19() const { return ___U3CIsReferenceU3Ek__BackingField_19; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CIsReferenceU3Ek__BackingField_19() { return &___U3CIsReferenceU3Ek__BackingField_19; }
inline void set_U3CIsReferenceU3Ek__BackingField_19(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CIsReferenceU3Ek__BackingField_19 = value;
}
inline static int32_t get_offset_of_U3CNullValueHandlingU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CNullValueHandlingU3Ek__BackingField_20)); }
inline Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 get_U3CNullValueHandlingU3Ek__BackingField_20() const { return ___U3CNullValueHandlingU3Ek__BackingField_20; }
inline Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 * get_address_of_U3CNullValueHandlingU3Ek__BackingField_20() { return &___U3CNullValueHandlingU3Ek__BackingField_20; }
inline void set_U3CNullValueHandlingU3Ek__BackingField_20(Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 value)
{
___U3CNullValueHandlingU3Ek__BackingField_20 = value;
}
inline static int32_t get_offset_of_U3CDefaultValueHandlingU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CDefaultValueHandlingU3Ek__BackingField_21)); }
inline Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 get_U3CDefaultValueHandlingU3Ek__BackingField_21() const { return ___U3CDefaultValueHandlingU3Ek__BackingField_21; }
inline Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 * get_address_of_U3CDefaultValueHandlingU3Ek__BackingField_21() { return &___U3CDefaultValueHandlingU3Ek__BackingField_21; }
inline void set_U3CDefaultValueHandlingU3Ek__BackingField_21(Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 value)
{
___U3CDefaultValueHandlingU3Ek__BackingField_21 = value;
}
inline static int32_t get_offset_of_U3CReferenceLoopHandlingU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CReferenceLoopHandlingU3Ek__BackingField_22)); }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB get_U3CReferenceLoopHandlingU3Ek__BackingField_22() const { return ___U3CReferenceLoopHandlingU3Ek__BackingField_22; }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB * get_address_of_U3CReferenceLoopHandlingU3Ek__BackingField_22() { return &___U3CReferenceLoopHandlingU3Ek__BackingField_22; }
inline void set_U3CReferenceLoopHandlingU3Ek__BackingField_22(Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB value)
{
___U3CReferenceLoopHandlingU3Ek__BackingField_22 = value;
}
inline static int32_t get_offset_of_U3CObjectCreationHandlingU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CObjectCreationHandlingU3Ek__BackingField_23)); }
inline Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 get_U3CObjectCreationHandlingU3Ek__BackingField_23() const { return ___U3CObjectCreationHandlingU3Ek__BackingField_23; }
inline Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 * get_address_of_U3CObjectCreationHandlingU3Ek__BackingField_23() { return &___U3CObjectCreationHandlingU3Ek__BackingField_23; }
inline void set_U3CObjectCreationHandlingU3Ek__BackingField_23(Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 value)
{
___U3CObjectCreationHandlingU3Ek__BackingField_23 = value;
}
inline static int32_t get_offset_of_U3CTypeNameHandlingU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CTypeNameHandlingU3Ek__BackingField_24)); }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 get_U3CTypeNameHandlingU3Ek__BackingField_24() const { return ___U3CTypeNameHandlingU3Ek__BackingField_24; }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * get_address_of_U3CTypeNameHandlingU3Ek__BackingField_24() { return &___U3CTypeNameHandlingU3Ek__BackingField_24; }
inline void set_U3CTypeNameHandlingU3Ek__BackingField_24(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 value)
{
___U3CTypeNameHandlingU3Ek__BackingField_24 = value;
}
inline static int32_t get_offset_of_U3CShouldSerializeU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CShouldSerializeU3Ek__BackingField_25)); }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * get_U3CShouldSerializeU3Ek__BackingField_25() const { return ___U3CShouldSerializeU3Ek__BackingField_25; }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB ** get_address_of_U3CShouldSerializeU3Ek__BackingField_25() { return &___U3CShouldSerializeU3Ek__BackingField_25; }
inline void set_U3CShouldSerializeU3Ek__BackingField_25(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * value)
{
___U3CShouldSerializeU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CShouldSerializeU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_U3CShouldDeserializeU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CShouldDeserializeU3Ek__BackingField_26)); }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * get_U3CShouldDeserializeU3Ek__BackingField_26() const { return ___U3CShouldDeserializeU3Ek__BackingField_26; }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB ** get_address_of_U3CShouldDeserializeU3Ek__BackingField_26() { return &___U3CShouldDeserializeU3Ek__BackingField_26; }
inline void set_U3CShouldDeserializeU3Ek__BackingField_26(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * value)
{
___U3CShouldDeserializeU3Ek__BackingField_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CShouldDeserializeU3Ek__BackingField_26), (void*)value);
}
inline static int32_t get_offset_of_U3CGetIsSpecifiedU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CGetIsSpecifiedU3Ek__BackingField_27)); }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * get_U3CGetIsSpecifiedU3Ek__BackingField_27() const { return ___U3CGetIsSpecifiedU3Ek__BackingField_27; }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB ** get_address_of_U3CGetIsSpecifiedU3Ek__BackingField_27() { return &___U3CGetIsSpecifiedU3Ek__BackingField_27; }
inline void set_U3CGetIsSpecifiedU3Ek__BackingField_27(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * value)
{
___U3CGetIsSpecifiedU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CGetIsSpecifiedU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CSetIsSpecifiedU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CSetIsSpecifiedU3Ek__BackingField_28)); }
inline Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * get_U3CSetIsSpecifiedU3Ek__BackingField_28() const { return ___U3CSetIsSpecifiedU3Ek__BackingField_28; }
inline Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D ** get_address_of_U3CSetIsSpecifiedU3Ek__BackingField_28() { return &___U3CSetIsSpecifiedU3Ek__BackingField_28; }
inline void set_U3CSetIsSpecifiedU3Ek__BackingField_28(Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * value)
{
___U3CSetIsSpecifiedU3Ek__BackingField_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CSetIsSpecifiedU3Ek__BackingField_28), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CItemConverterU3Ek__BackingField_29)); }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * get_U3CItemConverterU3Ek__BackingField_29() const { return ___U3CItemConverterU3Ek__BackingField_29; }
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** get_address_of_U3CItemConverterU3Ek__BackingField_29() { return &___U3CItemConverterU3Ek__BackingField_29; }
inline void set_U3CItemConverterU3Ek__BackingField_29(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
___U3CItemConverterU3Ek__BackingField_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterU3Ek__BackingField_29), (void*)value);
}
inline static int32_t get_offset_of_U3CItemIsReferenceU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CItemIsReferenceU3Ek__BackingField_30)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CItemIsReferenceU3Ek__BackingField_30() const { return ___U3CItemIsReferenceU3Ek__BackingField_30; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CItemIsReferenceU3Ek__BackingField_30() { return &___U3CItemIsReferenceU3Ek__BackingField_30; }
inline void set_U3CItemIsReferenceU3Ek__BackingField_30(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CItemIsReferenceU3Ek__BackingField_30 = value;
}
inline static int32_t get_offset_of_U3CItemTypeNameHandlingU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CItemTypeNameHandlingU3Ek__BackingField_31)); }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 get_U3CItemTypeNameHandlingU3Ek__BackingField_31() const { return ___U3CItemTypeNameHandlingU3Ek__BackingField_31; }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * get_address_of_U3CItemTypeNameHandlingU3Ek__BackingField_31() { return &___U3CItemTypeNameHandlingU3Ek__BackingField_31; }
inline void set_U3CItemTypeNameHandlingU3Ek__BackingField_31(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 value)
{
___U3CItemTypeNameHandlingU3Ek__BackingField_31 = value;
}
inline static int32_t get_offset_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_32() { return static_cast<int32_t>(offsetof(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574, ___U3CItemReferenceLoopHandlingU3Ek__BackingField_32)); }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB get_U3CItemReferenceLoopHandlingU3Ek__BackingField_32() const { return ___U3CItemReferenceLoopHandlingU3Ek__BackingField_32; }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB * get_address_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_32() { return &___U3CItemReferenceLoopHandlingU3Ek__BackingField_32; }
inline void set_U3CItemReferenceLoopHandlingU3Ek__BackingField_32(Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB value)
{
___U3CItemReferenceLoopHandlingU3Ek__BackingField_32 = value;
}
};
// Vuforia.Newtonsoft.Json.JsonReader
struct JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::_tokenType
int32_t ____tokenType_0;
// System.Object Vuforia.Newtonsoft.Json.JsonReader::_value
RuntimeObject * ____value_1;
// System.Char Vuforia.Newtonsoft.Json.JsonReader::_quoteChar
Il2CppChar ____quoteChar_2;
// Vuforia.Newtonsoft.Json.JsonReader/State Vuforia.Newtonsoft.Json.JsonReader::_currentState
int32_t ____currentState_3;
// Vuforia.Newtonsoft.Json.JsonPosition Vuforia.Newtonsoft.Json.JsonReader::_currentPosition
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD ____currentPosition_4;
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonReader::_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____culture_5;
// Vuforia.Newtonsoft.Json.DateTimeZoneHandling Vuforia.Newtonsoft.Json.JsonReader::_dateTimeZoneHandling
int32_t ____dateTimeZoneHandling_6;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.JsonReader::_maxDepth
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ____maxDepth_7;
// System.Boolean Vuforia.Newtonsoft.Json.JsonReader::_hasExceededMaxDepth
bool ____hasExceededMaxDepth_8;
// Vuforia.Newtonsoft.Json.DateParseHandling Vuforia.Newtonsoft.Json.JsonReader::_dateParseHandling
int32_t ____dateParseHandling_9;
// Vuforia.Newtonsoft.Json.FloatParseHandling Vuforia.Newtonsoft.Json.JsonReader::_floatParseHandling
int32_t ____floatParseHandling_10;
// System.String Vuforia.Newtonsoft.Json.JsonReader::_dateFormatString
String_t* ____dateFormatString_11;
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.JsonPosition> Vuforia.Newtonsoft.Json.JsonReader::_stack
List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 * ____stack_12;
// System.Boolean Vuforia.Newtonsoft.Json.JsonReader::<CloseInput>k__BackingField
bool ___U3CCloseInputU3Ek__BackingField_13;
// System.Boolean Vuforia.Newtonsoft.Json.JsonReader::<SupportMultipleContent>k__BackingField
bool ___U3CSupportMultipleContentU3Ek__BackingField_14;
public:
inline static int32_t get_offset_of__tokenType_0() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____tokenType_0)); }
inline int32_t get__tokenType_0() const { return ____tokenType_0; }
inline int32_t* get_address_of__tokenType_0() { return &____tokenType_0; }
inline void set__tokenType_0(int32_t value)
{
____tokenType_0 = value;
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
inline static int32_t get_offset_of__quoteChar_2() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____quoteChar_2)); }
inline Il2CppChar get__quoteChar_2() const { return ____quoteChar_2; }
inline Il2CppChar* get_address_of__quoteChar_2() { return &____quoteChar_2; }
inline void set__quoteChar_2(Il2CppChar value)
{
____quoteChar_2 = value;
}
inline static int32_t get_offset_of__currentState_3() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____currentState_3)); }
inline int32_t get__currentState_3() const { return ____currentState_3; }
inline int32_t* get_address_of__currentState_3() { return &____currentState_3; }
inline void set__currentState_3(int32_t value)
{
____currentState_3 = value;
}
inline static int32_t get_offset_of__currentPosition_4() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____currentPosition_4)); }
inline JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD get__currentPosition_4() const { return ____currentPosition_4; }
inline JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD * get_address_of__currentPosition_4() { return &____currentPosition_4; }
inline void set__currentPosition_4(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD value)
{
____currentPosition_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____currentPosition_4))->___PropertyName_3), (void*)NULL);
}
inline static int32_t get_offset_of__culture_5() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____culture_5)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__culture_5() const { return ____culture_5; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__culture_5() { return &____culture_5; }
inline void set__culture_5(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
____culture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____culture_5), (void*)value);
}
inline static int32_t get_offset_of__dateTimeZoneHandling_6() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____dateTimeZoneHandling_6)); }
inline int32_t get__dateTimeZoneHandling_6() const { return ____dateTimeZoneHandling_6; }
inline int32_t* get_address_of__dateTimeZoneHandling_6() { return &____dateTimeZoneHandling_6; }
inline void set__dateTimeZoneHandling_6(int32_t value)
{
____dateTimeZoneHandling_6 = value;
}
inline static int32_t get_offset_of__maxDepth_7() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____maxDepth_7)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get__maxDepth_7() const { return ____maxDepth_7; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of__maxDepth_7() { return &____maxDepth_7; }
inline void set__maxDepth_7(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
____maxDepth_7 = value;
}
inline static int32_t get_offset_of__hasExceededMaxDepth_8() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____hasExceededMaxDepth_8)); }
inline bool get__hasExceededMaxDepth_8() const { return ____hasExceededMaxDepth_8; }
inline bool* get_address_of__hasExceededMaxDepth_8() { return &____hasExceededMaxDepth_8; }
inline void set__hasExceededMaxDepth_8(bool value)
{
____hasExceededMaxDepth_8 = value;
}
inline static int32_t get_offset_of__dateParseHandling_9() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____dateParseHandling_9)); }
inline int32_t get__dateParseHandling_9() const { return ____dateParseHandling_9; }
inline int32_t* get_address_of__dateParseHandling_9() { return &____dateParseHandling_9; }
inline void set__dateParseHandling_9(int32_t value)
{
____dateParseHandling_9 = value;
}
inline static int32_t get_offset_of__floatParseHandling_10() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____floatParseHandling_10)); }
inline int32_t get__floatParseHandling_10() const { return ____floatParseHandling_10; }
inline int32_t* get_address_of__floatParseHandling_10() { return &____floatParseHandling_10; }
inline void set__floatParseHandling_10(int32_t value)
{
____floatParseHandling_10 = value;
}
inline static int32_t get_offset_of__dateFormatString_11() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____dateFormatString_11)); }
inline String_t* get__dateFormatString_11() const { return ____dateFormatString_11; }
inline String_t** get_address_of__dateFormatString_11() { return &____dateFormatString_11; }
inline void set__dateFormatString_11(String_t* value)
{
____dateFormatString_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dateFormatString_11), (void*)value);
}
inline static int32_t get_offset_of__stack_12() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ____stack_12)); }
inline List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 * get__stack_12() const { return ____stack_12; }
inline List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 ** get_address_of__stack_12() { return &____stack_12; }
inline void set__stack_12(List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 * value)
{
____stack_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stack_12), (void*)value);
}
inline static int32_t get_offset_of_U3CCloseInputU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ___U3CCloseInputU3Ek__BackingField_13)); }
inline bool get_U3CCloseInputU3Ek__BackingField_13() const { return ___U3CCloseInputU3Ek__BackingField_13; }
inline bool* get_address_of_U3CCloseInputU3Ek__BackingField_13() { return &___U3CCloseInputU3Ek__BackingField_13; }
inline void set_U3CCloseInputU3Ek__BackingField_13(bool value)
{
___U3CCloseInputU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CSupportMultipleContentU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96, ___U3CSupportMultipleContentU3Ek__BackingField_14)); }
inline bool get_U3CSupportMultipleContentU3Ek__BackingField_14() const { return ___U3CSupportMultipleContentU3Ek__BackingField_14; }
inline bool* get_address_of_U3CSupportMultipleContentU3Ek__BackingField_14() { return &___U3CSupportMultipleContentU3Ek__BackingField_14; }
inline void set_U3CSupportMultipleContentU3Ek__BackingField_14(bool value)
{
___U3CSupportMultipleContentU3Ek__BackingField_14 = value;
}
};
// Vuforia.Newtonsoft.Json.JsonReaderException
struct JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 : public JsonException_tA0851478052E710490C73E995BE27E80545D03F2
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.JsonReaderException::<LineNumber>k__BackingField
int32_t ___U3CLineNumberU3Ek__BackingField_17;
// System.Int32 Vuforia.Newtonsoft.Json.JsonReaderException::<LinePosition>k__BackingField
int32_t ___U3CLinePositionU3Ek__BackingField_18;
// System.String Vuforia.Newtonsoft.Json.JsonReaderException::<Path>k__BackingField
String_t* ___U3CPathU3Ek__BackingField_19;
public:
inline static int32_t get_offset_of_U3CLineNumberU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388, ___U3CLineNumberU3Ek__BackingField_17)); }
inline int32_t get_U3CLineNumberU3Ek__BackingField_17() const { return ___U3CLineNumberU3Ek__BackingField_17; }
inline int32_t* get_address_of_U3CLineNumberU3Ek__BackingField_17() { return &___U3CLineNumberU3Ek__BackingField_17; }
inline void set_U3CLineNumberU3Ek__BackingField_17(int32_t value)
{
___U3CLineNumberU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CLinePositionU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388, ___U3CLinePositionU3Ek__BackingField_18)); }
inline int32_t get_U3CLinePositionU3Ek__BackingField_18() const { return ___U3CLinePositionU3Ek__BackingField_18; }
inline int32_t* get_address_of_U3CLinePositionU3Ek__BackingField_18() { return &___U3CLinePositionU3Ek__BackingField_18; }
inline void set_U3CLinePositionU3Ek__BackingField_18(int32_t value)
{
___U3CLinePositionU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CPathU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388, ___U3CPathU3Ek__BackingField_19)); }
inline String_t* get_U3CPathU3Ek__BackingField_19() const { return ___U3CPathU3Ek__BackingField_19; }
inline String_t** get_address_of_U3CPathU3Ek__BackingField_19() { return &___U3CPathU3Ek__BackingField_19; }
inline void set_U3CPathU3Ek__BackingField_19(String_t* value)
{
___U3CPathU3Ek__BackingField_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPathU3Ek__BackingField_19), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchema
struct JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 : public RuntimeObject
{
public:
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Id>k__BackingField
String_t* ___U3CIdU3Ek__BackingField_0;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Title>k__BackingField
String_t* ___U3CTitleU3Ek__BackingField_1;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Required>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CRequiredU3Ek__BackingField_2;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<ReadOnly>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CReadOnlyU3Ek__BackingField_3;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Hidden>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CHiddenU3Ek__BackingField_4;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Transient>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CTransientU3Ek__BackingField_5;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Description>k__BackingField
String_t* ___U3CDescriptionU3Ek__BackingField_6;
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Type>k__BackingField
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___U3CTypeU3Ek__BackingField_7;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Pattern>k__BackingField
String_t* ___U3CPatternU3Ek__BackingField_8;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<MinimumLength>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMinimumLengthU3Ek__BackingField_9;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<MaximumLength>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMaximumLengthU3Ek__BackingField_10;
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<DivisibleBy>k__BackingField
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___U3CDivisibleByU3Ek__BackingField_11;
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Minimum>k__BackingField
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___U3CMinimumU3Ek__BackingField_12;
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Maximum>k__BackingField
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___U3CMaximumU3Ek__BackingField_13;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<ExclusiveMinimum>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CExclusiveMinimumU3Ek__BackingField_14;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<ExclusiveMaximum>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CExclusiveMaximumU3Ek__BackingField_15;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<MinimumItems>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMinimumItemsU3Ek__BackingField_16;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<MaximumItems>k__BackingField
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___U3CMaximumItemsU3Ek__BackingField_17;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Items>k__BackingField
RuntimeObject* ___U3CItemsU3Ek__BackingField_18;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::<PositionalItemsValidation>k__BackingField
bool ___U3CPositionalItemsValidationU3Ek__BackingField_19;
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::<AdditionalItems>k__BackingField
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___U3CAdditionalItemsU3Ek__BackingField_20;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::<AllowAdditionalItems>k__BackingField
bool ___U3CAllowAdditionalItemsU3Ek__BackingField_21;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::<UniqueItems>k__BackingField
bool ___U3CUniqueItemsU3Ek__BackingField_22;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Properties>k__BackingField
RuntimeObject* ___U3CPropertiesU3Ek__BackingField_23;
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::<AdditionalProperties>k__BackingField
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___U3CAdditionalPropertiesU3Ek__BackingField_24;
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<PatternProperties>k__BackingField
RuntimeObject* ___U3CPatternPropertiesU3Ek__BackingField_25;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::<AllowAdditionalProperties>k__BackingField
bool ___U3CAllowAdditionalPropertiesU3Ek__BackingField_26;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Requires>k__BackingField
String_t* ___U3CRequiresU3Ek__BackingField_27;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Enum>k__BackingField
RuntimeObject* ___U3CEnumU3Ek__BackingField_28;
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Disallow>k__BackingField
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___U3CDisallowU3Ek__BackingField_29;
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Default>k__BackingField
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___U3CDefaultU3Ek__BackingField_30;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Extends>k__BackingField
RuntimeObject* ___U3CExtendsU3Ek__BackingField_31;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Format>k__BackingField
String_t* ___U3CFormatU3Ek__BackingField_32;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<Location>k__BackingField
String_t* ___U3CLocationU3Ek__BackingField_33;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::_internalId
String_t* ____internalId_34;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::<DeferredReference>k__BackingField
String_t* ___U3CDeferredReferenceU3Ek__BackingField_35;
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::<ReferencesResolved>k__BackingField
bool ___U3CReferencesResolvedU3Ek__BackingField_36;
public:
inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CIdU3Ek__BackingField_0)); }
inline String_t* get_U3CIdU3Ek__BackingField_0() const { return ___U3CIdU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CIdU3Ek__BackingField_0() { return &___U3CIdU3Ek__BackingField_0; }
inline void set_U3CIdU3Ek__BackingField_0(String_t* value)
{
___U3CIdU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CIdU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CTitleU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CTitleU3Ek__BackingField_1)); }
inline String_t* get_U3CTitleU3Ek__BackingField_1() const { return ___U3CTitleU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CTitleU3Ek__BackingField_1() { return &___U3CTitleU3Ek__BackingField_1; }
inline void set_U3CTitleU3Ek__BackingField_1(String_t* value)
{
___U3CTitleU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTitleU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CRequiredU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CRequiredU3Ek__BackingField_2)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CRequiredU3Ek__BackingField_2() const { return ___U3CRequiredU3Ek__BackingField_2; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CRequiredU3Ek__BackingField_2() { return &___U3CRequiredU3Ek__BackingField_2; }
inline void set_U3CRequiredU3Ek__BackingField_2(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CRequiredU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CReadOnlyU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CReadOnlyU3Ek__BackingField_3)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CReadOnlyU3Ek__BackingField_3() const { return ___U3CReadOnlyU3Ek__BackingField_3; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CReadOnlyU3Ek__BackingField_3() { return &___U3CReadOnlyU3Ek__BackingField_3; }
inline void set_U3CReadOnlyU3Ek__BackingField_3(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CReadOnlyU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CHiddenU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CHiddenU3Ek__BackingField_4)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CHiddenU3Ek__BackingField_4() const { return ___U3CHiddenU3Ek__BackingField_4; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CHiddenU3Ek__BackingField_4() { return &___U3CHiddenU3Ek__BackingField_4; }
inline void set_U3CHiddenU3Ek__BackingField_4(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CHiddenU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CTransientU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CTransientU3Ek__BackingField_5)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CTransientU3Ek__BackingField_5() const { return ___U3CTransientU3Ek__BackingField_5; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CTransientU3Ek__BackingField_5() { return &___U3CTransientU3Ek__BackingField_5; }
inline void set_U3CTransientU3Ek__BackingField_5(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CTransientU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CDescriptionU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CDescriptionU3Ek__BackingField_6)); }
inline String_t* get_U3CDescriptionU3Ek__BackingField_6() const { return ___U3CDescriptionU3Ek__BackingField_6; }
inline String_t** get_address_of_U3CDescriptionU3Ek__BackingField_6() { return &___U3CDescriptionU3Ek__BackingField_6; }
inline void set_U3CDescriptionU3Ek__BackingField_6(String_t* value)
{
___U3CDescriptionU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDescriptionU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CTypeU3Ek__BackingField_7)); }
inline Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C get_U3CTypeU3Ek__BackingField_7() const { return ___U3CTypeU3Ek__BackingField_7; }
inline Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C * get_address_of_U3CTypeU3Ek__BackingField_7() { return &___U3CTypeU3Ek__BackingField_7; }
inline void set_U3CTypeU3Ek__BackingField_7(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C value)
{
___U3CTypeU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CPatternU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CPatternU3Ek__BackingField_8)); }
inline String_t* get_U3CPatternU3Ek__BackingField_8() const { return ___U3CPatternU3Ek__BackingField_8; }
inline String_t** get_address_of_U3CPatternU3Ek__BackingField_8() { return &___U3CPatternU3Ek__BackingField_8; }
inline void set_U3CPatternU3Ek__BackingField_8(String_t* value)
{
___U3CPatternU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPatternU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_U3CMinimumLengthU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CMinimumLengthU3Ek__BackingField_9)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMinimumLengthU3Ek__BackingField_9() const { return ___U3CMinimumLengthU3Ek__BackingField_9; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMinimumLengthU3Ek__BackingField_9() { return &___U3CMinimumLengthU3Ek__BackingField_9; }
inline void set_U3CMinimumLengthU3Ek__BackingField_9(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMinimumLengthU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CMaximumLengthU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CMaximumLengthU3Ek__BackingField_10)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMaximumLengthU3Ek__BackingField_10() const { return ___U3CMaximumLengthU3Ek__BackingField_10; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMaximumLengthU3Ek__BackingField_10() { return &___U3CMaximumLengthU3Ek__BackingField_10; }
inline void set_U3CMaximumLengthU3Ek__BackingField_10(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMaximumLengthU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CDivisibleByU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CDivisibleByU3Ek__BackingField_11)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_U3CDivisibleByU3Ek__BackingField_11() const { return ___U3CDivisibleByU3Ek__BackingField_11; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_U3CDivisibleByU3Ek__BackingField_11() { return &___U3CDivisibleByU3Ek__BackingField_11; }
inline void set_U3CDivisibleByU3Ek__BackingField_11(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___U3CDivisibleByU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CMinimumU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CMinimumU3Ek__BackingField_12)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_U3CMinimumU3Ek__BackingField_12() const { return ___U3CMinimumU3Ek__BackingField_12; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_U3CMinimumU3Ek__BackingField_12() { return &___U3CMinimumU3Ek__BackingField_12; }
inline void set_U3CMinimumU3Ek__BackingField_12(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___U3CMinimumU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CMaximumU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CMaximumU3Ek__BackingField_13)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_U3CMaximumU3Ek__BackingField_13() const { return ___U3CMaximumU3Ek__BackingField_13; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_U3CMaximumU3Ek__BackingField_13() { return &___U3CMaximumU3Ek__BackingField_13; }
inline void set_U3CMaximumU3Ek__BackingField_13(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___U3CMaximumU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CExclusiveMinimumU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CExclusiveMinimumU3Ek__BackingField_14)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CExclusiveMinimumU3Ek__BackingField_14() const { return ___U3CExclusiveMinimumU3Ek__BackingField_14; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CExclusiveMinimumU3Ek__BackingField_14() { return &___U3CExclusiveMinimumU3Ek__BackingField_14; }
inline void set_U3CExclusiveMinimumU3Ek__BackingField_14(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CExclusiveMinimumU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CExclusiveMaximumU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CExclusiveMaximumU3Ek__BackingField_15)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CExclusiveMaximumU3Ek__BackingField_15() const { return ___U3CExclusiveMaximumU3Ek__BackingField_15; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CExclusiveMaximumU3Ek__BackingField_15() { return &___U3CExclusiveMaximumU3Ek__BackingField_15; }
inline void set_U3CExclusiveMaximumU3Ek__BackingField_15(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CExclusiveMaximumU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CMinimumItemsU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CMinimumItemsU3Ek__BackingField_16)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMinimumItemsU3Ek__BackingField_16() const { return ___U3CMinimumItemsU3Ek__BackingField_16; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMinimumItemsU3Ek__BackingField_16() { return &___U3CMinimumItemsU3Ek__BackingField_16; }
inline void set_U3CMinimumItemsU3Ek__BackingField_16(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMinimumItemsU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CMaximumItemsU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CMaximumItemsU3Ek__BackingField_17)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_U3CMaximumItemsU3Ek__BackingField_17() const { return ___U3CMaximumItemsU3Ek__BackingField_17; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_U3CMaximumItemsU3Ek__BackingField_17() { return &___U3CMaximumItemsU3Ek__BackingField_17; }
inline void set_U3CMaximumItemsU3Ek__BackingField_17(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___U3CMaximumItemsU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CItemsU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CItemsU3Ek__BackingField_18)); }
inline RuntimeObject* get_U3CItemsU3Ek__BackingField_18() const { return ___U3CItemsU3Ek__BackingField_18; }
inline RuntimeObject** get_address_of_U3CItemsU3Ek__BackingField_18() { return &___U3CItemsU3Ek__BackingField_18; }
inline void set_U3CItemsU3Ek__BackingField_18(RuntimeObject* value)
{
___U3CItemsU3Ek__BackingField_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemsU3Ek__BackingField_18), (void*)value);
}
inline static int32_t get_offset_of_U3CPositionalItemsValidationU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CPositionalItemsValidationU3Ek__BackingField_19)); }
inline bool get_U3CPositionalItemsValidationU3Ek__BackingField_19() const { return ___U3CPositionalItemsValidationU3Ek__BackingField_19; }
inline bool* get_address_of_U3CPositionalItemsValidationU3Ek__BackingField_19() { return &___U3CPositionalItemsValidationU3Ek__BackingField_19; }
inline void set_U3CPositionalItemsValidationU3Ek__BackingField_19(bool value)
{
___U3CPositionalItemsValidationU3Ek__BackingField_19 = value;
}
inline static int32_t get_offset_of_U3CAdditionalItemsU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CAdditionalItemsU3Ek__BackingField_20)); }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * get_U3CAdditionalItemsU3Ek__BackingField_20() const { return ___U3CAdditionalItemsU3Ek__BackingField_20; }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** get_address_of_U3CAdditionalItemsU3Ek__BackingField_20() { return &___U3CAdditionalItemsU3Ek__BackingField_20; }
inline void set_U3CAdditionalItemsU3Ek__BackingField_20(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
___U3CAdditionalItemsU3Ek__BackingField_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAdditionalItemsU3Ek__BackingField_20), (void*)value);
}
inline static int32_t get_offset_of_U3CAllowAdditionalItemsU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CAllowAdditionalItemsU3Ek__BackingField_21)); }
inline bool get_U3CAllowAdditionalItemsU3Ek__BackingField_21() const { return ___U3CAllowAdditionalItemsU3Ek__BackingField_21; }
inline bool* get_address_of_U3CAllowAdditionalItemsU3Ek__BackingField_21() { return &___U3CAllowAdditionalItemsU3Ek__BackingField_21; }
inline void set_U3CAllowAdditionalItemsU3Ek__BackingField_21(bool value)
{
___U3CAllowAdditionalItemsU3Ek__BackingField_21 = value;
}
inline static int32_t get_offset_of_U3CUniqueItemsU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CUniqueItemsU3Ek__BackingField_22)); }
inline bool get_U3CUniqueItemsU3Ek__BackingField_22() const { return ___U3CUniqueItemsU3Ek__BackingField_22; }
inline bool* get_address_of_U3CUniqueItemsU3Ek__BackingField_22() { return &___U3CUniqueItemsU3Ek__BackingField_22; }
inline void set_U3CUniqueItemsU3Ek__BackingField_22(bool value)
{
___U3CUniqueItemsU3Ek__BackingField_22 = value;
}
inline static int32_t get_offset_of_U3CPropertiesU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CPropertiesU3Ek__BackingField_23)); }
inline RuntimeObject* get_U3CPropertiesU3Ek__BackingField_23() const { return ___U3CPropertiesU3Ek__BackingField_23; }
inline RuntimeObject** get_address_of_U3CPropertiesU3Ek__BackingField_23() { return &___U3CPropertiesU3Ek__BackingField_23; }
inline void set_U3CPropertiesU3Ek__BackingField_23(RuntimeObject* value)
{
___U3CPropertiesU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertiesU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CAdditionalPropertiesU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CAdditionalPropertiesU3Ek__BackingField_24)); }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * get_U3CAdditionalPropertiesU3Ek__BackingField_24() const { return ___U3CAdditionalPropertiesU3Ek__BackingField_24; }
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** get_address_of_U3CAdditionalPropertiesU3Ek__BackingField_24() { return &___U3CAdditionalPropertiesU3Ek__BackingField_24; }
inline void set_U3CAdditionalPropertiesU3Ek__BackingField_24(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
___U3CAdditionalPropertiesU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAdditionalPropertiesU3Ek__BackingField_24), (void*)value);
}
inline static int32_t get_offset_of_U3CPatternPropertiesU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CPatternPropertiesU3Ek__BackingField_25)); }
inline RuntimeObject* get_U3CPatternPropertiesU3Ek__BackingField_25() const { return ___U3CPatternPropertiesU3Ek__BackingField_25; }
inline RuntimeObject** get_address_of_U3CPatternPropertiesU3Ek__BackingField_25() { return &___U3CPatternPropertiesU3Ek__BackingField_25; }
inline void set_U3CPatternPropertiesU3Ek__BackingField_25(RuntimeObject* value)
{
___U3CPatternPropertiesU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPatternPropertiesU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_U3CAllowAdditionalPropertiesU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CAllowAdditionalPropertiesU3Ek__BackingField_26)); }
inline bool get_U3CAllowAdditionalPropertiesU3Ek__BackingField_26() const { return ___U3CAllowAdditionalPropertiesU3Ek__BackingField_26; }
inline bool* get_address_of_U3CAllowAdditionalPropertiesU3Ek__BackingField_26() { return &___U3CAllowAdditionalPropertiesU3Ek__BackingField_26; }
inline void set_U3CAllowAdditionalPropertiesU3Ek__BackingField_26(bool value)
{
___U3CAllowAdditionalPropertiesU3Ek__BackingField_26 = value;
}
inline static int32_t get_offset_of_U3CRequiresU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CRequiresU3Ek__BackingField_27)); }
inline String_t* get_U3CRequiresU3Ek__BackingField_27() const { return ___U3CRequiresU3Ek__BackingField_27; }
inline String_t** get_address_of_U3CRequiresU3Ek__BackingField_27() { return &___U3CRequiresU3Ek__BackingField_27; }
inline void set_U3CRequiresU3Ek__BackingField_27(String_t* value)
{
___U3CRequiresU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRequiresU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CEnumU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CEnumU3Ek__BackingField_28)); }
inline RuntimeObject* get_U3CEnumU3Ek__BackingField_28() const { return ___U3CEnumU3Ek__BackingField_28; }
inline RuntimeObject** get_address_of_U3CEnumU3Ek__BackingField_28() { return &___U3CEnumU3Ek__BackingField_28; }
inline void set_U3CEnumU3Ek__BackingField_28(RuntimeObject* value)
{
___U3CEnumU3Ek__BackingField_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CEnumU3Ek__BackingField_28), (void*)value);
}
inline static int32_t get_offset_of_U3CDisallowU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CDisallowU3Ek__BackingField_29)); }
inline Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C get_U3CDisallowU3Ek__BackingField_29() const { return ___U3CDisallowU3Ek__BackingField_29; }
inline Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C * get_address_of_U3CDisallowU3Ek__BackingField_29() { return &___U3CDisallowU3Ek__BackingField_29; }
inline void set_U3CDisallowU3Ek__BackingField_29(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C value)
{
___U3CDisallowU3Ek__BackingField_29 = value;
}
inline static int32_t get_offset_of_U3CDefaultU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CDefaultU3Ek__BackingField_30)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get_U3CDefaultU3Ek__BackingField_30() const { return ___U3CDefaultU3Ek__BackingField_30; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of_U3CDefaultU3Ek__BackingField_30() { return &___U3CDefaultU3Ek__BackingField_30; }
inline void set_U3CDefaultU3Ek__BackingField_30(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
___U3CDefaultU3Ek__BackingField_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultU3Ek__BackingField_30), (void*)value);
}
inline static int32_t get_offset_of_U3CExtendsU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CExtendsU3Ek__BackingField_31)); }
inline RuntimeObject* get_U3CExtendsU3Ek__BackingField_31() const { return ___U3CExtendsU3Ek__BackingField_31; }
inline RuntimeObject** get_address_of_U3CExtendsU3Ek__BackingField_31() { return &___U3CExtendsU3Ek__BackingField_31; }
inline void set_U3CExtendsU3Ek__BackingField_31(RuntimeObject* value)
{
___U3CExtendsU3Ek__BackingField_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CExtendsU3Ek__BackingField_31), (void*)value);
}
inline static int32_t get_offset_of_U3CFormatU3Ek__BackingField_32() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CFormatU3Ek__BackingField_32)); }
inline String_t* get_U3CFormatU3Ek__BackingField_32() const { return ___U3CFormatU3Ek__BackingField_32; }
inline String_t** get_address_of_U3CFormatU3Ek__BackingField_32() { return &___U3CFormatU3Ek__BackingField_32; }
inline void set_U3CFormatU3Ek__BackingField_32(String_t* value)
{
___U3CFormatU3Ek__BackingField_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CFormatU3Ek__BackingField_32), (void*)value);
}
inline static int32_t get_offset_of_U3CLocationU3Ek__BackingField_33() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CLocationU3Ek__BackingField_33)); }
inline String_t* get_U3CLocationU3Ek__BackingField_33() const { return ___U3CLocationU3Ek__BackingField_33; }
inline String_t** get_address_of_U3CLocationU3Ek__BackingField_33() { return &___U3CLocationU3Ek__BackingField_33; }
inline void set_U3CLocationU3Ek__BackingField_33(String_t* value)
{
___U3CLocationU3Ek__BackingField_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CLocationU3Ek__BackingField_33), (void*)value);
}
inline static int32_t get_offset_of__internalId_34() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ____internalId_34)); }
inline String_t* get__internalId_34() const { return ____internalId_34; }
inline String_t** get_address_of__internalId_34() { return &____internalId_34; }
inline void set__internalId_34(String_t* value)
{
____internalId_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&____internalId_34), (void*)value);
}
inline static int32_t get_offset_of_U3CDeferredReferenceU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CDeferredReferenceU3Ek__BackingField_35)); }
inline String_t* get_U3CDeferredReferenceU3Ek__BackingField_35() const { return ___U3CDeferredReferenceU3Ek__BackingField_35; }
inline String_t** get_address_of_U3CDeferredReferenceU3Ek__BackingField_35() { return &___U3CDeferredReferenceU3Ek__BackingField_35; }
inline void set_U3CDeferredReferenceU3Ek__BackingField_35(String_t* value)
{
___U3CDeferredReferenceU3Ek__BackingField_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDeferredReferenceU3Ek__BackingField_35), (void*)value);
}
inline static int32_t get_offset_of_U3CReferencesResolvedU3Ek__BackingField_36() { return static_cast<int32_t>(offsetof(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252, ___U3CReferencesResolvedU3Ek__BackingField_36)); }
inline bool get_U3CReferencesResolvedU3Ek__BackingField_36() const { return ___U3CReferencesResolvedU3Ek__BackingField_36; }
inline bool* get_address_of_U3CReferencesResolvedU3Ek__BackingField_36() { return &___U3CReferencesResolvedU3Ek__BackingField_36; }
inline void set_U3CReferencesResolvedU3Ek__BackingField_36(bool value)
{
___U3CReferencesResolvedU3Ek__BackingField_36 = value;
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaException
struct JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 : public JsonException_tA0851478052E710490C73E995BE27E80545D03F2
{
public:
// System.Int32 Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::<LineNumber>k__BackingField
int32_t ___U3CLineNumberU3Ek__BackingField_17;
// System.Int32 Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::<LinePosition>k__BackingField
int32_t ___U3CLinePositionU3Ek__BackingField_18;
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::<Path>k__BackingField
String_t* ___U3CPathU3Ek__BackingField_19;
public:
inline static int32_t get_offset_of_U3CLineNumberU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650, ___U3CLineNumberU3Ek__BackingField_17)); }
inline int32_t get_U3CLineNumberU3Ek__BackingField_17() const { return ___U3CLineNumberU3Ek__BackingField_17; }
inline int32_t* get_address_of_U3CLineNumberU3Ek__BackingField_17() { return &___U3CLineNumberU3Ek__BackingField_17; }
inline void set_U3CLineNumberU3Ek__BackingField_17(int32_t value)
{
___U3CLineNumberU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CLinePositionU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650, ___U3CLinePositionU3Ek__BackingField_18)); }
inline int32_t get_U3CLinePositionU3Ek__BackingField_18() const { return ___U3CLinePositionU3Ek__BackingField_18; }
inline int32_t* get_address_of_U3CLinePositionU3Ek__BackingField_18() { return &___U3CLinePositionU3Ek__BackingField_18; }
inline void set_U3CLinePositionU3Ek__BackingField_18(int32_t value)
{
___U3CLinePositionU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CPathU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650, ___U3CPathU3Ek__BackingField_19)); }
inline String_t* get_U3CPathU3Ek__BackingField_19() const { return ___U3CPathU3Ek__BackingField_19; }
inline String_t** get_address_of_U3CPathU3Ek__BackingField_19() { return &___U3CPathU3Ek__BackingField_19; }
inline void set_U3CPathU3Ek__BackingField_19(String_t* value)
{
___U3CPathU3Ek__BackingField_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPathU3Ek__BackingField_19), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonSerializationException
struct JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 : public JsonException_tA0851478052E710490C73E995BE27E80545D03F2
{
public:
public:
};
// Vuforia.Newtonsoft.Json.JsonSerializer
struct JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 : public RuntimeObject
{
public:
// Vuforia.Newtonsoft.Json.TypeNameHandling Vuforia.Newtonsoft.Json.JsonSerializer::_typeNameHandling
int32_t ____typeNameHandling_0;
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle Vuforia.Newtonsoft.Json.JsonSerializer::_typeNameAssemblyFormat
int32_t ____typeNameAssemblyFormat_1;
// Vuforia.Newtonsoft.Json.PreserveReferencesHandling Vuforia.Newtonsoft.Json.JsonSerializer::_preserveReferencesHandling
int32_t ____preserveReferencesHandling_2;
// Vuforia.Newtonsoft.Json.ReferenceLoopHandling Vuforia.Newtonsoft.Json.JsonSerializer::_referenceLoopHandling
int32_t ____referenceLoopHandling_3;
// Vuforia.Newtonsoft.Json.MissingMemberHandling Vuforia.Newtonsoft.Json.JsonSerializer::_missingMemberHandling
int32_t ____missingMemberHandling_4;
// Vuforia.Newtonsoft.Json.ObjectCreationHandling Vuforia.Newtonsoft.Json.JsonSerializer::_objectCreationHandling
int32_t ____objectCreationHandling_5;
// Vuforia.Newtonsoft.Json.NullValueHandling Vuforia.Newtonsoft.Json.JsonSerializer::_nullValueHandling
int32_t ____nullValueHandling_6;
// Vuforia.Newtonsoft.Json.DefaultValueHandling Vuforia.Newtonsoft.Json.JsonSerializer::_defaultValueHandling
int32_t ____defaultValueHandling_7;
// Vuforia.Newtonsoft.Json.ConstructorHandling Vuforia.Newtonsoft.Json.JsonSerializer::_constructorHandling
int32_t ____constructorHandling_8;
// Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializer::_metadataPropertyHandling
int32_t ____metadataPropertyHandling_9;
// Vuforia.Newtonsoft.Json.JsonConverterCollection Vuforia.Newtonsoft.Json.JsonSerializer::_converters
JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * ____converters_10;
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.JsonSerializer::_contractResolver
RuntimeObject* ____contractResolver_11;
// Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::_traceWriter
RuntimeObject* ____traceWriter_12;
// System.Collections.IEqualityComparer Vuforia.Newtonsoft.Json.JsonSerializer::_equalityComparer
RuntimeObject* ____equalityComparer_13;
// Vuforia.Newtonsoft.Json.SerializationBinder Vuforia.Newtonsoft.Json.JsonSerializer::_binder
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * ____binder_14;
// System.Runtime.Serialization.StreamingContext Vuforia.Newtonsoft.Json.JsonSerializer::_context
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ____context_15;
// Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver Vuforia.Newtonsoft.Json.JsonSerializer::_referenceResolver
RuntimeObject* ____referenceResolver_16;
// System.Nullable`1<Vuforia.Newtonsoft.Json.Formatting> Vuforia.Newtonsoft.Json.JsonSerializer::_formatting
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E ____formatting_17;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateFormatHandling> Vuforia.Newtonsoft.Json.JsonSerializer::_dateFormatHandling
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 ____dateFormatHandling_18;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling> Vuforia.Newtonsoft.Json.JsonSerializer::_dateTimeZoneHandling
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 ____dateTimeZoneHandling_19;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling> Vuforia.Newtonsoft.Json.JsonSerializer::_dateParseHandling
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F ____dateParseHandling_20;
// System.Nullable`1<Vuforia.Newtonsoft.Json.FloatFormatHandling> Vuforia.Newtonsoft.Json.JsonSerializer::_floatFormatHandling
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD ____floatFormatHandling_21;
// System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling> Vuforia.Newtonsoft.Json.JsonSerializer::_floatParseHandling
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D ____floatParseHandling_22;
// System.Nullable`1<Vuforia.Newtonsoft.Json.StringEscapeHandling> Vuforia.Newtonsoft.Json.JsonSerializer::_stringEscapeHandling
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A ____stringEscapeHandling_23;
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonSerializer::_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____culture_24;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.JsonSerializer::_maxDepth
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ____maxDepth_25;
// System.Boolean Vuforia.Newtonsoft.Json.JsonSerializer::_maxDepthSet
bool ____maxDepthSet_26;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.JsonSerializer::_checkAdditionalContent
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ____checkAdditionalContent_27;
// System.String Vuforia.Newtonsoft.Json.JsonSerializer::_dateFormatString
String_t* ____dateFormatString_28;
// System.Boolean Vuforia.Newtonsoft.Json.JsonSerializer::_dateFormatStringSet
bool ____dateFormatStringSet_29;
// System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs> Vuforia.Newtonsoft.Json.JsonSerializer::Error
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * ___Error_30;
public:
inline static int32_t get_offset_of__typeNameHandling_0() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____typeNameHandling_0)); }
inline int32_t get__typeNameHandling_0() const { return ____typeNameHandling_0; }
inline int32_t* get_address_of__typeNameHandling_0() { return &____typeNameHandling_0; }
inline void set__typeNameHandling_0(int32_t value)
{
____typeNameHandling_0 = value;
}
inline static int32_t get_offset_of__typeNameAssemblyFormat_1() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____typeNameAssemblyFormat_1)); }
inline int32_t get__typeNameAssemblyFormat_1() const { return ____typeNameAssemblyFormat_1; }
inline int32_t* get_address_of__typeNameAssemblyFormat_1() { return &____typeNameAssemblyFormat_1; }
inline void set__typeNameAssemblyFormat_1(int32_t value)
{
____typeNameAssemblyFormat_1 = value;
}
inline static int32_t get_offset_of__preserveReferencesHandling_2() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____preserveReferencesHandling_2)); }
inline int32_t get__preserveReferencesHandling_2() const { return ____preserveReferencesHandling_2; }
inline int32_t* get_address_of__preserveReferencesHandling_2() { return &____preserveReferencesHandling_2; }
inline void set__preserveReferencesHandling_2(int32_t value)
{
____preserveReferencesHandling_2 = value;
}
inline static int32_t get_offset_of__referenceLoopHandling_3() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____referenceLoopHandling_3)); }
inline int32_t get__referenceLoopHandling_3() const { return ____referenceLoopHandling_3; }
inline int32_t* get_address_of__referenceLoopHandling_3() { return &____referenceLoopHandling_3; }
inline void set__referenceLoopHandling_3(int32_t value)
{
____referenceLoopHandling_3 = value;
}
inline static int32_t get_offset_of__missingMemberHandling_4() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____missingMemberHandling_4)); }
inline int32_t get__missingMemberHandling_4() const { return ____missingMemberHandling_4; }
inline int32_t* get_address_of__missingMemberHandling_4() { return &____missingMemberHandling_4; }
inline void set__missingMemberHandling_4(int32_t value)
{
____missingMemberHandling_4 = value;
}
inline static int32_t get_offset_of__objectCreationHandling_5() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____objectCreationHandling_5)); }
inline int32_t get__objectCreationHandling_5() const { return ____objectCreationHandling_5; }
inline int32_t* get_address_of__objectCreationHandling_5() { return &____objectCreationHandling_5; }
inline void set__objectCreationHandling_5(int32_t value)
{
____objectCreationHandling_5 = value;
}
inline static int32_t get_offset_of__nullValueHandling_6() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____nullValueHandling_6)); }
inline int32_t get__nullValueHandling_6() const { return ____nullValueHandling_6; }
inline int32_t* get_address_of__nullValueHandling_6() { return &____nullValueHandling_6; }
inline void set__nullValueHandling_6(int32_t value)
{
____nullValueHandling_6 = value;
}
inline static int32_t get_offset_of__defaultValueHandling_7() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____defaultValueHandling_7)); }
inline int32_t get__defaultValueHandling_7() const { return ____defaultValueHandling_7; }
inline int32_t* get_address_of__defaultValueHandling_7() { return &____defaultValueHandling_7; }
inline void set__defaultValueHandling_7(int32_t value)
{
____defaultValueHandling_7 = value;
}
inline static int32_t get_offset_of__constructorHandling_8() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____constructorHandling_8)); }
inline int32_t get__constructorHandling_8() const { return ____constructorHandling_8; }
inline int32_t* get_address_of__constructorHandling_8() { return &____constructorHandling_8; }
inline void set__constructorHandling_8(int32_t value)
{
____constructorHandling_8 = value;
}
inline static int32_t get_offset_of__metadataPropertyHandling_9() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____metadataPropertyHandling_9)); }
inline int32_t get__metadataPropertyHandling_9() const { return ____metadataPropertyHandling_9; }
inline int32_t* get_address_of__metadataPropertyHandling_9() { return &____metadataPropertyHandling_9; }
inline void set__metadataPropertyHandling_9(int32_t value)
{
____metadataPropertyHandling_9 = value;
}
inline static int32_t get_offset_of__converters_10() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____converters_10)); }
inline JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * get__converters_10() const { return ____converters_10; }
inline JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D ** get_address_of__converters_10() { return &____converters_10; }
inline void set__converters_10(JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * value)
{
____converters_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____converters_10), (void*)value);
}
inline static int32_t get_offset_of__contractResolver_11() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____contractResolver_11)); }
inline RuntimeObject* get__contractResolver_11() const { return ____contractResolver_11; }
inline RuntimeObject** get_address_of__contractResolver_11() { return &____contractResolver_11; }
inline void set__contractResolver_11(RuntimeObject* value)
{
____contractResolver_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____contractResolver_11), (void*)value);
}
inline static int32_t get_offset_of__traceWriter_12() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____traceWriter_12)); }
inline RuntimeObject* get__traceWriter_12() const { return ____traceWriter_12; }
inline RuntimeObject** get_address_of__traceWriter_12() { return &____traceWriter_12; }
inline void set__traceWriter_12(RuntimeObject* value)
{
____traceWriter_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____traceWriter_12), (void*)value);
}
inline static int32_t get_offset_of__equalityComparer_13() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____equalityComparer_13)); }
inline RuntimeObject* get__equalityComparer_13() const { return ____equalityComparer_13; }
inline RuntimeObject** get_address_of__equalityComparer_13() { return &____equalityComparer_13; }
inline void set__equalityComparer_13(RuntimeObject* value)
{
____equalityComparer_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____equalityComparer_13), (void*)value);
}
inline static int32_t get_offset_of__binder_14() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____binder_14)); }
inline SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * get__binder_14() const { return ____binder_14; }
inline SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC ** get_address_of__binder_14() { return &____binder_14; }
inline void set__binder_14(SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * value)
{
____binder_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____binder_14), (void*)value);
}
inline static int32_t get_offset_of__context_15() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____context_15)); }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 get__context_15() const { return ____context_15; }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 * get_address_of__context_15() { return &____context_15; }
inline void set__context_15(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 value)
{
____context_15 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____context_15))->___m_additionalContext_0), (void*)NULL);
}
inline static int32_t get_offset_of__referenceResolver_16() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____referenceResolver_16)); }
inline RuntimeObject* get__referenceResolver_16() const { return ____referenceResolver_16; }
inline RuntimeObject** get_address_of__referenceResolver_16() { return &____referenceResolver_16; }
inline void set__referenceResolver_16(RuntimeObject* value)
{
____referenceResolver_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____referenceResolver_16), (void*)value);
}
inline static int32_t get_offset_of__formatting_17() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____formatting_17)); }
inline Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E get__formatting_17() const { return ____formatting_17; }
inline Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * get_address_of__formatting_17() { return &____formatting_17; }
inline void set__formatting_17(Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E value)
{
____formatting_17 = value;
}
inline static int32_t get_offset_of__dateFormatHandling_18() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____dateFormatHandling_18)); }
inline Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 get__dateFormatHandling_18() const { return ____dateFormatHandling_18; }
inline Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * get_address_of__dateFormatHandling_18() { return &____dateFormatHandling_18; }
inline void set__dateFormatHandling_18(Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 value)
{
____dateFormatHandling_18 = value;
}
inline static int32_t get_offset_of__dateTimeZoneHandling_19() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____dateTimeZoneHandling_19)); }
inline Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 get__dateTimeZoneHandling_19() const { return ____dateTimeZoneHandling_19; }
inline Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * get_address_of__dateTimeZoneHandling_19() { return &____dateTimeZoneHandling_19; }
inline void set__dateTimeZoneHandling_19(Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 value)
{
____dateTimeZoneHandling_19 = value;
}
inline static int32_t get_offset_of__dateParseHandling_20() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____dateParseHandling_20)); }
inline Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F get__dateParseHandling_20() const { return ____dateParseHandling_20; }
inline Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * get_address_of__dateParseHandling_20() { return &____dateParseHandling_20; }
inline void set__dateParseHandling_20(Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F value)
{
____dateParseHandling_20 = value;
}
inline static int32_t get_offset_of__floatFormatHandling_21() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____floatFormatHandling_21)); }
inline Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD get__floatFormatHandling_21() const { return ____floatFormatHandling_21; }
inline Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * get_address_of__floatFormatHandling_21() { return &____floatFormatHandling_21; }
inline void set__floatFormatHandling_21(Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD value)
{
____floatFormatHandling_21 = value;
}
inline static int32_t get_offset_of__floatParseHandling_22() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____floatParseHandling_22)); }
inline Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D get__floatParseHandling_22() const { return ____floatParseHandling_22; }
inline Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * get_address_of__floatParseHandling_22() { return &____floatParseHandling_22; }
inline void set__floatParseHandling_22(Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D value)
{
____floatParseHandling_22 = value;
}
inline static int32_t get_offset_of__stringEscapeHandling_23() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____stringEscapeHandling_23)); }
inline Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A get__stringEscapeHandling_23() const { return ____stringEscapeHandling_23; }
inline Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * get_address_of__stringEscapeHandling_23() { return &____stringEscapeHandling_23; }
inline void set__stringEscapeHandling_23(Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A value)
{
____stringEscapeHandling_23 = value;
}
inline static int32_t get_offset_of__culture_24() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____culture_24)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__culture_24() const { return ____culture_24; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__culture_24() { return &____culture_24; }
inline void set__culture_24(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
____culture_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&____culture_24), (void*)value);
}
inline static int32_t get_offset_of__maxDepth_25() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____maxDepth_25)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get__maxDepth_25() const { return ____maxDepth_25; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of__maxDepth_25() { return &____maxDepth_25; }
inline void set__maxDepth_25(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
____maxDepth_25 = value;
}
inline static int32_t get_offset_of__maxDepthSet_26() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____maxDepthSet_26)); }
inline bool get__maxDepthSet_26() const { return ____maxDepthSet_26; }
inline bool* get_address_of__maxDepthSet_26() { return &____maxDepthSet_26; }
inline void set__maxDepthSet_26(bool value)
{
____maxDepthSet_26 = value;
}
inline static int32_t get_offset_of__checkAdditionalContent_27() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____checkAdditionalContent_27)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get__checkAdditionalContent_27() const { return ____checkAdditionalContent_27; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of__checkAdditionalContent_27() { return &____checkAdditionalContent_27; }
inline void set__checkAdditionalContent_27(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
____checkAdditionalContent_27 = value;
}
inline static int32_t get_offset_of__dateFormatString_28() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____dateFormatString_28)); }
inline String_t* get__dateFormatString_28() const { return ____dateFormatString_28; }
inline String_t** get_address_of__dateFormatString_28() { return &____dateFormatString_28; }
inline void set__dateFormatString_28(String_t* value)
{
____dateFormatString_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dateFormatString_28), (void*)value);
}
inline static int32_t get_offset_of__dateFormatStringSet_29() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ____dateFormatStringSet_29)); }
inline bool get__dateFormatStringSet_29() const { return ____dateFormatStringSet_29; }
inline bool* get_address_of__dateFormatStringSet_29() { return &____dateFormatStringSet_29; }
inline void set__dateFormatStringSet_29(bool value)
{
____dateFormatStringSet_29 = value;
}
inline static int32_t get_offset_of_Error_30() { return static_cast<int32_t>(offsetof(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670, ___Error_30)); }
inline EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * get_Error_30() const { return ___Error_30; }
inline EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B ** get_address_of_Error_30() { return &___Error_30; }
inline void set_Error_30(EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * value)
{
___Error_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Error_30), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonWriter
struct JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.JsonPosition> Vuforia.Newtonsoft.Json.JsonWriter::_stack
List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 * ____stack_2;
// Vuforia.Newtonsoft.Json.JsonPosition Vuforia.Newtonsoft.Json.JsonWriter::_currentPosition
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD ____currentPosition_3;
// Vuforia.Newtonsoft.Json.JsonWriter/State Vuforia.Newtonsoft.Json.JsonWriter::_currentState
int32_t ____currentState_4;
// Vuforia.Newtonsoft.Json.Formatting Vuforia.Newtonsoft.Json.JsonWriter::_formatting
int32_t ____formatting_5;
// System.Boolean Vuforia.Newtonsoft.Json.JsonWriter::<CloseOutput>k__BackingField
bool ___U3CCloseOutputU3Ek__BackingField_6;
// Vuforia.Newtonsoft.Json.DateFormatHandling Vuforia.Newtonsoft.Json.JsonWriter::_dateFormatHandling
int32_t ____dateFormatHandling_7;
// Vuforia.Newtonsoft.Json.DateTimeZoneHandling Vuforia.Newtonsoft.Json.JsonWriter::_dateTimeZoneHandling
int32_t ____dateTimeZoneHandling_8;
// Vuforia.Newtonsoft.Json.StringEscapeHandling Vuforia.Newtonsoft.Json.JsonWriter::_stringEscapeHandling
int32_t ____stringEscapeHandling_9;
// Vuforia.Newtonsoft.Json.FloatFormatHandling Vuforia.Newtonsoft.Json.JsonWriter::_floatFormatHandling
int32_t ____floatFormatHandling_10;
// System.String Vuforia.Newtonsoft.Json.JsonWriter::_dateFormatString
String_t* ____dateFormatString_11;
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonWriter::_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____culture_12;
public:
inline static int32_t get_offset_of__stack_2() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____stack_2)); }
inline List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 * get__stack_2() const { return ____stack_2; }
inline List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 ** get_address_of__stack_2() { return &____stack_2; }
inline void set__stack_2(List_1_tCF71F269BABD9E320265F084B181E00D4CEB22E8 * value)
{
____stack_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stack_2), (void*)value);
}
inline static int32_t get_offset_of__currentPosition_3() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____currentPosition_3)); }
inline JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD get__currentPosition_3() const { return ____currentPosition_3; }
inline JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD * get_address_of__currentPosition_3() { return &____currentPosition_3; }
inline void set__currentPosition_3(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD value)
{
____currentPosition_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____currentPosition_3))->___PropertyName_3), (void*)NULL);
}
inline static int32_t get_offset_of__currentState_4() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____currentState_4)); }
inline int32_t get__currentState_4() const { return ____currentState_4; }
inline int32_t* get_address_of__currentState_4() { return &____currentState_4; }
inline void set__currentState_4(int32_t value)
{
____currentState_4 = value;
}
inline static int32_t get_offset_of__formatting_5() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____formatting_5)); }
inline int32_t get__formatting_5() const { return ____formatting_5; }
inline int32_t* get_address_of__formatting_5() { return &____formatting_5; }
inline void set__formatting_5(int32_t value)
{
____formatting_5 = value;
}
inline static int32_t get_offset_of_U3CCloseOutputU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ___U3CCloseOutputU3Ek__BackingField_6)); }
inline bool get_U3CCloseOutputU3Ek__BackingField_6() const { return ___U3CCloseOutputU3Ek__BackingField_6; }
inline bool* get_address_of_U3CCloseOutputU3Ek__BackingField_6() { return &___U3CCloseOutputU3Ek__BackingField_6; }
inline void set_U3CCloseOutputU3Ek__BackingField_6(bool value)
{
___U3CCloseOutputU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of__dateFormatHandling_7() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____dateFormatHandling_7)); }
inline int32_t get__dateFormatHandling_7() const { return ____dateFormatHandling_7; }
inline int32_t* get_address_of__dateFormatHandling_7() { return &____dateFormatHandling_7; }
inline void set__dateFormatHandling_7(int32_t value)
{
____dateFormatHandling_7 = value;
}
inline static int32_t get_offset_of__dateTimeZoneHandling_8() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____dateTimeZoneHandling_8)); }
inline int32_t get__dateTimeZoneHandling_8() const { return ____dateTimeZoneHandling_8; }
inline int32_t* get_address_of__dateTimeZoneHandling_8() { return &____dateTimeZoneHandling_8; }
inline void set__dateTimeZoneHandling_8(int32_t value)
{
____dateTimeZoneHandling_8 = value;
}
inline static int32_t get_offset_of__stringEscapeHandling_9() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____stringEscapeHandling_9)); }
inline int32_t get__stringEscapeHandling_9() const { return ____stringEscapeHandling_9; }
inline int32_t* get_address_of__stringEscapeHandling_9() { return &____stringEscapeHandling_9; }
inline void set__stringEscapeHandling_9(int32_t value)
{
____stringEscapeHandling_9 = value;
}
inline static int32_t get_offset_of__floatFormatHandling_10() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____floatFormatHandling_10)); }
inline int32_t get__floatFormatHandling_10() const { return ____floatFormatHandling_10; }
inline int32_t* get_address_of__floatFormatHandling_10() { return &____floatFormatHandling_10; }
inline void set__floatFormatHandling_10(int32_t value)
{
____floatFormatHandling_10 = value;
}
inline static int32_t get_offset_of__dateFormatString_11() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____dateFormatString_11)); }
inline String_t* get__dateFormatString_11() const { return ____dateFormatString_11; }
inline String_t** get_address_of__dateFormatString_11() { return &____dateFormatString_11; }
inline void set__dateFormatString_11(String_t* value)
{
____dateFormatString_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dateFormatString_11), (void*)value);
}
inline static int32_t get_offset_of__culture_12() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D, ____culture_12)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__culture_12() const { return ____culture_12; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__culture_12() { return &____culture_12; }
inline void set__culture_12(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
____culture_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____culture_12), (void*)value);
}
};
struct JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D_StaticFields
{
public:
// Vuforia.Newtonsoft.Json.JsonWriter/State[][] Vuforia.Newtonsoft.Json.JsonWriter::StateArray
StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511* ___StateArray_0;
// Vuforia.Newtonsoft.Json.JsonWriter/State[][] Vuforia.Newtonsoft.Json.JsonWriter::StateArrayTempate
StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511* ___StateArrayTempate_1;
public:
inline static int32_t get_offset_of_StateArray_0() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D_StaticFields, ___StateArray_0)); }
inline StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511* get_StateArray_0() const { return ___StateArray_0; }
inline StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511** get_address_of_StateArray_0() { return &___StateArray_0; }
inline void set_StateArray_0(StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511* value)
{
___StateArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StateArray_0), (void*)value);
}
inline static int32_t get_offset_of_StateArrayTempate_1() { return static_cast<int32_t>(offsetof(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D_StaticFields, ___StateArrayTempate_1)); }
inline StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511* get_StateArrayTempate_1() const { return ___StateArrayTempate_1; }
inline StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511** get_address_of_StateArrayTempate_1() { return &___StateArrayTempate_1; }
inline void set_StateArrayTempate_1(StateU5BU5DU5BU5D_t24695861F25E13941FD4E2BBEAB61A6E2E982511* value)
{
___StateArrayTempate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StateArrayTempate_1), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext
struct CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 : public RuntimeObject
{
public:
// System.String Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::Name
String_t* ___Name_0;
// Vuforia.Newtonsoft.Json.Serialization.JsonProperty Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::Property
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___Property_1;
// Vuforia.Newtonsoft.Json.Serialization.JsonProperty Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::ConstructorProperty
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___ConstructorProperty_2;
// System.Nullable`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::Presence
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 ___Presence_3;
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::Value
RuntimeObject * ___Value_4;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::Used
bool ___Used_5;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_Property_1() { return static_cast<int32_t>(offsetof(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9, ___Property_1)); }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * get_Property_1() const { return ___Property_1; }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 ** get_address_of_Property_1() { return &___Property_1; }
inline void set_Property_1(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * value)
{
___Property_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Property_1), (void*)value);
}
inline static int32_t get_offset_of_ConstructorProperty_2() { return static_cast<int32_t>(offsetof(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9, ___ConstructorProperty_2)); }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * get_ConstructorProperty_2() const { return ___ConstructorProperty_2; }
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 ** get_address_of_ConstructorProperty_2() { return &___ConstructorProperty_2; }
inline void set_ConstructorProperty_2(JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * value)
{
___ConstructorProperty_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ConstructorProperty_2), (void*)value);
}
inline static int32_t get_offset_of_Presence_3() { return static_cast<int32_t>(offsetof(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9, ___Presence_3)); }
inline Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 get_Presence_3() const { return ___Presence_3; }
inline Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 * get_address_of_Presence_3() { return &___Presence_3; }
inline void set_Presence_3(Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 value)
{
___Presence_3 = value;
}
inline static int32_t get_offset_of_Value_4() { return static_cast<int32_t>(offsetof(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9, ___Value_4)); }
inline RuntimeObject * get_Value_4() const { return ___Value_4; }
inline RuntimeObject ** get_address_of_Value_4() { return &___Value_4; }
inline void set_Value_4(RuntimeObject * value)
{
___Value_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_4), (void*)value);
}
inline static int32_t get_offset_of_Used_5() { return static_cast<int32_t>(offsetof(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9, ___Used_5)); }
inline bool get_Used_5() const { return ___Used_5; }
inline bool* get_address_of_Used_5() { return &___Used_5; }
inline void set_Used_5(bool value)
{
___Used_5 = value;
}
};
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Linq.JTokenReader
struct JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B : public JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96
{
public:
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JTokenReader::_root
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ____root_15;
// System.String Vuforia.Newtonsoft.Json.Linq.JTokenReader::_initialPath
String_t* ____initialPath_16;
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JTokenReader::_parent
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ____parent_17;
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JTokenReader::_current
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ____current_18;
public:
inline static int32_t get_offset_of__root_15() { return static_cast<int32_t>(offsetof(JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B, ____root_15)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get__root_15() const { return ____root_15; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of__root_15() { return &____root_15; }
inline void set__root_15(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
____root_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____root_15), (void*)value);
}
inline static int32_t get_offset_of__initialPath_16() { return static_cast<int32_t>(offsetof(JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B, ____initialPath_16)); }
inline String_t* get__initialPath_16() const { return ____initialPath_16; }
inline String_t** get_address_of__initialPath_16() { return &____initialPath_16; }
inline void set__initialPath_16(String_t* value)
{
____initialPath_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____initialPath_16), (void*)value);
}
inline static int32_t get_offset_of__parent_17() { return static_cast<int32_t>(offsetof(JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B, ____parent_17)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get__parent_17() const { return ____parent_17; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of__parent_17() { return &____parent_17; }
inline void set__parent_17(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
____parent_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_17), (void*)value);
}
inline static int32_t get_offset_of__current_18() { return static_cast<int32_t>(offsetof(JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B, ____current_18)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get__current_18() const { return ____current_18; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of__current_18() { return &____current_18; }
inline void set__current_18(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
____current_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_18), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Linq.JTokenWriter
struct JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 : public JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D
{
public:
// Vuforia.Newtonsoft.Json.Linq.JContainer Vuforia.Newtonsoft.Json.Linq.JTokenWriter::_token
JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * ____token_13;
// Vuforia.Newtonsoft.Json.Linq.JContainer Vuforia.Newtonsoft.Json.Linq.JTokenWriter::_parent
JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * ____parent_14;
// Vuforia.Newtonsoft.Json.Linq.JValue Vuforia.Newtonsoft.Json.Linq.JTokenWriter::_value
JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F * ____value_15;
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JTokenWriter::_current
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ____current_16;
public:
inline static int32_t get_offset_of__token_13() { return static_cast<int32_t>(offsetof(JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320, ____token_13)); }
inline JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * get__token_13() const { return ____token_13; }
inline JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC ** get_address_of__token_13() { return &____token_13; }
inline void set__token_13(JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * value)
{
____token_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____token_13), (void*)value);
}
inline static int32_t get_offset_of__parent_14() { return static_cast<int32_t>(offsetof(JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320, ____parent_14)); }
inline JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * get__parent_14() const { return ____parent_14; }
inline JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC ** get_address_of__parent_14() { return &____parent_14; }
inline void set__parent_14(JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * value)
{
____parent_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_14), (void*)value);
}
inline static int32_t get_offset_of__value_15() { return static_cast<int32_t>(offsetof(JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320, ____value_15)); }
inline JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F * get__value_15() const { return ____value_15; }
inline JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F ** get_address_of__value_15() { return &____value_15; }
inline void set__value_15(JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F * value)
{
____value_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_15), (void*)value);
}
inline static int32_t get_offset_of__current_16() { return static_cast<int32_t>(offsetof(JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320, ____current_16)); }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * get__current_16() const { return ____current_16; }
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** get_address_of__current_16() { return &____current_16; }
inline void set__current_16(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * value)
{
____current_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_16), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonArrayAttribute
struct JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 : public JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2
{
public:
// System.Boolean Vuforia.Newtonsoft.Json.JsonArrayAttribute::_allowNullItems
bool ____allowNullItems_9;
public:
inline static int32_t get_offset_of__allowNullItems_9() { return static_cast<int32_t>(offsetof(JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67, ____allowNullItems_9)); }
inline bool get__allowNullItems_9() const { return ____allowNullItems_9; }
inline bool* get_address_of__allowNullItems_9() { return &____allowNullItems_9; }
inline void set__allowNullItems_9(bool value)
{
____allowNullItems_9 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract
struct JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 : public JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990
{
public:
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::<CollectionItemType>k__BackingField
Type_t * ___U3CCollectionItemTypeU3Ek__BackingField_27;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::<IsMultidimensionalArray>k__BackingField
bool ___U3CIsMultidimensionalArrayU3Ek__BackingField_28;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::_genericCollectionDefinitionType
Type_t * ____genericCollectionDefinitionType_29;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::_genericWrapperType
Type_t * ____genericWrapperType_30;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::_genericWrapperCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____genericWrapperCreator_31;
// System.Func`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::_genericTemporaryCollectionCreator
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * ____genericTemporaryCollectionCreator_32;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::<IsArray>k__BackingField
bool ___U3CIsArrayU3Ek__BackingField_33;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::<ShouldCreateWrapper>k__BackingField
bool ___U3CShouldCreateWrapperU3Ek__BackingField_34;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::<CanDeserialize>k__BackingField
bool ___U3CCanDeserializeU3Ek__BackingField_35;
// System.Reflection.ConstructorInfo Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::_parameterizedConstructor
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ____parameterizedConstructor_36;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::_parameterizedCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____parameterizedCreator_37;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::_overrideCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____overrideCreator_38;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::<HasParameterizedCreator>k__BackingField
bool ___U3CHasParameterizedCreatorU3Ek__BackingField_39;
public:
inline static int32_t get_offset_of_U3CCollectionItemTypeU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ___U3CCollectionItemTypeU3Ek__BackingField_27)); }
inline Type_t * get_U3CCollectionItemTypeU3Ek__BackingField_27() const { return ___U3CCollectionItemTypeU3Ek__BackingField_27; }
inline Type_t ** get_address_of_U3CCollectionItemTypeU3Ek__BackingField_27() { return &___U3CCollectionItemTypeU3Ek__BackingField_27; }
inline void set_U3CCollectionItemTypeU3Ek__BackingField_27(Type_t * value)
{
___U3CCollectionItemTypeU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCollectionItemTypeU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CIsMultidimensionalArrayU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ___U3CIsMultidimensionalArrayU3Ek__BackingField_28)); }
inline bool get_U3CIsMultidimensionalArrayU3Ek__BackingField_28() const { return ___U3CIsMultidimensionalArrayU3Ek__BackingField_28; }
inline bool* get_address_of_U3CIsMultidimensionalArrayU3Ek__BackingField_28() { return &___U3CIsMultidimensionalArrayU3Ek__BackingField_28; }
inline void set_U3CIsMultidimensionalArrayU3Ek__BackingField_28(bool value)
{
___U3CIsMultidimensionalArrayU3Ek__BackingField_28 = value;
}
inline static int32_t get_offset_of__genericCollectionDefinitionType_29() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ____genericCollectionDefinitionType_29)); }
inline Type_t * get__genericCollectionDefinitionType_29() const { return ____genericCollectionDefinitionType_29; }
inline Type_t ** get_address_of__genericCollectionDefinitionType_29() { return &____genericCollectionDefinitionType_29; }
inline void set__genericCollectionDefinitionType_29(Type_t * value)
{
____genericCollectionDefinitionType_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericCollectionDefinitionType_29), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperType_30() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ____genericWrapperType_30)); }
inline Type_t * get__genericWrapperType_30() const { return ____genericWrapperType_30; }
inline Type_t ** get_address_of__genericWrapperType_30() { return &____genericWrapperType_30; }
inline void set__genericWrapperType_30(Type_t * value)
{
____genericWrapperType_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperType_30), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperCreator_31() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ____genericWrapperCreator_31)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__genericWrapperCreator_31() const { return ____genericWrapperCreator_31; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__genericWrapperCreator_31() { return &____genericWrapperCreator_31; }
inline void set__genericWrapperCreator_31(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____genericWrapperCreator_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperCreator_31), (void*)value);
}
inline static int32_t get_offset_of__genericTemporaryCollectionCreator_32() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ____genericTemporaryCollectionCreator_32)); }
inline Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * get__genericTemporaryCollectionCreator_32() const { return ____genericTemporaryCollectionCreator_32; }
inline Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 ** get_address_of__genericTemporaryCollectionCreator_32() { return &____genericTemporaryCollectionCreator_32; }
inline void set__genericTemporaryCollectionCreator_32(Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * value)
{
____genericTemporaryCollectionCreator_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericTemporaryCollectionCreator_32), (void*)value);
}
inline static int32_t get_offset_of_U3CIsArrayU3Ek__BackingField_33() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ___U3CIsArrayU3Ek__BackingField_33)); }
inline bool get_U3CIsArrayU3Ek__BackingField_33() const { return ___U3CIsArrayU3Ek__BackingField_33; }
inline bool* get_address_of_U3CIsArrayU3Ek__BackingField_33() { return &___U3CIsArrayU3Ek__BackingField_33; }
inline void set_U3CIsArrayU3Ek__BackingField_33(bool value)
{
___U3CIsArrayU3Ek__BackingField_33 = value;
}
inline static int32_t get_offset_of_U3CShouldCreateWrapperU3Ek__BackingField_34() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ___U3CShouldCreateWrapperU3Ek__BackingField_34)); }
inline bool get_U3CShouldCreateWrapperU3Ek__BackingField_34() const { return ___U3CShouldCreateWrapperU3Ek__BackingField_34; }
inline bool* get_address_of_U3CShouldCreateWrapperU3Ek__BackingField_34() { return &___U3CShouldCreateWrapperU3Ek__BackingField_34; }
inline void set_U3CShouldCreateWrapperU3Ek__BackingField_34(bool value)
{
___U3CShouldCreateWrapperU3Ek__BackingField_34 = value;
}
inline static int32_t get_offset_of_U3CCanDeserializeU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ___U3CCanDeserializeU3Ek__BackingField_35)); }
inline bool get_U3CCanDeserializeU3Ek__BackingField_35() const { return ___U3CCanDeserializeU3Ek__BackingField_35; }
inline bool* get_address_of_U3CCanDeserializeU3Ek__BackingField_35() { return &___U3CCanDeserializeU3Ek__BackingField_35; }
inline void set_U3CCanDeserializeU3Ek__BackingField_35(bool value)
{
___U3CCanDeserializeU3Ek__BackingField_35 = value;
}
inline static int32_t get_offset_of__parameterizedConstructor_36() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ____parameterizedConstructor_36)); }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * get__parameterizedConstructor_36() const { return ____parameterizedConstructor_36; }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B ** get_address_of__parameterizedConstructor_36() { return &____parameterizedConstructor_36; }
inline void set__parameterizedConstructor_36(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * value)
{
____parameterizedConstructor_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedConstructor_36), (void*)value);
}
inline static int32_t get_offset_of__parameterizedCreator_37() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ____parameterizedCreator_37)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__parameterizedCreator_37() const { return ____parameterizedCreator_37; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__parameterizedCreator_37() { return &____parameterizedCreator_37; }
inline void set__parameterizedCreator_37(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____parameterizedCreator_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedCreator_37), (void*)value);
}
inline static int32_t get_offset_of__overrideCreator_38() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ____overrideCreator_38)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__overrideCreator_38() const { return ____overrideCreator_38; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__overrideCreator_38() { return &____overrideCreator_38; }
inline void set__overrideCreator_38(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____overrideCreator_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideCreator_38), (void*)value);
}
inline static int32_t get_offset_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245, ___U3CHasParameterizedCreatorU3Ek__BackingField_39)); }
inline bool get_U3CHasParameterizedCreatorU3Ek__BackingField_39() const { return ___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline bool* get_address_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return &___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline void set_U3CHasParameterizedCreatorU3Ek__BackingField_39(bool value)
{
___U3CHasParameterizedCreatorU3Ek__BackingField_39 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract
struct JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 : public JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990
{
public:
// System.Func`2<System.String,System.String> Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::<DictionaryKeyResolver>k__BackingField
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * ___U3CDictionaryKeyResolverU3Ek__BackingField_27;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::<DictionaryKeyType>k__BackingField
Type_t * ___U3CDictionaryKeyTypeU3Ek__BackingField_28;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::<DictionaryValueType>k__BackingField
Type_t * ___U3CDictionaryValueTypeU3Ek__BackingField_29;
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::<KeyContract>k__BackingField
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___U3CKeyContractU3Ek__BackingField_30;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericCollectionDefinitionType
Type_t * ____genericCollectionDefinitionType_31;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericWrapperType
Type_t * ____genericWrapperType_32;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericWrapperCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____genericWrapperCreator_33;
// System.Func`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericTemporaryDictionaryCreator
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * ____genericTemporaryDictionaryCreator_34;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::<ShouldCreateWrapper>k__BackingField
bool ___U3CShouldCreateWrapperU3Ek__BackingField_35;
// System.Reflection.ConstructorInfo Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::_parameterizedConstructor
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ____parameterizedConstructor_36;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::_overrideCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____overrideCreator_37;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::_parameterizedCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____parameterizedCreator_38;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::<HasParameterizedCreator>k__BackingField
bool ___U3CHasParameterizedCreatorU3Ek__BackingField_39;
public:
inline static int32_t get_offset_of_U3CDictionaryKeyResolverU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ___U3CDictionaryKeyResolverU3Ek__BackingField_27)); }
inline Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * get_U3CDictionaryKeyResolverU3Ek__BackingField_27() const { return ___U3CDictionaryKeyResolverU3Ek__BackingField_27; }
inline Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A ** get_address_of_U3CDictionaryKeyResolverU3Ek__BackingField_27() { return &___U3CDictionaryKeyResolverU3Ek__BackingField_27; }
inline void set_U3CDictionaryKeyResolverU3Ek__BackingField_27(Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * value)
{
___U3CDictionaryKeyResolverU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDictionaryKeyResolverU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CDictionaryKeyTypeU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ___U3CDictionaryKeyTypeU3Ek__BackingField_28)); }
inline Type_t * get_U3CDictionaryKeyTypeU3Ek__BackingField_28() const { return ___U3CDictionaryKeyTypeU3Ek__BackingField_28; }
inline Type_t ** get_address_of_U3CDictionaryKeyTypeU3Ek__BackingField_28() { return &___U3CDictionaryKeyTypeU3Ek__BackingField_28; }
inline void set_U3CDictionaryKeyTypeU3Ek__BackingField_28(Type_t * value)
{
___U3CDictionaryKeyTypeU3Ek__BackingField_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDictionaryKeyTypeU3Ek__BackingField_28), (void*)value);
}
inline static int32_t get_offset_of_U3CDictionaryValueTypeU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ___U3CDictionaryValueTypeU3Ek__BackingField_29)); }
inline Type_t * get_U3CDictionaryValueTypeU3Ek__BackingField_29() const { return ___U3CDictionaryValueTypeU3Ek__BackingField_29; }
inline Type_t ** get_address_of_U3CDictionaryValueTypeU3Ek__BackingField_29() { return &___U3CDictionaryValueTypeU3Ek__BackingField_29; }
inline void set_U3CDictionaryValueTypeU3Ek__BackingField_29(Type_t * value)
{
___U3CDictionaryValueTypeU3Ek__BackingField_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDictionaryValueTypeU3Ek__BackingField_29), (void*)value);
}
inline static int32_t get_offset_of_U3CKeyContractU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ___U3CKeyContractU3Ek__BackingField_30)); }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * get_U3CKeyContractU3Ek__BackingField_30() const { return ___U3CKeyContractU3Ek__BackingField_30; }
inline JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** get_address_of_U3CKeyContractU3Ek__BackingField_30() { return &___U3CKeyContractU3Ek__BackingField_30; }
inline void set_U3CKeyContractU3Ek__BackingField_30(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * value)
{
___U3CKeyContractU3Ek__BackingField_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CKeyContractU3Ek__BackingField_30), (void*)value);
}
inline static int32_t get_offset_of__genericCollectionDefinitionType_31() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ____genericCollectionDefinitionType_31)); }
inline Type_t * get__genericCollectionDefinitionType_31() const { return ____genericCollectionDefinitionType_31; }
inline Type_t ** get_address_of__genericCollectionDefinitionType_31() { return &____genericCollectionDefinitionType_31; }
inline void set__genericCollectionDefinitionType_31(Type_t * value)
{
____genericCollectionDefinitionType_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericCollectionDefinitionType_31), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperType_32() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ____genericWrapperType_32)); }
inline Type_t * get__genericWrapperType_32() const { return ____genericWrapperType_32; }
inline Type_t ** get_address_of__genericWrapperType_32() { return &____genericWrapperType_32; }
inline void set__genericWrapperType_32(Type_t * value)
{
____genericWrapperType_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperType_32), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperCreator_33() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ____genericWrapperCreator_33)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__genericWrapperCreator_33() const { return ____genericWrapperCreator_33; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__genericWrapperCreator_33() { return &____genericWrapperCreator_33; }
inline void set__genericWrapperCreator_33(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____genericWrapperCreator_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperCreator_33), (void*)value);
}
inline static int32_t get_offset_of__genericTemporaryDictionaryCreator_34() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ____genericTemporaryDictionaryCreator_34)); }
inline Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * get__genericTemporaryDictionaryCreator_34() const { return ____genericTemporaryDictionaryCreator_34; }
inline Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 ** get_address_of__genericTemporaryDictionaryCreator_34() { return &____genericTemporaryDictionaryCreator_34; }
inline void set__genericTemporaryDictionaryCreator_34(Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * value)
{
____genericTemporaryDictionaryCreator_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericTemporaryDictionaryCreator_34), (void*)value);
}
inline static int32_t get_offset_of_U3CShouldCreateWrapperU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ___U3CShouldCreateWrapperU3Ek__BackingField_35)); }
inline bool get_U3CShouldCreateWrapperU3Ek__BackingField_35() const { return ___U3CShouldCreateWrapperU3Ek__BackingField_35; }
inline bool* get_address_of_U3CShouldCreateWrapperU3Ek__BackingField_35() { return &___U3CShouldCreateWrapperU3Ek__BackingField_35; }
inline void set_U3CShouldCreateWrapperU3Ek__BackingField_35(bool value)
{
___U3CShouldCreateWrapperU3Ek__BackingField_35 = value;
}
inline static int32_t get_offset_of__parameterizedConstructor_36() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ____parameterizedConstructor_36)); }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * get__parameterizedConstructor_36() const { return ____parameterizedConstructor_36; }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B ** get_address_of__parameterizedConstructor_36() { return &____parameterizedConstructor_36; }
inline void set__parameterizedConstructor_36(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * value)
{
____parameterizedConstructor_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedConstructor_36), (void*)value);
}
inline static int32_t get_offset_of__overrideCreator_37() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ____overrideCreator_37)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__overrideCreator_37() const { return ____overrideCreator_37; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__overrideCreator_37() { return &____overrideCreator_37; }
inline void set__overrideCreator_37(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____overrideCreator_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideCreator_37), (void*)value);
}
inline static int32_t get_offset_of__parameterizedCreator_38() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ____parameterizedCreator_38)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__parameterizedCreator_38() const { return ____parameterizedCreator_38; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__parameterizedCreator_38() { return &____parameterizedCreator_38; }
inline void set__parameterizedCreator_38(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____parameterizedCreator_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedCreator_38), (void*)value);
}
inline static int32_t get_offset_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976, ___U3CHasParameterizedCreatorU3Ek__BackingField_39)); }
inline bool get_U3CHasParameterizedCreatorU3Ek__BackingField_39() const { return ___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline bool* get_address_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return &___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline void set_U3CHasParameterizedCreatorU3Ek__BackingField_39(bool value)
{
___U3CHasParameterizedCreatorU3Ek__BackingField_39 = value;
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract
struct JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 : public JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990
{
public:
// Vuforia.Newtonsoft.Json.MemberSerialization Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::<MemberSerialization>k__BackingField
int32_t ___U3CMemberSerializationU3Ek__BackingField_27;
// System.Nullable`1<Vuforia.Newtonsoft.Json.Required> Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::<ItemRequired>k__BackingField
Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED ___U3CItemRequiredU3Ek__BackingField_28;
// Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::<Properties>k__BackingField
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * ___U3CPropertiesU3Ek__BackingField_29;
// Vuforia.Newtonsoft.Json.Serialization.ExtensionDataSetter Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::<ExtensionDataSetter>k__BackingField
ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * ___U3CExtensionDataSetterU3Ek__BackingField_30;
// Vuforia.Newtonsoft.Json.Serialization.ExtensionDataGetter Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::<ExtensionDataGetter>k__BackingField
ExtensionDataGetter_t132E91B650EF1BCB46858F03EC06E9B429D11CE8 * ___U3CExtensionDataGetterU3Ek__BackingField_31;
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::ExtensionDataIsJToken
bool ___ExtensionDataIsJToken_32;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::_hasRequiredOrDefaultValueProperties
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ____hasRequiredOrDefaultValueProperties_33;
// System.Reflection.ConstructorInfo Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::_parametrizedConstructor
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ____parametrizedConstructor_34;
// System.Reflection.ConstructorInfo Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::_overrideConstructor
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ____overrideConstructor_35;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::_overrideCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____overrideCreator_36;
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::_parameterizedCreator
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ____parameterizedCreator_37;
// Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::_creatorParameters
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * ____creatorParameters_38;
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::_extensionDataValueType
Type_t * ____extensionDataValueType_39;
public:
inline static int32_t get_offset_of_U3CMemberSerializationU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ___U3CMemberSerializationU3Ek__BackingField_27)); }
inline int32_t get_U3CMemberSerializationU3Ek__BackingField_27() const { return ___U3CMemberSerializationU3Ek__BackingField_27; }
inline int32_t* get_address_of_U3CMemberSerializationU3Ek__BackingField_27() { return &___U3CMemberSerializationU3Ek__BackingField_27; }
inline void set_U3CMemberSerializationU3Ek__BackingField_27(int32_t value)
{
___U3CMemberSerializationU3Ek__BackingField_27 = value;
}
inline static int32_t get_offset_of_U3CItemRequiredU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ___U3CItemRequiredU3Ek__BackingField_28)); }
inline Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED get_U3CItemRequiredU3Ek__BackingField_28() const { return ___U3CItemRequiredU3Ek__BackingField_28; }
inline Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED * get_address_of_U3CItemRequiredU3Ek__BackingField_28() { return &___U3CItemRequiredU3Ek__BackingField_28; }
inline void set_U3CItemRequiredU3Ek__BackingField_28(Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED value)
{
___U3CItemRequiredU3Ek__BackingField_28 = value;
}
inline static int32_t get_offset_of_U3CPropertiesU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ___U3CPropertiesU3Ek__BackingField_29)); }
inline JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * get_U3CPropertiesU3Ek__BackingField_29() const { return ___U3CPropertiesU3Ek__BackingField_29; }
inline JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E ** get_address_of_U3CPropertiesU3Ek__BackingField_29() { return &___U3CPropertiesU3Ek__BackingField_29; }
inline void set_U3CPropertiesU3Ek__BackingField_29(JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * value)
{
___U3CPropertiesU3Ek__BackingField_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertiesU3Ek__BackingField_29), (void*)value);
}
inline static int32_t get_offset_of_U3CExtensionDataSetterU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ___U3CExtensionDataSetterU3Ek__BackingField_30)); }
inline ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * get_U3CExtensionDataSetterU3Ek__BackingField_30() const { return ___U3CExtensionDataSetterU3Ek__BackingField_30; }
inline ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 ** get_address_of_U3CExtensionDataSetterU3Ek__BackingField_30() { return &___U3CExtensionDataSetterU3Ek__BackingField_30; }
inline void set_U3CExtensionDataSetterU3Ek__BackingField_30(ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * value)
{
___U3CExtensionDataSetterU3Ek__BackingField_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CExtensionDataSetterU3Ek__BackingField_30), (void*)value);
}
inline static int32_t get_offset_of_U3CExtensionDataGetterU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ___U3CExtensionDataGetterU3Ek__BackingField_31)); }
inline ExtensionDataGetter_t132E91B650EF1BCB46858F03EC06E9B429D11CE8 * get_U3CExtensionDataGetterU3Ek__BackingField_31() const { return ___U3CExtensionDataGetterU3Ek__BackingField_31; }
inline ExtensionDataGetter_t132E91B650EF1BCB46858F03EC06E9B429D11CE8 ** get_address_of_U3CExtensionDataGetterU3Ek__BackingField_31() { return &___U3CExtensionDataGetterU3Ek__BackingField_31; }
inline void set_U3CExtensionDataGetterU3Ek__BackingField_31(ExtensionDataGetter_t132E91B650EF1BCB46858F03EC06E9B429D11CE8 * value)
{
___U3CExtensionDataGetterU3Ek__BackingField_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CExtensionDataGetterU3Ek__BackingField_31), (void*)value);
}
inline static int32_t get_offset_of_ExtensionDataIsJToken_32() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ___ExtensionDataIsJToken_32)); }
inline bool get_ExtensionDataIsJToken_32() const { return ___ExtensionDataIsJToken_32; }
inline bool* get_address_of_ExtensionDataIsJToken_32() { return &___ExtensionDataIsJToken_32; }
inline void set_ExtensionDataIsJToken_32(bool value)
{
___ExtensionDataIsJToken_32 = value;
}
inline static int32_t get_offset_of__hasRequiredOrDefaultValueProperties_33() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ____hasRequiredOrDefaultValueProperties_33)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get__hasRequiredOrDefaultValueProperties_33() const { return ____hasRequiredOrDefaultValueProperties_33; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of__hasRequiredOrDefaultValueProperties_33() { return &____hasRequiredOrDefaultValueProperties_33; }
inline void set__hasRequiredOrDefaultValueProperties_33(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
____hasRequiredOrDefaultValueProperties_33 = value;
}
inline static int32_t get_offset_of__parametrizedConstructor_34() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ____parametrizedConstructor_34)); }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * get__parametrizedConstructor_34() const { return ____parametrizedConstructor_34; }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B ** get_address_of__parametrizedConstructor_34() { return &____parametrizedConstructor_34; }
inline void set__parametrizedConstructor_34(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * value)
{
____parametrizedConstructor_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parametrizedConstructor_34), (void*)value);
}
inline static int32_t get_offset_of__overrideConstructor_35() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ____overrideConstructor_35)); }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * get__overrideConstructor_35() const { return ____overrideConstructor_35; }
inline ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B ** get_address_of__overrideConstructor_35() { return &____overrideConstructor_35; }
inline void set__overrideConstructor_35(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * value)
{
____overrideConstructor_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideConstructor_35), (void*)value);
}
inline static int32_t get_offset_of__overrideCreator_36() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ____overrideCreator_36)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__overrideCreator_36() const { return ____overrideCreator_36; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__overrideCreator_36() { return &____overrideCreator_36; }
inline void set__overrideCreator_36(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____overrideCreator_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideCreator_36), (void*)value);
}
inline static int32_t get_offset_of__parameterizedCreator_37() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ____parameterizedCreator_37)); }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * get__parameterizedCreator_37() const { return ____parameterizedCreator_37; }
inline ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF ** get_address_of__parameterizedCreator_37() { return &____parameterizedCreator_37; }
inline void set__parameterizedCreator_37(ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * value)
{
____parameterizedCreator_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedCreator_37), (void*)value);
}
inline static int32_t get_offset_of__creatorParameters_38() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ____creatorParameters_38)); }
inline JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * get__creatorParameters_38() const { return ____creatorParameters_38; }
inline JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E ** get_address_of__creatorParameters_38() { return &____creatorParameters_38; }
inline void set__creatorParameters_38(JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * value)
{
____creatorParameters_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&____creatorParameters_38), (void*)value);
}
inline static int32_t get_offset_of__extensionDataValueType_39() { return static_cast<int32_t>(offsetof(JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416, ____extensionDataValueType_39)); }
inline Type_t * get__extensionDataValueType_39() const { return ____extensionDataValueType_39; }
inline Type_t ** get_address_of__extensionDataValueType_39() { return &____extensionDataValueType_39; }
inline void set__extensionDataValueType_39(Type_t * value)
{
____extensionDataValueType_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&____extensionDataValueType_39), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy
struct JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 : public JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670
{
public:
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy::_serializerReader
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * ____serializerReader_31;
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy::_serializerWriter
JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * ____serializerWriter_32;
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy::_serializer
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ____serializer_33;
public:
inline static int32_t get_offset_of__serializerReader_31() { return static_cast<int32_t>(offsetof(JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2, ____serializerReader_31)); }
inline JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * get__serializerReader_31() const { return ____serializerReader_31; }
inline JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 ** get_address_of__serializerReader_31() { return &____serializerReader_31; }
inline void set__serializerReader_31(JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * value)
{
____serializerReader_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializerReader_31), (void*)value);
}
inline static int32_t get_offset_of__serializerWriter_32() { return static_cast<int32_t>(offsetof(JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2, ____serializerWriter_32)); }
inline JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * get__serializerWriter_32() const { return ____serializerWriter_32; }
inline JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 ** get_address_of__serializerWriter_32() { return &____serializerWriter_32; }
inline void set__serializerWriter_32(JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * value)
{
____serializerWriter_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializerWriter_32), (void*)value);
}
inline static int32_t get_offset_of__serializer_33() { return static_cast<int32_t>(offsetof(JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2, ____serializer_33)); }
inline JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * get__serializer_33() const { return ____serializer_33; }
inline JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 ** get_address_of__serializer_33() { return &____serializer_33; }
inline void set__serializer_33(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * value)
{
____serializer_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializer_33), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonSerializerSettings
struct JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 : public RuntimeObject
{
public:
// System.Nullable`1<Vuforia.Newtonsoft.Json.Formatting> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_formatting
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E ____formatting_22;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateFormatHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_dateFormatHandling
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 ____dateFormatHandling_23;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_dateTimeZoneHandling
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 ____dateTimeZoneHandling_24;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_dateParseHandling
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F ____dateParseHandling_25;
// System.Nullable`1<Vuforia.Newtonsoft.Json.FloatFormatHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_floatFormatHandling
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD ____floatFormatHandling_26;
// System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_floatParseHandling
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D ____floatParseHandling_27;
// System.Nullable`1<Vuforia.Newtonsoft.Json.StringEscapeHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_stringEscapeHandling
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A ____stringEscapeHandling_28;
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonSerializerSettings::_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____culture_29;
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_checkAdditionalContent
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ____checkAdditionalContent_30;
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_maxDepth
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ____maxDepth_31;
// System.Boolean Vuforia.Newtonsoft.Json.JsonSerializerSettings::_maxDepthSet
bool ____maxDepthSet_32;
// System.String Vuforia.Newtonsoft.Json.JsonSerializerSettings::_dateFormatString
String_t* ____dateFormatString_33;
// System.Boolean Vuforia.Newtonsoft.Json.JsonSerializerSettings::_dateFormatStringSet
bool ____dateFormatStringSet_34;
// System.Nullable`1<System.Runtime.Serialization.Formatters.FormatterAssemblyStyle> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_typeNameAssemblyFormat
Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E ____typeNameAssemblyFormat_35;
// System.Nullable`1<Vuforia.Newtonsoft.Json.DefaultValueHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_defaultValueHandling
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 ____defaultValueHandling_36;
// System.Nullable`1<Vuforia.Newtonsoft.Json.PreserveReferencesHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_preserveReferencesHandling
Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 ____preserveReferencesHandling_37;
// System.Nullable`1<Vuforia.Newtonsoft.Json.NullValueHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_nullValueHandling
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 ____nullValueHandling_38;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ObjectCreationHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_objectCreationHandling
Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 ____objectCreationHandling_39;
// System.Nullable`1<Vuforia.Newtonsoft.Json.MissingMemberHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_missingMemberHandling
Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 ____missingMemberHandling_40;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ReferenceLoopHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_referenceLoopHandling
Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB ____referenceLoopHandling_41;
// System.Nullable`1<System.Runtime.Serialization.StreamingContext> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_context
Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 ____context_42;
// System.Nullable`1<Vuforia.Newtonsoft.Json.ConstructorHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_constructorHandling
Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D ____constructorHandling_43;
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_typeNameHandling
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ____typeNameHandling_44;
// System.Nullable`1<Vuforia.Newtonsoft.Json.MetadataPropertyHandling> Vuforia.Newtonsoft.Json.JsonSerializerSettings::_metadataPropertyHandling
Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 ____metadataPropertyHandling_45;
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.JsonConverter> Vuforia.Newtonsoft.Json.JsonSerializerSettings::<Converters>k__BackingField
RuntimeObject* ___U3CConvertersU3Ek__BackingField_46;
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.JsonSerializerSettings::<ContractResolver>k__BackingField
RuntimeObject* ___U3CContractResolverU3Ek__BackingField_47;
// System.Collections.IEqualityComparer Vuforia.Newtonsoft.Json.JsonSerializerSettings::<EqualityComparer>k__BackingField
RuntimeObject* ___U3CEqualityComparerU3Ek__BackingField_48;
// System.Func`1<Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver> Vuforia.Newtonsoft.Json.JsonSerializerSettings::<ReferenceResolverProvider>k__BackingField
Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * ___U3CReferenceResolverProviderU3Ek__BackingField_49;
// Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializerSettings::<TraceWriter>k__BackingField
RuntimeObject* ___U3CTraceWriterU3Ek__BackingField_50;
// Vuforia.Newtonsoft.Json.SerializationBinder Vuforia.Newtonsoft.Json.JsonSerializerSettings::<Binder>k__BackingField
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * ___U3CBinderU3Ek__BackingField_51;
// System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs> Vuforia.Newtonsoft.Json.JsonSerializerSettings::<Error>k__BackingField
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * ___U3CErrorU3Ek__BackingField_52;
public:
inline static int32_t get_offset_of__formatting_22() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____formatting_22)); }
inline Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E get__formatting_22() const { return ____formatting_22; }
inline Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * get_address_of__formatting_22() { return &____formatting_22; }
inline void set__formatting_22(Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E value)
{
____formatting_22 = value;
}
inline static int32_t get_offset_of__dateFormatHandling_23() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____dateFormatHandling_23)); }
inline Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 get__dateFormatHandling_23() const { return ____dateFormatHandling_23; }
inline Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * get_address_of__dateFormatHandling_23() { return &____dateFormatHandling_23; }
inline void set__dateFormatHandling_23(Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 value)
{
____dateFormatHandling_23 = value;
}
inline static int32_t get_offset_of__dateTimeZoneHandling_24() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____dateTimeZoneHandling_24)); }
inline Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 get__dateTimeZoneHandling_24() const { return ____dateTimeZoneHandling_24; }
inline Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * get_address_of__dateTimeZoneHandling_24() { return &____dateTimeZoneHandling_24; }
inline void set__dateTimeZoneHandling_24(Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 value)
{
____dateTimeZoneHandling_24 = value;
}
inline static int32_t get_offset_of__dateParseHandling_25() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____dateParseHandling_25)); }
inline Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F get__dateParseHandling_25() const { return ____dateParseHandling_25; }
inline Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * get_address_of__dateParseHandling_25() { return &____dateParseHandling_25; }
inline void set__dateParseHandling_25(Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F value)
{
____dateParseHandling_25 = value;
}
inline static int32_t get_offset_of__floatFormatHandling_26() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____floatFormatHandling_26)); }
inline Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD get__floatFormatHandling_26() const { return ____floatFormatHandling_26; }
inline Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * get_address_of__floatFormatHandling_26() { return &____floatFormatHandling_26; }
inline void set__floatFormatHandling_26(Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD value)
{
____floatFormatHandling_26 = value;
}
inline static int32_t get_offset_of__floatParseHandling_27() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____floatParseHandling_27)); }
inline Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D get__floatParseHandling_27() const { return ____floatParseHandling_27; }
inline Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * get_address_of__floatParseHandling_27() { return &____floatParseHandling_27; }
inline void set__floatParseHandling_27(Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D value)
{
____floatParseHandling_27 = value;
}
inline static int32_t get_offset_of__stringEscapeHandling_28() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____stringEscapeHandling_28)); }
inline Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A get__stringEscapeHandling_28() const { return ____stringEscapeHandling_28; }
inline Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * get_address_of__stringEscapeHandling_28() { return &____stringEscapeHandling_28; }
inline void set__stringEscapeHandling_28(Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A value)
{
____stringEscapeHandling_28 = value;
}
inline static int32_t get_offset_of__culture_29() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____culture_29)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__culture_29() const { return ____culture_29; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__culture_29() { return &____culture_29; }
inline void set__culture_29(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
____culture_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&____culture_29), (void*)value);
}
inline static int32_t get_offset_of__checkAdditionalContent_30() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____checkAdditionalContent_30)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get__checkAdditionalContent_30() const { return ____checkAdditionalContent_30; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of__checkAdditionalContent_30() { return &____checkAdditionalContent_30; }
inline void set__checkAdditionalContent_30(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
____checkAdditionalContent_30 = value;
}
inline static int32_t get_offset_of__maxDepth_31() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____maxDepth_31)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get__maxDepth_31() const { return ____maxDepth_31; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of__maxDepth_31() { return &____maxDepth_31; }
inline void set__maxDepth_31(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
____maxDepth_31 = value;
}
inline static int32_t get_offset_of__maxDepthSet_32() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____maxDepthSet_32)); }
inline bool get__maxDepthSet_32() const { return ____maxDepthSet_32; }
inline bool* get_address_of__maxDepthSet_32() { return &____maxDepthSet_32; }
inline void set__maxDepthSet_32(bool value)
{
____maxDepthSet_32 = value;
}
inline static int32_t get_offset_of__dateFormatString_33() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____dateFormatString_33)); }
inline String_t* get__dateFormatString_33() const { return ____dateFormatString_33; }
inline String_t** get_address_of__dateFormatString_33() { return &____dateFormatString_33; }
inline void set__dateFormatString_33(String_t* value)
{
____dateFormatString_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dateFormatString_33), (void*)value);
}
inline static int32_t get_offset_of__dateFormatStringSet_34() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____dateFormatStringSet_34)); }
inline bool get__dateFormatStringSet_34() const { return ____dateFormatStringSet_34; }
inline bool* get_address_of__dateFormatStringSet_34() { return &____dateFormatStringSet_34; }
inline void set__dateFormatStringSet_34(bool value)
{
____dateFormatStringSet_34 = value;
}
inline static int32_t get_offset_of__typeNameAssemblyFormat_35() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____typeNameAssemblyFormat_35)); }
inline Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E get__typeNameAssemblyFormat_35() const { return ____typeNameAssemblyFormat_35; }
inline Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E * get_address_of__typeNameAssemblyFormat_35() { return &____typeNameAssemblyFormat_35; }
inline void set__typeNameAssemblyFormat_35(Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E value)
{
____typeNameAssemblyFormat_35 = value;
}
inline static int32_t get_offset_of__defaultValueHandling_36() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____defaultValueHandling_36)); }
inline Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 get__defaultValueHandling_36() const { return ____defaultValueHandling_36; }
inline Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 * get_address_of__defaultValueHandling_36() { return &____defaultValueHandling_36; }
inline void set__defaultValueHandling_36(Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 value)
{
____defaultValueHandling_36 = value;
}
inline static int32_t get_offset_of__preserveReferencesHandling_37() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____preserveReferencesHandling_37)); }
inline Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 get__preserveReferencesHandling_37() const { return ____preserveReferencesHandling_37; }
inline Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 * get_address_of__preserveReferencesHandling_37() { return &____preserveReferencesHandling_37; }
inline void set__preserveReferencesHandling_37(Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 value)
{
____preserveReferencesHandling_37 = value;
}
inline static int32_t get_offset_of__nullValueHandling_38() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____nullValueHandling_38)); }
inline Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 get__nullValueHandling_38() const { return ____nullValueHandling_38; }
inline Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 * get_address_of__nullValueHandling_38() { return &____nullValueHandling_38; }
inline void set__nullValueHandling_38(Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 value)
{
____nullValueHandling_38 = value;
}
inline static int32_t get_offset_of__objectCreationHandling_39() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____objectCreationHandling_39)); }
inline Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 get__objectCreationHandling_39() const { return ____objectCreationHandling_39; }
inline Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 * get_address_of__objectCreationHandling_39() { return &____objectCreationHandling_39; }
inline void set__objectCreationHandling_39(Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 value)
{
____objectCreationHandling_39 = value;
}
inline static int32_t get_offset_of__missingMemberHandling_40() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____missingMemberHandling_40)); }
inline Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 get__missingMemberHandling_40() const { return ____missingMemberHandling_40; }
inline Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 * get_address_of__missingMemberHandling_40() { return &____missingMemberHandling_40; }
inline void set__missingMemberHandling_40(Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 value)
{
____missingMemberHandling_40 = value;
}
inline static int32_t get_offset_of__referenceLoopHandling_41() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____referenceLoopHandling_41)); }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB get__referenceLoopHandling_41() const { return ____referenceLoopHandling_41; }
inline Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB * get_address_of__referenceLoopHandling_41() { return &____referenceLoopHandling_41; }
inline void set__referenceLoopHandling_41(Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB value)
{
____referenceLoopHandling_41 = value;
}
inline static int32_t get_offset_of__context_42() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____context_42)); }
inline Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 get__context_42() const { return ____context_42; }
inline Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 * get_address_of__context_42() { return &____context_42; }
inline void set__context_42(Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 value)
{
____context_42 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&____context_42))->___value_0))->___m_additionalContext_0), (void*)NULL);
}
inline static int32_t get_offset_of__constructorHandling_43() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____constructorHandling_43)); }
inline Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D get__constructorHandling_43() const { return ____constructorHandling_43; }
inline Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D * get_address_of__constructorHandling_43() { return &____constructorHandling_43; }
inline void set__constructorHandling_43(Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D value)
{
____constructorHandling_43 = value;
}
inline static int32_t get_offset_of__typeNameHandling_44() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____typeNameHandling_44)); }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 get__typeNameHandling_44() const { return ____typeNameHandling_44; }
inline Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * get_address_of__typeNameHandling_44() { return &____typeNameHandling_44; }
inline void set__typeNameHandling_44(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 value)
{
____typeNameHandling_44 = value;
}
inline static int32_t get_offset_of__metadataPropertyHandling_45() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ____metadataPropertyHandling_45)); }
inline Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 get__metadataPropertyHandling_45() const { return ____metadataPropertyHandling_45; }
inline Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 * get_address_of__metadataPropertyHandling_45() { return &____metadataPropertyHandling_45; }
inline void set__metadataPropertyHandling_45(Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 value)
{
____metadataPropertyHandling_45 = value;
}
inline static int32_t get_offset_of_U3CConvertersU3Ek__BackingField_46() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ___U3CConvertersU3Ek__BackingField_46)); }
inline RuntimeObject* get_U3CConvertersU3Ek__BackingField_46() const { return ___U3CConvertersU3Ek__BackingField_46; }
inline RuntimeObject** get_address_of_U3CConvertersU3Ek__BackingField_46() { return &___U3CConvertersU3Ek__BackingField_46; }
inline void set_U3CConvertersU3Ek__BackingField_46(RuntimeObject* value)
{
___U3CConvertersU3Ek__BackingField_46 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CConvertersU3Ek__BackingField_46), (void*)value);
}
inline static int32_t get_offset_of_U3CContractResolverU3Ek__BackingField_47() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ___U3CContractResolverU3Ek__BackingField_47)); }
inline RuntimeObject* get_U3CContractResolverU3Ek__BackingField_47() const { return ___U3CContractResolverU3Ek__BackingField_47; }
inline RuntimeObject** get_address_of_U3CContractResolverU3Ek__BackingField_47() { return &___U3CContractResolverU3Ek__BackingField_47; }
inline void set_U3CContractResolverU3Ek__BackingField_47(RuntimeObject* value)
{
___U3CContractResolverU3Ek__BackingField_47 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CContractResolverU3Ek__BackingField_47), (void*)value);
}
inline static int32_t get_offset_of_U3CEqualityComparerU3Ek__BackingField_48() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ___U3CEqualityComparerU3Ek__BackingField_48)); }
inline RuntimeObject* get_U3CEqualityComparerU3Ek__BackingField_48() const { return ___U3CEqualityComparerU3Ek__BackingField_48; }
inline RuntimeObject** get_address_of_U3CEqualityComparerU3Ek__BackingField_48() { return &___U3CEqualityComparerU3Ek__BackingField_48; }
inline void set_U3CEqualityComparerU3Ek__BackingField_48(RuntimeObject* value)
{
___U3CEqualityComparerU3Ek__BackingField_48 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CEqualityComparerU3Ek__BackingField_48), (void*)value);
}
inline static int32_t get_offset_of_U3CReferenceResolverProviderU3Ek__BackingField_49() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ___U3CReferenceResolverProviderU3Ek__BackingField_49)); }
inline Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * get_U3CReferenceResolverProviderU3Ek__BackingField_49() const { return ___U3CReferenceResolverProviderU3Ek__BackingField_49; }
inline Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A ** get_address_of_U3CReferenceResolverProviderU3Ek__BackingField_49() { return &___U3CReferenceResolverProviderU3Ek__BackingField_49; }
inline void set_U3CReferenceResolverProviderU3Ek__BackingField_49(Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * value)
{
___U3CReferenceResolverProviderU3Ek__BackingField_49 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CReferenceResolverProviderU3Ek__BackingField_49), (void*)value);
}
inline static int32_t get_offset_of_U3CTraceWriterU3Ek__BackingField_50() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ___U3CTraceWriterU3Ek__BackingField_50)); }
inline RuntimeObject* get_U3CTraceWriterU3Ek__BackingField_50() const { return ___U3CTraceWriterU3Ek__BackingField_50; }
inline RuntimeObject** get_address_of_U3CTraceWriterU3Ek__BackingField_50() { return &___U3CTraceWriterU3Ek__BackingField_50; }
inline void set_U3CTraceWriterU3Ek__BackingField_50(RuntimeObject* value)
{
___U3CTraceWriterU3Ek__BackingField_50 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTraceWriterU3Ek__BackingField_50), (void*)value);
}
inline static int32_t get_offset_of_U3CBinderU3Ek__BackingField_51() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ___U3CBinderU3Ek__BackingField_51)); }
inline SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * get_U3CBinderU3Ek__BackingField_51() const { return ___U3CBinderU3Ek__BackingField_51; }
inline SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC ** get_address_of_U3CBinderU3Ek__BackingField_51() { return &___U3CBinderU3Ek__BackingField_51; }
inline void set_U3CBinderU3Ek__BackingField_51(SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * value)
{
___U3CBinderU3Ek__BackingField_51 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CBinderU3Ek__BackingField_51), (void*)value);
}
inline static int32_t get_offset_of_U3CErrorU3Ek__BackingField_52() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06, ___U3CErrorU3Ek__BackingField_52)); }
inline EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * get_U3CErrorU3Ek__BackingField_52() const { return ___U3CErrorU3Ek__BackingField_52; }
inline EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B ** get_address_of_U3CErrorU3Ek__BackingField_52() { return &___U3CErrorU3Ek__BackingField_52; }
inline void set_U3CErrorU3Ek__BackingField_52(EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * value)
{
___U3CErrorU3Ek__BackingField_52 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CErrorU3Ek__BackingField_52), (void*)value);
}
};
struct JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_StaticFields
{
public:
// System.Runtime.Serialization.StreamingContext Vuforia.Newtonsoft.Json.JsonSerializerSettings::DefaultContext
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___DefaultContext_10;
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonSerializerSettings::DefaultCulture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___DefaultCulture_19;
public:
inline static int32_t get_offset_of_DefaultContext_10() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_StaticFields, ___DefaultContext_10)); }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 get_DefaultContext_10() const { return ___DefaultContext_10; }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 * get_address_of_DefaultContext_10() { return &___DefaultContext_10; }
inline void set_DefaultContext_10(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 value)
{
___DefaultContext_10 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___DefaultContext_10))->___m_additionalContext_0), (void*)NULL);
}
inline static int32_t get_offset_of_DefaultCulture_19() { return static_cast<int32_t>(offsetof(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_StaticFields, ___DefaultCulture_19)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_DefaultCulture_19() const { return ___DefaultCulture_19; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_DefaultCulture_19() { return &___DefaultCulture_19; }
inline void set_DefaultCulture_19(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___DefaultCulture_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultCulture_19), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonTextReader
struct JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE : public JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96
{
public:
// System.IO.TextReader Vuforia.Newtonsoft.Json.JsonTextReader::_reader
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ____reader_17;
// System.Char[] Vuforia.Newtonsoft.Json.JsonTextReader::_chars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____chars_18;
// System.Int32 Vuforia.Newtonsoft.Json.JsonTextReader::_charsUsed
int32_t ____charsUsed_19;
// System.Int32 Vuforia.Newtonsoft.Json.JsonTextReader::_charPos
int32_t ____charPos_20;
// System.Int32 Vuforia.Newtonsoft.Json.JsonTextReader::_lineStartPos
int32_t ____lineStartPos_21;
// System.Int32 Vuforia.Newtonsoft.Json.JsonTextReader::_lineNumber
int32_t ____lineNumber_22;
// System.Boolean Vuforia.Newtonsoft.Json.JsonTextReader::_isEndOfFile
bool ____isEndOfFile_23;
// Vuforia.Newtonsoft.Json.Utilities.StringBuffer Vuforia.Newtonsoft.Json.JsonTextReader::_stringBuffer
StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50 ____stringBuffer_24;
// Vuforia.Newtonsoft.Json.Utilities.StringReference Vuforia.Newtonsoft.Json.JsonTextReader::_stringReference
StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B ____stringReference_25;
// Vuforia.Newtonsoft.Json.IArrayPool`1<System.Char> Vuforia.Newtonsoft.Json.JsonTextReader::_arrayPool
RuntimeObject* ____arrayPool_26;
// Vuforia.Newtonsoft.Json.Utilities.PropertyNameTable Vuforia.Newtonsoft.Json.JsonTextReader::NameTable
PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 * ___NameTable_27;
public:
inline static int32_t get_offset_of__reader_17() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____reader_17)); }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get__reader_17() const { return ____reader_17; }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of__reader_17() { return &____reader_17; }
inline void set__reader_17(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value)
{
____reader_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____reader_17), (void*)value);
}
inline static int32_t get_offset_of__chars_18() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____chars_18)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__chars_18() const { return ____chars_18; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__chars_18() { return &____chars_18; }
inline void set__chars_18(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____chars_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____chars_18), (void*)value);
}
inline static int32_t get_offset_of__charsUsed_19() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____charsUsed_19)); }
inline int32_t get__charsUsed_19() const { return ____charsUsed_19; }
inline int32_t* get_address_of__charsUsed_19() { return &____charsUsed_19; }
inline void set__charsUsed_19(int32_t value)
{
____charsUsed_19 = value;
}
inline static int32_t get_offset_of__charPos_20() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____charPos_20)); }
inline int32_t get__charPos_20() const { return ____charPos_20; }
inline int32_t* get_address_of__charPos_20() { return &____charPos_20; }
inline void set__charPos_20(int32_t value)
{
____charPos_20 = value;
}
inline static int32_t get_offset_of__lineStartPos_21() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____lineStartPos_21)); }
inline int32_t get__lineStartPos_21() const { return ____lineStartPos_21; }
inline int32_t* get_address_of__lineStartPos_21() { return &____lineStartPos_21; }
inline void set__lineStartPos_21(int32_t value)
{
____lineStartPos_21 = value;
}
inline static int32_t get_offset_of__lineNumber_22() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____lineNumber_22)); }
inline int32_t get__lineNumber_22() const { return ____lineNumber_22; }
inline int32_t* get_address_of__lineNumber_22() { return &____lineNumber_22; }
inline void set__lineNumber_22(int32_t value)
{
____lineNumber_22 = value;
}
inline static int32_t get_offset_of__isEndOfFile_23() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____isEndOfFile_23)); }
inline bool get__isEndOfFile_23() const { return ____isEndOfFile_23; }
inline bool* get_address_of__isEndOfFile_23() { return &____isEndOfFile_23; }
inline void set__isEndOfFile_23(bool value)
{
____isEndOfFile_23 = value;
}
inline static int32_t get_offset_of__stringBuffer_24() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____stringBuffer_24)); }
inline StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50 get__stringBuffer_24() const { return ____stringBuffer_24; }
inline StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50 * get_address_of__stringBuffer_24() { return &____stringBuffer_24; }
inline void set__stringBuffer_24(StringBuffer_tE183DC76BF64AED76F1E0AC362F805E5454B5E50 value)
{
____stringBuffer_24 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____stringBuffer_24))->____buffer_0), (void*)NULL);
}
inline static int32_t get_offset_of__stringReference_25() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____stringReference_25)); }
inline StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B get__stringReference_25() const { return ____stringReference_25; }
inline StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B * get_address_of__stringReference_25() { return &____stringReference_25; }
inline void set__stringReference_25(StringReference_t436A295EF51248C106A1986D97E341CF76D98F3B value)
{
____stringReference_25 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____stringReference_25))->____chars_0), (void*)NULL);
}
inline static int32_t get_offset_of__arrayPool_26() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ____arrayPool_26)); }
inline RuntimeObject* get__arrayPool_26() const { return ____arrayPool_26; }
inline RuntimeObject** get_address_of__arrayPool_26() { return &____arrayPool_26; }
inline void set__arrayPool_26(RuntimeObject* value)
{
____arrayPool_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&____arrayPool_26), (void*)value);
}
inline static int32_t get_offset_of_NameTable_27() { return static_cast<int32_t>(offsetof(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE, ___NameTable_27)); }
inline PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 * get_NameTable_27() const { return ___NameTable_27; }
inline PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 ** get_address_of_NameTable_27() { return &___NameTable_27; }
inline void set_NameTable_27(PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 * value)
{
___NameTable_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NameTable_27), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonTextWriter
struct JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 : public JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D
{
public:
// System.IO.TextWriter Vuforia.Newtonsoft.Json.JsonTextWriter::_writer
TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ____writer_13;
// Vuforia.Newtonsoft.Json.Utilities.Base64Encoder Vuforia.Newtonsoft.Json.JsonTextWriter::_base64Encoder
Base64Encoder_tF29E645A13F9C03B8285586049896462EAFF45D9 * ____base64Encoder_14;
// System.Char Vuforia.Newtonsoft.Json.JsonTextWriter::_indentChar
Il2CppChar ____indentChar_15;
// System.Int32 Vuforia.Newtonsoft.Json.JsonTextWriter::_indentation
int32_t ____indentation_16;
// System.Char Vuforia.Newtonsoft.Json.JsonTextWriter::_quoteChar
Il2CppChar ____quoteChar_17;
// System.Boolean Vuforia.Newtonsoft.Json.JsonTextWriter::_quoteName
bool ____quoteName_18;
// System.Boolean[] Vuforia.Newtonsoft.Json.JsonTextWriter::_charEscapeFlags
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ____charEscapeFlags_19;
// System.Char[] Vuforia.Newtonsoft.Json.JsonTextWriter::_writeBuffer
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____writeBuffer_20;
// Vuforia.Newtonsoft.Json.IArrayPool`1<System.Char> Vuforia.Newtonsoft.Json.JsonTextWriter::_arrayPool
RuntimeObject* ____arrayPool_21;
// System.Char[] Vuforia.Newtonsoft.Json.JsonTextWriter::_indentChars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____indentChars_22;
public:
inline static int32_t get_offset_of__writer_13() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____writer_13)); }
inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get__writer_13() const { return ____writer_13; }
inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of__writer_13() { return &____writer_13; }
inline void set__writer_13(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value)
{
____writer_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____writer_13), (void*)value);
}
inline static int32_t get_offset_of__base64Encoder_14() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____base64Encoder_14)); }
inline Base64Encoder_tF29E645A13F9C03B8285586049896462EAFF45D9 * get__base64Encoder_14() const { return ____base64Encoder_14; }
inline Base64Encoder_tF29E645A13F9C03B8285586049896462EAFF45D9 ** get_address_of__base64Encoder_14() { return &____base64Encoder_14; }
inline void set__base64Encoder_14(Base64Encoder_tF29E645A13F9C03B8285586049896462EAFF45D9 * value)
{
____base64Encoder_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____base64Encoder_14), (void*)value);
}
inline static int32_t get_offset_of__indentChar_15() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____indentChar_15)); }
inline Il2CppChar get__indentChar_15() const { return ____indentChar_15; }
inline Il2CppChar* get_address_of__indentChar_15() { return &____indentChar_15; }
inline void set__indentChar_15(Il2CppChar value)
{
____indentChar_15 = value;
}
inline static int32_t get_offset_of__indentation_16() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____indentation_16)); }
inline int32_t get__indentation_16() const { return ____indentation_16; }
inline int32_t* get_address_of__indentation_16() { return &____indentation_16; }
inline void set__indentation_16(int32_t value)
{
____indentation_16 = value;
}
inline static int32_t get_offset_of__quoteChar_17() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____quoteChar_17)); }
inline Il2CppChar get__quoteChar_17() const { return ____quoteChar_17; }
inline Il2CppChar* get_address_of__quoteChar_17() { return &____quoteChar_17; }
inline void set__quoteChar_17(Il2CppChar value)
{
____quoteChar_17 = value;
}
inline static int32_t get_offset_of__quoteName_18() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____quoteName_18)); }
inline bool get__quoteName_18() const { return ____quoteName_18; }
inline bool* get_address_of__quoteName_18() { return &____quoteName_18; }
inline void set__quoteName_18(bool value)
{
____quoteName_18 = value;
}
inline static int32_t get_offset_of__charEscapeFlags_19() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____charEscapeFlags_19)); }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get__charEscapeFlags_19() const { return ____charEscapeFlags_19; }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of__charEscapeFlags_19() { return &____charEscapeFlags_19; }
inline void set__charEscapeFlags_19(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value)
{
____charEscapeFlags_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____charEscapeFlags_19), (void*)value);
}
inline static int32_t get_offset_of__writeBuffer_20() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____writeBuffer_20)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__writeBuffer_20() const { return ____writeBuffer_20; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__writeBuffer_20() { return &____writeBuffer_20; }
inline void set__writeBuffer_20(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____writeBuffer_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&____writeBuffer_20), (void*)value);
}
inline static int32_t get_offset_of__arrayPool_21() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____arrayPool_21)); }
inline RuntimeObject* get__arrayPool_21() const { return ____arrayPool_21; }
inline RuntimeObject** get_address_of__arrayPool_21() { return &____arrayPool_21; }
inline void set__arrayPool_21(RuntimeObject* value)
{
____arrayPool_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&____arrayPool_21), (void*)value);
}
inline static int32_t get_offset_of__indentChars_22() { return static_cast<int32_t>(offsetof(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0, ____indentChars_22)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__indentChars_22() const { return ____indentChars_22; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__indentChars_22() { return &____indentChars_22; }
inline void set__indentChars_22(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____indentChars_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____indentChars_22), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.TraceJsonReader
struct TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B : public JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96
{
public:
// Vuforia.Newtonsoft.Json.JsonReader Vuforia.Newtonsoft.Json.Serialization.TraceJsonReader::_innerReader
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ____innerReader_15;
// Vuforia.Newtonsoft.Json.JsonTextWriter Vuforia.Newtonsoft.Json.Serialization.TraceJsonReader::_textWriter
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * ____textWriter_16;
// System.IO.StringWriter Vuforia.Newtonsoft.Json.Serialization.TraceJsonReader::_sw
StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * ____sw_17;
public:
inline static int32_t get_offset_of__innerReader_15() { return static_cast<int32_t>(offsetof(TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B, ____innerReader_15)); }
inline JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * get__innerReader_15() const { return ____innerReader_15; }
inline JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 ** get_address_of__innerReader_15() { return &____innerReader_15; }
inline void set__innerReader_15(JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * value)
{
____innerReader_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerReader_15), (void*)value);
}
inline static int32_t get_offset_of__textWriter_16() { return static_cast<int32_t>(offsetof(TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B, ____textWriter_16)); }
inline JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * get__textWriter_16() const { return ____textWriter_16; }
inline JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 ** get_address_of__textWriter_16() { return &____textWriter_16; }
inline void set__textWriter_16(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * value)
{
____textWriter_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____textWriter_16), (void*)value);
}
inline static int32_t get_offset_of__sw_17() { return static_cast<int32_t>(offsetof(TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B, ____sw_17)); }
inline StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * get__sw_17() const { return ____sw_17; }
inline StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 ** get_address_of__sw_17() { return &____sw_17; }
inline void set__sw_17(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * value)
{
____sw_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sw_17), (void*)value);
}
};
// Vuforia.Newtonsoft.Json.Serialization.TraceJsonWriter
struct TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A : public JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D
{
public:
// Vuforia.Newtonsoft.Json.JsonWriter Vuforia.Newtonsoft.Json.Serialization.TraceJsonWriter::_innerWriter
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ____innerWriter_13;
// Vuforia.Newtonsoft.Json.JsonTextWriter Vuforia.Newtonsoft.Json.Serialization.TraceJsonWriter::_textWriter
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * ____textWriter_14;
// System.IO.StringWriter Vuforia.Newtonsoft.Json.Serialization.TraceJsonWriter::_sw
StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * ____sw_15;
public:
inline static int32_t get_offset_of__innerWriter_13() { return static_cast<int32_t>(offsetof(TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A, ____innerWriter_13)); }
inline JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * get__innerWriter_13() const { return ____innerWriter_13; }
inline JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D ** get_address_of__innerWriter_13() { return &____innerWriter_13; }
inline void set__innerWriter_13(JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * value)
{
____innerWriter_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerWriter_13), (void*)value);
}
inline static int32_t get_offset_of__textWriter_14() { return static_cast<int32_t>(offsetof(TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A, ____textWriter_14)); }
inline JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * get__textWriter_14() const { return ____textWriter_14; }
inline JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 ** get_address_of__textWriter_14() { return &____textWriter_14; }
inline void set__textWriter_14(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * value)
{
____textWriter_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____textWriter_14), (void*)value);
}
inline static int32_t get_offset_of__sw_15() { return static_cast<int32_t>(offsetof(TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A, ____sw_15)); }
inline StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * get__sw_15() const { return ____sw_15; }
inline StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 ** get_address_of__sw_15() { return &____sw_15; }
inline void set__sw_15(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * value)
{
____sw_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sw_15), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// Vuforia.Newtonsoft.Json.Schema.JsonSchema[]
struct JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * m_Items[1];
public:
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** 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, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Vuforia.Newtonsoft.Json.JsonConverter[]
struct JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461 : public RuntimeArray
{
public:
ALIGN_FIELD (8) JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * m_Items[1];
public:
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** 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, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.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.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::LastOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_LastOrDefault_TisRuntimeObject_mF67120DE101FDBA343567C1AD56D855B5243A703_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Int32 System.Linq.Enumerable::Count<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_Count_TisRuntimeObject_m1A161C58BCDDFCF3A206ED7DFBEB0F9231B18AE3_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * Enumerable_ToList_TisKeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_m1BD9D6D49A364CC3F1C24AB7AAF80488B8CFCA46_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 List_1_GetEnumerator_mE5C50D33D14F6C6424A7D4024819E9CE5B828AB0_gshared (List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_mC7F0982F12D98951E661E53D89F4BE45DBA88766_gshared_inline (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Boolean>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_gshared (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Double>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3_gshared (Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * __this, double ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_gshared (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32Enum>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared (Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32Enum>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline (Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32Enum>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline (Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC * __this, const RuntimeMethod* method);
// System.Void System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m13112BE4EFEB1078E20A20DD1574431BABB383D5_gshared (Func_2_tE4EF6EBE822D562C019A333535E7AD2FC7D00F05 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::Single<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 Enumerable_Single_TisKeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297_m897EC374EC64252372E02889EE7E2E8D0A34AC87_gshared (RuntimeObject* ___source0, Func_2_tE4EF6EBE822D562C019A333535E7AD2FC7D00F05 * ___predicate1, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m75215BA5B54684DB39718D321AE1E796ACD6EA36_gshared_inline (KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mDD94B092289B595591F7BFA6575667F3FCD66B00_gshared (Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Add(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mA455E1A1EF4ACBD191826D6E00022F9BCDAA6ECD_gshared (Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method);
// T Vuforia.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute<System.Object>(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonTypeReflector_GetCachedAttribute_TisRuntimeObject_mE85B7FE60E5C015B69559A2EDB1434BF4E5F2628_gshared (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Boolean>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_gshared_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_gshared_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mCA84157864A199574AD0B7F3083F99B54DC1F98C_gshared (Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Any_TisRuntimeObject_m4175AF82F03F3455AA3D53F7A60E9EB341C1DE04_gshared (RuntimeObject* ___source0, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate1, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<TUnderlyingType>> Vuforia.Newtonsoft.Json.Utilities.EnumUtils::GetNamesAndValues<System.Int64>(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnumUtils_GetNamesAndValues_TisInt64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_m88F1B9B0C479873ACAD0C1D77500290E3ADBE5C1_gshared (Type_t * ___enumType0, const RuntimeMethod* method);
// T Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_gshared_inline (EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B * __this, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<!0> System.Collections.ObjectModel.Collection`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Collection_1_GetEnumerator_m154583737D579820CFA4BB9CD85F7AD878C4F35D_gshared (Collection_1_tC70665E043EEEEE0CE76CFA285D8ACDB39D36EB0 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.CollectionUtils::AddRangeDistinct<System.Object>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>,System.Collections.Generic.IEqualityComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionUtils_AddRangeDistinct_TisRuntimeObject_m9B299046C6107B544CC3C4E9628AC3A7EAF99884_gshared (RuntimeObject* ___list0, RuntimeObject* ___values1, RuntimeObject* ___comparer2, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.CollectionUtils::AddDistinct<System.Object>(System.Collections.Generic.IList`1<T>,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionUtils_AddDistinct_TisRuntimeObject_m423F5410A335FBC1860B26DE92D88A9997BB230E_gshared (RuntimeObject* ___list0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::Contains(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyCollection_1_Contains_m2FA3B7A201025221ED77DC50C949C3A6E362C4B0_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Union<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Union_TisRuntimeObject_mE99DFD31A2DD0394AE3524CECB22B60C956336EF_gshared (RuntimeObject* ___first0, RuntimeObject* ___second1, const RuntimeMethod* method);
// System.Boolean System.Collections.ObjectModel.KeyedCollection`2<System.Object,System.Object>::Contains(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyedCollection_2_Contains_mA907EF226D4340597A2EDA502D4D5FB7B28F04FD_gshared (KeyedCollection_2_t161B04E3917472A1DAB55ADFBBD25D59B65BBC6B * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// !1 System.Collections.ObjectModel.KeyedCollection`2<System.Object,System.Object>::get_Item(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * KeyedCollection_2_get_Item_mF4857927EB024900C155687301403547DF769A4F_gshared (KeyedCollection_2_t161B04E3917472A1DAB55ADFBBD25D59B65BBC6B * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<System.Object>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_1_Add_mCB43D5D807A1C7B24C789CC82EF55EBEBA045182_gshared (Collection_1_tC70665E043EEEEE0CE76CFA285D8ACDB39D36EB0 * __this, RuntimeObject * ___item0, 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);
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::set_Item(System.Int32,!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m72B622AD9BAEA821ED4FE737B1474CA1EABA4AEB_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mE985A35FC727FA9F519564063C5C5063209ADDA8_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mA8F31A10EE1129768E13ACC4DC847B05EAD2A055_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::.ctor(System.Collections.Generic.IList`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m869C40E83BEA3D2FE3526FA0E2248E762A3B809D_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, RuntimeObject* ___list0, const RuntimeMethod* method);
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * Enumerable_ToList_TisRuntimeObject_m3AB0AB30DAC385C2DF8A16D5CB8D3D41F62C751F_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<!0,!1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mD1B73421AC452903C46D2EE2D07CB61234F6B6A0_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mBA0F95BC28DD65AA86AEA87839C278D24CDF43DF_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::Select<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Select_TisRuntimeObject_TisRuntimeObject_mF567DE2F48C3BA25C731A3378A78C455348794EC_gshared (RuntimeObject* ___source0, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___selector1, const RuntimeMethod* method);
// System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_OrderBy_TisRuntimeObject_TisRuntimeObject_m1B8F5D462E18180AF58E638017CCEEBF1F0A729B_gshared (RuntimeObject* ___source0, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___keySelector1, RuntimeObject* ___comparer2, const RuntimeMethod* method);
// !!0[] System.Linq.Enumerable::ToArray<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Enumerable_ToArray_TisRuntimeObject_mEB06425105813A21FC826C4144F8456EAE2304DE_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.KeyedCollection`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyedCollection_2__ctor_m107098E947D79383D249413098D9200B39EB8E6E_gshared (KeyedCollection_2_t161B04E3917472A1DAB55ADFBBD25D59B65BBC6B * __this, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_SingleOrDefault_TisRuntimeObject_m06657F8361B1F19CDF32406B0F0B9CE8385383A6_gshared (RuntimeObject* ___source0, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate1, const RuntimeMethod* method);
// !!0[] System.Array::Empty<System.Object>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline (const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF1D0377D81949B2ADB6104D9994F7CEE1A1E5040_gshared (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Int32Enum>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m95A49669D93F05BBC8D8B1CF78765058B4DE65F3_gshared (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, int32_t ___item0, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<T> Vuforia.Newtonsoft.Json.Utilities.EnumUtils::GetFlagsValues<System.Int32Enum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnumUtils_GetFlagsValues_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m69AA0DE6C992F61D177991E13C7370A41A785204_gshared (int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Func`2<System.Int32Enum,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m65EA70FC36AE05F395E036FE07698256E09C6339_gshared (Func_2_t8D00E17E9D1413C71B5B12D3538C754C4F141A2E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<System.Int32Enum>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Where_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m3C7119933075229906874FF243E1F7E0CEA85AA7_gshared (RuntimeObject* ___source0, Func_2_t8D00E17E9D1413C71B5B12D3538C754C4F141A2E * ___predicate1, const RuntimeMethod* method);
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<System.Int32Enum>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * Enumerable_ToList_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m694CB6357F1C2D6A9AED36B75BAD4304CE1E1E55_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method);
// !0 System.Func`1<System.Object>::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.CollectionUtils::IsNullOrEmpty<System.Object>(System.Collections.Generic.ICollection`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionUtils_IsNullOrEmpty_TisRuntimeObject_m3973015A568DA3B036469490BAF55440FE9EA9FC_gshared (RuntimeObject* ___collection0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<System.Object>::Insert(System.Int32,!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_1_Insert_m02F554553EC2786B50D688BFF8D87E72E4CE3229_gshared (Collection_1_tC70665E043EEEEE0CE76CFA285D8ACDB39D36EB0 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Runtime.Serialization.StreamingContext>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_gshared_inline (Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 * __this, const RuntimeMethod* method);
// System.Void System.EventHandler`1<System.Object>::Invoke(System.Object,!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_1_Invoke_m6146E375BDA235BCEABAD74EC6EC5DE71258097F_gshared (EventHandler_1_tFA1C30E54FA1061D79E711F65F9A174BFBD8CDCB * __this, RuntimeObject * ___sender0, RuntimeObject * ___e1, const RuntimeMethod* method);
// System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<System.Object>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * EqualityComparer_1_get_Default_m3CADD267E2ACE74A28FABE19DECF4FA0225AA47C_gshared (const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TFirst>,System.Collections.Generic.IEqualityComparer`1<TSecond>,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BidirectionalDictionary_2__ctor_m2F51E5C18D96CDD79F12EB495811696D3EC3B2A3_gshared (BidirectionalDictionary_2_tF5910A1CA208761BB9A143CBCB7EF2AE93F71236 * __this, RuntimeObject* ___firstEqualityComparer0, RuntimeObject* ___secondEqualityComparer1, String_t* ___duplicateFirstErrorMessage2, String_t* ___duplicateSecondErrorMessage3, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::Invoke(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_gshared (ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args0, const RuntimeMethod* method);
// System.Void System.Action`2<System.Object,System.Object>::Invoke(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_gshared (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32Enum>::GetValueOrDefault(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mF140A574F626202FBE0319AE51F255878121059D_gshared (Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC * __this, int32_t ___defaultValue0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_mD782ADAC3AB9809F63B681213A7A39784A9A169A_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1<System.Object>::Push(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m8FFF613733BF88B54FCD4498B1E97DE296E27757_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.Stack`1<System.Object>::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_1_Pop_m883C5DEF33CA2E556AC710A9BE26F8BD2D4B182C_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.Stack`1<System.Object>::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_1_Peek_m2060B46CD5CCD8A93C5CC558C6D3EF027862FE59_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method);
// System.Boolean System.Linq.Enumerable::All<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_All_TisRuntimeObject_m4C0A04A431720E859C6CAB04F55175E5FBD2E08C_gshared (RuntimeObject* ___source0, Func_2_t99409DECFF50F0FA9B427C863AC6C99C66E6F9F8 * ___predicate1, const RuntimeMethod* method);
// System.Int32 System.Collections.ObjectModel.Collection`1<System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Collection_1_get_Count_mFDD0E02040C0BF22B7FEA5A763EAFA2607B96A01_gshared (Collection_1_tC70665E043EEEEE0CE76CFA285D8ACDB39D36EB0 * __this, const RuntimeMethod* method);
// TSource Vuforia.Newtonsoft.Json.Utilities.StringUtils::ForgivingCaseSensitiveFind<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.String>,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StringUtils_ForgivingCaseSensitiveFind_TisRuntimeObject_mCD8869D8B1B2968B591F8D90D7BC0F177A464C5D_gshared (RuntimeObject* ___source0, Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * ___valueSelector1, String_t* ___testValue2, const RuntimeMethod* method);
// System.Int32 System.Collections.ObjectModel.Collection`1<System.Object>::IndexOf(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Collection_1_IndexOf_m2118378044DC444131008F35F2A6217CE69AC9E2_gshared (Collection_1_tC70665E043EEEEE0CE76CFA285D8ACDB39D36EB0 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mF440F3B881F16E5E7B2FA0BC534AEFA86A6BE702_gshared (Func_2_t5F736F0790996C5081310C4EC14EA3E5A3FC1274 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2<!!1,!!2> System.Linq.Enumerable::ToDictionary<System.Object,System.Object,System.Int32Enum>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Func`2<!!0,!!2>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * Enumerable_ToDictionary_TisRuntimeObject_TisRuntimeObject_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m7DA0488B2D63576C0A094E6C67DF950129E24462_gshared (RuntimeObject* ___source0, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___keySelector1, Func_2_t5F736F0790996C5081310C4EC14EA3E5A3FC1274 * ___elementSelector2, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD Dictionary_2_GetEnumerator_mE725DD90675AAF7594A6671AB3C9AB9EFD3E2C67_gshared (Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 Enumerator_get_Current_mCD23B72ADE352A9042016916076E3CB38F25ABE5_gshared_inline (Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m2C765785270BB188995957A4ADE4520B78464C98_gshared_inline (KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m61A69CD334F4858DC5E77D2EB5202A25F8FDECDD_gshared (Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA6B83165B1011B147E900FA0B0E9C476C7002F72_gshared (Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD * __this, const RuntimeMethod* method);
// System.Boolean System.Predicate`1<System.Object>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m9D3C9A756002DA052F4A0129DFF1DA165D7FE913_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m4496B9601D8A8C68D07911E87D4C6CB0723BFB18_gshared (Dictionary_2_t5B35D5550B4D9CDDB7D248BEEE75285BC3023229 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m99F395B291218EA8C21EBE6B58526FE82243A2E0 (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6 (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mCC5D66792B1D3941AB7935D2B2E415EBAB2A7FCA (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::set_Path(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReaderException_set_Path_mA56A22E92A2F150167689754236DED6D4C1F69A3_inline (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::set_LineNumber(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReaderException_set_LineNumber_m107F078203427EDE9ECCD29B0A51F26C7C136672_inline (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::set_LinePosition(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReaderException_set_LinePosition_m1ECB8FF6792ABE213B517BC05D5E194D108D09ED_inline (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, int32_t ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonReaderException Vuforia.Newtonsoft.Json.JsonReaderException::Create(Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * JsonReaderException_Create_m47A17B8A7631B59FB381FD53DEC0665CFAB19588 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___message1, Exception_t * ___ex2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonReaderException Vuforia.Newtonsoft.Json.JsonReaderException::Create(Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * JsonReaderException_Create_mA83439AB86D3A5D31870C7E451E430F0EA7B7157 (RuntimeObject* ___lineInfo0, String_t* ___path1, String_t* ___message2, Exception_t * ___ex3, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.JsonPosition::FormatMessage(Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8 (RuntimeObject* ___lineInfo0, String_t* ___path1, String_t* ___message2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::.ctor(System.String,System.Exception,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException__ctor_m6318051B69015D17E68275E0E794EC7FFBBC5FD6 (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, String_t* ___message0, Exception_t * ___innerException1, String_t* ___path2, int32_t ___lineNumber3, int32_t ___linePosition4, const RuntimeMethod* method);
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1 (Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * __this, const RuntimeMethod* method);
// System.Guid System.Guid::NewGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_NewGuid_m5BD19325820690ED6ECA31D67BC2CD474DC4FDB0 (const RuntimeMethod* method);
// System.String System.Guid::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_mB4CBA020EEFAC3F6E828BB8A15E813F3680CEFAB (Guid_t * __this, String_t* ___format0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AllowAdditionalProperties(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AllowAdditionalProperties_mCEC6844B12E85B4EAC2392D0CB900192309AA572_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AllowAdditionalItems(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AllowAdditionalItems_mE0EAE117D730544A3E6232533DCFDF8027B03840_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaResolver__ctor_m36F1987E2C2CE3ABFC4A3BD1014D8FC01CDD1338 (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::Read(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_Read_m7C1D75CF193E61D98D2CB22A1B40C3271B9E4B8D (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Utilities.ValidationUtils::ArgumentNotNull(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117 (RuntimeObject * ___value0, String_t* ___parameterName1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::.ctor(Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder__ctor_m857D4D11C22893443335C6B74B073F40FC107578 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::Read(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_Read_m81A879A7F7EF7F00686AF91173F32B26BD1C4C04 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::Parse(System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_Parse_m82BF11FCF4ECB1D0EB724175CBF769C2B69BBA91 (String_t* ___json0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method);
// System.Void System.IO.StringReader::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader__ctor_m7CC29D8E83F4813395ACA9CF4F756B1BCE09A7EE (StringReader_t74E352C280EAC22C878867444978741F19E1F895 * __this, String_t* ___s0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonTextReader::.ctor(System.IO.TextReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonTextReader__ctor_m6E8E633BA733A92BE7558C595B55A79B41621B3A (JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::WriteTo(Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_WriteTo_mA28E552D953B6CE3DBE50DCC9C642024B4D88647 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::.ctor(Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter__ctor_mFACE064CE425690159991C7AD8CA2DB91EA0459C (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteSchema(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteSchema_m75B5C88EB60B09DB2BD923D9578AFD3020739373 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164 (const RuntimeMethod* method);
// System.Void System.IO.StringWriter::.ctor(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_mDF4AB6FD46E8B9824F2F7A9C26EA086A2C1AE5CF (StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonTextWriter::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonTextWriter__ctor_mED308137E7448DDE30E0E119D0E53929A75BC057 (JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * __this, TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___textWriter0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::set_Formatting(Vuforia.Newtonsoft.Json.Formatting)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_Formatting_mE4648783E943F2EA9977ADF85BDCE8F05F29D349 (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::WriteTo(Vuforia.Newtonsoft.Json.JsonWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_WriteTo_m6ADE2C38F6E7B01BE382C7B01CDCC3377D2E4ED2 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::.ctor()
inline void List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9 (List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::.ctor()
inline void Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0 (Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
}
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::get_LoadedSchemas()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Location()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Location_m86598910A11FE1688F19536676D4832E21181257_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::LastOrDefault<Vuforia.Newtonsoft.Json.Schema.JsonSchema>(System.Collections.Generic.IEnumerable`1<!!0>)
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * Enumerable_LastOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m72E65EF91439D3311898D0B5622FA6B44E5D4BE5 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_LastOrDefault_TisRuntimeObject_mF67120DE101FDBA343567C1AD56D855B5243A703_gshared)(___source0, method);
}
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::ReadFrom(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JToken_ReadFrom_m7FC077469C84451AE9FCD636565E3E0F5C8FA7E1 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::BuildSchema(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ResolveReferences(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method);
// System.String System.Uri::UnescapeDataString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_UnescapeDataString_m52E242703F2842594B2B37D673CDD5465ABCC836 (String_t* ___stringToUnescape0, const RuntimeMethod* method);
// System.String System.String::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m98184150DC4E2FBDF13E723BF5B7353D9602AC4D (String_t* __this, String_t* ___oldValue0, String_t* ___newValue1, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_DeferredReference()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_DeferredReference_mF7F4A198AE7EC9D29E2682BCFF5133A2AD17A511_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Boolean System.String::StartsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mEA750A0572C706249CDD826681741B7DD733381E (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::UnescapeReference(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaBuilder_UnescapeReference_mA7F0D4CBAAC7E521F54C99A90C8642CE36DE5CAB (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, String_t* ___reference0, const RuntimeMethod* method);
// System.String System.String::TrimStart(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimStart_m02B916CA047749DD55A03278F4A96FBA62C8935A (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___trimChars0, const RuntimeMethod* method);
// System.String[] System.String::Split(System.Char[],System.StringSplitOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* String_Split_m8334980E85EA3EF1F6204607324D9C34EFA4CA25 (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___separator0, int32_t ___options1, const RuntimeMethod* method);
// System.Boolean System.Int32::TryParse(System.String,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m748B8DB1D0C9D25C3D1812D7887411C4AFC1DDC2 (String_t* ___s0, int32_t* ___result1, const RuntimeMethod* method);
// System.Int32 System.Linq.Enumerable::Count<Vuforia.Newtonsoft.Json.Linq.JToken>(System.Collections.Generic.IEnumerable`1<!!0>)
inline int32_t Enumerable_Count_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mD963C851B6FD41A405A306E18A8F8AD2986C1310 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( int32_t (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Count_TisRuntimeObject_m1A161C58BCDDFCF3A206ED7DFBEB0F9231B18AE3_gshared)(___source0, method);
}
// System.String Vuforia.Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667 (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject * ___arg02, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ReferencesResolved()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_ReferencesResolved_mE55F2BF040242E2C842F7F6F364FE88A79BA8F6E_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ReferencesResolved(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ReferencesResolved_mE14DDCC88AD64CD8EACA9031D44F6A7A4E0E7048_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Extends()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Items()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AdditionalItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AdditionalItems_m4505E2C2F6450B0291ED27CA074C12D7BF485CE7_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method);
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_PatternProperties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>(System.Collections.Generic.IEnumerable`1<!!0>)
inline List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * Enumerable_ToList_TisKeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE_m1350D4DBE3BB8CC21533333A7A432C3DA09080B3 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToList_TisKeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625_m1BD9D6D49A364CC3F1C24AB7AAF80488B8CFCA46_gshared)(___source0, method);
}
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::GetEnumerator()
inline Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 List_1_GetEnumerator_m922296E3F839C8D0AADA354F60A9B508EFC90CE1 (List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 (*) (List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 *, const RuntimeMethod*))List_1_GetEnumerator_mE5C50D33D14F6C6424A7D4024819E9CE5B828AB0_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::get_Current()
inline KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE Enumerator_get_Current_mD23D7FEEE77C663D8C88D4847D639694CF3AD6E9_inline (Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE (*) (Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *, const RuntimeMethod*))Enumerator_get_Current_mC7F0982F12D98951E661E53D89F4BE45DBA88766_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Key()
inline String_t* KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_inline (KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *, const RuntimeMethod*))KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline)(__this, method);
}
// !1 System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Value()
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_inline (KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE * __this, const RuntimeMethod* method)
{
return (( JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * (*) (KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::MoveNext()
inline bool Enumerator_MoveNext_m9EDC02A676866A036489999DC124DF43D2BE9B66 (Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *, const RuntimeMethod*))Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::Dispose()
inline void Enumerator_Dispose_mD66272CDD8C9C33F90E46BCBDEBF9DC171D9BAB3 (Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *, const RuntimeMethod*))Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB_gshared)(__this, method);
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AdditionalProperties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AdditionalProperties_m342347187D74F472699CC67CCD93EEDFBAB091F5_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Linq.JToken::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24 (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonException Vuforia.Newtonsoft.Json.JsonException::Create(Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * JsonException_Create_m252ED2A268323485380E56768ED485FF96A00A7F (RuntimeObject* ___lineInfo0, String_t* ___path1, String_t* ___message2, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Linq.JObject::TryGetValue(System.String,Vuforia.Newtonsoft.Json.Linq.JToken&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_TryGetValue_m7C451B6EBE98CC7CC39AE4FE2DB4AD206B4941AD (JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * __this, String_t* ___propertyName0, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 ** ___value1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema__ctor_m3E0CBE1171FD35441162159F6C7CB8AA8F4E7BE0 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Linq.JToken::op_Explicit(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6 (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_DeferredReference(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_DeferredReference_mD894E9594C87703F245F56336CCF3CA2A5C7FC64_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Location(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Location_m261F1FB12D73E27A802A8CC2E0DBF5581920837D_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::Push(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_Push_m7464B2910B7BE2920A03A42342DF6EFB04F83BA8 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessSchemaProperties(Vuforia.Newtonsoft.Json.Linq.JObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessSchemaProperties_m6CE08AA2F1E467A90D8524137CA48FDBA436F5B8 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * ___schemaObject0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_Pop_m68A6A7147BDB9A703592CA531A1BA8F2F7D49B26 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Linq.JToken>> Vuforia.Newtonsoft.Json.Linq.JObject::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JObject_GetEnumerator_m4E34F907CF6FE709BF91CC27ED6A06F146F4515A (JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Linq.JToken>::get_Key()
inline String_t* KeyValuePair_2_get_Key_mEC1D37965D28CC9D2560F21B01A962D2D1B201BB_inline (KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline)(__this, method);
}
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m033296183A550D7AAA8A8AC2715ADD51C68EB50E (String_t* ___s0, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::get_CurrentSchema()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Linq.JToken>::get_Value()
inline JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline (KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 * __this, const RuntimeMethod* method)
{
return (( JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * (*) (KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline)(__this, method);
}
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessType(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchemaBuilder_ProcessType_m6DE22FBE83675C0ADB22D4ECADE98CA1CF03027B (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Type(System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Id_mE5CC93267D31400AE1819273B7BBCACB100CB7CD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Title(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Title_mC30C6A6EEFBE2DD153FB48E008424C199B62801D_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Description(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Description_m497296EAA19C9D470CE9A61CE77073BD87C991A7_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessProperties(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaBuilder_ProcessProperties_mCD45017B97943E291958FDA2B6960BEEC7718B86 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Properties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Properties_mA71EBA6B5C5D4F33347D50D8F68C3BF19554D713_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessItems(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessItems_m6CF5B48A0D8AA53B4AEEE8DCAA14A59F8499D374 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessAdditionalProperties(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessAdditionalProperties_m235D166E61677F4F0BA59A58C2148067EA273CCE (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessAdditionalItems(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessAdditionalItems_mC88419351096BF994F0122B3A3190328FD3CD765 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_PatternProperties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_PatternProperties_mD3673AAFB7CA55B24D6F8D933D727567CA48364F_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Linq.JToken::op_Explicit(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Boolean>::.ctor(!0)
inline void Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49 (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, bool ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *, bool, const RuntimeMethod*))Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_gshared)(__this, ___value0, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Required(System.Nullable`1<System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Required_mD2C868E3252D959332507BFAF8B9E436F5F9A8F4_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Requires(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Requires_m5D457478840D5C598A4E628635960683218F9D62_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Double Vuforia.Newtonsoft.Json.Linq.JToken::op_Explicit(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JToken_op_Explicit_mBAFE8E85300716A039D4CD74A1426091D004C287 (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Double>::.ctor(!0)
inline void Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3 (Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * __this, double ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 *, double, const RuntimeMethod*))Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3_gshared)(__this, ___value0, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Minimum(System.Nullable`1<System.Double>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Minimum_mDF51C376BB18160C0819A811EDBCB848E0383B0B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Maximum(System.Nullable`1<System.Double>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Maximum_mD0A20654F0F4DB4A20A4663D046E3940F67CFB2C_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ExclusiveMinimum(System.Nullable`1<System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ExclusiveMinimum_mD1CCD67CBF134C3DE22251F99B224CAF4B82DDA0_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ExclusiveMaximum(System.Nullable`1<System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ExclusiveMaximum_mC9DA3A8A2CB3A64DE1E9384E139389BE8891ECAD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method);
// System.Int32 Vuforia.Newtonsoft.Json.Linq.JToken::op_Explicit(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JToken_op_Explicit_m802E8F85771B55D6FDDA448D68F8C1D912A740E7 (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
inline void Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_gshared)(__this, ___value0, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MaximumLength(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MaximumLength_m9EF814543B98E7E3F972D45DF1005258911897FE_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MinimumLength(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MinimumLength_m09672F30C77507EA871D8594886EDA6F6E8E2E2D_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MaximumItems(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MaximumItems_m9EE5FC4788444E23358BFFBF0783F2F16EEED8E3_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MinimumItems(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MinimumItems_m9E147F3F1CB0C0D88A452170F1244C5079E8AADC_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_DivisibleBy(System.Nullable`1<System.Double>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_DivisibleBy_m7F7C73E2C79F4CA7F06D92EEDAB6C0AD452CE9ED_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Disallow(System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Disallow_mDE960F1735D5B747FDC4D0C53EF9F92D5A4FD59A_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::DeepClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JToken_DeepClone_mD6D86A2AACC2A20230E9A30882A9822A262FB6B5 (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Default(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Default_mD91A00F8C6E98164325C256BD3C2F3A40226F952_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Hidden(System.Nullable`1<System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Hidden_mD3E240839004E97C5125D83152371724382CDD3C_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ReadOnly(System.Nullable`1<System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ReadOnly_mEADCAD4A662B9760AC62C10CE4165640D88B6C6B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Format(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Format_m6E3EB7850BFBC27028ADC2E96D54992AED790AFE_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Pattern(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Pattern_mA7C50CF007239EA9EB57C186463705DD2472C405_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessEnum(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessEnum_mC5660571FC0EC28AC9A58CF7BC268DCE8AF5D407 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessExtends(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessExtends_m3BBDA8252CC216C965F2D38EE15BC0CB59BCDBCC (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_UniqueItems(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_UniqueItems_m53C70C25B88DC13752F50CE72B6F937B301B8107_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Extends(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Extends_mA544A93BC53D5F646936F15078CE19BFFAAA7488_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Linq.JToken>::.ctor()
inline void List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF (List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Enum(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Enum_m600F66C93A07B7B23914016BCC4ADC350DB41372_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Enum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Linq.JProperty::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JProperty_get_Name_m40C95EB5D7D490470847ADAB4993684AC0296991_inline (JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JProperty::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JProperty_get_Value_mCBACF86FD0A5D3F43CAC597DBBB65816EE47062F (JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Items(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Items_m98467635105FE963BBF41DB97EB0F1053A0D23DA_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_PositionalItemsValidation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_PositionalItemsValidation_m6B62D399EAD5AD6DD51C828819ABCF97B6B76C99_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::.ctor(!0)
inline void Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::MapType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaBuilder_MapType_m47780DF0134F439B9FBB2D515E1C5FCAE9E5EF25 (String_t* ___type0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::get_HasValue()
inline bool Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder/<>c__DisplayClass23_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass23_0__ctor_mFD5F6CB0997244E73C9152199A4761A70B143AA1 (U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099 * __this, const RuntimeMethod* method);
// System.Void System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m6B0B44B48E4B584E16F5B2051A36FB48852F50A0 (Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m13112BE4EFEB1078E20A20DD1574431BABB383D5_gshared)(__this, ___object0, ___method1, method);
}
// !!0 System.Linq.Enumerable::Single<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C Enumerable_Single_TisKeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C_mC10ED89BA0E24629D7F54C161DFCCFAC691C4C5F (RuntimeObject* ___source0, Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063 * ___predicate1, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C (*) (RuntimeObject*, Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063 *, const RuntimeMethod*))Enumerable_Single_TisKeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297_m897EC374EC64252372E02889EE7E2E8D0A34AC87_gshared)(___source0, ___predicate1, method);
}
// !0 System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::get_Key()
inline String_t* KeyValuePair_2_get_Key_m9199B1BF019BFCE5364F5706D158861CBEBDEB76_inline (KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C *, const RuntimeMethod*))KeyValuePair_2_get_Key_m75215BA5B54684DB39718D321AE1E796ACD6EA36_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::.ctor()
inline void Dictionary_2__ctor_m92C624D3C25D257CA2B9E779C9E7B98987FBC84C (Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE *, const RuntimeMethod*))Dictionary_2__ctor_mDD94B092289B595591F7BFA6575667F3FCD66B00_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::Add(!0,!1)
inline void Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F (Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * __this, String_t* ___key0, int32_t ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE *, String_t*, int32_t, const RuntimeMethod*))Dictionary_2_Add_mA455E1A1EF4ACBD191826D6E00022F9BCDAA6ECD_gshared)(__this, ___key0, ___value1, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::set_Path(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaException_set_Path_mBC45DF5D227A0D15B8CB24C21CBD426FCDB109FF_inline (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::set_LineNumber(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaException_set_LineNumber_mB16EC51B1368DE7A3297F83260035419C2711FE6_inline (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::set_LinePosition(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaException_set_LinePosition_m4BC31C16B2F59FEC80567C88A1C49A310B371C26_inline (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, int32_t ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::get_Instance()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DefaultContractResolver_get_Instance_m2EB0507D1A30F944E6C96C7E90011748897D59E4_inline (const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema::get_Schema()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * TypeSchema_get_Schema_mFE371A75AA114A448718DAF8CA87CA7A19327375_inline (TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * __this, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::LastOrDefault<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>(System.Collections.Generic.IEnumerable`1<!!0>)
inline TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * Enumerable_LastOrDefault_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mBE0AE0BA080A562C059D22C226E327D70F7E521E (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_LastOrDefault_TisRuntimeObject_mF67120DE101FDBA343567C1AD56D855B5243A703_gshared)(___source0, method);
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Generate(System.Type,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_Generate_mEF761D93F5F957BE3698ECF675BC48F9040D59EE (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, bool ___rootSchemaNullable2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GenerateInternal(System.Type,Vuforia.Newtonsoft.Json.Required,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, int32_t ___valueRequired1, bool ___required2, const RuntimeMethod* method);
// T Vuforia.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute<Vuforia.Newtonsoft.Json.JsonContainerAttribute>(System.Object)
inline JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method)
{
return (( JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetCachedAttribute_TisRuntimeObject_mE85B7FE60E5C015B69559A2EDB1434BF4E5F2628_gshared)(___attributeProvider0, method);
}
// System.String Vuforia.Newtonsoft.Json.JsonContainerAttribute::get_Title()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonContainerAttribute_get_Title_m2C7E47FD95131BF5B15A1E15590157E9C38809F0_inline (JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.JsonContainerAttribute::get_Description()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonContainerAttribute_get_Description_m36A11696F3A92C56E12A7B072D70890BD5DF2412_inline (JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.JsonContainerAttribute::get_Id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonContainerAttribute_get_Id_m3D757A30FE066422291F149C46662EC985844723_inline (JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.UndefinedSchemaIdHandling Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::get_UndefinedSchemaIdHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonSchemaGenerator_get_UndefinedSchemaIdHandling_m4A29BE818181921E9C13461CB0D05F18EB298D26_inline (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/<>c__DisplayClass23_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass23_0__ctor_m2E465230194C300F483B9CCB45ED5602084B9513 (U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetTypeId(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaGenerator_GetTypeId_m303C59673A4DB95D3C2567AEA7DDB9D6FAAD50FC (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, bool ___explicitOnly1, const RuntimeMethod* method);
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::HasFlag(System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaGenerator_HasFlag_mC8FE89B76A69FD7BD1B079BB5378D34DB7D06672 (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, int32_t ___flag1, const RuntimeMethod* method);
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Required()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Required_mE10F257E5A89313CF4111615DBFCF8638B3E58D7_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Boolean>::GetValueOrDefault()
inline bool Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
inline bool Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *, const RuntimeMethod*))Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_gshared_inline)(__this, method);
}
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m19BBB060B4743D7235D420006F697CA01DA131DB (Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mCA84157864A199574AD0B7F3083F99B54DC1F98C_gshared)(__this, ___object0, ___method1, method);
}
// System.Boolean System.Linq.Enumerable::Any<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline bool Enumerable_Any_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mFAD5A570936ED2070D3D6F104342CB2C98F5FA6A (RuntimeObject* ___source0, Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E * ___predicate1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E *, const RuntimeMethod*))Enumerable_Any_TisRuntimeObject_m4175AF82F03F3455AA3D53F7A60E9EB341C1DE04_gshared)(___source0, ___predicate1, method);
}
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::get_ContractResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaGenerator_get_ContractResolver_m25D7B43FA7DC36A3CE93CDD8804710514B3C207B (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_Converter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonContract_get_Converter_mDE546D9E7644EC1EFE17954CD6C3A03CA23AFDE5_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_InternalConverter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonContract_get_InternalConverter_m52505C93F76DFA4AAA3C1B68DB40B0ABE7D286BF_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema::.ctor(System.Type,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeSchema__ctor_m77DEB660DC03EFCE1AC37B8CEB04C690FF61928A (TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * __this, Type_t * ___type0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Push(Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaGenerator_Push_m2BE69834458CCFB3461D0EDE8463928926607C69 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * ___typeSchema0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::get_CurrentSchema()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetTitle(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaGenerator_GetTitle_m31094A4B15681D63049A42A703E863FBAF6EF498 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetDescription(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaGenerator_GetDescription_m707E3D9355C1DD7D0D688E2AB2E781E4FF8284C2 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::AddNullType(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType,Vuforia.Newtonsoft.Json.Required)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaGenerator_AddNullType_mD7117F1E5C752636BFE722C90CE22560EE7E0564 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, int32_t ___type0, int32_t ___valueRequired1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GenerateObjectSchema(System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaGenerator_GenerateObjectSchema_m9FA54B2627DF2AC9DB041108484F585848F80830 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract1, const RuntimeMethod* method);
// T Vuforia.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute<Vuforia.Newtonsoft.Json.JsonArrayAttribute>(System.Object)
inline JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * JsonTypeReflector_GetCachedAttribute_TisJsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67_m58AF80822B3946DA06E1E67A40939EDB8D2D7BB5 (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method)
{
return (( JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetCachedAttribute_TisRuntimeObject_mE85B7FE60E5C015B69559A2EDB1434BF4E5F2628_gshared)(___attributeProvider0, method);
}
// System.Boolean Vuforia.Newtonsoft.Json.JsonArrayAttribute::get_AllowNullItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayAttribute_get_AllowNullItems_m04EC3BEA9224D29E0FDF46CE28EBD8A8ADF1F4EA_inline (JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * __this, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Utilities.ReflectionUtils::GetCollectionItemType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectionUtils_GetCollectionItemType_m94B565016C959DC626CB46C42959D504445E1AA0 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetJsonSchemaType(System.Type,Vuforia.Newtonsoft.Json.Required)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaGenerator_GetJsonSchemaType_m218797C2A4903C28A40C17AD3790079D6F3235B7 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, int32_t ___valueRequired1, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.TypeExtensions::IsEnum(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsEnum_m23C7D46C3B24AB80AA4F69B06A9A31C0A8743655 (Type_t * ___type0, 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.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<TUnderlyingType>> Vuforia.Newtonsoft.Json.Utilities.EnumUtils::GetNamesAndValues<System.Int64>(System.Type)
inline RuntimeObject* EnumUtils_GetNamesAndValues_TisInt64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_m88F1B9B0C479873ACAD0C1D77500290E3ADBE5C1 (Type_t * ___enumType0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Type_t *, const RuntimeMethod*))EnumUtils_GetNamesAndValues_TisInt64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_m88F1B9B0C479873ACAD0C1D77500290E3ADBE5C1_gshared)(___enumType0, method);
}
// T Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>::get_Value()
inline int64_t EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_inline (EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B * __this, const RuntimeMethod* method)
{
return (( int64_t (*) (EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B *, const RuntimeMethod*))EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::FromObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JToken_FromObject_mB0B842B8437F2BA0C9711979F1A72712202568ED (RuntimeObject * ___o0, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_UnderlyingType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.ReflectionUtils::IsNullable(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullable_mC2D6CD3473D20C96AD796FE220368A0D6F61DDA0 (Type_t * ___t0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Utilities.ReflectionUtils::GetDictionaryKeyValueTypes(System.Type,System.Type&,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_GetDictionaryKeyValueTypes_m992E7E0F49132A8E0ACFEEE6C0144B7425AA6303 (Type_t * ___dictionaryType0, Type_t ** ___keyType1, Type_t ** ___valueType2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * JsonSchemaGenerator_Pop_mAEDD4A45B38F37180F8ADE696D5566652BA2B47E (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * JsonObjectContract_get_Properties_m199B76032C42E8560001FCFE7741F5DD64988CBA_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<!0> System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>::GetEnumerator()
inline RuntimeObject* Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2 (Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4 *, const RuntimeMethod*))Collection_1_GetEnumerator_m154583737D579820CFA4BB9CD85F7AD878C4F35D_gshared)(__this, method);
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_Ignored()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Nullable`1<Vuforia.Newtonsoft.Json.NullValueHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_NullValueHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 JsonProperty_get_NullValueHandling_mE711C0CE9C27769ECC27E2D22B12E787E9BE693F_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.NullValueHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m6887AE493086930CEF3A683492F3AD2AA1E1C60B_inline (Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.NullValueHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_inline (Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Nullable`1<Vuforia.Newtonsoft.Json.DefaultValueHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValueHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.DefaultValueHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m88EA3C6DB2CBBF8587DD2891E56AAB44B71CCBC2_inline (Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::HasFlag(Vuforia.Newtonsoft.Json.DefaultValueHandling,Vuforia.Newtonsoft.Json.DefaultValueHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaGenerator_HasFlag_m3165BDCCBCD87B10798F2DBF0D6E4B77287F5842 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, int32_t ___value0, int32_t ___flag1, const RuntimeMethod* method);
// System.Predicate`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_ShouldSerialize()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * JsonProperty_get_ShouldSerialize_m7CD4E9EB8C176BB1E36B55774EAF0E81AE231D7B_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Predicate`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_GetIsSpecified()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * JsonProperty_get_GetIsSpecified_m25DC0FD35E26E1D64D756EE3F8B29232FDB0F515_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Required Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_Required()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonProperty_get_Required_mAC88A30F754D2CDEB8366CEECCA214279B407906 (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonProperty_get_DefaultValue_m2F0B235EDFA3FB17FBE4B333B7B45C8209AC6473 (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.TypeExtensions::IsSealed(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsSealed_mD10DD6AC20ACB440C9B5BECA1432DF10D2723100 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.ReflectionUtils::IsNullableType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullableType_mF8A09DA966FEB998A743CCA27E4E39F70D72C7C0 (Type_t * ___t0, const RuntimeMethod* method);
// System.Type System.Nullable::GetUnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Nullable_GetUnderlyingType_mC5699E7E11E1AFE25365CAB564A48F0193318629 (Type_t * ___nullableType0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Utilities.PrimitiveTypeCode Vuforia.Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_GetTypeCode_m8C63961A39C296357D69629F88E06AE03089CDDE (Type_t * ___t0, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1 (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>::.ctor()
inline void List_1__ctor_mB907091DD72A6D2506461A16B86CDF4F2585DFF7 (List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Type(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Type_mC504800F33CD42CA79713500F55355019411F06C_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AllowAdditionalProperties(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AllowAdditionalProperties_m401CDC441A5679792AE1D9322A5592EF6D7B3487_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AllowAdditionalItems(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AllowAdditionalItems_m95ABD84632D3CB43830C18314394D17F76132F27_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Required(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Required_m92F174CDF2FB140E199A8457E3EDE0F79DC234B6_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel__ctor_mBF1710C743A09A9A7EC3CDD6099AE288001BC8D5 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::Combine(Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_Combine_m9E8C23CEAFA7468B77165462DD8F13072664CF7A (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___model0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Required()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_Required_mF03089412305B3532BA80CC5219B59195E2697D2_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonSchemaModel_get_Type_m32832C2841F9440C9C2BE0D87CBCFE762F9D5F2F_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MinimumLength()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MinimumLength_m202E68CC63F66C9CA0B73E6A71F05FC2C1D70E6E_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MinimumLength()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MinimumLength_m1287BFA7D47F2FEF859181B2F39F8C4E8DFC28D9_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Utilities.MathUtilities::Max(System.Nullable`1<System.Int32>,System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 MathUtilities_Max_mAA5A370399D9532965AB6CB4429582B31650719C (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___val10, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___val21, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MinimumLength(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MinimumLength_m52817184992805085DB188C2DF6EB1D9E041A50D_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MaximumLength()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MaximumLength_m968FFB32095E20804F62DBD252157C6ADF9B4ED9_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MaximumLength()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MaximumLength_m0DDE88D8E215CAC7DFF8483833E2FFA54B9065BD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Utilities.MathUtilities::Min(System.Nullable`1<System.Int32>,System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 MathUtilities_Min_mB3FE480C333D4BAA6935D228C8C191DAF02C72E2 (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___val10, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___val21, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MaximumLength(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MaximumLength_m09D5904017ABDC6F63F82CC4DC2D681007B42BA5_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_DivisibleBy()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_DivisibleBy_m45E02D93EB7D9233ECDE2475C528C6F1C55A4EFC_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_DivisibleBy()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_DivisibleBy_m56C5137F847D9E9D752762F25289F4F4A68B459E_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Utilities.MathUtilities::Max(System.Nullable`1<System.Double>,System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 MathUtilities_Max_m534362FF4C0B3A76F4F99C50824D9F66E5A10EC0 (Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___val10, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___val21, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_DivisibleBy(System.Nullable`1<System.Double>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_DivisibleBy_mB6A2B2DAD1F0081C38CA5AFE2FB85DA6157D39FB_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Minimum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_Minimum_m0FCDCA112003142DEB3C3336FBA380F9C0C916EB_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Minimum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_Minimum_m2F769905CBCB189A8F9ADEEA3527F1DE7B5536BA_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Minimum(System.Nullable`1<System.Double>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Minimum_m61D8105744E980239642E3B75FED8C534FB30798_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Maximum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_Maximum_m3D940F342F91C642714D028BC82D4731F1466C4B_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Maximum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_Maximum_mD2018496516B7337DC72B09292EA403363C1B7D8_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Maximum(System.Nullable`1<System.Double>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Maximum_m8A5B9AED658A0F537142DD07E2FDC8C835DB892C_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_ExclusiveMinimum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_ExclusiveMinimum_m82EF76FA0DABD5CA4C8CF6FF4AD4383E6121043E_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ExclusiveMinimum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ExclusiveMinimum_m6ACB2FE8EA54329929EA483E564258C9129BEB7F_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_ExclusiveMinimum(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_ExclusiveMinimum_m5896A35FE7E4BE674F207ECA6A2C9CB34E3BEDA8_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_ExclusiveMaximum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_ExclusiveMaximum_m6B69DD931E50E5877C047F42B7CF4AFA7762E9A7_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ExclusiveMaximum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ExclusiveMaximum_mB67D9A7E1FA8D3F88BE1272425F3D360AF02835A_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_ExclusiveMaximum(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_ExclusiveMaximum_m068F19085C41CE67C8BB6070045E6871EFBCE28B_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MinimumItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MinimumItems_m8A06A582F1074DD5D8C7ED87E31155E9F4C89336_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MinimumItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MinimumItems_m9ED05C6927619F28EFE31874547496920B27B8CF_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MinimumItems(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MinimumItems_m10F4E8101AB8E3414BC98FFB8E169D75A8F9A6F5_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MaximumItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MaximumItems_m961B32D79899A718C3FEA6B3A0259D633071783A_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MaximumItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MaximumItems_mE340B9ECEDD43C9231F5A62579B4648A2D294233_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MaximumItems(System.Nullable`1<System.Int32>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MaximumItems_m91FFFD5C73BF3CA5E3E4061E6527ABDD21126163_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_PositionalItemsValidation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_PositionalItemsValidation_m093834D8885E82F53F8456B3A123FD50F45F912B_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_PositionalItemsValidation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_PositionalItemsValidation_m68D32066FDE9DC6D426AC7FE078DC265E8C02385_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_PositionalItemsValidation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_PositionalItemsValidation_m5DB7F044CB0DAE01C46704A3E4CE560D72209C78_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_AllowAdditionalProperties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_AllowAdditionalProperties_m751F929C7221276837C8271A0AB570BD98AFE5C8_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AllowAdditionalProperties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_AllowAdditionalProperties_m92CF5DA0D05DF54861368B196E8A314DD6EB05B8_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_AllowAdditionalItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_AllowAdditionalItems_mBAA10CFC177C760086906738BCABF24402A4E253_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AllowAdditionalItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_AllowAdditionalItems_m3A60FE808206C2141F6148816F99E68A27E8EF20_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_UniqueItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_UniqueItems_mD95FA018C4C58430516454E670E876D5B352E097_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_UniqueItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_UniqueItems_m2CA14F211B0E25BCCEABB228D7A7BE0EE79E9579_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_UniqueItems(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_UniqueItems_m3D5704A81698D3DBFF5431D381B1357716EB0F31_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Enum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Enum_m694A64197D79CF787EF89B05CFFEEC60C89DF341_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Enum(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Enum_m1A4B041BA72AFD2F92FA5B84299E8FD9D5246DD5_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JTokenEqualityComparer Vuforia.Newtonsoft.Json.Linq.JToken::get_EqualityComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01 * JToken_get_EqualityComparer_m1E24B16C04767A32F626387058B832850F9C2E28 (const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.CollectionUtils::AddRangeDistinct<Vuforia.Newtonsoft.Json.Linq.JToken>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>,System.Collections.Generic.IEqualityComparer`1<T>)
inline bool CollectionUtils_AddRangeDistinct_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mA695752C95842B876955494309517A3CD42F6DBC (RuntimeObject* ___list0, RuntimeObject* ___values1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))CollectionUtils_AddRangeDistinct_TisRuntimeObject_m9B299046C6107B544CC3C4E9628AC3A7EAF99884_gshared)(___list0, ___values1, ___comparer2, method);
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Disallow()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonSchemaModel_get_Disallow_m322DB2D4FF319245AC0D8520D27A6EFC2C02653A_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Disallow()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchema_get_Disallow_m03B2414DB9D56599AFEB6FD4D32B6A80810E6401_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Disallow(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Disallow_mF0560B8F598E2501A0AB20FAB8BB251F8C03C09F_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, int32_t ___value0, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Pattern()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Pattern_mF1CF5D66E3DB45EB8A5708FAF2AD8EE6305EE283_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<System.String> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Patterns()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Patterns_mCB92BDE936EEAAD0F7D0C8829915FE3EC42FC61A_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.String>::.ctor()
inline void List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Patterns(System.Collections.Generic.IList`1<System.String>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Patterns_m2F8B3925E787F3C987F71EAE0636B5B68F9E4773_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.CollectionUtils::AddDistinct<System.String>(System.Collections.Generic.IList`1<T>,T)
inline bool CollectionUtils_AddDistinct_TisString_t_m3774AD69BE246EEECD735E76055E7AEEB1E215E6 (RuntimeObject* ___list0, String_t* ___value1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, String_t*, const RuntimeMethod*))CollectionUtils_AddDistinct_TisRuntimeObject_m423F5410A335FBC1860B26DE92D88A9997BB230E_gshared)(___list0, ___value1, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNodeCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNodeCollection__ctor_mBB965152CB3A476A867F1FB881F97EA142A3EDE6 (JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddSchema(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___existingNode0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::.ctor()
inline void Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204 (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::BuildNodeModel(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___node0, const RuntimeMethod* method);
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Schemas()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Contains(!0)
inline bool ReadOnlyCollection_1_Contains_m6C04C6F8A87787663493D488B88A771E553F5D5C (ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method)
{
return (( bool (*) (ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D *, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, const RuntimeMethod*))ReadOnlyCollection_1_Contains_m2FA3B7A201025221ED77DC50C949C3A6E362C4B0_gshared)(__this, ___value0, method);
}
// System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Union<Vuforia.Newtonsoft.Json.Schema.JsonSchema>(System.Collections.Generic.IEnumerable`1<!!0>,System.Collections.Generic.IEnumerable`1<!!0>)
inline RuntimeObject* Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B (RuntimeObject* ___first0, RuntimeObject* ___second1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Enumerable_Union_TisRuntimeObject_mE99DFD31A2DD0394AE3524CECB22B60C956336EF_gshared)(___first0, ___second1, method);
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::GetId(System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaNode_GetId_m852E5D69649E7DEA7FF425D103D1033D3299C87F (RuntimeObject* ___schemata0, const RuntimeMethod* method);
// System.Boolean System.Collections.ObjectModel.KeyedCollection`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::Contains(!0)
inline bool KeyedCollection_2_Contains_m69A8FD8070340A46FC65CF67CAB73C4743694366 (KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B * __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B *, String_t*, const RuntimeMethod*))KeyedCollection_2_Contains_mA907EF226D4340597A2EDA502D4D5FB7B28F04FD_gshared)(__this, ___key0, method);
}
// !1 System.Collections.ObjectModel.KeyedCollection`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::get_Item(!0)
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * KeyedCollection_2_get_Item_m542C4F66BC961ACA5A7DF102D52C56BBF4E353B9 (KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B * __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * (*) (KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B *, String_t*, const RuntimeMethod*))KeyedCollection_2_get_Item_mF4857927EB024900C155687301403547DF769A4F_gshared)(__this, ___key0, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::.ctor(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode__ctor_m7739A99965CBFA94887E32CC2D43115B160870FF (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::Combine(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_Combine_m04AECD5A282E6F91A03B531FB30A35774CC9069A (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::Add(!0)
inline void Collection_1_Add_m3A5C023BFE7F7967C248D5C8249EAEF9C202D9BD (Collection_1_tE61D7E145066C8E3FEA6D1C7B1B3F7F46D3F1F0C * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___item0, const RuntimeMethod* method)
{
(( void (*) (Collection_1_tE61D7E145066C8E3FEA6D1C7B1B3F7F46D3F1F0C *, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *, const RuntimeMethod*))Collection_1_Add_mCB43D5D807A1C7B24C789CC82EF55EBEBA045182_gshared)(__this, ___item0, method);
}
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * JsonSchemaNode_get_Properties_mCC467D792598C7AC7BCBA25C225B9308EB6857E4_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddProperties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>,System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddProperties_m820C04535BDDE60C70422BD4EC469EC0DC342CF7 (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, RuntimeObject* ___source0, RuntimeObject* ___target1, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_PatternProperties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * JsonSchemaNode_get_PatternProperties_mB3EA48165E92338BE23988BB313C9845D7962B28_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddItem(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,System.Int32,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddItem_m6589E3E85C7DB82328B85DD357CFEACBE82F4A3D (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___parentNode0, int32_t ___index1, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddAdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddAdditionalItems_m9CDEAA7096A4CB3AEC875901B1B5339A02CF5E7F (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___parentNode0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddAdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddAdditionalProperties_m0EABBA27A80C44B97078A20A75DB0D938A96050A (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___parentNode0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddProperty(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>,System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddProperty_m8A24DAF394ED22B20517D68C12ABD2C4D688F25A (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, RuntimeObject* ___target0, String_t* ___propertyName1, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema2, const RuntimeMethod* method);
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Items()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::get_Count()
inline int32_t List_1_get_Count_mBA23A4CC4EFCE2EA3D3C22802D824971741EAEFA_inline (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::get_Item(System.Int32)
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * List_1_get_Item_mACAD93BE1CBD3BF09E92CFEF97B1416A7286923E_inline (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * (*) (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::Add(!0)
inline void List_1_Add_m539B9C5AEFD365A6F584290E6DC600FAD49B42C3 (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::set_Item(System.Int32,!0)
inline void List_1_set_Item_mAE81CE6260AAB19E7B95D2C832B9BB8F1B799A67 (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * __this, int32_t ___index0, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *, int32_t, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *, const RuntimeMethod*))List_1_set_Item_m72B622AD9BAEA821ED4FE737B1474CA1EABA4AEB_gshared)(__this, ___index0, ___value1, method);
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_AdditionalProperties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_get_AdditionalProperties_m436759B9BEDD56FE5BAF6E1919895E6ACCCCE56D_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_AdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_AdditionalProperties_mB21AAB51FC3B28A084E07DE82C451EA58F5C5610_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_AdditionalItems()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_get_AdditionalItems_m0CB14CBA4217FB5A85B1AC8C04DA6683E59EFCCA_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_AdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_AdditionalItems_m991DD15FCBDD85A6E13B201F4220E24D60C11DE0_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m6AC44986777C1BBB268576DA82DD82802C4A85D1 (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___key0, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D *, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC **, const RuntimeMethod*))Dictionary_2_TryGetValue_mE985A35FC727FA9F519564063C5C5063209ADDA8_gshared)(__this, ___key0, ___value1, method);
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::Create(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * JsonSchemaModel_Create_mCACD7004DC15D7C0141491652F68BB347F0F22A7 (RuntimeObject* ___schemata0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_mC35A51160C074B79577C5DF4E2E623727F6A2323 (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___key0, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D *, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC *, const RuntimeMethod*))Dictionary_2_set_Item_mA8F31A10EE1129768E13ACC4DC847B05EAD2A055_gshared)(__this, ___key0, ___value1, method);
}
// System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::GetEnumerator()
inline Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 Dictionary_2_GetEnumerator_m225475E4E83E522DD62EED59A3CEE0C3EDB59F00 (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * __this, const RuntimeMethod* method)
{
return (( Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 (*) (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::get_Current()
inline KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 Enumerator_get_Current_m7554B4F006BDAC276CE86C6ACD4567757CE3C090_inline (Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 (*) (Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *, const RuntimeMethod*))Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline)(__this, method);
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Properties_m07BFFEDE48F889117ED2A16DF8537134E22509E9_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::.ctor()
inline void Dictionary_2__ctor_m35EB95EA65469F78AE0E1B7AC7D448D68C4C342B (Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Properties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Properties_mE97FFCE6FC266F8351E57498507C826FDE9735FC_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::get_Key()
inline String_t* KeyValuePair_2_get_Key_m5CE8A5AF744019B78C385AF3FAB11A424D135480_inline (KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline)(__this, method);
}
// !1 System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::get_Value()
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * KeyValuePair_2_get_Value_mA4A5284294F43CF0779FEC979D057359BF95D83B_inline (KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 * __this, const RuntimeMethod* method)
{
return (( JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * (*) (KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::MoveNext()
inline bool Enumerator_MoveNext_m5E2A1AC26FB33B567A1A57433325029C8781EDFE (Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *, const RuntimeMethod*))Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::Dispose()
inline void Enumerator_Dispose_m50EEF239A5C444908DC656A4A19996183F9F3501 (Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *, const RuntimeMethod*))Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared)(__this, method);
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_PatternProperties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_PatternProperties_mBDE98371110E1294AE26CB046A3C8385908438AA_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_PatternProperties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_PatternProperties_m0719A65899EDCF4C263ED726E0629E530FB38625_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::GetEnumerator()
inline Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 List_1_GetEnumerator_m3E62BA9D468CE5F737CF008AE9AF0AAC8146074A (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 (*) (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::get_Current()
inline JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * Enumerator_get_Current_m5FF8D629A6DD271836E95FE685520918657FBCB1_inline (Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 * __this, const RuntimeMethod* method)
{
return (( JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * (*) (Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method);
}
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Items()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Items_m8811B5DB2D179477C7E2CB33218E52357AC3D9F9_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::.ctor()
inline void List_1__ctor_m47ACAF0DE63A171CC0E4B96737540E1F9CDDE594 (List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Items(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Items_mD5ED8E2F8DB4342F10FD80C17227F2A0DBCC3520_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::MoveNext()
inline bool Enumerator_MoveNext_m5D78F7645DF53B1AD2A16931A56F977B70564C44 (Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::Dispose()
inline void Enumerator_Dispose_m114499EADC9D2B89AD415914552F19A3FFC48F5D (Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AdditionalProperties_mB31CE5D6C8F521EC45A6ACBC4F6AC54CB0694D9E_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AdditionalItems_m97AB0135F89D14888090DF8097307FD102A098B0_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___value0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::.ctor(System.Collections.Generic.IList`1<!0>)
inline void ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347 (ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D *, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m869C40E83BEA3D2FE3526FA0E2248E762A3B809D_gshared)(__this, ___list0, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Schemas(System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Schemas_mA598D04B0F218FA649BA7FA6509B36AC288932B5_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * ___value0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::.ctor()
inline void Dictionary_2__ctor_m52CA765FCCA2E48BD97DC24E93C1D625CFF7A4F8 (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Properties(System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Properties_m4BBD7BD878B2D6BF07985CB16983A656B1BFDB63_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_PatternProperties(System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_PatternProperties_mAEA4E6261544AEA505D07EA1181854BE129816F2_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___value0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::.ctor()
inline void List_1__ctor_mE5461E6B9EC16BCA8AC942A0F3AE6B6274CE90DE (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Items(System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Items_m68DE3071817FAE70411DD41ADE8C16412F726484_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Id_m3F0F26E1F1B1B8DFADE14CDF103F03CF17A0BFFA_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<Vuforia.Newtonsoft.Json.Schema.JsonSchema>(System.Collections.Generic.IEnumerable`1<!!0>)
inline List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * Enumerable_ToList_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mE585C55012AF958EF1DB29B42274FED62CE32398 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToList_TisRuntimeObject_m3AB0AB30DAC385C2DF8A16D5CB8D3D41F62C751F_gshared)(___source0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::.ctor(System.Collections.Generic.IDictionary`2<!0,!1>)
inline void Dictionary_2__ctor_m961E3EC8E476FA149BC0EDDD496DAC164064976F (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_mD1B73421AC452903C46D2EE2D07CB61234F6B6A0_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::.ctor(System.Collections.Generic.IEnumerable`1<!0>)
inline void List_1__ctor_m1BCB824DBA7CA0D9CB62B72D886DE789CF54C108 (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mBA0F95BC28DD65AA86AEA87839C278D24CDF43DF_gshared)(__this, ___collection0, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::.ctor(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode__ctor_m8B90F187A438BC73A9F3C61B5CA93CB05AB15E9E (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___source0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method);
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mE856C7A5862B47592399BC91363D477EBB21FB8A (Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::Select<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.String>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>)
inline RuntimeObject* Enumerable_Select_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_TisString_t_mC71C0D1B8428E68C1B59EBB91E85DE64B414892F (RuntimeObject* ___source0, Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * ___selector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 *, const RuntimeMethod*))Enumerable_Select_TisRuntimeObject_TisRuntimeObject_mF567DE2F48C3BA25C731A3378A78C455348794EC_gshared)(___source0, ___selector1, method);
}
// System.Void System.Func`2<System.String,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m22403E6E9EC24A3D8103D29D9D66B5EEEA0AC69E (Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared)(__this, ___object0, ___method1, method);
}
// System.StringComparer System.StringComparer::get_Ordinal()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812_inline (const RuntimeMethod* method);
// System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<System.String,System.String>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>)
inline RuntimeObject* Enumerable_OrderBy_TisString_t_TisString_t_m1E85D28DB2DE3ED553500801E1EF8B577D90A196 (RuntimeObject* ___source0, Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * ___keySelector1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A *, RuntimeObject*, const RuntimeMethod*))Enumerable_OrderBy_TisRuntimeObject_TisRuntimeObject_m1B8F5D462E18180AF58E638017CCEEBF1F0A729B_gshared)(___source0, ___keySelector1, ___comparer2, method);
}
// !!0[] System.Linq.Enumerable::ToArray<System.String>(System.Collections.Generic.IEnumerable`1<!!0>)
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_mEB06425105813A21FC826C4144F8456EAE2304DE_gshared)(___source0, method);
}
// System.String System.String::Join(System.String,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m8846EB11F0A221BDE237DE041D17764B36065404 (String_t* ___separator0, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___value1, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchemaNode_get_Id_m7954D1D84C16EF5C6AF0FC5C6FC3E4728D7B2504_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.KeyedCollection`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::.ctor()
inline void KeyedCollection_2__ctor_m48A600BEFDD1FEC28EA581FC3D528B9040B9C50E (KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B * __this, const RuntimeMethod* method)
{
(( void (*) (KeyedCollection_2_tE46DEB6E8D65D181A58C99CB9F98510A0CDA8F4B *, const RuntimeMethod*))KeyedCollection_2__ctor_m107098E947D79383D249413098D9200B39EB8E6E_gshared)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::set_LoadedSchemas(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaResolver_set_LoadedSchemas_mD18AF47B37CF153EEACBE5612B9A3D5D7A984AB1_inline (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver/<>c__DisplayClass5_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass5_0__ctor_m680F2FFB64E55D378193E365D26216CB46C79196 (U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C * __this, const RuntimeMethod* method);
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchema,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mD6A40784A3BF1580E589768D2C4549F9AB683B81 (Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mCA84157864A199574AD0B7F3083F99B54DC1F98C_gshared)(__this, ___object0, ___method1, method);
}
// !!0 System.Linq.Enumerable::SingleOrDefault<Vuforia.Newtonsoft.Json.Schema.JsonSchema>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * Enumerable_SingleOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m0BBCBD11C7A5EC18148E37C2748511A9A1998732 (RuntimeObject* ___source0, Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E * ___predicate1, const RuntimeMethod* method)
{
return (( JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * (*) (RuntimeObject*, Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E *, const RuntimeMethod*))Enumerable_SingleOrDefault_TisRuntimeObject_m06657F8361B1F19CDF32406B0F0B9CE8385383A6_gshared)(___source0, ___predicate1, method);
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Id_m6E623D59EC896B0E61E052FFA065D811EB025D4F_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WritePropertyIfNotNull(Vuforia.Newtonsoft.Json.JsonWriter,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, String_t* ___propertyName1, RuntimeObject * ___value2, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Title()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Title_m1BDF2704DA1BE7542A0C7B49733B066E3A78B972_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Description()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Description_m1276777F76928EA6DC3D164AC586ADBEE74327F2_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ReadOnly()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ReadOnly_m1A9ED1B1815C4D294B53DA506798CE902DCF19DD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Hidden()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Hidden_m5A79091FB74532E835A8D3382DEE2B81FE67851B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Transient()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Transient_mB0C10CB0B919F5F2259E6371A64A71308CE3CA57_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteType(System.String,Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteType_m934DF63C0E7B69B8289C00E7BFBBEBE9C4A161AB (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, String_t* ___propertyName0, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer1, int32_t ___type2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::ReferenceOrWriteSchema(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteSchemaDictionaryIfNotNull(Vuforia.Newtonsoft.Json.JsonWriter,System.String,System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteSchemaDictionaryIfNotNull_m952AFDEE6516CDB459B7F70B8D9B16AC5918E857 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, String_t* ___propertyName1, RuntimeObject* ___properties2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteItems(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteItems_m359FEE14F7E1005381BCA7FB6D74EFA85EF57854 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Format()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Format_m05C805C7441A8BD78FD6AF182E7AE1A354BC472E_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// !!0[] System.Array::Empty<Vuforia.Newtonsoft.Json.JsonConverter>()
inline JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* Array_Empty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_m2E2FDF87BAE323A8D7D02657BE1A08C063C62171_inline (const RuntimeMethod* method)
{
return (( JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline)(method);
}
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Default()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JsonSchema_get_Default_mD2503533B14AE7DBA53B4991927F0C139F4EAE5B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method);
// System.Boolean System.Enum::IsDefined(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_IsDefined_m70E955627155998B426145940DE105ECEF213B96 (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::.ctor()
inline void List_1__ctor_mE348095099D15AC7CFA9980F30366D8AC4607951 (List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A *, const RuntimeMethod*))List_1__ctor_mF1D0377D81949B2ADB6104D9994F7CEE1A1E5040_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::Add(!0)
inline void List_1_Add_m7ADF7BEFC5894B7234ED409535024A10BC328C79 (List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A * __this, int32_t ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A *, int32_t, const RuntimeMethod*))List_1_Add_m95A49669D93F05BBC8D8B1CF78765058B4DE65F3_gshared)(__this, ___item0, method);
}
// System.Collections.Generic.IList`1<T> Vuforia.Newtonsoft.Json.Utilities.EnumUtils::GetFlagsValues<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>(T)
inline RuntimeObject* EnumUtils_GetFlagsValues_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mD413E86AEC861FFCA27E971F22FB10053445D957 (int32_t ___value0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (int32_t, const RuntimeMethod*))EnumUtils_GetFlagsValues_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m69AA0DE6C992F61D177991E13C7370A41A785204_gshared)(___value0, method);
}
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mB80C1DBAC6EBC6330E49EAEF7FBD08560094C33E (Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m65EA70FC36AE05F395E036FE07698256E09C6339_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline RuntimeObject* Enumerable_Where_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mE1019DF8B412D2CBC104B92C8E809BF9D94266D8 (RuntimeObject* ___source0, Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * ___predicate1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 *, const RuntimeMethod*))Enumerable_Where_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m3C7119933075229906874FF243E1F7E0CEA85AA7_gshared)(___source0, ___predicate1, method);
}
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>(System.Collections.Generic.IEnumerable`1<!!0>)
inline List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A * Enumerable_ToList_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mAB328558697EB651EDF687507ADA9C1410216D85 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToList_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m694CB6357F1C2D6A9AED36B75BAD4304CE1E1E55_gshared)(___source0, method);
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::MapType(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaBuilder_MapType_mA7D35CA58A914F286A6C0CF7B6B8735DAB01C9DE (int32_t ___type0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonSerializationException Vuforia.Newtonsoft.Json.JsonSerializationException::Create(Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___message1, Exception_t * ___ex2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonSerializationException Vuforia.Newtonsoft.Json.JsonSerializationException::Create(Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * JsonSerializationException_Create_mFFA9AB1922FBE02C1D3436D129B549A4A97718A8 (RuntimeObject* ___lineInfo0, String_t* ___path1, String_t* ___message2, Exception_t * ___ex3, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializationException__ctor_mC338D313B4483D3C8267C0840FDFF532791F94CC (JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m8B4AD17254118B2904720D55C9B34FB3DCCBD7D4 (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver Vuforia.Newtonsoft.Json.JsonSerializer::GetReferenceResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializer_GetReferenceResolver_mB1A2477F3CEB4C37E81DF088872CB399056FC78C (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonConverterCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonConverterCollection__ctor_m874957895353EBCC634D961B02A70575F1DEF008 (JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.Formatting>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_inline (Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.Formatting>::.ctor(!0)
inline void Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807 (Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.DateFormatHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_inline (Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.DateFormatHandling>::.ctor(!0)
inline void Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5 (Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>::.ctor(!0)
inline void Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_inline (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_inline (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>::.ctor(!0)
inline void Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_inline (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>::.ctor(!0)
inline void Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5 (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.FloatFormatHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_inline (Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.FloatFormatHandling>::.ctor(!0)
inline void Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905 (Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.StringEscapeHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_inline (Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.StringEscapeHandling>::.ctor(!0)
inline void Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A (Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline)(__this, 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.Void Vuforia.Newtonsoft.Json.JsonSerializer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer__ctor_mAA51A1238396A67925D8AB21A87EEC0A4E2E1C59 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.JsonSerializer::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * JsonSerializer_Create_mE6AB182BFDDC7F5CC4F6C992FAA89D11F9538189 (const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::ApplySerializerSettings(Vuforia.Newtonsoft.Json.JsonSerializer,Vuforia.Newtonsoft.Json.JsonSerializerSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_ApplySerializerSettings_m5718611078016DF790DF678BF1448387104CABE9 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___serializer0, JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * ___settings1, const RuntimeMethod* method);
// System.Func`1<Vuforia.Newtonsoft.Json.JsonSerializerSettings> Vuforia.Newtonsoft.Json.JsonConvert::get_DefaultSettings()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * JsonConvert_get_DefaultSettings_m77E99024334C26B86BE04A6B04E941B2864728B7_inline (const RuntimeMethod* method);
// !0 System.Func`1<Vuforia.Newtonsoft.Json.JsonSerializerSettings>::Invoke()
inline JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * Func_1_Invoke_mF7F8897D57AFD82627D0067498090FA0760D8D0A (Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * __this, const RuntimeMethod* method)
{
return (( JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * (*) (Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB *, const RuntimeMethod*))Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared)(__this, method);
}
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.JsonSerializer::Create(Vuforia.Newtonsoft.Json.JsonSerializerSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * JsonSerializer_Create_mC34A7D6CCD6902C926326A24522F8FCD859901E2 (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * ___settings0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.JsonSerializer::CreateDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * JsonSerializer_CreateDefault_m2EBD3E65BFBF6072E76C246D4642128BBCB863BC (const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.JsonConverter> Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_Converters()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_Converters_mC2C54FB4388B72D38871F077ECEF00AF828A9F1C_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.CollectionUtils::IsNullOrEmpty<Vuforia.Newtonsoft.Json.JsonConverter>(System.Collections.Generic.ICollection`1<T>)
inline bool CollectionUtils_IsNullOrEmpty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_mF299FB8F3B747B9C29CBF70B239572FB2917815D (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))CollectionUtils_IsNullOrEmpty_TisRuntimeObject_m3973015A568DA3B036469490BAF55440FE9EA9FC_gshared)(___collection0, method);
}
// System.Void System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.JsonConverter>::Insert(System.Int32,!0)
inline void Collection_1_Insert_mEBC0E9E49EC561D32EFFC9F03CFBBE41391EB568 (Collection_1_t9876F48633FD88C40E0659BF371CE5316A16BF09 * __this, int32_t ___index0, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___item1, const RuntimeMethod* method)
{
(( void (*) (Collection_1_t9876F48633FD88C40E0659BF371CE5316A16BF09 *, int32_t, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *, const RuntimeMethod*))Collection_1_Insert_m02F554553EC2786B50D688BFF8D87E72E4CE3229_gshared)(__this, ___index0, ___item1, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_inline (Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.TypeNameHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_TypeNameHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_TypeNameHandling_mEDFB55CF45FE804E8F7BA611558B6B64D13407BA (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.MetadataPropertyHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m82C80B692AFEFF6593F6C624B0DC743C050CA59D_inline (Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_MetadataPropertyHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_MetadataPropertyHandling_mB668AF9D698913A342CC53D2406B9A9CD626E5FE (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Runtime.Serialization.Formatters.FormatterAssemblyStyle>::get_HasValue()
inline bool Nullable_1_get_HasValue_m0A7DA228818AD92DD59452001FC63E0069BA3C1C_inline (Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_TypeNameAssemblyFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_TypeNameAssemblyFormat_m037A3A7C997D5762496273741F1EB2ED3A4AA539 (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.PreserveReferencesHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_mBD300EB3CF7634BC42666F4775052069E12A1D03_inline (Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.PreserveReferencesHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_PreserveReferencesHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_PreserveReferencesHandling_m5BA65E5DFED94449CA87FFFEF60EAAA47477C5B8 (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.ReferenceLoopHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m8C4B9339DAFB9B8973E415AAA2513F0E4ECBFD9C_inline (Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.ReferenceLoopHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_ReferenceLoopHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_ReferenceLoopHandling_m59CB03C93117ABA6273B9E2BF9CFCC3181A809CC (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.MissingMemberHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m7A43A8CFC0AC024A40B50313E4252BE99F9AFB4C_inline (Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.MissingMemberHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_MissingMemberHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_MissingMemberHandling_m0856E66B56E3A82EE76E2AA74A7B138D08BF2CF5 (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.ObjectCreationHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m64F5B977257CFBB20DE258F6F6567B8DCF91570D_inline (Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.ObjectCreationHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_ObjectCreationHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_ObjectCreationHandling_m0D24DBE6E0D39926B15610DDED77804F008E2BBD (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.NullValueHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_NullValueHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_NullValueHandling_m63CBFEF833BFF120A35487969E7C407DC28FEDEE (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.DefaultValueHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m226492ED52703200F6A1A4C190D07FB3393CB855_inline (Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.DefaultValueHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_DefaultValueHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_DefaultValueHandling_m4BF615003A8BA0A9EE2400F04B43DB664C2BCC5F (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.ConstructorHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_mF1C55F03F081410943CDC7EA670948E74A749C2C_inline (Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// Vuforia.Newtonsoft.Json.ConstructorHandling Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_ConstructorHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializerSettings_get_ConstructorHandling_m301F1664E1E053ED859D3B625CF1F543B9E0C728 (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Runtime.Serialization.StreamingContext>::get_HasValue()
inline bool Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_inline (Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 *, const RuntimeMethod*))Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_gshared_inline)(__this, method);
}
// System.Runtime.Serialization.StreamingContext Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_Context()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 JsonSerializerSettings_get_Context_mE7D4B8C55609BA21C47CB3B2A472FE9DF9BDA768 (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs> Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_Error()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * JsonSerializerSettings_get_Error_mE801B024BB7DB4D1D7005CA193AC432D8BE7EA43_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_ContractResolver()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_ContractResolver_mFD45D93DD3A8081D05B08E3430FB49FED92D84CD_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Func`1<Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver> Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_ReferenceResolverProvider()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * JsonSerializerSettings_get_ReferenceResolverProvider_mF42A379679B2D340D3C20D080C67F9F048D9E292_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// !0 System.Func`1<Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver>::Invoke()
inline RuntimeObject* Func_1_Invoke_mE2BC2D36632969E97D0EED98E2CF3E6F6A6CC3B6 (Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A *, const RuntimeMethod*))Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared)(__this, method);
}
// Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_TraceWriter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_TraceWriter_mA98DDD76FAC1AE190CDB347D7E8CC2D481440A89_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Collections.IEqualityComparer Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_EqualityComparer()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_EqualityComparer_m9CD912ED990ADF6D3F9FDB589EE44C34C02D8D91_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.SerializationBinder Vuforia.Newtonsoft.Json.JsonSerializerSettings::get_Binder()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * JsonSerializerSettings_get_Binder_mC2D7E0D0D22A084C2CA45F86EEDF648CCCC1317A_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.Formatting>::get_HasValue()
inline bool Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_inline (Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.DateFormatHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_inline (Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.FloatFormatHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_inline (Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_inline (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.StringEscapeHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_inline (Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Populate(Vuforia.Newtonsoft.Json.JsonReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Populate_mA7DDCC70E0FD15C3337E308452FE61760F4CF3BD (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, RuntimeObject * ___target1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::SetupReader(Vuforia.Newtonsoft.Json.JsonReader,System.Globalization.CultureInfo&,System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>&,System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>&,System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>&,System.Nullable`1<System.Int32>&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_SetupReader_mE48113A99E879CA4F106437CCFDD15A6E002DB0B (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** ___previousCulture1, Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * ___previousDateTimeZoneHandling2, Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * ___previousDateParseHandling3, Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * ___previousFloatParseHandling4, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * ___previousMaxDepth5, String_t** ___previousDateFormatString6, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.TraceJsonReader::.ctor(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceJsonReader__ctor_m34855DCB7B3DA0A4A480F374EA900FE1933FCCD7 (TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___innerReader0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::.ctor(Vuforia.Newtonsoft.Json.JsonSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader__ctor_m93FB8AD9EA61CA474E68769C958564B93685F950 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___serializer0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Populate(Vuforia.Newtonsoft.Json.JsonReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, RuntimeObject * ___target1, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Serialization.TraceJsonReader::GetDeserializedJsonMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TraceJsonReader_GetDeserializedJsonMessage_m76BFAFE189FA4740DA4BE2CCA4B5E1266ED680FD (TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::ResetReader(Vuforia.Newtonsoft.Json.JsonReader,System.Globalization.CultureInfo,System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>,System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>,System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>,System.Nullable`1<System.Int32>,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_ResetReader_mB09F6062A5FA5110D833B8601F41A4BF7FD404DB (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___previousCulture1, Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 ___previousDateTimeZoneHandling2, Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F ___previousDateParseHandling3, Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D ___previousFloatParseHandling4, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___previousMaxDepth5, String_t* ___previousDateFormatString6, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.JsonSerializer::Deserialize(Vuforia.Newtonsoft.Json.JsonReader,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializer_Deserialize_mFD7F67101B5CE457EF4425EB4F499761309CC4B4 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Deserialize(Vuforia.Newtonsoft.Json.JsonReader,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, bool ___checkAdditionalContent2, const RuntimeMethod* method);
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonReader::get_Culture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * JsonReader_get_Culture_m2FC4A353D2CC90A4761CF62CEC6EF6FE3DAA74FE (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::set_Culture(System.Globalization.CultureInfo)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReader_set_Culture_m358DAB69604E891560445695FC823BBE41B2F106_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.DateTimeZoneHandling Vuforia.Newtonsoft.Json.JsonReader::get_DateTimeZoneHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_DateTimeZoneHandling_m3F91693921E6DA5A0FB9BB66FAF8069C18E11F7C_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::set_DateTimeZoneHandling(Vuforia.Newtonsoft.Json.DateTimeZoneHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_DateTimeZoneHandling_m3C0CB5F489907DAEB846392146CDD9529D57B3A9 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, int32_t ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.DateParseHandling Vuforia.Newtonsoft.Json.JsonReader::get_DateParseHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_DateParseHandling_m5CF75D4A6FBBED60683E85A68416AFB05C84F84A_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::set_DateParseHandling(Vuforia.Newtonsoft.Json.DateParseHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_DateParseHandling_m96CB240BFA3D71CF8E8565BEB8EA1786795B3719 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, int32_t ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.FloatParseHandling Vuforia.Newtonsoft.Json.JsonReader::get_FloatParseHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_FloatParseHandling_mB6FBFE9F4EDB6E6FF07E89A172E2570263140EC8_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::set_FloatParseHandling(Vuforia.Newtonsoft.Json.FloatParseHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_FloatParseHandling_m9334526CD4846510BE61EEBA025F86AF9A2BB46C (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.JsonReader::get_MaxDepth()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonReader_get_MaxDepth_mD56632F93DB678570560972E65FE5D5A7831CC28_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::set_MaxDepth(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_MaxDepth_m50EB95C59AFE6A498AAD847E31F467BFFB1E7A74 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.JsonReader::get_DateFormatString()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonReader_get_DateFormatString_mA13BC1749AF8F2E33BA1365C42CA876BEFC23A54_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::set_DateFormatString(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReader_set_DateFormatString_m7663A3BDC18FEBEB43B9DEAD863A376BB0A5B443_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, String_t* ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolverState Vuforia.Newtonsoft.Json.Serialization.DefaultContractResolver::GetState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * DefaultContractResolver_GetState_m87DFD2D6035D220F0451DBF5B7336916EC3BA5D9 (DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Serialize(Vuforia.Newtonsoft.Json.JsonWriter,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Serialize_m3A6B370D6E1417ECA2EBD1B7EAAC3944B5C0DA7F (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___jsonWriter0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Serialize(Vuforia.Newtonsoft.Json.JsonWriter,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Serialize_m22DD2A61C0E3909EF0CB152A79BD3D69C8950102 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___jsonWriter0, RuntimeObject * ___value1, Type_t * ___objectType2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Formatting Vuforia.Newtonsoft.Json.JsonWriter::get_Formatting()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_Formatting_mF93BDFD42949F3657B42373489E40D9A0F8C4C7D_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.DateFormatHandling Vuforia.Newtonsoft.Json.JsonWriter::get_DateFormatHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_DateFormatHandling_m934EA63B68C3F847E5208EA9DE207BBE41A00B27_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::set_DateFormatHandling(Vuforia.Newtonsoft.Json.DateFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_DateFormatHandling_m84D327EF68BA9767DA32175C11C336AA26AD4A40 (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, int32_t ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.DateTimeZoneHandling Vuforia.Newtonsoft.Json.JsonWriter::get_DateTimeZoneHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_DateTimeZoneHandling_m97C5683CADF09A632459EDE3CB92F2A2FE77FC27_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::set_DateTimeZoneHandling(Vuforia.Newtonsoft.Json.DateTimeZoneHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_DateTimeZoneHandling_m723836FEC0B00B74C392DF9C22652BB1D932D818 (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, int32_t ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.FloatFormatHandling Vuforia.Newtonsoft.Json.JsonWriter::get_FloatFormatHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_FloatFormatHandling_mFF1E711565B799544AD844F23FB341DD6D46BDCD_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::set_FloatFormatHandling(Vuforia.Newtonsoft.Json.FloatFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_FloatFormatHandling_m7B4A602BC2620AC64785070CE6662DAC339C863D (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, int32_t ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.StringEscapeHandling Vuforia.Newtonsoft.Json.JsonWriter::get_StringEscapeHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_StringEscapeHandling_mC1AFB3064B082108AA096BF2BCAAE35F5185256E_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::set_StringEscapeHandling(Vuforia.Newtonsoft.Json.StringEscapeHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_StringEscapeHandling_mDB60850DEB6BBC6254A5C38E909EFBD617B808EB (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonWriter::get_Culture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * JsonWriter_get_Culture_m9E97749B7EB90AF01A3D3444BD5A1BFADDBF3041 (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::set_Culture(System.Globalization.CultureInfo)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonWriter_set_Culture_mE50EBFC707FDE0B65B39EC7CA2BAEB9F1973C385_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___value0, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.JsonWriter::get_DateFormatString()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonWriter_get_DateFormatString_mC1B37995E57EBFE90BC8BC79702F2F94D7E2CB4D_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::set_DateFormatString(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonWriter_set_DateFormatString_m1E8DABD3EF04FC92FE631D82B5639BC5F845CF46_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.TraceJsonWriter::.ctor(Vuforia.Newtonsoft.Json.JsonWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceJsonWriter__ctor_m8E960E3B86EB3160CE5F42154C7FBAA5A3CD33BF (TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___innerWriter0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::.ctor(Vuforia.Newtonsoft.Json.JsonSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalWriter__ctor_mBA92E8717907C9156884135C76E6EADCAD0EEA86 (JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * __this, JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___serializer0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::Serialize(Vuforia.Newtonsoft.Json.JsonWriter,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalWriter_Serialize_m43CBC5175AE82B9F47291ABD9A4DDFBDD49FB571 (JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___jsonWriter0, RuntimeObject * ___value1, Type_t * ___objectType2, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Serialization.TraceJsonWriter::GetSerializedJsonMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TraceJsonWriter_GetSerializedJsonMessage_m85234EB251FD23E5D9BEA316281B168872C75E24 (TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.DefaultReferenceResolver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultReferenceResolver__ctor_m02CE560DE89868E5A27CA4B84E723C79EC7156FC (DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.JsonConverter>,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonSerializer_GetMatchingConverter_m82672975FE7EA0E7BD6BEA8D8A7D9A0AF982C7C4 (RuntimeObject* ___converters0, Type_t * ___objectType1, const RuntimeMethod* method);
// System.Void System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs>::Invoke(System.Object,!0)
inline void EventHandler_1_Invoke_m136FFCAEDA0BFA5B52F8A91815A88D5B3A5F1D1C (EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * __this, RuntimeObject * ___sender0, ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 * ___e1, const RuntimeMethod* method)
{
(( void (*) (EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *, RuntimeObject *, ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 *, const RuntimeMethod*))EventHandler_1_Invoke_m6146E375BDA235BCEABAD74EC6EC5DE71258097F_gshared)(__this, ___sender0, ___e1, method);
}
// System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<System.String>::get_Default()
inline EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E * EqualityComparer_1_get_Default_m7C5EC964D0664BC8D6A3AE994AAA1159DAC8A836 (const RuntimeMethod* method)
{
return (( EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E * (*) (const RuntimeMethod*))EqualityComparer_1_get_Default_m3CADD267E2ACE74A28FABE19DECF4FA0225AA47C_gshared)(method);
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase/ReferenceEqualsEqualityComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReferenceEqualsEqualityComparer__ctor_mAA68D0E2A4E74092A99B4C2F2E80CD35B3D8CBF9 (ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TFirst>,System.Collections.Generic.IEqualityComparer`1<TSecond>,System.String,System.String)
inline void BidirectionalDictionary_2__ctor_m43BCA1E828FD90928EBDB8BFE89ABC1EBAC3AD9E (BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * __this, RuntimeObject* ___firstEqualityComparer0, RuntimeObject* ___secondEqualityComparer1, String_t* ___duplicateFirstErrorMessage2, String_t* ___duplicateSecondErrorMessage3, const RuntimeMethod* method)
{
(( void (*) (BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C *, RuntimeObject*, RuntimeObject*, String_t*, String_t*, const RuntimeMethod*))BidirectionalDictionary_2__ctor_m2F51E5C18D96CDD79F12EB495811696D3EC3B2A3_gshared)(__this, ___firstEqualityComparer0, ___secondEqualityComparer1, ___duplicateFirstErrorMessage2, ___duplicateSecondErrorMessage3, method);
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.ErrorContext::.ctor(System.Object,System.Object,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorContext__ctor_mEFB81B5E96406673EA96ECC4455439C4D97D4ACC (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, RuntimeObject * ___originalObject0, RuntimeObject * ___member1, String_t* ___path2, Exception_t * ___error3, const RuntimeMethod* method);
// System.Exception Vuforia.Newtonsoft.Json.Serialization.ErrorContext::get_Error()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * ErrorContext_get_Error_mE4CC6108C1AA2CAA9B7D19C5F3C4C8FE6A591833_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ErrorContext Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::GetErrorContext(System.Object,System.Object,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * JsonSerializerInternalBase_GetErrorContext_m19A4032DCA0A1E4B4516E1F59A6499DDE2EFB5CE (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, RuntimeObject * ___currentObject0, RuntimeObject * ___member1, String_t* ___path2, Exception_t * ___error3, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.ErrorContext::get_Traced()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ErrorContext_get_Traced_mFEA0E38805C49EA21C85E8E1CF4BDEAE76E2CCDC_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.ErrorContext::set_Traced(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ErrorContext_set_Traced_mE6B62DA045BF7B4D3394C8561B5722708C9638C0_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, bool ___value0, 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.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonContract::InvokeOnError(System.Object,System.Runtime.Serialization.StreamingContext,Vuforia.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnError_m1A2E38899940F3EA25629559AF7A9FBAD6C6D3F4 (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, RuntimeObject * ___o0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * ___errorContext2, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.ErrorContext::get_Handled()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ErrorContext_get_Handled_mEFDC3E1B50AA7F57153F74D3C3CCB07BD44952F6_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs::.ctor(System.Object,Vuforia.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorEventArgs__ctor_m8C5D4E863C2E5A65A46E302936BCFFA05065B08F (ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 * __this, RuntimeObject * ___currentObject0, ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * ___errorContext1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::OnError(Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_OnError_m6830555204E88CFC11ECAF539E7254E2B6572366 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 * ___e0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::.ctor(Vuforia.Newtonsoft.Json.JsonSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalBase__ctor_mDD0120AE02ADF7A6CF2FC7443221AD6D58D32C90 (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___serializer0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.JsonReader::MoveToContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_MoveToContent_m65C89A182AAF855F32455D1EE227603DA7C980B6 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonSerializationException Vuforia.Newtonsoft.Json.JsonSerializationException::Create(Vuforia.Newtonsoft.Json.JsonReader,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___message1, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_ShouldCreateWrapper()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_ShouldCreateWrapper_mBFBB0CE88CF4DA4FD074978F1BC42BBF058A3995_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Utilities.IWrappedCollection Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::CreateWrapper(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonArrayContract_CreateWrapper_m0FC0719BFA78DF65DE2956C7469AB6DFC30F816C (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, RuntimeObject * ___list0, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateList(System.Collections.IList,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject* ___list0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::ReadAndAssert()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_ShouldCreateWrapper()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_ShouldCreateWrapper_m9B288D28EB522BE882B07929FE4649D299C68897_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Utilities.IWrappedDictionary Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::CreateWrapper(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonDictionaryContract_CreateWrapper_m891DB68316FBC3D10BFD23FEA0533C3A666CBDFA (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, RuntimeObject * ___dictionary0, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateDictionary(System.Collections.IDictionary,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject* ___dictionary0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateObject(System.Object,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject * ___newObject0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, String_t* ___id4, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetContractSafe(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, Type_t * ___type0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetConverter(Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.JsonConverter,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract0, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___memberConverter1, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadForType(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, bool ___hasConverter2, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::DeserializeConvertable(Vuforia.Newtonsoft.Json.JsonConverter,Vuforia.Newtonsoft.Json.JsonReader,System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___converter0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, Type_t * ___objectType2, RuntimeObject * ___existingValue3, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateValueInternal(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonSerializationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializationException__ctor_m9A2E0DC94F19403862C86632D10004E281471CE6 (JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::IsErrorHandled(System.Object,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object,Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, RuntimeObject * ___currentObject0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___keyValue2, RuntimeObject* ___lineInfo3, String_t* ___path4, Exception_t * ___ex5, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HandleError(Vuforia.Newtonsoft.Json.JsonReader,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, bool ___readPastError1, int32_t ___initialDepth2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::ClearErrorContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalBase_ClearErrorContext_m13BE0970C0D153472880BEF45A97F079504784E9 (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy::.ctor(Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerProxy__ctor_m1FB35B78F924E48D4A63417FDE9F256F515509CD (JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * __this, JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * ___serializerReader0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JRaw Vuforia.Newtonsoft.Json.Linq.JRaw::Create(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C * JRaw_Create_m90612550BF2FA535CC6837E201B6CB449E92E125 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Linq.JTokenWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter__ctor_m2A1F41A7D42673C903DC389853AC89629384222C (JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteToken(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteToken_m45A1C495AC272C5C0617316FCB8069944E38CAFC (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JTokenWriter::get_Token()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JTokenWriter_get_Token_mB378C0C399C61C6665241C4278635E34A8A888FC (JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.JsonReader::ReadAndMoveToContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_ReadAndMoveToContent_mB9655D1A21835B0C037DD7495FF44EAF13B0E2C7 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CheckPropertyName(Vuforia.Newtonsoft.Json.JsonReader,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_CheckPropertyName_mBA4F67098EA96B1D3E426B37BB81D7DAAA2D0809 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___memberName1, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJToken(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JsonSerializerInternalReader_CreateJToken_m5DBDB6242EE910DFDE4D7460E22466B0936F54CE (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObject(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateList(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, RuntimeObject * ___existingValue4, String_t* ___id5, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureType(Vuforia.Newtonsoft.Json.JsonReader,System.Object,System.Globalization.CultureInfo,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, RuntimeObject * ___value1, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture2, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract3, Type_t * ___targetType4, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CoerceEmptyStringToNull(System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_CoerceEmptyStringToNull_m9A3830F0898466908BD8BAE1D42B69B18D308927 (Type_t * ___objectType0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, String_t* ___s2, const RuntimeMethod* method);
// System.Byte[] System.Convert::FromBase64String(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Convert_FromBase64String_mB2E4E2CD03B34DB7C2665694D5B2E967BC81E9A8 (String_t* ___s0, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Linq.JRaw::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JRaw__ctor_mE5B0CC2CC60EE4978297B8E19330BBFFF944A8D0 (JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C * __this, RuntimeObject * ___rawJson0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m81CEEF1FCB5EFBBAA39071F48BCFBC16AED0C915 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_ItemConverter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonProperty_get_ItemConverter_m3CC25C0DD1537CF8781B7F42345B0F85B1C6E8C1_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemConverter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonContainerContract_get_ItemConverter_m28D204C41031B0A88E1506FA818FCB1A82CE4CE5_inline (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonSerializer_GetMatchingConverter_mD173A3ACE4CC46BCC18EBA196274A4BF9DCE72E0 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, Type_t * ___type0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonReader Vuforia.Newtonsoft.Json.Linq.JToken::CreateReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * JToken_CreateReader_mD3C1F643860ACF22DD8C270E71A93F9F152931FD (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.JsonReader::get_SupportMultipleContent()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonReader_get_SupportMultipleContent_m96B31B88F011B1298704D38480AC2E80B05AFA29_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::set_SupportMultipleContent(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReader_set_SupportMultipleContent_m487B50FDB18FDD3688CC4BAFDE7ED0DF34ED9F86_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataPropertiesToken(Vuforia.Newtonsoft.Json.Linq.JTokenReader,System.Type&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.Object&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ReadMetadataPropertiesToken_mB8D6EFC61B31A381189C1FFD0E8D9C1CD5D3AEA7 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * ___reader0, Type_t ** ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, RuntimeObject ** ___newValue7, String_t** ___id8, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataProperties(Vuforia.Newtonsoft.Json.JsonReader,System.Type&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.Object&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ReadMetadataProperties_m53E9E27D4CEB8410EA0D00AFF421EB5AA4A377CC (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t ** ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, RuntimeObject ** ___newValue7, String_t** ___id8, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasNoDefinedType(Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_HasNoDefinedType_mE77196F16E7ADFBC60D87C55710413F6BD52CD5B (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJObject(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JsonSerializerInternalReader_CreateJObject_mDD45A15AC45803D1E1F7D7DBDE34F960543607E0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewObject(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateNewObject_mD9BBCC02F1FE14D85F8DAE3035E3D71768A24DC0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___objectContract1, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, bool* ___createdFromNonDefaultCreator5, const RuntimeMethod* method);
// System.Collections.IDictionary Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewDictionary(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerInternalReader_CreateNewDictionary_mFA1A66BB86EE4864CB12C49EBDFF6BFD00D50B66 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * ___contract1, bool* ___createdFromNonDefaultCreator2, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback> Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_OnSerializingCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnSerializingCallbacks_mFE79890C743727956CEA047578401E6D51DE73E8 (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Serialization.SerializationErrorCallback> Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_OnErrorCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnErrorCallbacks_m3B886B57B0C38DFB72BBEF9A76F73A1CE72AD454 (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreatorInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_HasParameterizedCreatorInternal_m1F975CBA89997D53ABEDFFEA08900BD7313C9EA7 (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_OverrideCreator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonDictionaryContract_get_OverrideCreator_m6706A1FF5BDA7F1DD484ECB4CC2648ED3002A1DA_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_ParameterizedCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonDictionaryContract_get_ParameterizedCreator_m54B5BFED5FA609773EC84DFD3DDB34DF66958E1B (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::Invoke(System.Object[])
inline RuntimeObject * ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C (ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args0, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*))ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_gshared)(__this, ___args0, method);
}
// System.String System.Environment::get_NewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_mD145C8EE917C986BAA7C5243DEFAF4D333C521B4 (const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetExpectedDescription(Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSerializerInternalReader_GetExpectedDescription_m9EC69D92138EB0051D0E68AD0A6E67C68BEC0AB3 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JTokenReader::get_CurrentToken()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JTokenReader_get_CurrentToken_m34D36B014B15EBA8D6FFBACD14A00073436DBA93_inline (JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JObject::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JObject_get_Item_mC0F238250207FBD48438281EC0EAE2A9A9DF57B3 (JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * __this, String_t* ___propertyName0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JContainer Vuforia.Newtonsoft.Json.Linq.JToken::get_Parent()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * JToken_get_Parent_m0C47FA701ABB9BD601C13BBF3EA628AD5A0EF57C_inline (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::get_Next()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JToken_get_Next_m1414D8687D5F635F5FA98957C5EE7AD5B482858E_inline (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::get_Previous()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JToken_get_Previous_m6275AE15ED645BBBFB79A0CFFD6126964ED22E6F_inline (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.JsonReader::Skip()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ResolveTypeName(Vuforia.Newtonsoft.Json.JsonReader,System.Type&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t ** ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, String_t* ___qualifiedTypeName6, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_TypeNameHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 JsonProperty_get_TypeNameHandling_mEBF2DA89C991527B319F376AA9DB70E8DAB4DE2E_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemTypeNameHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 JsonContainerContract_get_ItemTypeNameHandling_m5127E4BCDB00DCF13DEA6AE715351EC5664EA2BE_inline (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * __this, const RuntimeMethod* method);
// System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_ItemTypeNameHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 JsonProperty_get_ItemTypeNameHandling_m9975EC554BB17BAF49400485A41EB4B3609E8E9A_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.TypeNameHandling>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_inline (Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void Vuforia.Newtonsoft.Json.Utilities.ReflectionUtils::SplitFullyQualifiedTypeName(System.String,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_SplitFullyQualifiedTypeName_m56DEC4AA1FABF6B8E10B6046C3651EE0FC7CB8B6 (String_t* ___fullyQualifiedTypeName0, String_t** ___typeName1, String_t** ___assemblyName2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureArrayContract(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * JsonSerializerInternalReader_EnsureArrayContract_mBAF9619065E088954C5A59AB052E2FD0D0CDEA4B (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, const RuntimeMethod* method);
// System.Collections.IList Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewList(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerInternalReader_CreateNewList_m3750B64E6CE99D30375C4DC66E3CE8195CD6A4B2 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * ___contract1, bool* ___createdFromNonDefaultCreator2, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreatorInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreatorInternal_mDECD3E5A012191769951C8F1F692F131E47CD570 (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsArray()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsArray_m8C8CB9EECD63C9EF6D45946B7FC258AF334E87B5_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsMultidimensionalArray()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsMultidimensionalArray_mF7F027C6DA10C72C3D08232BB0924A9EE38AD310_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateMultidimensionalArray(System.Collections.IList,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateMultidimensionalArray_mAB445EFB76C13BF0091C79166158B6F28F068876 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject* ___list0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_CollectionItemType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_CreatedType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonContract_get_CreatedType_mF19D1DA96E2BAF2B3E393E2297135BD08C8E6302_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// System.Array Vuforia.Newtonsoft.Json.Utilities.CollectionUtils::ToMultidimensionalArray(System.Collections.IList,System.Type,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * CollectionUtils_ToMultidimensionalArray_m6FD24AAC96169905CF445D8A6DBFAA87F2C945C0 (RuntimeObject* ___values0, Type_t * ___type1, int32_t ___rank2, const RuntimeMethod* method);
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m57AC02F4475AF70CA317B48F09B3C29E3BA9C046 (Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_OverrideCreator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonArrayContract_get_OverrideCreator_m2CC0CCB39BA9006302F9C8DC385CEB22B9B28EEB_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_ParameterizedCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonArrayContract_get_ParameterizedCreator_m255763FA7BC39347E38B6516896268B536CD804B (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_CanDeserialize()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_CanDeserialize_mEFFB4F298843C2F8D29C99CA2183AA6A89A53E9E_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Utilities.ReflectionUtils::GetObjectType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectionUtils_GetObjectType_m41DBF05EE5918D7A510BE070DE9FF955E4E9CF5C (RuntimeObject * ___v0, const RuntimeMethod* method);
// System.Object System.Enum::Parse(System.Type,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_m42052064519239A11D605CD696EC0FD90A0FB039 (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Utilities.PrimitiveTypeCode Vuforia.Newtonsoft.Json.Serialization.JsonPrimitiveContract::get_TypeCode()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonPrimitiveContract_get_TypeCode_m4264CAF3D77442FD9520DEA039D9F07C90D205E9_inline (JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.ConvertUtils::IsInteger(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_IsInteger_mCA4A52918C6A4C29C204F22A24E6DD452DC53602 (RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Object System.Enum::ToObject(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m2A05590A0D581206AAEB48B89187FD175D5F0967 (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_ChangeType_m6AA3DE3E595A2AABA33B5046BD6CF2AB46466C05 (RuntimeObject * ___value0, Type_t * ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Utilities.ConvertUtils::ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConvertUtils_ConvertOrCast_mC1751364BEF4C5B58DD39AA1B26AC2CC9E44B2F5 (RuntimeObject * ___initialValue0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, Type_t * ___targetType2, const RuntimeMethod* method);
// System.String Vuforia.Newtonsoft.Json.Utilities.MiscellaneousUtils::FormatValueForPrint(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MiscellaneousUtils_FormatValueForPrint_m5393F6C1B91B330FF936888EA7A9A0A203E9DB63 (RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CalculatePropertyDetails(Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonConverter&,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.Object,System.Boolean&,System.Object&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_CalculatePropertyDetails_mBF9CF4F8DBAA199AA8B4922D98C67B86E647BDAB (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property0, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** ___propertyConverter1, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader4, RuntimeObject * ___target5, bool* ___useExistingValue6, RuntimeObject ** ___currentValue7, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___propertyContract8, bool* ___gottenCurrentValue9, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_Readable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonProperty_get_Readable_mE66DEC38E3D1417BE030E901B41CA9113272520C_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.IValueProvider Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_ValueProvider()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldSetPropertyValue(Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ShouldSetPropertyValue_mD92F420E1F3B598299E2EEBFB34D944F2654C24E (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Action`2<System.Object,System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_SetIsSpecified()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * JsonProperty_get_SetIsSpecified_mEAEB9DF9E91666340C8418B70312C736061B53F1_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_DeclaringType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonProperty_get_DeclaringType_mB0F57AF599AA388A2B92C6B5954B8C54726A6BCC_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Void System.Action`2<System.Object,System.Object>::Invoke(!0,!1)
inline void Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method)
{
(( void (*) (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_gshared)(__this, ___arg10, ___arg21, method);
}
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyContract()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonProperty::set_PropertyContract(Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonProperty_set_PropertyContract_m5D1ABC8446CDAB8EB9D58BBB2796506EA50BCB00_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<Vuforia.Newtonsoft.Json.ObjectCreationHandling> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_ObjectCreationHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 JsonProperty_get_ObjectCreationHandling_m4BBA9FBDCFEA20CAF82C612070D2D8FC70EED712_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.ObjectCreationHandling>::GetValueOrDefault(!0)
inline int32_t Nullable_1_GetValueOrDefault_mF2798C0AEE4344D50B89FA536125729BEB8FA49E (Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 * __this, int32_t ___defaultValue0, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 *, int32_t, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mF140A574F626202FBE0319AE51F255878121059D_gshared)(__this, ___defaultValue0, method);
}
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.TypeExtensions::IsValueType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValueType_m0C65E539E74AC4F79E68632A6F6BEEA32F0999D7 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_Writable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonProperty_get_Writable_mCFD17FFBF783AF8F090A391FBAE37088FB9529C1_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.NullValueHandling>::GetValueOrDefault(!0)
inline int32_t Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357 (Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 * __this, int32_t ___defaultValue0, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *, int32_t, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mF140A574F626202FBE0319AE51F255878121059D_gshared)(__this, ___defaultValue0, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.DefaultValueHandling>::GetValueOrDefault(!0)
inline int32_t Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D (Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 * __this, int32_t ___defaultValue0, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *, int32_t, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mF140A574F626202FBE0319AE51F255878121059D_gshared)(__this, ___defaultValue0, method);
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasFlag(Vuforia.Newtonsoft.Json.DefaultValueHandling,Vuforia.Newtonsoft.Json.DefaultValueHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, int32_t ___value0, int32_t ___flag1, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.JsonTokenUtils::IsPrimitiveToken(Vuforia.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonTokenUtils_IsPrimitiveToken_m632DAA049038523D6EF26A0FFF666F057A67C313 (int32_t ___token0, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonProperty::GetResolvedDefaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonProperty_GetResolvedDefaultValue_mEFBDF54ABD268FC1B4B8310641A7A1A982D0A443 (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.MiscellaneousUtils::ValueEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MiscellaneousUtils_ValueEquals_m8EC23B1651540D7A6CC13E3B28D9BA15E0F8B101 (RuntimeObject * ___objA0, RuntimeObject * ___objB1, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_MemberConverter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonProperty_get_MemberConverter_m715ABD6F88B92DE7212E9BF1399D10B2ECC09EC2_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreator_m1A2988769C3478834C6117EE8CDD50390C4C4BED_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// System.Collections.IList Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract::CreateTemporaryCollection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonArrayContract_CreateTemporaryCollection_mE34976652154070D0C3959AB1183670DE21D5176 (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method);
// !!0[] System.Array::Empty<System.Object>()
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_inline (const RuntimeMethod* method)
{
return (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline)(method);
}
// System.Func`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreatorNonPublic()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonContract_get_DefaultCreatorNonPublic_m9DF668CB05F4CED0C01F748CDA35963DAEA6083F_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method);
// !0 System.Func`1<System.Object>::Invoke()
inline RuntimeObject * Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701 (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 *, const RuntimeMethod*))Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared)(__this, method);
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_HasParameterizedCreator_m4DA582EB6CEC888BA8AC8D831A856D7259A77398_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// System.Collections.IDictionary Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::CreateTemporaryDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonDictionaryContract_CreateTemporaryDictionary_m2835AA97130851FBE6B45A3D23988BC350B4C054 (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserializing(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnDeserializing_mD5951B47CBEE2D9E82784CFE8F9377BBD68F6FC7 (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, RuntimeObject * ___o0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserialized(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnDeserialized_mCC26A952571063A0DDA1AA77D426C5C1A1160C6A (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, RuntimeObject * ___o0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::AddReference(Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___id1, RuntimeObject * ___value2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserializing(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_OnDeserializing_m6BEC46D2383AA5B7E2B1064E2683A2ADF324CA02 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___value2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_KeyContract()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryKeyType_m3E4D788BF34A207200FA41564DA66A39334C2141_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_KeyContract(Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_KeyContract_m3EA22CB10EFEC6CB555570CFC08C167C76AE37FD_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___value0, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemContract()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * __this, const RuntimeMethod* method);
// System.Type Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryValueType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryValueType_mFB39D141A0DCC9F21C40DAB07540A059D450192D_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemContract(Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemContract_m15429C9FE811261C02E12E75E99BBF637E8FBA2F (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___value0, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTime(System.String,Vuforia.Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTime_m6DA82CFA0632176E81811E376157C47BD1D089F9 (String_t* ___s0, int32_t ___dateTimeZoneHandling1, String_t* ___dateFormatString2, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture3, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * ___dt4, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffset(System.String,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffset_mA26EE293C308211D722996AD81F1020C4191F0A6 (String_t* ___s0, String_t* ___dateFormatString1, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture2, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * ___dt3, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ThrowUnexpectedEndException(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___currentObject2, String_t* ___message3, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserialized(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_OnDeserialized_m0D0EB15699E6D398A579F89312DFA074E4A600FD (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___value2, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1<System.Collections.IList>::.ctor()
inline void Stack_1__ctor_m790AE37267D1C376801B8E5A2A039F21A671881A (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * __this, const RuntimeMethod* method)
{
(( void (*) (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC *, const RuntimeMethod*))Stack_1__ctor_mD782ADAC3AB9809F63B681213A7A39784A9A169A_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Stack`1<System.Collections.IList>::Push(!0)
inline void Stack_1_Push_m87B86ED53BBE83FB3CEC83D26371B4D4137526F3 (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC *, RuntimeObject*, const RuntimeMethod*))Stack_1_Push_m8FFF613733BF88B54FCD4498B1E97DE296E27757_gshared)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.Stack`1<System.Collections.IList>::get_Count()
inline int32_t Stack_1_get_Count_mC832BF38D820FC36997AAF894B302B4734811BFD_inline (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC *, const RuntimeMethod*))Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.Stack`1<System.Collections.IList>::Pop()
inline RuntimeObject* Stack_1_Pop_mC273ABADFD326D9949509DFA020F04A64518D9CD (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC *, const RuntimeMethod*))Stack_1_Pop_m883C5DEF33CA2E556AC710A9BE26F8BD2D4B182C_gshared)(__this, method);
}
// !0 System.Collections.Generic.Stack`1<System.Collections.IList>::Peek()
inline RuntimeObject* Stack_1_Peek_m81BBA8C1F4529D628559B7B58182BBEC34AF61EC (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC *, const RuntimeMethod*))Stack_1_Peek_m2060B46CD5CCD8A93C5CC558C6D3EF027862FE59_gshared)(__this, method);
}
// Vuforia.Newtonsoft.Json.JsonPosition Vuforia.Newtonsoft.Json.JsonReader::GetPosition(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD JsonReader_GetPosition_mF8427AACE6C27BE3E83852B96C9916B2276A3394 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, int32_t ___depth0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
inline void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::get_HasRequiredOrDefaultValueProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonObjectContract_get_HasRequiredOrDefaultValueProperties_mF1D94987A10AF9F32697809B825D695EFC90DC39 (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::get_CreatorParameters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * JsonObjectContract_get_CreatorParameters_mC96781B33DCEF017375CE78720E992EA8FC1AB3F (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method);
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m5AD7BEF2DCBFD1927500FFEF0F94969E81CCEDF8 (Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::Select<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>)
inline RuntimeObject* Enumerable_Select_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisString_t_m2A3D13F042FA0225593804B4E63880D528ABACD1 (RuntimeObject* ___source0, Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * ___selector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D *, const RuntimeMethod*))Enumerable_Select_TisRuntimeObject_TisRuntimeObject_mF567DE2F48C3BA25C731A3378A78C455348794EC_gshared)(___source0, ___selector1, method);
}
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ResolvePropertyAndCreatorValues(Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty1, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader2, Type_t * ___objectType3, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c__DisplayClass34_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass34_0__ctor_mCE05025CEC99EA48206334395E325D9FF3C586D3 (U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B * __this, const RuntimeMethod* method);
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m8B6B2D3577FF227C1C36A1F78C0BB682C3634656 (Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mCA84157864A199574AD0B7F3083F99B54DC1F98C_gshared)(__this, ___object0, ___method1, method);
}
// System.Boolean System.Linq.Enumerable::All<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline bool Enumerable_All_TisCreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_mFFEA488B654659723EC5B2BA79E04CF4BDF6353E (RuntimeObject* ___source0, Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2 * ___predicate1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2 *, const RuntimeMethod*))Enumerable_All_TisRuntimeObject_m4C0A04A431720E859C6CAB04F55175E5FBD2E08C_gshared)(___source0, ___predicate1, method);
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreatorPropertyContext__ctor_mEC19CBAA75096A28ACEB05C597380372FA30E7E6 (CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::.ctor(!0)
inline void Nullable_1__ctor_mC341C2414A46784FE243AA8F98ED52D1461DCB27 (Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mAAECF4B4B80E3BA744302CA27DD0F2AE86DBAD2A_gshared)(__this, ___value0, method);
}
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>::Add(!0)
inline void List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E (List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * __this, CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 *, CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method);
}
// System.Int32 System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>::get_Count()
inline int32_t Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E (Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4 *, const RuntimeMethod*))Collection_1_get_Count_mFDD0E02040C0BF22B7FEA5A763EAFA2607B96A01_gshared)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>::GetEnumerator()
inline Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1 (List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * __this, const RuntimeMethod* method)
{
return (( Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 (*) (List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>::get_Current()
inline CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_inline (Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 * __this, const RuntimeMethod* method)
{
return (( CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * (*) (Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::get_HasValue()
inline bool Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_inline (Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.String Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_UnderlyingName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonProperty_get_UnderlyingName_mD74AD89A3D462DDE776F6003298CAD86FA3737CC_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// TSource Vuforia.Newtonsoft.Json.Utilities.StringUtils::ForgivingCaseSensitiveFind<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.String>,System.String)
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * StringUtils_ForgivingCaseSensitiveFind_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_m6F75DAAC00903901AA7A9C070A9F5F2F2E5AA608 (RuntimeObject* ___source0, Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * ___valueSelector1, String_t* ___testValue2, const RuntimeMethod* method)
{
return (( JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * (*) (RuntimeObject*, Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D *, String_t*, const RuntimeMethod*))StringUtils_ForgivingCaseSensitiveFind_TisRuntimeObject_mCD8869D8B1B2968B591F8D90D7BC0F177A464C5D_gshared)(___source0, ___valueSelector1, ___testValue2, method);
}
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_inline (Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Int32 System.Collections.ObjectModel.Collection`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>::IndexOf(!0)
inline int32_t Collection_1_IndexOf_mC341ABED2EBA87DC323C54204BD605BA5A719381 (Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (Collection_1_t073BB912E69BE7DB38FB4EA45671E9A2A3D63FF4 *, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *, const RuntimeMethod*))Collection_1_IndexOf_m2118378044DC444131008F35F2A6217CE69AC9E2_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>::MoveNext()
inline bool Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675 (Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>::Dispose()
inline void Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796 (Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
}
// System.Object System.Collections.DictionaryEntry::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method);
// System.Object System.Collections.DictionaryEntry::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ExtensionDataSetter Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::get_ExtensionDataSetter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * JsonObjectContract_get_ExtensionDataSetter_m3F50AB8263A9B83DB9BE97EAA2BE3292D911C3D9_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.ExtensionDataSetter::Invoke(System.Object,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionDataSetter_Invoke_mE89234A069241430AE4C699946D4BB9EFFD90680 (ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * __this, RuntimeObject * ___o0, String_t* ___key1, RuntimeObject * ___value2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EndProcessProperty(System.Object,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,System.Int32,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject * ___newObject0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract2, int32_t ___initialDepth3, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property4, int32_t ___presence5, bool ___setDefaultValue6, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetInternalSerializer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * JsonSerializerInternalReader_GetInternalSerializer_m2F3A22BC22EF32C22FB4D9F18B20E14309E295C0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext>::.ctor()
inline void List_1__ctor_mC62CE1867CC9B4535B2681E8C4A3CC57735A08FD (List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// Vuforia.Newtonsoft.Json.Serialization.JsonProperty Vuforia.Newtonsoft.Json.Serialization.JsonPropertyCollection::GetClosestMatchProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * JsonPropertyCollection_GetClosestMatchProperty_mECA3B93B882465AC4C9A6BB05786365943825E0F (JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * __this, String_t* ___propertyName0, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadExtensionDataValue(Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_ReadExtensionDataValue_m1C0B4203A61E1CE7DE6989444667D22D963A4503 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member1, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader2, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::get_OverrideCreator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonObjectContract_get_OverrideCreator_m3C924990EDB91D2E45A45018864B0AEBBD2AE9CD_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method);
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObjectUsingCreatorWithParameters(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateObjectUsingCreatorWithParameters_m8CADCDE361EAA8AAC0AC6E8A53ED6FA0C26ADDFB (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract1, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty2, ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ___creator3, String_t* ___id4, const RuntimeMethod* method);
// Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::get_ParameterizedCreator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonObjectContract_get_ParameterizedCreator_mF2F01EC69F33384A620BD4CCD6DC81D479185598_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method);
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonProperty>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m53A02ABD52B5A765CA1FB9BEB69D861B4402E34F (Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.Func`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m7A62CE76198D4B225C82B5BFD112FE8C73738104 (Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mF440F3B881F16E5E7B2FA0BC534AEFA86A6BE702_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.Dictionary`2<!!1,!!2> System.Linq.Enumerable::ToDictionary<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Func`2<!!0,!!2>)
inline Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * Enumerable_ToDictionary_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisPropertyPresence_tE5B047BC0A04B238D59B572B5A704F5318A90A6B_m5C1EE5851C3D9A15081274ABFA50DA24494D2F33 (RuntimeObject* ___source0, Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * ___keySelector1, Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * ___elementSelector2, const RuntimeMethod* method)
{
return (( Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * (*) (RuntimeObject*, Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 *, Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 *, const RuntimeMethod*))Enumerable_ToDictionary_TisRuntimeObject_TisRuntimeObject_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m7DA0488B2D63576C0A094E6C67DF950129E24462_gshared)(___source0, ___keySelector1, ___elementSelector2, method);
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetExtensionData(Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_SetExtensionData_m384D01058E7D604A21369BA6679D44C12BB61D40 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member1, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader2, String_t* ___memberName3, RuntimeObject * ___o4, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldDeserialize(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ShouldDeserialize_m5F1BCE5806AEE432C758CA3C10E1BE18740C739E (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property1, RuntimeObject * ___target2, const RuntimeMethod* method);
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyPresence(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_SetPropertyPresence_m394F62F927D2354E1CBF119E7B9FCCE82E09E9F1 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property1, Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * ___requiredProperties2, const RuntimeMethod* method);
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyValue(Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonConverter,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_SetPropertyValue_m52DD932CDB67236E3E199592EC63C48C1057D100 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property0, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___propertyConverter1, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader4, RuntimeObject * ___target5, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::GetEnumerator()
inline Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 Dictionary_2_GetEnumerator_m1898A011255BD54A3F696DE2D486C51C96E47ED5 (Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * __this, const RuntimeMethod* method)
{
return (( Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 (*) (Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mE725DD90675AAF7594A6671AB3C9AB9EFD3E2C67_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::get_Current()
inline KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E Enumerator_get_Current_m157F0F75082A445F2ED1105ED4909524C29020A7_inline (Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E (*) (Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 *, const RuntimeMethod*))Enumerator_get_Current_mCD23B72ADE352A9042016916076E3CB38F25ABE5_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.KeyValuePair`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::get_Key()
inline JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * KeyValuePair_2_get_Key_m0DC7AE685FF1C2F7E0038363668B9D3583474471_inline (KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E * __this, const RuntimeMethod* method)
{
return (( JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * (*) (KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E *, const RuntimeMethod*))KeyValuePair_2_get_Key_m75215BA5B54684DB39718D321AE1E796ACD6EA36_gshared_inline)(__this, method);
}
// !1 System.Collections.Generic.KeyValuePair`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::get_Value()
inline int32_t KeyValuePair_2_get_Value_m0D17F179802CEE9674FCB335B47210AEFE7C36A7_inline (KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E *, const RuntimeMethod*))KeyValuePair_2_get_Value_m2C765785270BB188995957A4ADE4520B78464C98_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::MoveNext()
inline bool Enumerator_MoveNext_m697A3AA9E4E62D7197D00C3D0F357C09F4C46B54 (Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 *, const RuntimeMethod*))Enumerator_MoveNext_m61A69CD334F4858DC5E77D2EB5202A25F8FDECDD_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::Dispose()
inline void Enumerator_Dispose_m2768168018C781F46BAD0CF6983FE8A80E80DCB9 (Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 *, const RuntimeMethod*))Enumerator_Dispose_mA6B83165B1011B147E900FA0B0E9C476C7002F72_gshared)(__this, method);
}
// System.Predicate`1<System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonProperty::get_ShouldDeserialize()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * JsonProperty_get_ShouldDeserialize_m41EEE69A5784AC86C838059F4CE4C8EF91F8CEC3_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method);
// System.Boolean System.Predicate`1<System.Object>::Invoke(!0)
inline bool Predicate_1_Invoke_m9D3C9A756002DA052F4A0129DFF1DA165D7FE913 (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB *, RuntimeObject *, const RuntimeMethod*))Predicate_1_Invoke_m9D3C9A756002DA052F4A0129DFF1DA165D7FE913_gshared)(__this, ___obj0, method);
}
// System.String Vuforia.Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_m68DE5E1A596A265BE77EF5A312E80985EC1B32D9 (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, RuntimeObject * ___arg24, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Vuforia.Newtonsoft.Json.Required>::get_HasValue()
inline bool Nullable_1_get_HasValue_m11A58E870866616D1A3DFDE1370389594B0FC64C_inline (Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED *, const RuntimeMethod*))Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline)(__this, method);
}
// System.Nullable`1<Vuforia.Newtonsoft.Json.Required> Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract::get_ItemRequired()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED JsonObjectContract_get_ItemRequired_m934ECF4E56328FC9A0DB4446FDF08B32D2140F5C_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<Vuforia.Newtonsoft.Json.Required>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_mA3DF7B266E62947143C277E6A616F6913CBE28C1_inline (Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_m7A13430904DFDA191E1C82F8C6BF45B16C7DC017 (Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___key0, int32_t ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 *, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_m4496B9601D8A8C68D07911E87D4C6CB0723BFB18_gshared)(__this, ___key0, ___value1, 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.Int32 Vuforia.Newtonsoft.Json.JsonReaderException::get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonReaderException_get_LineNumber_m9CE11E858450B0DBB56E086AF91A42E4BA57B61E (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CLineNumberU3Ek__BackingField_17();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::set_LineNumber(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException_set_LineNumber_m107F078203427EDE9ECCD29B0A51F26C7C136672 (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLineNumberU3Ek__BackingField_17(L_0);
return;
}
}
// System.Int32 Vuforia.Newtonsoft.Json.JsonReaderException::get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonReaderException_get_LinePosition_m5A66A9511B2829F8D84A208DB3E041611DA3B505 (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CLinePositionU3Ek__BackingField_18();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::set_LinePosition(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException_set_LinePosition_m1ECB8FF6792ABE213B517BC05D5E194D108D09ED (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLinePositionU3Ek__BackingField_18(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.JsonReaderException::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonReaderException_get_Path_m2D9F2A433B655069B0105EDC63A7B4D98AA2DA1C (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CPathU3Ek__BackingField_19();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::set_Path(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException_set_Path_mA56A22E92A2F150167689754236DED6D4C1F69A3 (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPathU3Ek__BackingField_19(L_0);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException__ctor_mB3F6F143DEEA68AF393148E982890D434C78607E (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, const RuntimeMethod* method)
{
{
JsonException__ctor_m99F395B291218EA8C21EBE6B58526FE82243A2E0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException__ctor_mF9F0C197A93905CAC5366416ECFCBB3189896333 (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException__ctor_mBFB149CABF4F0A77713C09AE3142A96C8E299EA9 (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
JsonException__ctor_mCC5D66792B1D3941AB7935D2B2E415EBAB2A7FCA(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonReaderException::.ctor(System.String,System.Exception,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReaderException__ctor_m6318051B69015D17E68275E0E794EC7FFBBC5FD6 (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, String_t* ___message0, Exception_t * ___innerException1, String_t* ___path2, int32_t ___lineNumber3, int32_t ___linePosition4, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
JsonException__ctor_mCC5D66792B1D3941AB7935D2B2E415EBAB2A7FCA(__this, L_0, L_1, /*hidden argument*/NULL);
String_t* L_2 = ___path2;
JsonReaderException_set_Path_mA56A22E92A2F150167689754236DED6D4C1F69A3_inline(__this, L_2, /*hidden argument*/NULL);
int32_t L_3 = ___lineNumber3;
JsonReaderException_set_LineNumber_m107F078203427EDE9ECCD29B0A51F26C7C136672_inline(__this, L_3, /*hidden argument*/NULL);
int32_t L_4 = ___linePosition4;
JsonReaderException_set_LinePosition_m1ECB8FF6792ABE213B517BC05D5E194D108D09ED_inline(__this, L_4, /*hidden argument*/NULL);
return;
}
}
// Vuforia.Newtonsoft.Json.JsonReaderException Vuforia.Newtonsoft.Json.JsonReaderException::Create(Vuforia.Newtonsoft.Json.JsonReader,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * JsonReaderException_Create_m8F19FFEAB70434FD934560CB3D41BBD761346228 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___message1, const RuntimeMethod* method)
{
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
String_t* L_1 = ___message1;
JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * L_2;
L_2 = JsonReaderException_Create_m47A17B8A7631B59FB381FD53DEC0665CFAB19588(L_0, L_1, (Exception_t *)NULL, /*hidden argument*/NULL);
return L_2;
}
}
// Vuforia.Newtonsoft.Json.JsonReaderException Vuforia.Newtonsoft.Json.JsonReaderException::Create(Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * JsonReaderException_Create_m47A17B8A7631B59FB381FD53DEC0665CFAB19588 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___message1, Exception_t * ___ex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader0;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_1);
String_t* L_3 = ___message1;
Exception_t * L_4 = ___ex2;
JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * L_5;
L_5 = JsonReaderException_Create_mA83439AB86D3A5D31870C7E451E430F0EA7B7157(((RuntimeObject*)IsInst((RuntimeObject*)L_0, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// Vuforia.Newtonsoft.Json.JsonReaderException Vuforia.Newtonsoft.Json.JsonReaderException::Create(Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * JsonReaderException_Create_mA83439AB86D3A5D31870C7E451E430F0EA7B7157 (RuntimeObject* ___lineInfo0, String_t* ___path1, String_t* ___message2, Exception_t * ___ex3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
RuntimeObject* L_0 = ___lineInfo0;
String_t* L_1 = ___path1;
String_t* L_2 = ___message2;
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_3;
L_3 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(L_0, L_1, L_2, /*hidden argument*/NULL);
___message2 = L_3;
RuntimeObject* L_4 = ___lineInfo0;
if (!L_4)
{
goto IL_0025;
}
}
{
RuntimeObject* L_5 = ___lineInfo0;
NullCheck(L_5);
bool L_6;
L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean Vuforia.Newtonsoft.Json.IJsonLineInfo::HasLineInfo() */, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var, L_5);
if (!L_6)
{
goto IL_0025;
}
}
{
RuntimeObject* L_7 = ___lineInfo0;
NullCheck(L_7);
int32_t L_8;
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 Vuforia.Newtonsoft.Json.IJsonLineInfo::get_LineNumber() */, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var, L_7);
V_0 = L_8;
RuntimeObject* L_9 = ___lineInfo0;
NullCheck(L_9);
int32_t L_10;
L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 Vuforia.Newtonsoft.Json.IJsonLineInfo::get_LinePosition() */, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var, L_9);
V_1 = L_10;
goto IL_0029;
}
IL_0025:
{
V_0 = 0;
V_1 = 0;
}
IL_0029:
{
String_t* L_11 = ___message2;
Exception_t * L_12 = ___ex3;
String_t* L_13 = ___path1;
int32_t L_14 = V_0;
int32_t L_15 = V_1;
JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * L_16 = (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 *)il2cpp_codegen_object_new(JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388_il2cpp_TypeInfo_var);
JsonReaderException__ctor_m6318051B69015D17E68275E0E794EC7FFBBC5FD6(L_16, L_11, L_12, L_13, L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
}
#ifdef __clang__
#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 Vuforia.Newtonsoft.Json.JsonRequiredAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonRequiredAttribute__ctor_m913654432E6983C7B1BD69FC847B58574EF357F5 (JsonRequiredAttribute_t216E6F733636BD23EC632AB32545DD063EA6A2E6 * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__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.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Id_m6E623D59EC896B0E61E052FFA065D811EB025D4F (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CIdU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Id_mE5CC93267D31400AE1819273B7BBCACB100CB7CD (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CIdU3Ek__BackingField_0(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Title()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Title_m1BDF2704DA1BE7542A0C7B49733B066E3A78B972 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CTitleU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Title(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Title_mC30C6A6EEFBE2DD153FB48E008424C199B62801D (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CTitleU3Ek__BackingField_1(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Required()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Required_mE10F257E5A89313CF4111615DBFCF8638B3E58D7 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CRequiredU3Ek__BackingField_2();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Required(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Required_mD2C868E3252D959332507BFAF8B9E436F5F9A8F4 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CRequiredU3Ek__BackingField_2(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ReadOnly_m1A9ED1B1815C4D294B53DA506798CE902DCF19DD (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CReadOnlyU3Ek__BackingField_3();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ReadOnly(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_ReadOnly_mEADCAD4A662B9760AC62C10CE4165640D88B6C6B (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CReadOnlyU3Ek__BackingField_3(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Hidden()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Hidden_m5A79091FB74532E835A8D3382DEE2B81FE67851B (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CHiddenU3Ek__BackingField_4();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Hidden(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Hidden_mD3E240839004E97C5125D83152371724382CDD3C (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CHiddenU3Ek__BackingField_4(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Transient()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Transient_mB0C10CB0B919F5F2259E6371A64A71308CE3CA57 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CTransientU3Ek__BackingField_5();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Transient(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Transient_mDE01B11870D32F6B97D5DE5A2B729939949A9571 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CTransientU3Ek__BackingField_5(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Description_m1276777F76928EA6DC3D164AC586ADBEE74327F2 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CDescriptionU3Ek__BackingField_6();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Description(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Description_m497296EAA19C9D470CE9A61CE77073BD87C991A7 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CDescriptionU3Ek__BackingField_6(L_0);
return;
}
}
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = __this->get_U3CTypeU3Ek__BackingField_7();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Type(System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = ___value0;
__this->set_U3CTypeU3Ek__BackingField_7(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Pattern()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Pattern_mF1CF5D66E3DB45EB8A5708FAF2AD8EE6305EE283 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CPatternU3Ek__BackingField_8();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Pattern(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Pattern_mA7C50CF007239EA9EB57C186463705DD2472C405 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPatternU3Ek__BackingField_8(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MinimumLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MinimumLength_m1287BFA7D47F2FEF859181B2F39F8C4E8DFC28D9 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumLengthU3Ek__BackingField_9();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MinimumLength(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_MinimumLength_m09672F30C77507EA871D8594886EDA6F6E8E2E2D (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumLengthU3Ek__BackingField_9(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MaximumLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MaximumLength_m0DDE88D8E215CAC7DFF8483833E2FFA54B9065BD (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumLengthU3Ek__BackingField_10();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MaximumLength(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_MaximumLength_m9EF814543B98E7E3F972D45DF1005258911897FE (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumLengthU3Ek__BackingField_10(L_0);
return;
}
}
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_DivisibleBy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_DivisibleBy_m56C5137F847D9E9D752762F25289F4F4A68B459E (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CDivisibleByU3Ek__BackingField_11();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_DivisibleBy(System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_DivisibleBy_m7F7C73E2C79F4CA7F06D92EEDAB6C0AD452CE9ED (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CDivisibleByU3Ek__BackingField_11(L_0);
return;
}
}
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Minimum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_Minimum_m2F769905CBCB189A8F9ADEEA3527F1DE7B5536BA (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMinimumU3Ek__BackingField_12();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Minimum(System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Minimum_mDF51C376BB18160C0819A811EDBCB848E0383B0B (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMinimumU3Ek__BackingField_12(L_0);
return;
}
}
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Maximum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_Maximum_mD2018496516B7337DC72B09292EA403363C1B7D8 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMaximumU3Ek__BackingField_13();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Maximum(System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Maximum_mD0A20654F0F4DB4A20A4663D046E3940F67CFB2C (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMaximumU3Ek__BackingField_13(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ExclusiveMinimum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ExclusiveMinimum_m6ACB2FE8EA54329929EA483E564258C9129BEB7F (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CExclusiveMinimumU3Ek__BackingField_14();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ExclusiveMinimum(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_ExclusiveMinimum_mD1CCD67CBF134C3DE22251F99B224CAF4B82DDA0 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CExclusiveMinimumU3Ek__BackingField_14(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ExclusiveMaximum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ExclusiveMaximum_mB67D9A7E1FA8D3F88BE1272425F3D360AF02835A (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CExclusiveMaximumU3Ek__BackingField_15();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ExclusiveMaximum(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_ExclusiveMaximum_mC9DA3A8A2CB3A64DE1E9384E139389BE8891ECAD (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CExclusiveMaximumU3Ek__BackingField_15(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MinimumItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MinimumItems_m9ED05C6927619F28EFE31874547496920B27B8CF (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumItemsU3Ek__BackingField_16();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MinimumItems(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_MinimumItems_m9E147F3F1CB0C0D88A452170F1244C5079E8AADC (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumItemsU3Ek__BackingField_16(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_MaximumItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MaximumItems_mE340B9ECEDD43C9231F5A62579B4648A2D294233 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumItemsU3Ek__BackingField_17();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_MaximumItems(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_MaximumItems_m9EE5FC4788444E23358BFFBF0783F2F16EEED8E3 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumItemsU3Ek__BackingField_17(L_0);
return;
}
}
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Items()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CItemsU3Ek__BackingField_18();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Items(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Items_m98467635105FE963BBF41DB97EB0F1053A0D23DA (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CItemsU3Ek__BackingField_18(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_PositionalItemsValidation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchema_get_PositionalItemsValidation_m68D32066FDE9DC6D426AC7FE078DC265E8C02385 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CPositionalItemsValidationU3Ek__BackingField_19();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_PositionalItemsValidation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_PositionalItemsValidation_m6B62D399EAD5AD6DD51C828819ABCF97B6B76C99 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CPositionalItemsValidationU3Ek__BackingField_19(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AdditionalItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get_U3CAdditionalItemsU3Ek__BackingField_20();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_AdditionalItems_m4505E2C2F6450B0291ED27CA074C12D7BF485CE7 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___value0;
__this->set_U3CAdditionalItemsU3Ek__BackingField_20(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AllowAdditionalItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchema_get_AllowAdditionalItems_m3A60FE808206C2141F6148816F99E68A27E8EF20 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalItemsU3Ek__BackingField_21();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AllowAdditionalItems(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_AllowAdditionalItems_mE0EAE117D730544A3E6232533DCFDF8027B03840 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalItemsU3Ek__BackingField_21(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_UniqueItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchema_get_UniqueItems_m2CA14F211B0E25BCCEABB228D7A7BE0EE79E9579 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CUniqueItemsU3Ek__BackingField_22();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_UniqueItems(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_UniqueItems_m53C70C25B88DC13752F50CE72B6F937B301B8107 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CUniqueItemsU3Ek__BackingField_22(L_0);
return;
}
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPropertiesU3Ek__BackingField_23();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Properties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Properties_mA71EBA6B5C5D4F33347D50D8F68C3BF19554D713 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPropertiesU3Ek__BackingField_23(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AdditionalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get_U3CAdditionalPropertiesU3Ek__BackingField_24();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_AdditionalProperties_m342347187D74F472699CC67CCD93EEDFBAB091F5 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___value0;
__this->set_U3CAdditionalPropertiesU3Ek__BackingField_24(L_0);
return;
}
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_PatternProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPatternPropertiesU3Ek__BackingField_25();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_PatternProperties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_PatternProperties_mD3673AAFB7CA55B24D6F8D933D727567CA48364F (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPatternPropertiesU3Ek__BackingField_25(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_AllowAdditionalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchema_get_AllowAdditionalProperties_m92CF5DA0D05DF54861368B196E8A314DD6EB05B8 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalPropertiesU3Ek__BackingField_26();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_AllowAdditionalProperties(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_AllowAdditionalProperties_mCEC6844B12E85B4EAC2392D0CB900192309AA572 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalPropertiesU3Ek__BackingField_26(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Requires()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Requires_m3B9236413E6A8F3A5CBE5C0692CF82AD2EF10AB1 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CRequiresU3Ek__BackingField_27();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Requires(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Requires_m5D457478840D5C598A4E628635960683218F9D62 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CRequiresU3Ek__BackingField_27(L_0);
return;
}
}
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Enum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CEnumU3Ek__BackingField_28();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Enum(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Enum_m600F66C93A07B7B23914016BCC4ADC350DB41372 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CEnumU3Ek__BackingField_28(L_0);
return;
}
}
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Disallow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchema_get_Disallow_m03B2414DB9D56599AFEB6FD4D32B6A80810E6401 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = __this->get_U3CDisallowU3Ek__BackingField_29();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Disallow(System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Disallow_mDE960F1735D5B747FDC4D0C53EF9F92D5A4FD59A (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = ___value0;
__this->set_U3CDisallowU3Ek__BackingField_29(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JsonSchema_get_Default_mD2503533B14AE7DBA53B4991927F0C139F4EAE5B (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = __this->get_U3CDefaultU3Ek__BackingField_30();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Default(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Default_mD91A00F8C6E98164325C256BD3C2F3A40226F952 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value0, const RuntimeMethod* method)
{
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = ___value0;
__this->set_U3CDefaultU3Ek__BackingField_30(L_0);
return;
}
}
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Extends()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CExtendsU3Ek__BackingField_31();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Extends(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Extends_mA544A93BC53D5F646936F15078CE19BFFAAA7488 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CExtendsU3Ek__BackingField_31(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Format_m05C805C7441A8BD78FD6AF182E7AE1A354BC472E (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CFormatU3Ek__BackingField_32();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Format(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Format_m6E3EB7850BFBC27028ADC2E96D54992AED790AFE (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CFormatU3Ek__BackingField_32(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_Location()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Location_m86598910A11FE1688F19536676D4832E21181257 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CLocationU3Ek__BackingField_33();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_Location(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_Location_m261F1FB12D73E27A802A8CC2E0DBF5581920837D (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CLocationU3Ek__BackingField_33(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_InternalId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_InternalId_m91BD8C82C192958D03641D06771819AAFA45224F (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__internalId_34();
return L_0;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_DeferredReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_get_DeferredReference_mF7F4A198AE7EC9D29E2682BCFF5133A2AD17A511 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CDeferredReferenceU3Ek__BackingField_35();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_DeferredReference(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_DeferredReference_mD894E9594C87703F245F56336CCF3CA2A5C7FC64 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CDeferredReferenceU3Ek__BackingField_35(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchema::get_ReferencesResolved()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchema_get_ReferencesResolved_mE55F2BF040242E2C842F7F6F364FE88A79BA8F6E (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CReferencesResolvedU3Ek__BackingField_36();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::set_ReferencesResolved(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_set_ReferencesResolved_mE14DDCC88AD64CD8EACA9031D44F6A7A4E0E7048 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CReferencesResolvedU3Ek__BackingField_36(L_0);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema__ctor_m3E0CBE1171FD35441162159F6C7CB8AA8F4E7BE0 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE42E8BB820D4F7550A0F04619F4E15FDC56943B9);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_0;
L_0 = Guid_NewGuid_m5BD19325820690ED6ECA31D67BC2CD474DC4FDB0(/*hidden argument*/NULL);
V_0 = L_0;
String_t* L_1;
L_1 = Guid_ToString_mB4CBA020EEFAC3F6E828BB8A15E813F3680CEFAB((Guid_t *)(&V_0), _stringLiteralE42E8BB820D4F7550A0F04619F4E15FDC56943B9, /*hidden argument*/NULL);
__this->set__internalId_34(L_1);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
JsonSchema_set_AllowAdditionalProperties_mCEC6844B12E85B4EAC2392D0CB900192309AA572_inline(__this, (bool)1, /*hidden argument*/NULL);
JsonSchema_set_AllowAdditionalItems_mE0EAE117D730544A3E6232533DCFDF8027B03840_inline(__this, (bool)1, /*hidden argument*/NULL);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::Read(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_Read_m92495C4575557307812E09B8465233D0045DD773 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 *)il2cpp_codegen_object_new(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
JsonSchemaResolver__ctor_m36F1987E2C2CE3ABFC4A3BD1014D8FC01CDD1338(L_1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2;
L_2 = JsonSchema_Read_m7C1D75CF193E61D98D2CB22A1B40C3271B9E4B8D(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::Read(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_Read_m7C1D75CF193E61D98D2CB22A1B40C3271B9E4B8D (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral060BD55633A7BB0DB575F9B05139A7E7F61D0BA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31);
s_Il2CppMethodInitialized = true;
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31, /*hidden argument*/NULL);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = ___resolver1;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_1, _stringLiteral060BD55633A7BB0DB575F9B05139A7E7F61D0BA6, /*hidden argument*/NULL);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_2 = ___resolver1;
JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * L_3 = (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B *)il2cpp_codegen_object_new(JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B_il2cpp_TypeInfo_var);
JsonSchemaBuilder__ctor_m857D4D11C22893443335C6B74B073F40FC107578(L_3, L_2, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader0;
NullCheck(L_3);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5;
L_5 = JsonSchemaBuilder_Read_m81A879A7F7EF7F00686AF91173F32B26BD1C4C04(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_Parse_m0CFFAAF7B9A14B161E5D5B0C6C1BFF031C953DFD (String_t* ___json0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___json0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 *)il2cpp_codegen_object_new(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
JsonSchemaResolver__ctor_m36F1987E2C2CE3ABFC4A3BD1014D8FC01CDD1338(L_1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2;
L_2 = JsonSchema_Parse_m82BF11FCF4ECB1D0EB724175CBF769C2B69BBA91(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchema::Parse(System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_Parse_m82BF11FCF4ECB1D0EB724175CBF769C2B69BBA91 (String_t* ___json0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringReader_t74E352C280EAC22C878867444978741F19E1F895_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84);
s_Il2CppMethodInitialized = true;
}
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * V_0 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
String_t* L_0 = ___json0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84, /*hidden argument*/NULL);
String_t* L_1 = ___json0;
StringReader_t74E352C280EAC22C878867444978741F19E1F895 * L_2 = (StringReader_t74E352C280EAC22C878867444978741F19E1F895 *)il2cpp_codegen_object_new(StringReader_t74E352C280EAC22C878867444978741F19E1F895_il2cpp_TypeInfo_var);
StringReader__ctor_m7CC29D8E83F4813395ACA9CF4F756B1BCE09A7EE(L_2, L_1, /*hidden argument*/NULL);
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * L_3 = (JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE *)il2cpp_codegen_object_new(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
JsonTextReader__ctor_m6E8E633BA733A92BE7558C595B55A79B41621B3A(L_3, L_2, /*hidden argument*/NULL);
V_0 = L_3;
}
IL_0017:
try
{// begin try (depth: 1)
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = V_0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_5 = ___resolver1;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_6;
L_6 = JsonSchema_Read_m7C1D75CF193E61D98D2CB22A1B40C3271B9E4B8D(L_4, L_5, /*hidden argument*/NULL);
V_1 = L_6;
IL2CPP_LEAVE(0x2B, FINALLY_0021);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0021;
}
FINALLY_0021:
{// begin finally (depth: 1)
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_7 = V_0;
if (!L_7)
{
goto IL_002a;
}
}
IL_0024:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_8 = V_0;
NullCheck(L_8);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_8);
}
IL_002a:
{
IL2CPP_END_FINALLY(33)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(33)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x2B, IL_002b)
}
IL_002b:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9 = V_1;
return L_9;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::WriteTo(Vuforia.Newtonsoft.Json.JsonWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_WriteTo_m6ADE2C38F6E7B01BE382C7B01CDCC3377D2E4ED2 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_0 = ___writer0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 *)il2cpp_codegen_object_new(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
JsonSchemaResolver__ctor_m36F1987E2C2CE3ABFC4A3BD1014D8FC01CDD1338(L_1, /*hidden argument*/NULL);
JsonSchema_WriteTo_mA28E552D953B6CE3DBE50DCC9C642024B4D88647(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchema::WriteTo(Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchema_WriteTo_mA28E552D953B6CE3DBE50DCC9C642024B4D88647 (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral060BD55633A7BB0DB575F9B05139A7E7F61D0BA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0);
s_Il2CppMethodInitialized = true;
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_0 = ___writer0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0, /*hidden argument*/NULL);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = ___resolver1;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_1, _stringLiteral060BD55633A7BB0DB575F9B05139A7E7F61D0BA6, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_2 = ___writer0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_3 = ___resolver1;
JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * L_4 = (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A *)il2cpp_codegen_object_new(JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A_il2cpp_TypeInfo_var);
JsonSchemaWriter__ctor_mFACE064CE425690159991C7AD8CA2DB91EA0459C(L_4, L_2, L_3, /*hidden argument*/NULL);
NullCheck(L_4);
JsonSchemaWriter_WriteSchema_m75B5C88EB60B09DB2BD923D9578AFD3020739373(L_4, __this, /*hidden argument*/NULL);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchema::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchema_ToString_mAC799D5631E7DCA71804C6735C0AEB87BA3BF5BB (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0;
L_0 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * L_1 = (StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 *)il2cpp_codegen_object_new(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var);
StringWriter__ctor_mDF4AB6FD46E8B9824F2F7A9C26EA086A2C1AE5CF(L_1, L_0, /*hidden argument*/NULL);
StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * L_2 = L_1;
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * L_3 = (JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 *)il2cpp_codegen_object_new(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0_il2cpp_TypeInfo_var);
JsonTextWriter__ctor_mED308137E7448DDE30E0E119D0E53929A75BC057(L_3, L_2, /*hidden argument*/NULL);
V_0 = L_3;
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * L_4 = V_0;
NullCheck(L_4);
JsonWriter_set_Formatting_mE4648783E943F2EA9977ADF85BDCE8F05F29D349(L_4, 1, /*hidden argument*/NULL);
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * L_5 = V_0;
JsonSchema_WriteTo_m6ADE2C38F6E7B01BE382C7B01CDCC3377D2E4ED2(__this, L_5, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::.ctor(Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder__ctor_m857D4D11C22893443335C6B74B073F40FC107578 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * L_0 = (List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 *)il2cpp_codegen_object_new(List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9(L_0, /*hidden argument*/List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
__this->set__stack_0(L_0);
Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 * L_1 = (Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 *)il2cpp_codegen_object_new(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0(L_1, /*hidden argument*/Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0_RuntimeMethod_var);
__this->set__documentSchemas_2(L_1);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_2 = ___resolver0;
__this->set__resolver_1(L_2);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::Push(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_Push_m7464B2910B7BE2920A03A42342DF6EFB04F83BA8 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___value0;
__this->set__currentSchema_3(L_0);
RuntimeObject* L_1 = __this->get__stack_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2 = ___value0;
NullCheck(L_1);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_1, L_2);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_3 = __this->get__resolver_1();
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline(L_3, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5 = ___value0;
NullCheck(L_4);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_4, L_5);
RuntimeObject* L_6 = __this->get__documentSchemas_2();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7 = ___value0;
NullCheck(L_7);
String_t* L_8;
L_8 = JsonSchema_get_Location_m86598910A11FE1688F19536676D4832E21181257_inline(L_7, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9 = ___value0;
NullCheck(L_6);
InterfaceActionInvoker2< String_t*, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0,!1) */, IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var, L_6, L_8, L_9);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_Pop_m68A6A7147BDB9A703592CA531A1BA8F2F7D49B26 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_LastOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m72E65EF91439D3311898D0B5622FA6B44E5D4BE5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get__currentSchema_3();
RuntimeObject* L_1 = __this->get__stack_0();
RuntimeObject* L_2 = __this->get__stack_0();
NullCheck(L_2);
int32_t L_3;
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_2);
NullCheck(L_1);
InterfaceActionInvoker1< int32_t >::Invoke(4 /* System.Void System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::RemoveAt(System.Int32) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)));
RuntimeObject* L_4 = __this->get__stack_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5;
L_5 = Enumerable_LastOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m72E65EF91439D3311898D0B5622FA6B44E5D4BE5(L_4, /*hidden argument*/Enumerable_LastOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m72E65EF91439D3311898D0B5622FA6B44E5D4BE5_RuntimeMethod_var);
__this->set__currentSchema_3(L_5);
return L_0;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::get_CurrentSchema()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get__currentSchema_3();
return L_0;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::Read(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_Read_m81A879A7F7EF7F00686AF91173F32B26BD1C4C04 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_0 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_1 = NULL;
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_1;
L_1 = JToken_ReadFrom_m7FC077469C84451AE9FCD636565E3E0F5C8FA7E1(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_2 = V_0;
__this->set__rootSchema_4(((JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 *)IsInstClass((RuntimeObject*)L_2, JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08_il2cpp_TypeInfo_var)));
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3 = V_0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_4;
L_4 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_3, /*hidden argument*/NULL);
V_1 = L_4;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5 = V_1;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_6;
L_6 = JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29(__this, L_5, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7 = V_1;
return L_7;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::UnescapeReference(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaBuilder_UnescapeReference_mA7F0D4CBAAC7E521F54C99A90C8642CE36DE5CAB (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, String_t* ___reference0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BD4A42EB6DB13C6BF2B222FE0C9931581AAB477);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCE883D2A9076C6A618D7C0896D09E8CE52BF50);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9452A87FAA0073A5238C5BF8FBCAE0BFB2A7512D);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___reference0;
IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = Uri_UnescapeDataString_m52E242703F2842594B2B37D673CDD5465ABCC836(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2;
L_2 = String_Replace_m98184150DC4E2FBDF13E723BF5B7353D9602AC4D(L_1, _stringLiteral3BD4A42EB6DB13C6BF2B222FE0C9931581AAB477, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = String_Replace_m98184150DC4E2FBDF13E723BF5B7353D9602AC4D(L_2, _stringLiteral3DCE883D2A9076C6A618D7C0896D09E8CE52BF50, _stringLiteral9452A87FAA0073A5238C5BF8FBCAE0BFB2A7512D, /*hidden argument*/NULL);
return L_3;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ResolveReferences(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Count_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mD963C851B6FD41A405A306E18A8F8AD2986C1310_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToList_TisKeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE_m1350D4DBE3BB8CC21533333A7A432C3DA09080B3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mD66272CDD8C9C33F90E46BCBDEBF9DC171D9BAB3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m9EDC02A676866A036489999DC124DF43D2BE9B66_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mD23D7FEEE77C663D8C88D4847D639694CF3AD6E9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m922296E3F839C8D0AADA354F60A9B508EFC90CE1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_2 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_3 = NULL;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_4 = NULL;
int32_t V_5 = 0;
String_t* V_6 = NULL;
String_t* V_7 = NULL;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 V_11;
memset((&V_11), 0, sizeof(V_11));
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE V_12;
memset((&V_12), 0, sizeof(V_12));
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE V_13;
memset((&V_13), 0, sizeof(V_13));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___schema0;
NullCheck(L_0);
String_t* L_1;
L_1 = JsonSchema_get_DeferredReference_mF7F4A198AE7EC9D29E2682BCFF5133A2AD17A511_inline(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0118;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2 = ___schema0;
NullCheck(L_2);
String_t* L_3;
L_3 = JsonSchema_get_DeferredReference_mF7F4A198AE7EC9D29E2682BCFF5133A2AD17A511_inline(L_2, /*hidden argument*/NULL);
V_0 = L_3;
String_t* L_4 = V_0;
NullCheck(L_4);
bool L_5;
L_5 = String_StartsWith_mEA750A0572C706249CDD826681741B7DD733381E(L_4, _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, 4, /*hidden argument*/NULL);
V_1 = L_5;
bool L_6 = V_1;
if (!L_6)
{
goto IL_002a;
}
}
{
String_t* L_7 = V_0;
String_t* L_8;
L_8 = JsonSchemaBuilder_UnescapeReference_mA7F0D4CBAAC7E521F54C99A90C8642CE36DE5CAB(__this, L_7, /*hidden argument*/NULL);
V_0 = L_8;
}
IL_002a:
{
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_9 = __this->get__resolver_1();
String_t* L_10 = V_0;
NullCheck(L_9);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_11;
L_11 = VirtualFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, String_t* >::Invoke(4 /* Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::GetSchema(System.String) */, L_9, L_10);
V_2 = L_11;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_12 = V_2;
if (L_12)
{
goto IL_0115;
}
}
{
bool L_13 = V_1;
if (!L_13)
{
goto IL_00f7;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_14 = ___schema0;
NullCheck(L_14);
String_t* L_15;
L_15 = JsonSchema_get_DeferredReference_mF7F4A198AE7EC9D29E2682BCFF5133A2AD17A511_inline(L_14, /*hidden argument*/NULL);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_16 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_17 = L_16;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)35));
NullCheck(L_15);
String_t* L_18;
L_18 = String_TrimStart_m02B916CA047749DD55A03278F4A96FBA62C8935A(L_15, L_17, /*hidden argument*/NULL);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_19 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_20 = L_19;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)47));
NullCheck(L_18);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21;
L_21 = String_Split_m8334980E85EA3EF1F6204607324D9C34EFA4CA25(L_18, L_20, 1, /*hidden argument*/NULL);
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_22 = __this->get__rootSchema_4();
V_3 = L_22;
V_4 = L_21;
V_5 = 0;
goto IL_00e4;
}
IL_0078:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = V_4;
int32_t L_24 = V_5;
NullCheck(L_23);
int32_t L_25 = L_24;
String_t* L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
V_6 = L_26;
String_t* L_27 = V_6;
String_t* L_28;
L_28 = JsonSchemaBuilder_UnescapeReference_mA7F0D4CBAAC7E521F54C99A90C8642CE36DE5CAB(__this, L_27, /*hidden argument*/NULL);
V_7 = L_28;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_29 = V_3;
NullCheck(L_29);
int32_t L_30;
L_30 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_29);
if ((!(((uint32_t)L_30) == ((uint32_t)1))))
{
goto IL_009d;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_31 = V_3;
String_t* L_32 = V_7;
NullCheck(L_31);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_33;
L_33 = VirtualFuncInvoker1< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 *, RuntimeObject * >::Invoke(14 /* Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::get_Item(System.Object) */, L_31, L_32);
V_3 = L_33;
goto IL_00db;
}
IL_009d:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_34 = V_3;
NullCheck(L_34);
int32_t L_35;
L_35 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_34);
if ((((int32_t)L_35) == ((int32_t)2)))
{
goto IL_00af;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_36 = V_3;
NullCheck(L_36);
int32_t L_37;
L_37 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_36);
if ((!(((uint32_t)L_37) == ((uint32_t)3))))
{
goto IL_00db;
}
}
IL_00af:
{
String_t* L_38 = V_7;
bool L_39;
L_39 = Int32_TryParse_m748B8DB1D0C9D25C3D1812D7887411C4AFC1DDC2(L_38, (int32_t*)(&V_8), /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00d9;
}
}
{
int32_t L_40 = V_8;
if ((((int32_t)L_40) < ((int32_t)0)))
{
goto IL_00d9;
}
}
{
int32_t L_41 = V_8;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_42 = V_3;
int32_t L_43;
L_43 = Enumerable_Count_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mD963C851B6FD41A405A306E18A8F8AD2986C1310(L_42, /*hidden argument*/Enumerable_Count_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mD963C851B6FD41A405A306E18A8F8AD2986C1310_RuntimeMethod_var);
if ((((int32_t)L_41) >= ((int32_t)L_43)))
{
goto IL_00d9;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_44 = V_3;
int32_t L_45 = V_8;
int32_t L_46 = L_45;
RuntimeObject * L_47 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_46);
NullCheck(L_44);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_48;
L_48 = VirtualFuncInvoker1< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 *, RuntimeObject * >::Invoke(14 /* Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Linq.JToken::get_Item(System.Object) */, L_44, L_47);
V_3 = L_48;
goto IL_00db;
}
IL_00d9:
{
V_3 = (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 *)NULL;
}
IL_00db:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_49 = V_3;
if (!L_49)
{
goto IL_00ec;
}
}
{
int32_t L_50 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
}
IL_00e4:
{
int32_t L_51 = V_5;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_52 = V_4;
NullCheck(L_52);
if ((((int32_t)L_51) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length))))))
{
goto IL_0078;
}
}
IL_00ec:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_53 = V_3;
if (!L_53)
{
goto IL_00f7;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_54 = V_3;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_55;
L_55 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_54, /*hidden argument*/NULL);
V_2 = L_55;
}
IL_00f7:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_56 = V_2;
if (L_56)
{
goto IL_0115;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_57;
L_57 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_58 = ___schema0;
NullCheck(L_58);
String_t* L_59;
L_59 = JsonSchema_get_DeferredReference_mF7F4A198AE7EC9D29E2682BCFF5133A2AD17A511_inline(L_58, /*hidden argument*/NULL);
String_t* L_60;
L_60 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral90E1EF43D917BC61986A139BB53FB7DE4EFA863E)), L_57, L_59, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_61 = (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var)));
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(L_61, L_60, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29_RuntimeMethod_var)));
}
IL_0115:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_62 = V_2;
___schema0 = L_62;
}
IL_0118:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_63 = ___schema0;
NullCheck(L_63);
bool L_64;
L_64 = JsonSchema_get_ReferencesResolved_mE55F2BF040242E2C842F7F6F364FE88A79BA8F6E_inline(L_63, /*hidden argument*/NULL);
if (!L_64)
{
goto IL_0122;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_65 = ___schema0;
return L_65;
}
IL_0122:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_66 = ___schema0;
NullCheck(L_66);
JsonSchema_set_ReferencesResolved_mE14DDCC88AD64CD8EACA9031D44F6A7A4E0E7048_inline(L_66, (bool)1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_67 = ___schema0;
NullCheck(L_67);
RuntimeObject* L_68;
L_68 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_67, /*hidden argument*/NULL);
if (!L_68)
{
goto IL_016b;
}
}
{
V_9 = 0;
goto IL_015c;
}
IL_0136:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_69 = ___schema0;
NullCheck(L_69);
RuntimeObject* L_70;
L_70 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_69, /*hidden argument*/NULL);
int32_t L_71 = V_9;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_72 = ___schema0;
NullCheck(L_72);
RuntimeObject* L_73;
L_73 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_72, /*hidden argument*/NULL);
int32_t L_74 = V_9;
NullCheck(L_73);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_75;
L_75 = InterfaceFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Item(System.Int32) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_73, L_74);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_76;
L_76 = JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29(__this, L_75, /*hidden argument*/NULL);
NullCheck(L_70);
InterfaceActionInvoker2< int32_t, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(1 /* System.Void System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::set_Item(System.Int32,!0) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_70, L_71, L_76);
int32_t L_77 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_77, (int32_t)1));
}
IL_015c:
{
int32_t L_78 = V_9;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_79 = ___schema0;
NullCheck(L_79);
RuntimeObject* L_80;
L_80 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_79, /*hidden argument*/NULL);
NullCheck(L_80);
int32_t L_81;
L_81 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_80);
if ((((int32_t)L_78) < ((int32_t)L_81)))
{
goto IL_0136;
}
}
IL_016b:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_82 = ___schema0;
NullCheck(L_82);
RuntimeObject* L_83;
L_83 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_82, /*hidden argument*/NULL);
if (!L_83)
{
goto IL_01ad;
}
}
{
V_10 = 0;
goto IL_019e;
}
IL_0178:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_84 = ___schema0;
NullCheck(L_84);
RuntimeObject* L_85;
L_85 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_84, /*hidden argument*/NULL);
int32_t L_86 = V_10;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_87 = ___schema0;
NullCheck(L_87);
RuntimeObject* L_88;
L_88 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_87, /*hidden argument*/NULL);
int32_t L_89 = V_10;
NullCheck(L_88);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_90;
L_90 = InterfaceFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Item(System.Int32) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_88, L_89);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_91;
L_91 = JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29(__this, L_90, /*hidden argument*/NULL);
NullCheck(L_85);
InterfaceActionInvoker2< int32_t, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(1 /* System.Void System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::set_Item(System.Int32,!0) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_85, L_86, L_91);
int32_t L_92 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_92, (int32_t)1));
}
IL_019e:
{
int32_t L_93 = V_10;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_94 = ___schema0;
NullCheck(L_94);
RuntimeObject* L_95;
L_95 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_94, /*hidden argument*/NULL);
NullCheck(L_95);
int32_t L_96;
L_96 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_95);
if ((((int32_t)L_93) < ((int32_t)L_96)))
{
goto IL_0178;
}
}
IL_01ad:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_97 = ___schema0;
NullCheck(L_97);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_98;
L_98 = JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline(L_97, /*hidden argument*/NULL);
if (!L_98)
{
goto IL_01c7;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_99 = ___schema0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_100 = ___schema0;
NullCheck(L_100);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_101;
L_101 = JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline(L_100, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_102;
L_102 = JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29(__this, L_101, /*hidden argument*/NULL);
NullCheck(L_99);
JsonSchema_set_AdditionalItems_m4505E2C2F6450B0291ED27CA074C12D7BF485CE7_inline(L_99, L_102, /*hidden argument*/NULL);
}
IL_01c7:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_103 = ___schema0;
NullCheck(L_103);
RuntimeObject* L_104;
L_104 = JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966_inline(L_103, /*hidden argument*/NULL);
if (!L_104)
{
goto IL_0224;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_105 = ___schema0;
NullCheck(L_105);
RuntimeObject* L_106;
L_106 = JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966_inline(L_105, /*hidden argument*/NULL);
List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * L_107;
L_107 = Enumerable_ToList_TisKeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE_m1350D4DBE3BB8CC21533333A7A432C3DA09080B3(L_106, /*hidden argument*/Enumerable_ToList_TisKeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE_m1350D4DBE3BB8CC21533333A7A432C3DA09080B3_RuntimeMethod_var);
NullCheck(L_107);
Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 L_108;
L_108 = List_1_GetEnumerator_m922296E3F839C8D0AADA354F60A9B508EFC90CE1(L_107, /*hidden argument*/List_1_GetEnumerator_m922296E3F839C8D0AADA354F60A9B508EFC90CE1_RuntimeMethod_var);
V_11 = L_108;
}
IL_01e1:
try
{// begin try (depth: 1)
{
goto IL_020b;
}
IL_01e3:
{
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE L_109;
L_109 = Enumerator_get_Current_mD23D7FEEE77C663D8C88D4847D639694CF3AD6E9_inline((Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *)(&V_11), /*hidden argument*/Enumerator_get_Current_mD23D7FEEE77C663D8C88D4847D639694CF3AD6E9_RuntimeMethod_var);
V_12 = L_109;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_110 = ___schema0;
NullCheck(L_110);
RuntimeObject* L_111;
L_111 = JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966_inline(L_110, /*hidden argument*/NULL);
String_t* L_112;
L_112 = KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_12), /*hidden argument*/KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_113;
L_113 = KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_12), /*hidden argument*/KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_114;
L_114 = JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29(__this, L_113, /*hidden argument*/NULL);
NullCheck(L_111);
InterfaceActionInvoker2< String_t*, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::set_Item(!0,!1) */, IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var, L_111, L_112, L_114);
}
IL_020b:
{
bool L_115;
L_115 = Enumerator_MoveNext_m9EDC02A676866A036489999DC124DF43D2BE9B66((Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *)(&V_11), /*hidden argument*/Enumerator_MoveNext_m9EDC02A676866A036489999DC124DF43D2BE9B66_RuntimeMethod_var);
if (L_115)
{
goto IL_01e3;
}
}
IL_0214:
{
IL2CPP_LEAVE(0x224, FINALLY_0216);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0216;
}
FINALLY_0216:
{// begin finally (depth: 1)
Enumerator_Dispose_mD66272CDD8C9C33F90E46BCBDEBF9DC171D9BAB3((Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *)(&V_11), /*hidden argument*/Enumerator_Dispose_mD66272CDD8C9C33F90E46BCBDEBF9DC171D9BAB3_RuntimeMethod_var);
IL2CPP_END_FINALLY(534)
}// end finally (depth: 1)
IL2CPP_CLEANUP(534)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x224, IL_0224)
}
IL_0224:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_116 = ___schema0;
NullCheck(L_116);
RuntimeObject* L_117;
L_117 = JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline(L_116, /*hidden argument*/NULL);
if (!L_117)
{
goto IL_0281;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_118 = ___schema0;
NullCheck(L_118);
RuntimeObject* L_119;
L_119 = JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline(L_118, /*hidden argument*/NULL);
List_1_t442421A5A06764B8D853440DFAFB3F122D52E8C4 * L_120;
L_120 = Enumerable_ToList_TisKeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE_m1350D4DBE3BB8CC21533333A7A432C3DA09080B3(L_119, /*hidden argument*/Enumerable_ToList_TisKeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE_m1350D4DBE3BB8CC21533333A7A432C3DA09080B3_RuntimeMethod_var);
NullCheck(L_120);
Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 L_121;
L_121 = List_1_GetEnumerator_m922296E3F839C8D0AADA354F60A9B508EFC90CE1(L_120, /*hidden argument*/List_1_GetEnumerator_m922296E3F839C8D0AADA354F60A9B508EFC90CE1_RuntimeMethod_var);
V_11 = L_121;
}
IL_023e:
try
{// begin try (depth: 1)
{
goto IL_0268;
}
IL_0240:
{
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE L_122;
L_122 = Enumerator_get_Current_mD23D7FEEE77C663D8C88D4847D639694CF3AD6E9_inline((Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *)(&V_11), /*hidden argument*/Enumerator_get_Current_mD23D7FEEE77C663D8C88D4847D639694CF3AD6E9_RuntimeMethod_var);
V_13 = L_122;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_123 = ___schema0;
NullCheck(L_123);
RuntimeObject* L_124;
L_124 = JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline(L_123, /*hidden argument*/NULL);
String_t* L_125;
L_125 = KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_13), /*hidden argument*/KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_126;
L_126 = KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_13), /*hidden argument*/KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_127;
L_127 = JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29(__this, L_126, /*hidden argument*/NULL);
NullCheck(L_124);
InterfaceActionInvoker2< String_t*, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::set_Item(!0,!1) */, IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var, L_124, L_125, L_127);
}
IL_0268:
{
bool L_128;
L_128 = Enumerator_MoveNext_m9EDC02A676866A036489999DC124DF43D2BE9B66((Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *)(&V_11), /*hidden argument*/Enumerator_MoveNext_m9EDC02A676866A036489999DC124DF43D2BE9B66_RuntimeMethod_var);
if (L_128)
{
goto IL_0240;
}
}
IL_0271:
{
IL2CPP_LEAVE(0x281, FINALLY_0273);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0273;
}
FINALLY_0273:
{// begin finally (depth: 1)
Enumerator_Dispose_mD66272CDD8C9C33F90E46BCBDEBF9DC171D9BAB3((Enumerator_t04DCB5280F13ECE35BE2637F10CF5E5AB689A435 *)(&V_11), /*hidden argument*/Enumerator_Dispose_mD66272CDD8C9C33F90E46BCBDEBF9DC171D9BAB3_RuntimeMethod_var);
IL2CPP_END_FINALLY(627)
}// end finally (depth: 1)
IL2CPP_CLEANUP(627)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x281, IL_0281)
}
IL_0281:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_129 = ___schema0;
NullCheck(L_129);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_130;
L_130 = JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline(L_129, /*hidden argument*/NULL);
if (!L_130)
{
goto IL_029b;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_131 = ___schema0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_132 = ___schema0;
NullCheck(L_132);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_133;
L_133 = JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline(L_132, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_134;
L_134 = JsonSchemaBuilder_ResolveReferences_mD43EFF7EB2B0820A6C6DE9234A6A686AFA9B1C29(__this, L_133, /*hidden argument*/NULL);
NullCheck(L_131);
JsonSchema_set_AdditionalProperties_m342347187D74F472699CC67CCD93EEDFBAB091F5_inline(L_131, L_134, /*hidden argument*/NULL);
}
IL_029b:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_135 = ___schema0;
return L_135;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::BuildSchema(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382);
s_Il2CppMethodInitialized = true;
}
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * V_0 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_1 = NULL;
String_t* V_2 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_3 = NULL;
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = ___token0;
V_0 = ((JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 *)IsInstClass((RuntimeObject*)L_0, JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08_il2cpp_TypeInfo_var));
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_1 = V_0;
if (L_1)
{
goto IL_0031;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_2 = ___token0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3 = ___token0;
NullCheck(L_3);
String_t* L_4;
L_4 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_5;
L_5 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_6 = ___token0;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6_il2cpp_TypeInfo_var)), &L_8);
String_t* L_10;
L_10 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral16561D07670D55C476332044336131172499C1F9)), L_5, L_9, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_11;
L_11 = JsonException_Create_m252ED2A268323485380E56768ED485FF96A00A7F(L_2, L_4, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640_RuntimeMethod_var)));
}
IL_0031:
{
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_12 = V_0;
NullCheck(L_12);
bool L_13;
L_13 = JObject_TryGetValue_m7C451B6EBE98CC7CC39AE4FE2DB4AD206B4941AD(L_12, _stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382, (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 **)(&V_1), /*hidden argument*/NULL);
if (!L_13)
{
goto IL_0052;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_14 = (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)il2cpp_codegen_object_new(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_il2cpp_TypeInfo_var);
JsonSchema__ctor_m3E0CBE1171FD35441162159F6C7CB8AA8F4E7BE0(L_14, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_15 = L_14;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_16 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_17;
L_17 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_16, /*hidden argument*/NULL);
NullCheck(L_15);
JsonSchema_set_DeferredReference_mD894E9594C87703F245F56336CCF3CA2A5C7FC64_inline(L_15, L_17, /*hidden argument*/NULL);
return L_15;
}
IL_0052:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_18 = ___token0;
NullCheck(L_18);
String_t* L_19;
L_19 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_18, /*hidden argument*/NULL);
NullCheck(L_19);
String_t* L_20;
L_20 = String_Replace_m98184150DC4E2FBDF13E723BF5B7353D9602AC4D(L_19, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, /*hidden argument*/NULL);
NullCheck(L_20);
String_t* L_21;
L_21 = String_Replace_m98184150DC4E2FBDF13E723BF5B7353D9602AC4D(L_20, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, /*hidden argument*/NULL);
String_t* L_22 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_21);
String_t* L_23;
L_23 = String_Replace_m98184150DC4E2FBDF13E723BF5B7353D9602AC4D(L_21, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, L_22, /*hidden argument*/NULL);
V_2 = L_23;
String_t* L_24 = V_2;
bool L_25;
L_25 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_24, /*hidden argument*/NULL);
if (L_25)
{
goto IL_009a;
}
}
{
String_t* L_26 = V_2;
String_t* L_27;
L_27 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_26, /*hidden argument*/NULL);
V_2 = L_27;
}
IL_009a:
{
String_t* L_28 = V_2;
String_t* L_29;
L_29 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, L_28, /*hidden argument*/NULL);
V_2 = L_29;
RuntimeObject* L_30 = __this->get__documentSchemas_2();
String_t* L_31 = V_2;
NullCheck(L_30);
bool L_32;
L_32 = InterfaceFuncInvoker2< bool, String_t*, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 ** >::Invoke(7 /* System.Boolean System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::TryGetValue(!0,!1&) */, IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var, L_30, L_31, (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 **)(&V_3));
if (!L_32)
{
goto IL_00b8;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_33 = V_3;
return L_33;
}
IL_00b8:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_34 = (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)il2cpp_codegen_object_new(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_il2cpp_TypeInfo_var);
JsonSchema__ctor_m3E0CBE1171FD35441162159F6C7CB8AA8F4E7BE0(L_34, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_35 = L_34;
String_t* L_36 = V_2;
NullCheck(L_35);
JsonSchema_set_Location_m261F1FB12D73E27A802A8CC2E0DBF5581920837D_inline(L_35, L_36, /*hidden argument*/NULL);
JsonSchemaBuilder_Push_m7464B2910B7BE2920A03A42342DF6EFB04F83BA8(__this, L_35, /*hidden argument*/NULL);
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_37 = V_0;
JsonSchemaBuilder_ProcessSchemaProperties_m6CE08AA2F1E467A90D8524137CA48FDBA436F5B8(__this, L_37, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_38;
L_38 = JsonSchemaBuilder_Pop_m68A6A7147BDB9A703592CA531A1BA8F2F7D49B26(__this, /*hidden argument*/NULL);
return L_38;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessSchemaProperties(Vuforia.Newtonsoft.Json.Linq.JObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessSchemaProperties_m6CE08AA2F1E467A90D8524137CA48FDBA436F5B8 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * ___schemaObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tE03E1BBD154A5C2166F2594D06E8826FD537BEC5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mEC1D37965D28CC9D2560F21B01A962D2D1B201BB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E62D1EEC1CF40EEC3E55E672939594A78C717D9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1686F48CC3AD3DD2B612D62EB88622FEC5B6DD43);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37F0398E165BACF30D3A975D97E35DC44E292611);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral384565B8399EC9A224FB52B7078096010121FA9F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4007673E3F5027936FAA7FB6877DEFB8CE58B9E5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral445E6BD7D8A16B7525D74B2955F0DA9632B031EC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral582CA839E138CD30C2D18043773A48C9AB5FCBBC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6069E2EAB74D6040838072F6667CDE859AFD7BD1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61C8278BCCC51C9E2872532A915F18BF6DE5EA61);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75943AF587C23BD0440669483018246AA68D3FEB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral856E49BD180C1280035E1FD8DB7E1DB6F896F2AA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8640B5B3EA5D79BF55FFD3D0D0AADA17A24415C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99A6C960DEDF9A76FC230C814F2CA93C0CB90972);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99E9F2CC6DAC8AD0A2109D6567FD0302893A6846);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABE5C9736BF7B5384ED17BE19B13E69EAD5C6956);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBDA7FC09DA5C880BF9D6040156838ACE1A02817F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7B4D926EF9532A71B25AEC040A33D52C926425F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD150B768BC4907FDDB1BE9F66C5E43806644D97C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5DF2EF4DE357485D20796D7594D4647A84321E5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8CD2F2DA1948373D6BFA8C44122166BC25E3FC0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB534843932D1025EEE09575458F840C63DC1063);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF062B62A7A557839E147FF7C109EACBC83046E2F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1F2425FA9930B9F296B8CC8059ED97FDF9594FA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF300D2310959AF105732D339376803869D9B2B91);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 V_1;
memset((&V_1), 0, sizeof(V_1));
String_t* V_2 = NULL;
uint32_t V_3 = 0;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_0 = ___schemaObject0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = JObject_GetEnumerator_m4E34F907CF6FE709BF91CC27ED6A06F146F4515A(L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_0007:
try
{// begin try (depth: 1)
{
goto IL_078f;
}
IL_000c:
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 L_3;
L_3 = InterfaceFuncInvoker0< KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Linq.JToken>>::get_Current() */, IEnumerator_1_tE03E1BBD154A5C2166F2594D06E8826FD537BEC5_il2cpp_TypeInfo_var, L_2);
V_1 = L_3;
String_t* L_4;
L_4 = KeyValuePair_2_get_Key_mEC1D37965D28CC9D2560F21B01A962D2D1B201BB_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Key_mEC1D37965D28CC9D2560F21B01A962D2D1B201BB_RuntimeMethod_var);
V_2 = L_4;
String_t* L_5 = V_2;
uint32_t L_6;
L_6 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m033296183A550D7AAA8A8AC2715ADD51C68EB50E(L_5, /*hidden argument*/NULL);
V_3 = L_6;
uint32_t L_7 = V_3;
if ((!(((uint32_t)L_7) <= ((uint32_t)((int32_t)-2071165408)))))
{
goto IL_010d;
}
}
IL_002d:
{
uint32_t L_8 = V_3;
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)981021583)))))
{
goto IL_00a1;
}
}
IL_0035:
{
uint32_t L_9 = V_3;
if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)353304077)))))
{
goto IL_0063;
}
}
IL_003d:
{
uint32_t L_10 = V_3;
if ((((int32_t)L_10) == ((int32_t)((int32_t)299789532))))
{
goto IL_0259;
}
}
IL_0048:
{
uint32_t L_11 = V_3;
if ((((int32_t)L_11) == ((int32_t)((int32_t)334560121))))
{
goto IL_037f;
}
}
IL_0053:
{
uint32_t L_12 = V_3;
if ((((int32_t)L_12) == ((int32_t)((int32_t)353304077))))
{
goto IL_0394;
}
}
IL_005e:
{
goto IL_078f;
}
IL_0063:
{
uint32_t L_13 = V_3;
if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)879704937)))))
{
goto IL_0086;
}
}
IL_006b:
{
uint32_t L_14 = V_3;
if ((((int32_t)L_14) == ((int32_t)((int32_t)479998177))))
{
goto IL_0283;
}
}
IL_0076:
{
uint32_t L_15 = V_3;
if ((((int32_t)L_15) == ((int32_t)((int32_t)879704937))))
{
goto IL_0244;
}
}
IL_0081:
{
goto IL_078f;
}
IL_0086:
{
uint32_t L_16 = V_3;
if ((((int32_t)L_16) == ((int32_t)((int32_t)926444256))))
{
goto IL_021a;
}
}
IL_0091:
{
uint32_t L_17 = V_3;
if ((((int32_t)L_17) == ((int32_t)((int32_t)981021583))))
{
goto IL_026e;
}
}
IL_009c:
{
goto IL_078f;
}
IL_00a1:
{
uint32_t L_18 = V_3;
if ((!(((uint32_t)L_18) <= ((uint32_t)((int32_t)1693958795)))))
{
goto IL_00cf;
}
}
IL_00a9:
{
uint32_t L_19 = V_3;
if ((((int32_t)L_19) == ((int32_t)((int32_t)1361572173))))
{
goto IL_0205;
}
}
IL_00b4:
{
uint32_t L_20 = V_3;
if ((((int32_t)L_20) == ((int32_t)((int32_t)1542649473))))
{
goto IL_0301;
}
}
IL_00bf:
{
uint32_t L_21 = V_3;
if ((((int32_t)L_21) == ((int32_t)((int32_t)1693958795))))
{
goto IL_032b;
}
}
IL_00ca:
{
goto IL_078f;
}
IL_00cf:
{
uint32_t L_22 = V_3;
if ((!(((uint32_t)L_22) <= ((uint32_t)((int32_t)2051482624)))))
{
goto IL_00f2;
}
}
IL_00d7:
{
uint32_t L_23 = V_3;
if ((((int32_t)L_23) == ((int32_t)((int32_t)1913005517))))
{
goto IL_0316;
}
}
IL_00e2:
{
uint32_t L_24 = V_3;
if ((((int32_t)L_24) == ((int32_t)((int32_t)2051482624))))
{
goto IL_0298;
}
}
IL_00ed:
{
goto IL_078f;
}
IL_00f2:
{
uint32_t L_25 = V_3;
if ((((int32_t)L_25) == ((int32_t)((int32_t)-2123583488))))
{
goto IL_0427;
}
}
IL_00fd:
{
uint32_t L_26 = V_3;
if ((((int32_t)L_26) == ((int32_t)((int32_t)-2071165408))))
{
goto IL_02c2;
}
}
IL_0108:
{
goto IL_078f;
}
IL_010d:
{
uint32_t L_27 = V_3;
if ((!(((uint32_t)L_27) <= ((uint32_t)((int32_t)-1602722880)))))
{
goto IL_0181;
}
}
IL_0115:
{
uint32_t L_28 = V_3;
if ((!(((uint32_t)L_28) <= ((uint32_t)((int32_t)-1820253449)))))
{
goto IL_0143;
}
}
IL_011d:
{
uint32_t L_29 = V_3;
if ((((int32_t)L_29) == ((int32_t)((int32_t)-2026045143))))
{
goto IL_0412;
}
}
IL_0128:
{
uint32_t L_30 = V_3;
if ((((int32_t)L_30) == ((int32_t)((int32_t)-1824826402))))
{
goto IL_03be;
}
}
IL_0133:
{
uint32_t L_31 = V_3;
if ((((int32_t)L_31) == ((int32_t)((int32_t)-1820253449))))
{
goto IL_02ec;
}
}
IL_013e:
{
goto IL_078f;
}
IL_0143:
{
uint32_t L_32 = V_3;
if ((!(((uint32_t)L_32) <= ((uint32_t)((int32_t)-1685280171)))))
{
goto IL_0166;
}
}
IL_014b:
{
uint32_t L_33 = V_3;
if ((((int32_t)L_33) == ((int32_t)((int32_t)-1738164983))))
{
goto IL_022f;
}
}
IL_0156:
{
uint32_t L_34 = V_3;
if ((((int32_t)L_34) == ((int32_t)((int32_t)-1685280171))))
{
goto IL_02d7;
}
}
IL_0161:
{
goto IL_078f;
}
IL_0166:
{
uint32_t L_35 = V_3;
if ((((int32_t)L_35) == ((int32_t)((int32_t)-1652173234))))
{
goto IL_043c;
}
}
IL_0171:
{
uint32_t L_36 = V_3;
if ((((int32_t)L_36) == ((int32_t)((int32_t)-1602722880))))
{
goto IL_03a9;
}
}
IL_017c:
{
goto IL_078f;
}
IL_0181:
{
uint32_t L_37 = V_3;
if ((!(((uint32_t)L_37) <= ((uint32_t)((int32_t)-772364702)))))
{
goto IL_01c7;
}
}
IL_0189:
{
uint32_t L_38 = V_3;
if ((!(((uint32_t)L_38) <= ((uint32_t)((int32_t)-1180859054)))))
{
goto IL_01ac;
}
}
IL_0191:
{
uint32_t L_39 = V_3;
if ((((int32_t)L_39) == ((int32_t)((int32_t)-1337705481))))
{
goto IL_0355;
}
}
IL_019c:
{
uint32_t L_40 = V_3;
if ((((int32_t)L_40) == ((int32_t)((int32_t)-1180859054))))
{
goto IL_03fd;
}
}
IL_01a7:
{
goto IL_078f;
}
IL_01ac:
{
uint32_t L_41 = V_3;
if ((((int32_t)L_41) == ((int32_t)((int32_t)-838078473))))
{
goto IL_03e8;
}
}
IL_01b7:
{
uint32_t L_42 = V_3;
if ((((int32_t)L_42) == ((int32_t)((int32_t)-772364702))))
{
goto IL_0451;
}
}
IL_01c2:
{
goto IL_078f;
}
IL_01c7:
{
uint32_t L_43 = V_3;
if ((!(((uint32_t)L_43) <= ((uint32_t)((int32_t)-347360656)))))
{
goto IL_01ea;
}
}
IL_01cf:
{
uint32_t L_44 = V_3;
if ((((int32_t)L_44) == ((int32_t)((int32_t)-768407359))))
{
goto IL_0340;
}
}
IL_01da:
{
uint32_t L_45 = V_3;
if ((((int32_t)L_45) == ((int32_t)((int32_t)-347360656))))
{
goto IL_02ad;
}
}
IL_01e5:
{
goto IL_078f;
}
IL_01ea:
{
uint32_t L_46 = V_3;
if ((((int32_t)L_46) == ((int32_t)((int32_t)-166137543))))
{
goto IL_03d3;
}
}
IL_01f5:
{
uint32_t L_47 = V_3;
if ((((int32_t)L_47) == ((int32_t)((int32_t)-50645197))))
{
goto IL_036a;
}
}
IL_0200:
{
goto IL_078f;
}
IL_0205:
{
String_t* L_48 = V_2;
bool L_49;
L_49 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_48, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
if (L_49)
{
goto IL_0466;
}
}
IL_0215:
{
goto IL_078f;
}
IL_021a:
{
String_t* L_50 = V_2;
bool L_51;
L_51 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_50, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, /*hidden argument*/NULL);
if (L_51)
{
goto IL_0483;
}
}
IL_022a:
{
goto IL_078f;
}
IL_022f:
{
String_t* L_52 = V_2;
bool L_53;
L_53 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_52, _stringLiteralC7B4D926EF9532A71B25AEC040A33D52C926425F, /*hidden argument*/NULL);
if (L_53)
{
goto IL_049f;
}
}
IL_023f:
{
goto IL_078f;
}
IL_0244:
{
String_t* L_54 = V_2;
bool L_55;
L_55 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_54, _stringLiteralEB534843932D1025EEE09575458F840C63DC1063, /*hidden argument*/NULL);
if (L_55)
{
goto IL_04bb;
}
}
IL_0254:
{
goto IL_078f;
}
IL_0259:
{
String_t* L_56 = V_2;
bool L_57;
L_57 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_56, _stringLiteral8640B5B3EA5D79BF55FFD3D0D0AADA17A24415C1, /*hidden argument*/NULL);
if (L_57)
{
goto IL_04d7;
}
}
IL_0269:
{
goto IL_078f;
}
IL_026e:
{
String_t* L_58 = V_2;
bool L_59;
L_59 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_58, _stringLiteralF300D2310959AF105732D339376803869D9B2B91, /*hidden argument*/NULL);
if (L_59)
{
goto IL_04f4;
}
}
IL_027e:
{
goto IL_078f;
}
IL_0283:
{
String_t* L_60 = V_2;
bool L_61;
L_61 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_60, _stringLiteral99E9F2CC6DAC8AD0A2109D6567FD0302893A6846, /*hidden argument*/NULL);
if (L_61)
{
goto IL_0506;
}
}
IL_0293:
{
goto IL_078f;
}
IL_0298:
{
String_t* L_62 = V_2;
bool L_63;
L_63 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_62, _stringLiteral582CA839E138CD30C2D18043773A48C9AB5FCBBC, /*hidden argument*/NULL);
if (L_63)
{
goto IL_0518;
}
}
IL_02a8:
{
goto IL_078f;
}
IL_02ad:
{
String_t* L_64 = V_2;
bool L_65;
L_65 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_64, _stringLiteralF1F2425FA9930B9F296B8CC8059ED97FDF9594FA, /*hidden argument*/NULL);
if (L_65)
{
goto IL_052a;
}
}
IL_02bd:
{
goto IL_078f;
}
IL_02c2:
{
String_t* L_66 = V_2;
bool L_67;
L_67 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_66, _stringLiteral99A6C960DEDF9A76FC230C814F2CA93C0CB90972, /*hidden argument*/NULL);
if (L_67)
{
goto IL_0547;
}
}
IL_02d2:
{
goto IL_078f;
}
IL_02d7:
{
String_t* L_68 = V_2;
bool L_69;
L_69 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_68, _stringLiteral445E6BD7D8A16B7525D74B2955F0DA9632B031EC, /*hidden argument*/NULL);
if (L_69)
{
goto IL_0568;
}
}
IL_02e7:
{
goto IL_078f;
}
IL_02ec:
{
String_t* L_70 = V_2;
bool L_71;
L_71 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_70, _stringLiteral1686F48CC3AD3DD2B612D62EB88622FEC5B6DD43, /*hidden argument*/NULL);
if (L_71)
{
goto IL_0584;
}
}
IL_02fc:
{
goto IL_078f;
}
IL_0301:
{
String_t* L_72 = V_2;
bool L_73;
L_73 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_72, _stringLiteralBDA7FC09DA5C880BF9D6040156838ACE1A02817F, /*hidden argument*/NULL);
if (L_73)
{
goto IL_05a6;
}
}
IL_0311:
{
goto IL_078f;
}
IL_0316:
{
String_t* L_74 = V_2;
bool L_75;
L_75 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_74, _stringLiteral75943AF587C23BD0440669483018246AA68D3FEB, /*hidden argument*/NULL);
if (L_75)
{
goto IL_05c8;
}
}
IL_0326:
{
goto IL_078f;
}
IL_032b:
{
String_t* L_76 = V_2;
bool L_77;
L_77 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_76, _stringLiteralABE5C9736BF7B5384ED17BE19B13E69EAD5C6956, /*hidden argument*/NULL);
if (L_77)
{
goto IL_05e9;
}
}
IL_033b:
{
goto IL_078f;
}
IL_0340:
{
String_t* L_78 = V_2;
bool L_79;
L_79 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_78, _stringLiteralD150B768BC4907FDDB1BE9F66C5E43806644D97C, /*hidden argument*/NULL);
if (L_79)
{
goto IL_060a;
}
}
IL_0350:
{
goto IL_078f;
}
IL_0355:
{
String_t* L_80 = V_2;
bool L_81;
L_81 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_80, _stringLiteral6069E2EAB74D6040838072F6667CDE859AFD7BD1, /*hidden argument*/NULL);
if (L_81)
{
goto IL_062b;
}
}
IL_0365:
{
goto IL_078f;
}
IL_036a:
{
String_t* L_82 = V_2;
bool L_83;
L_83 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_82, _stringLiteralF062B62A7A557839E147FF7C109EACBC83046E2F, /*hidden argument*/NULL);
if (L_83)
{
goto IL_064c;
}
}
IL_037a:
{
goto IL_078f;
}
IL_037f:
{
String_t* L_84 = V_2;
bool L_85;
L_85 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_84, _stringLiteral4007673E3F5027936FAA7FB6877DEFB8CE58B9E5, /*hidden argument*/NULL);
if (L_85)
{
goto IL_066d;
}
}
IL_038f:
{
goto IL_078f;
}
IL_0394:
{
String_t* L_86 = V_2;
bool L_87;
L_87 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_86, _stringLiteral37F0398E165BACF30D3A975D97E35DC44E292611, /*hidden argument*/NULL);
if (L_87)
{
goto IL_068e;
}
}
IL_03a4:
{
goto IL_078f;
}
IL_03a9:
{
String_t* L_88 = V_2;
bool L_89;
L_89 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_88, _stringLiteral856E49BD180C1280035E1FD8DB7E1DB6F896F2AA, /*hidden argument*/NULL);
if (L_89)
{
goto IL_06b0;
}
}
IL_03b9:
{
goto IL_078f;
}
IL_03be:
{
String_t* L_90 = V_2;
bool L_91;
L_91 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_90, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, /*hidden argument*/NULL);
if (L_91)
{
goto IL_06cd;
}
}
IL_03ce:
{
goto IL_078f;
}
IL_03d3:
{
String_t* L_92 = V_2;
bool L_93;
L_93 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_92, _stringLiteral0E62D1EEC1CF40EEC3E55E672939594A78C717D9, /*hidden argument*/NULL);
if (L_93)
{
goto IL_06e9;
}
}
IL_03e3:
{
goto IL_078f;
}
IL_03e8:
{
String_t* L_94 = V_2;
bool L_95;
L_95 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_94, _stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9, /*hidden argument*/NULL);
if (L_95)
{
goto IL_070a;
}
}
IL_03f8:
{
goto IL_078f;
}
IL_03fd:
{
String_t* L_96 = V_2;
bool L_97;
L_97 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_96, _stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA, /*hidden argument*/NULL);
if (L_97)
{
goto IL_0728;
}
}
IL_040d:
{
goto IL_078f;
}
IL_0412:
{
String_t* L_98 = V_2;
bool L_99;
L_99 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_98, _stringLiteralD8CD2F2DA1948373D6BFA8C44122166BC25E3FC0, /*hidden argument*/NULL);
if (L_99)
{
goto IL_0741;
}
}
IL_0422:
{
goto IL_078f;
}
IL_0427:
{
String_t* L_100 = V_2;
bool L_101;
L_101 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_100, _stringLiteral384565B8399EC9A224FB52B7078096010121FA9F, /*hidden argument*/NULL);
if (L_101)
{
goto IL_075a;
}
}
IL_0437:
{
goto IL_078f;
}
IL_043c:
{
String_t* L_102 = V_2;
bool L_103;
L_103 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_102, _stringLiteralD5DF2EF4DE357485D20796D7594D4647A84321E5, /*hidden argument*/NULL);
if (L_103)
{
goto IL_0769;
}
}
IL_044c:
{
goto IL_078f;
}
IL_0451:
{
String_t* L_104 = V_2;
bool L_105;
L_105 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_104, _stringLiteral61C8278BCCC51C9E2872532A915F18BF6DE5EA61, /*hidden argument*/NULL);
if (L_105)
{
goto IL_0778;
}
}
IL_0461:
{
goto IL_078f;
}
IL_0466:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_106;
L_106 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_107;
L_107 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_108;
L_108 = JsonSchemaBuilder_ProcessType_m6DE22FBE83675C0ADB22D4ECADE98CA1CF03027B(__this, L_107, /*hidden argument*/NULL);
NullCheck(L_106);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_106, L_108, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0483:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_109;
L_109 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_110;
L_110 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_111;
L_111 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_110, /*hidden argument*/NULL);
NullCheck(L_109);
JsonSchema_set_Id_mE5CC93267D31400AE1819273B7BBCACB100CB7CD_inline(L_109, L_111, /*hidden argument*/NULL);
goto IL_078f;
}
IL_049f:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_112;
L_112 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_113;
L_113 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_114;
L_114 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_113, /*hidden argument*/NULL);
NullCheck(L_112);
JsonSchema_set_Title_mC30C6A6EEFBE2DD153FB48E008424C199B62801D_inline(L_112, L_114, /*hidden argument*/NULL);
goto IL_078f;
}
IL_04bb:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_115;
L_115 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_116;
L_116 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_117;
L_117 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_116, /*hidden argument*/NULL);
NullCheck(L_115);
JsonSchema_set_Description_m497296EAA19C9D470CE9A61CE77073BD87C991A7_inline(L_115, L_117, /*hidden argument*/NULL);
goto IL_078f;
}
IL_04d7:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_118;
L_118 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_119;
L_119 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
RuntimeObject* L_120;
L_120 = JsonSchemaBuilder_ProcessProperties_mCD45017B97943E291958FDA2B6960BEEC7718B86(__this, L_119, /*hidden argument*/NULL);
NullCheck(L_118);
JsonSchema_set_Properties_mA71EBA6B5C5D4F33347D50D8F68C3BF19554D713_inline(L_118, L_120, /*hidden argument*/NULL);
goto IL_078f;
}
IL_04f4:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_121;
L_121 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
JsonSchemaBuilder_ProcessItems_m6CF5B48A0D8AA53B4AEEE8DCAA14A59F8499D374(__this, L_121, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0506:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_122;
L_122 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
JsonSchemaBuilder_ProcessAdditionalProperties_m235D166E61677F4F0BA59A58C2148067EA273CCE(__this, L_122, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0518:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_123;
L_123 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
JsonSchemaBuilder_ProcessAdditionalItems_mC88419351096BF994F0122B3A3190328FD3CD765(__this, L_123, /*hidden argument*/NULL);
goto IL_078f;
}
IL_052a:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_124;
L_124 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_125;
L_125 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
RuntimeObject* L_126;
L_126 = JsonSchemaBuilder_ProcessProperties_mCD45017B97943E291958FDA2B6960BEEC7718B86(__this, L_125, /*hidden argument*/NULL);
NullCheck(L_124);
JsonSchema_set_PatternProperties_mD3673AAFB7CA55B24D6F8D933D727567CA48364F_inline(L_124, L_126, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0547:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_127;
L_127 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_128;
L_128 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_129;
L_129 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_128, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_130;
memset((&L_130), 0, sizeof(L_130));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_130), L_129, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
NullCheck(L_127);
JsonSchema_set_Required_mD2C868E3252D959332507BFAF8B9E436F5F9A8F4_inline(L_127, L_130, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0568:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_131;
L_131 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_132;
L_132 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_133;
L_133 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_132, /*hidden argument*/NULL);
NullCheck(L_131);
JsonSchema_set_Requires_m5D457478840D5C598A4E628635960683218F9D62_inline(L_131, L_133, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0584:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_134;
L_134 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_135;
L_135 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
double L_136;
L_136 = JToken_op_Explicit_mBAFE8E85300716A039D4CD74A1426091D004C287(L_135, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_137;
memset((&L_137), 0, sizeof(L_137));
Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3((&L_137), ((double)((double)L_136)), /*hidden argument*/Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3_RuntimeMethod_var);
NullCheck(L_134);
JsonSchema_set_Minimum_mDF51C376BB18160C0819A811EDBCB848E0383B0B_inline(L_134, L_137, /*hidden argument*/NULL);
goto IL_078f;
}
IL_05a6:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_138;
L_138 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_139;
L_139 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
double L_140;
L_140 = JToken_op_Explicit_mBAFE8E85300716A039D4CD74A1426091D004C287(L_139, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_141;
memset((&L_141), 0, sizeof(L_141));
Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3((&L_141), ((double)((double)L_140)), /*hidden argument*/Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3_RuntimeMethod_var);
NullCheck(L_138);
JsonSchema_set_Maximum_mD0A20654F0F4DB4A20A4663D046E3940F67CFB2C_inline(L_138, L_141, /*hidden argument*/NULL);
goto IL_078f;
}
IL_05c8:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_142;
L_142 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_143;
L_143 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_144;
L_144 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_143, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_145;
memset((&L_145), 0, sizeof(L_145));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_145), L_144, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
NullCheck(L_142);
JsonSchema_set_ExclusiveMinimum_mD1CCD67CBF134C3DE22251F99B224CAF4B82DDA0_inline(L_142, L_145, /*hidden argument*/NULL);
goto IL_078f;
}
IL_05e9:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_146;
L_146 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_147;
L_147 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_148;
L_148 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_147, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_149;
memset((&L_149), 0, sizeof(L_149));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_149), L_148, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
NullCheck(L_146);
JsonSchema_set_ExclusiveMaximum_mC9DA3A8A2CB3A64DE1E9384E139389BE8891ECAD_inline(L_146, L_149, /*hidden argument*/NULL);
goto IL_078f;
}
IL_060a:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_150;
L_150 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_151;
L_151 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
int32_t L_152;
L_152 = JToken_op_Explicit_m802E8F85771B55D6FDDA448D68F8C1D912A740E7(L_151, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_153;
memset((&L_153), 0, sizeof(L_153));
Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD((&L_153), L_152, /*hidden argument*/Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var);
NullCheck(L_150);
JsonSchema_set_MaximumLength_m9EF814543B98E7E3F972D45DF1005258911897FE_inline(L_150, L_153, /*hidden argument*/NULL);
goto IL_078f;
}
IL_062b:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_154;
L_154 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_155;
L_155 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
int32_t L_156;
L_156 = JToken_op_Explicit_m802E8F85771B55D6FDDA448D68F8C1D912A740E7(L_155, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_157;
memset((&L_157), 0, sizeof(L_157));
Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD((&L_157), L_156, /*hidden argument*/Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var);
NullCheck(L_154);
JsonSchema_set_MinimumLength_m09672F30C77507EA871D8594886EDA6F6E8E2E2D_inline(L_154, L_157, /*hidden argument*/NULL);
goto IL_078f;
}
IL_064c:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_158;
L_158 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_159;
L_159 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
int32_t L_160;
L_160 = JToken_op_Explicit_m802E8F85771B55D6FDDA448D68F8C1D912A740E7(L_159, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_161;
memset((&L_161), 0, sizeof(L_161));
Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD((&L_161), L_160, /*hidden argument*/Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var);
NullCheck(L_158);
JsonSchema_set_MaximumItems_m9EE5FC4788444E23358BFFBF0783F2F16EEED8E3_inline(L_158, L_161, /*hidden argument*/NULL);
goto IL_078f;
}
IL_066d:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_162;
L_162 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_163;
L_163 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
int32_t L_164;
L_164 = JToken_op_Explicit_m802E8F85771B55D6FDDA448D68F8C1D912A740E7(L_163, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_165;
memset((&L_165), 0, sizeof(L_165));
Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD((&L_165), L_164, /*hidden argument*/Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var);
NullCheck(L_162);
JsonSchema_set_MinimumItems_m9E147F3F1CB0C0D88A452170F1244C5079E8AADC_inline(L_162, L_165, /*hidden argument*/NULL);
goto IL_078f;
}
IL_068e:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_166;
L_166 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_167;
L_167 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
double L_168;
L_168 = JToken_op_Explicit_mBAFE8E85300716A039D4CD74A1426091D004C287(L_167, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_169;
memset((&L_169), 0, sizeof(L_169));
Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3((&L_169), ((double)((double)L_168)), /*hidden argument*/Nullable_1__ctor_mE9929B6151BF7F9A9B1E07DF8EDA60ABBC3230E3_RuntimeMethod_var);
NullCheck(L_166);
JsonSchema_set_DivisibleBy_m7F7C73E2C79F4CA7F06D92EEDAB6C0AD452CE9ED_inline(L_166, L_169, /*hidden argument*/NULL);
goto IL_078f;
}
IL_06b0:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_170;
L_170 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_171;
L_171 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_172;
L_172 = JsonSchemaBuilder_ProcessType_m6DE22FBE83675C0ADB22D4ECADE98CA1CF03027B(__this, L_171, /*hidden argument*/NULL);
NullCheck(L_170);
JsonSchema_set_Disallow_mDE960F1735D5B747FDC4D0C53EF9F92D5A4FD59A_inline(L_170, L_172, /*hidden argument*/NULL);
goto IL_078f;
}
IL_06cd:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_173;
L_173 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_174;
L_174 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
NullCheck(L_174);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_175;
L_175 = JToken_DeepClone_mD6D86A2AACC2A20230E9A30882A9822A262FB6B5(L_174, /*hidden argument*/NULL);
NullCheck(L_173);
JsonSchema_set_Default_mD91A00F8C6E98164325C256BD3C2F3A40226F952_inline(L_173, L_175, /*hidden argument*/NULL);
goto IL_078f;
}
IL_06e9:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_176;
L_176 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_177;
L_177 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_178;
L_178 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_177, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_179;
memset((&L_179), 0, sizeof(L_179));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_179), L_178, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
NullCheck(L_176);
JsonSchema_set_Hidden_mD3E240839004E97C5125D83152371724382CDD3C_inline(L_176, L_179, /*hidden argument*/NULL);
goto IL_078f;
}
IL_070a:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_180;
L_180 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_181;
L_181 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_182;
L_182 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_181, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_183;
memset((&L_183), 0, sizeof(L_183));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_183), L_182, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
NullCheck(L_180);
JsonSchema_set_ReadOnly_mEADCAD4A662B9760AC62C10CE4165640D88B6C6B_inline(L_180, L_183, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0728:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_184;
L_184 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_185;
L_185 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_186;
L_186 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_185, /*hidden argument*/NULL);
NullCheck(L_184);
JsonSchema_set_Format_m6E3EB7850BFBC27028ADC2E96D54992AED790AFE_inline(L_184, L_186, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0741:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_187;
L_187 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_188;
L_188 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_189;
L_189 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_188, /*hidden argument*/NULL);
NullCheck(L_187);
JsonSchema_set_Pattern_mA7C50CF007239EA9EB57C186463705DD2472C405_inline(L_187, L_189, /*hidden argument*/NULL);
goto IL_078f;
}
IL_075a:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_190;
L_190 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
JsonSchemaBuilder_ProcessEnum_mC5660571FC0EC28AC9A58CF7BC268DCE8AF5D407(__this, L_190, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0769:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_191;
L_191 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
JsonSchemaBuilder_ProcessExtends_m3BBDA8252CC216C965F2D38EE15BC0CB59BCDBCC(__this, L_191, /*hidden argument*/NULL);
goto IL_078f;
}
IL_0778:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_192;
L_192 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_193;
L_193 = KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_inline((KeyValuePair_2_t9305EDCB8BC07D81F23530E15ACFB4001ADF2296 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_mF020364F5940CD9CED00E079F26C66E502585FA1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_194;
L_194 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_193, /*hidden argument*/NULL);
NullCheck(L_192);
JsonSchema_set_UniqueItems_m53C70C25B88DC13752F50CE72B6F937B301B8107_inline(L_192, L_194, /*hidden argument*/NULL);
}
IL_078f:
{
RuntimeObject* L_195 = V_0;
NullCheck(L_195);
bool L_196;
L_196 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_195);
if (L_196)
{
goto IL_000c;
}
}
IL_079a:
{
IL2CPP_LEAVE(0x7A6, FINALLY_079c);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_079c;
}
FINALLY_079c:
{// begin finally (depth: 1)
{
RuntimeObject* L_197 = V_0;
if (!L_197)
{
goto IL_07a5;
}
}
IL_079f:
{
RuntimeObject* L_198 = V_0;
NullCheck(L_198);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_198);
}
IL_07a5:
{
IL2CPP_END_FINALLY(1948)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(1948)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x7A6, IL_07a6)
}
IL_07a6:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessExtends(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessExtends_m3BBDA8252CC216C965F2D38EE15BC0CB59BCDBCC (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_2 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * L_0 = (List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 *)il2cpp_codegen_object_new(List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9(L_0, /*hidden argument*/List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
V_0 = (RuntimeObject*)L_0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_1 = ___token0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_1);
if ((!(((uint32_t)L_2) == ((uint32_t)2))))
{
goto IL_0040;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3 = ___token0;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Linq.JToken>::GetEnumerator() */, IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var, L_3);
V_1 = L_4;
}
IL_0016:
try
{// begin try (depth: 1)
{
goto IL_002c;
}
IL_0018:
{
RuntimeObject* L_5 = V_1;
NullCheck(L_5);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_6;
L_6 = InterfaceFuncInvoker0< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var, L_5);
V_2 = L_6;
RuntimeObject* L_7 = V_0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_8 = V_2;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9;
L_9 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_8, /*hidden argument*/NULL);
NullCheck(L_7);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_7, L_9);
}
IL_002c:
{
RuntimeObject* L_10 = V_1;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0018;
}
}
IL_0034:
{
IL2CPP_LEAVE(0x52, FINALLY_0036);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0036;
}
FINALLY_0036:
{// begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_003f;
}
}
IL_0039:
{
RuntimeObject* L_13 = V_1;
NullCheck(L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_13);
}
IL_003f:
{
IL2CPP_END_FINALLY(54)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(54)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x52, IL_0052)
}
IL_0040:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_14 = ___token0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_15;
L_15 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_14, /*hidden argument*/NULL);
V_3 = L_15;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_16 = V_3;
if (!L_16)
{
goto IL_0052;
}
}
{
RuntimeObject* L_17 = V_0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_18 = V_3;
NullCheck(L_17);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_17, L_18);
}
IL_0052:
{
RuntimeObject* L_19 = V_0;
NullCheck(L_19);
int32_t L_20;
L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_19);
if ((((int32_t)L_20) <= ((int32_t)0)))
{
goto IL_0067;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_21;
L_21 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
RuntimeObject* L_22 = V_0;
NullCheck(L_21);
JsonSchema_set_Extends_mA544A93BC53D5F646936F15078CE19BFFAAA7488_inline(L_21, L_22, /*hidden argument*/NULL);
}
IL_0067:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessEnum(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessEnum_mC5660571FC0EC28AC9A58CF7BC268DCE8AF5D407 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t089F01F78F1F68B4BD588C27CA1BA75014341A6A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = ___token0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_0);
if ((((int32_t)L_1) == ((int32_t)2)))
{
goto IL_0030;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_2 = ___token0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3 = ___token0;
NullCheck(L_3);
String_t* L_4;
L_4 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_5;
L_5 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_6 = ___token0;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6_il2cpp_TypeInfo_var)), &L_8);
String_t* L_10;
L_10 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB37AE67F3C57752CD1552584DC20CD2A99D62AE3)), L_5, L_9, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_11;
L_11 = JsonException_Create_m252ED2A268323485380E56768ED485FF96A00A7F(L_2, L_4, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_ProcessEnum_mC5660571FC0EC28AC9A58CF7BC268DCE8AF5D407_RuntimeMethod_var)));
}
IL_0030:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_12;
L_12 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 * L_13 = (List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 *)il2cpp_codegen_object_new(List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_il2cpp_TypeInfo_var);
List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF(L_13, /*hidden argument*/List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF_RuntimeMethod_var);
NullCheck(L_12);
JsonSchema_set_Enum_m600F66C93A07B7B23914016BCC4ADC350DB41372_inline(L_12, L_13, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_14 = ___token0;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Linq.JToken>::GetEnumerator() */, IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var, L_14);
V_0 = L_15;
}
IL_0047:
try
{// begin try (depth: 1)
{
goto IL_0066;
}
IL_0049:
{
RuntimeObject* L_16 = V_0;
NullCheck(L_16);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_17;
L_17 = InterfaceFuncInvoker0< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var, L_16);
V_1 = L_17;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_18;
L_18 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
NullCheck(L_18);
RuntimeObject* L_19;
L_19 = JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline(L_18, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_20 = V_1;
NullCheck(L_20);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_21;
L_21 = JToken_DeepClone_mD6D86A2AACC2A20230E9A30882A9822A262FB6B5(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
InterfaceActionInvoker1< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Linq.JToken>::Add(!0) */, ICollection_1_t089F01F78F1F68B4BD588C27CA1BA75014341A6A_il2cpp_TypeInfo_var, L_19, L_21);
}
IL_0066:
{
RuntimeObject* L_22 = V_0;
NullCheck(L_22);
bool L_23;
L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_0049;
}
}
IL_006e:
{
IL2CPP_LEAVE(0x7A, FINALLY_0070);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0070;
}
FINALLY_0070:
{// begin finally (depth: 1)
{
RuntimeObject* L_24 = V_0;
if (!L_24)
{
goto IL_0079;
}
}
IL_0073:
{
RuntimeObject* L_25 = V_0;
NullCheck(L_25);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_25);
}
IL_0079:
{
IL2CPP_END_FINALLY(112)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(112)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x7A, IL_007a)
}
IL_007a:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessAdditionalProperties(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessAdditionalProperties_m235D166E61677F4F0BA59A58C2148067EA273CCE (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = ___token0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)9)))))
{
goto IL_001c;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2;
L_2 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3 = ___token0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_4;
L_4 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
JsonSchema_set_AllowAdditionalProperties_mCEC6844B12E85B4EAC2392D0CB900192309AA572_inline(L_2, L_4, /*hidden argument*/NULL);
return;
}
IL_001c:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5;
L_5 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_6 = ___token0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7;
L_7 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_6, /*hidden argument*/NULL);
NullCheck(L_5);
JsonSchema_set_AdditionalProperties_m342347187D74F472699CC67CCD93EEDFBAB091F5_inline(L_5, L_7, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessAdditionalItems(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessAdditionalItems_mC88419351096BF994F0122B3A3190328FD3CD765 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = ___token0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)9)))))
{
goto IL_001c;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2;
L_2 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3 = ___token0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
bool L_4;
L_4 = JToken_op_Explicit_m56B046FA17BE5B52A2B3AFB2256E6427F2802F0C(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
JsonSchema_set_AllowAdditionalItems_mE0EAE117D730544A3E6232533DCFDF8027B03840_inline(L_2, L_4, /*hidden argument*/NULL);
return;
}
IL_001c:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5;
L_5 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_6 = ___token0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7;
L_7 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_6, /*hidden argument*/NULL);
NullCheck(L_5);
JsonSchema_set_AdditionalItems_m4505E2C2F6450B0291ED27CA074C12D7BF485CE7_inline(L_5, L_7, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessProperties(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaBuilder_ProcessProperties_mCD45017B97943E291958FDA2B6960BEEC7718B86 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 * L_0 = (Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 *)il2cpp_codegen_object_new(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0(L_0, /*hidden argument*/Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0_RuntimeMethod_var);
V_0 = (RuntimeObject*)L_0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_1 = ___token0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_1);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0036;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3 = ___token0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_4 = ___token0;
NullCheck(L_4);
String_t* L_5;
L_5 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_6;
L_6 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_7 = ___token0;
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6_il2cpp_TypeInfo_var)), &L_9);
String_t* L_11;
L_11 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0C75D963913FC4C08CFBF915E87770A8B5A6228)), L_6, L_10, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_12;
L_12 = JsonException_Create_m252ED2A268323485380E56768ED485FF96A00A7F(L_3, L_5, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_ProcessProperties_mCD45017B97943E291958FDA2B6960BEEC7718B86_RuntimeMethod_var)));
}
IL_0036:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_13 = ___token0;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Linq.JToken>::GetEnumerator() */, IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var, L_13);
V_1 = L_14;
}
IL_003d:
try
{// begin try (depth: 1)
{
goto IL_008c;
}
IL_003f:
{
RuntimeObject* L_15 = V_1;
NullCheck(L_15);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_16;
L_16 = InterfaceFuncInvoker0< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var, L_15);
V_2 = ((JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F *)CastclassClass((RuntimeObject*)L_16, JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F_il2cpp_TypeInfo_var));
RuntimeObject* L_17 = V_0;
JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * L_18 = V_2;
NullCheck(L_18);
String_t* L_19;
L_19 = JProperty_get_Name_m40C95EB5D7D490470847ADAB4993684AC0296991_inline(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
bool L_20;
L_20 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::ContainsKey(!0) */, IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var, L_17, L_19);
if (!L_20)
{
goto IL_0074;
}
}
IL_0059:
{
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_21;
L_21 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * L_22 = V_2;
NullCheck(L_22);
String_t* L_23;
L_23 = JProperty_get_Name_m40C95EB5D7D490470847ADAB4993684AC0296991_inline(L_22, /*hidden argument*/NULL);
String_t* L_24;
L_24 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43F7FEDB08A496C6B9ABF07064618C633D6C633A)), L_21, L_23, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_25 = (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var)));
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(L_25, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_ProcessProperties_mCD45017B97943E291958FDA2B6960BEEC7718B86_RuntimeMethod_var)));
}
IL_0074:
{
RuntimeObject* L_26 = V_0;
JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * L_27 = V_2;
NullCheck(L_27);
String_t* L_28;
L_28 = JProperty_get_Name_m40C95EB5D7D490470847ADAB4993684AC0296991_inline(L_27, /*hidden argument*/NULL);
JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * L_29 = V_2;
NullCheck(L_29);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_30;
L_30 = JProperty_get_Value_mCBACF86FD0A5D3F43CAC597DBBB65816EE47062F(L_29, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_31;
L_31 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_30, /*hidden argument*/NULL);
NullCheck(L_26);
InterfaceActionInvoker2< String_t*, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0,!1) */, IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var, L_26, L_28, L_31);
}
IL_008c:
{
RuntimeObject* L_32 = V_1;
NullCheck(L_32);
bool L_33;
L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_32);
if (L_33)
{
goto IL_003f;
}
}
IL_0094:
{
IL2CPP_LEAVE(0xA0, FINALLY_0096);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0096;
}
FINALLY_0096:
{// begin finally (depth: 1)
{
RuntimeObject* L_34 = V_1;
if (!L_34)
{
goto IL_009f;
}
}
IL_0099:
{
RuntimeObject* L_35 = V_1;
NullCheck(L_35);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_35);
}
IL_009f:
{
IL2CPP_END_FINALLY(150)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(150)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xA0, IL_00a0)
}
IL_00a0:
{
RuntimeObject* L_36 = V_0;
return L_36;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessItems(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaBuilder_ProcessItems_m6CF5B48A0D8AA53B4AEEE8DCAA14A59F8499D374 (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0;
L_0 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * L_1 = (List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 *)il2cpp_codegen_object_new(List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9(L_1, /*hidden argument*/List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
NullCheck(L_0);
JsonSchema_set_Items_m98467635105FE963BBF41DB97EB0F1053A0D23DA_inline(L_0, L_1, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_2 = ___token0;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_2);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_0021;
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)2)))
{
goto IL_0045;
}
}
{
goto IL_008c;
}
IL_0021:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_6;
L_6 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_6, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_8 = ___token0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9;
L_9 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_8, /*hidden argument*/NULL);
NullCheck(L_7);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_7, L_9);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_10;
L_10 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
NullCheck(L_10);
JsonSchema_set_PositionalItemsValidation_m6B62D399EAD5AD6DD51C828819ABCF97B6B76C99_inline(L_10, (bool)0, /*hidden argument*/NULL);
return;
}
IL_0045:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_11;
L_11 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
NullCheck(L_11);
JsonSchema_set_PositionalItemsValidation_m6B62D399EAD5AD6DD51C828819ABCF97B6B76C99_inline(L_11, (bool)1, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_12 = ___token0;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Linq.JToken>::GetEnumerator() */, IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var, L_12);
V_1 = L_13;
}
IL_0058:
try
{// begin try (depth: 1)
{
goto IL_0078;
}
IL_005a:
{
RuntimeObject* L_14 = V_1;
NullCheck(L_14);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_15;
L_15 = InterfaceFuncInvoker0< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var, L_14);
V_2 = L_15;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_16;
L_16 = JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline(__this, /*hidden argument*/NULL);
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_16, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_18 = V_2;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_19;
L_19 = JsonSchemaBuilder_BuildSchema_mC04550033A109C90E4CDD26F220722D9170A2640(__this, L_18, /*hidden argument*/NULL);
NullCheck(L_17);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_17, L_19);
}
IL_0078:
{
RuntimeObject* L_20 = V_1;
NullCheck(L_20);
bool L_21;
L_21 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_20);
if (L_21)
{
goto IL_005a;
}
}
IL_0080:
{
IL2CPP_LEAVE(0xB3, FINALLY_0082);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0082;
}
FINALLY_0082:
{// begin finally (depth: 1)
{
RuntimeObject* L_22 = V_1;
if (!L_22)
{
goto IL_008b;
}
}
IL_0085:
{
RuntimeObject* L_23 = V_1;
NullCheck(L_23);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_23);
}
IL_008b:
{
IL2CPP_END_FINALLY(130)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(130)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
}
IL_008c:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_24 = ___token0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_25 = ___token0;
NullCheck(L_25);
String_t* L_26;
L_26 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_25, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_27;
L_27 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_28 = ___token0;
NullCheck(L_28);
int32_t L_29;
L_29 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_28);
int32_t L_30 = L_29;
RuntimeObject * L_31 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6_il2cpp_TypeInfo_var)), &L_30);
String_t* L_32;
L_32 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral64ED1863761604D415FD07FF71070927F8507689)), L_27, L_31, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_33;
L_33 = JsonException_Create_m252ED2A268323485380E56768ED485FF96A00A7F(L_24, L_26, L_32, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_ProcessItems_m6CF5B48A0D8AA53B4AEEE8DCAA14A59F8499D374_RuntimeMethod_var)));
}
IL_00b3:
{
return;
}
}
// System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType> Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::ProcessType(Vuforia.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchemaBuilder_ProcessType_m6DE22FBE83675C0ADB22D4ECADE98CA1CF03027B (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_3 = NULL;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_6;
memset((&V_6), 0, sizeof(V_6));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C G_B10_0;
memset((&G_B10_0), 0, sizeof(G_B10_0));
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = ___token0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_0);
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0017;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)8)))
{
goto IL_00aa;
}
}
{
goto IL_00bb;
}
IL_0017:
{
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), 0, /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_4 = ___token0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Linq.JToken>::GetEnumerator() */, IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var, L_4);
V_2 = L_5;
}
IL_0026:
try
{// begin try (depth: 1)
{
goto IL_0094;
}
IL_0028:
{
RuntimeObject* L_6 = V_2;
NullCheck(L_6);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_7;
L_7 = InterfaceFuncInvoker0< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var, L_6);
V_3 = L_7;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_8 = V_3;
NullCheck(L_8);
int32_t L_9;
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_8);
if ((((int32_t)L_9) == ((int32_t)8)))
{
goto IL_005f;
}
}
IL_0038:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_10 = V_3;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_11 = V_3;
NullCheck(L_11);
String_t* L_12;
L_12 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_13;
L_13 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_14 = ___token0;
NullCheck(L_14);
int32_t L_15;
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_14);
int32_t L_16 = L_15;
RuntimeObject * L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6_il2cpp_TypeInfo_var)), &L_16);
String_t* L_18;
L_18 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0512293E6F61F58E38D68B7E133717E5776E156D)), L_13, L_17, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_19;
L_19 = JsonException_Create_m252ED2A268323485380E56768ED485FF96A00A7F(L_10, L_12, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_ProcessType_m6DE22FBE83675C0ADB22D4ECADE98CA1CF03027B_RuntimeMethod_var)));
}
IL_005f:
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_20 = V_0;
V_4 = L_20;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_21 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_22;
L_22 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_21, /*hidden argument*/NULL);
int32_t L_23;
L_23 = JsonSchemaBuilder_MapType_m47780DF0134F439B9FBB2D515E1C5FCAE9E5EF25(L_22, /*hidden argument*/NULL);
V_5 = L_23;
bool L_24;
L_24 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_4), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (L_24)
{
goto IL_0084;
}
}
IL_0078:
{
il2cpp_codegen_initobj((&V_6), sizeof(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_25 = V_6;
G_B10_0 = L_25;
goto IL_0093;
}
IL_0084:
{
int32_t L_26;
L_26 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_4), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
int32_t L_27 = V_5;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_28;
memset((&L_28), 0, sizeof(L_28));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_28), ((int32_t)((int32_t)L_26|(int32_t)L_27)), /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
G_B10_0 = L_28;
}
IL_0093:
{
V_0 = G_B10_0;
}
IL_0094:
{
RuntimeObject* L_29 = V_2;
NullCheck(L_29);
bool L_30;
L_30 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_29);
if (L_30)
{
goto IL_0028;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xA8, FINALLY_009e);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{// begin finally (depth: 1)
{
RuntimeObject* L_31 = V_2;
if (!L_31)
{
goto IL_00a7;
}
}
IL_00a1:
{
RuntimeObject* L_32 = V_2;
NullCheck(L_32);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_32);
}
IL_00a7:
{
IL2CPP_END_FINALLY(158)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xA8, IL_00a8)
}
IL_00a8:
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_33 = V_0;
return L_33;
}
IL_00aa:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_34 = ___token0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_35;
L_35 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_34, /*hidden argument*/NULL);
int32_t L_36;
L_36 = JsonSchemaBuilder_MapType_m47780DF0134F439B9FBB2D515E1C5FCAE9E5EF25(L_35, /*hidden argument*/NULL);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_37;
memset((&L_37), 0, sizeof(L_37));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_37), L_36, /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
return L_37;
}
IL_00bb:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_38 = ___token0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_39 = ___token0;
NullCheck(L_39);
String_t* L_40;
L_40 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_39, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_41;
L_41 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_42 = ___token0;
NullCheck(L_42);
int32_t L_43;
L_43 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_42);
int32_t L_44 = L_43;
RuntimeObject * L_45 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JTokenType_t252F0AE682840B352C37730662A5DF318F9F55B6_il2cpp_TypeInfo_var)), &L_44);
String_t* L_46;
L_46 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6BADA9E39CAE98306330E4979DC19CA580A4F31A)), L_41, L_45, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_47;
L_47 = JsonException_Create_m252ED2A268323485380E56768ED485FF96A00A7F(L_38, L_40, L_46, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_ProcessType_m6DE22FBE83675C0ADB22D4ECADE98CA1CF03027B_RuntimeMethod_var)));
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::MapType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaBuilder_MapType_m47780DF0134F439B9FBB2D515E1C5FCAE9E5EF25 (String_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t16793F2E5B1E952FF76A9D37439D35DBFA96B452_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_StaticFields*)il2cpp_codegen_static_fields_for(JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var))->get_JsonSchemaTypeMapping_32();
String_t* L_1 = ___type0;
NullCheck(L_0);
bool L_2;
L_2 = InterfaceFuncInvoker2< bool, String_t*, int32_t* >::Invoke(7 /* System.Boolean System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::TryGetValue(!0,!1&) */, IDictionary_2_t16793F2E5B1E952FF76A9D37439D35DBFA96B452_il2cpp_TypeInfo_var, L_0, L_1, (int32_t*)(&V_0));
if (L_2)
{
goto IL_0025;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_3;
L_3 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_4 = ___type0;
String_t* L_5;
L_5 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEED90E62E98F456B07784C50EAB999B69FCF0B19)), L_3, L_4, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_6 = (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var)));
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaBuilder_MapType_m47780DF0134F439B9FBB2D515E1C5FCAE9E5EF25_RuntimeMethod_var)));
}
IL_0025:
{
int32_t L_7 = V_0;
return L_7;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaBuilder::MapType(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaBuilder_MapType_mA7D35CA58A914F286A6C0CF7B6B8735DAB01C9DE (int32_t ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Single_TisKeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C_mC10ED89BA0E24629D7F54C161DFCCFAC691C4C5F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m6B0B44B48E4B584E16F5B2051A36FB48852F50A0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m9199B1BF019BFCE5364F5706D158861CBEBDEB76_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass23_0_U3CMapTypeU3Eb__0_m6B89D86A1E0B367BEC0CC3B6DB73AB654D23DFB2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099 * V_0 = NULL;
KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C V_1;
memset((&V_1), 0, sizeof(V_1));
{
U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099 * L_0 = (U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass23_0__ctor_mFD5F6CB0997244E73C9152199A4761A70B143AA1(L_0, /*hidden argument*/NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099 * L_1 = V_0;
int32_t L_2 = ___type0;
NullCheck(L_1);
L_1->set_type_0(L_2);
IL2CPP_RUNTIME_CLASS_INIT(JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = ((JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_StaticFields*)il2cpp_codegen_static_fields_for(JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var))->get_JsonSchemaTypeMapping_32();
U3CU3Ec__DisplayClass23_0_t74409167188F1BD95D75055974133F54D079E099 * L_4 = V_0;
Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063 * L_5 = (Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063 *)il2cpp_codegen_object_new(Func_2_tED3FC0EA31FF2FA0BF2B1EE8BF93C00FD7D1D063_il2cpp_TypeInfo_var);
Func_2__ctor_m6B0B44B48E4B584E16F5B2051A36FB48852F50A0(L_5, L_4, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass23_0_U3CMapTypeU3Eb__0_m6B89D86A1E0B367BEC0CC3B6DB73AB654D23DFB2_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m6B0B44B48E4B584E16F5B2051A36FB48852F50A0_RuntimeMethod_var);
KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C L_6;
L_6 = Enumerable_Single_TisKeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C_mC10ED89BA0E24629D7F54C161DFCCFAC691C4C5F(L_3, L_5, /*hidden argument*/Enumerable_Single_TisKeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C_mC10ED89BA0E24629D7F54C161DFCCFAC691C4C5F_RuntimeMethod_var);
V_1 = L_6;
String_t* L_7;
L_7 = KeyValuePair_2_get_Key_m9199B1BF019BFCE5364F5706D158861CBEBDEB76_inline((KeyValuePair_2_t34BFBDA8D77B50F80001762D1E71D98001A6269C *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Key_m9199B1BF019BFCE5364F5706D158861CBEBDEB76_RuntimeMethod_var);
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
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaConstants::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaConstants__cctor_m653518D22FA1C28EBCE64675FAB26E24539D69D9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m92C624D3C25D257CA2B9E779C9E7B98987FBC84C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FACD530D9781E204FA5DC4E8F07428706A07E18);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral39A41E7578A2C13FD9882701980A541BE351F584);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A05A136E34451BA838B56C57A62ABDD1887D741);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB0A1C47352664275E2D7F477FA4C62FC016B575F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_0 = (Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE *)il2cpp_codegen_object_new(Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m92C624D3C25D257CA2B9E779C9E7B98987FBC84C(L_0, /*hidden argument*/Dictionary_2__ctor_m92C624D3C25D257CA2B9E779C9E7B98987FBC84C_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_1 = L_0;
NullCheck(L_1);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_1, _stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE, 1, /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_2 = L_1;
NullCheck(L_2);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_2, _stringLiteral0FACD530D9781E204FA5DC4E8F07428706A07E18, ((int32_t)16), /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_3 = L_2;
NullCheck(L_3);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_3, _stringLiteralB0A1C47352664275E2D7F477FA4C62FC016B575F, 4, /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_4 = L_3;
NullCheck(L_4);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_4, _stringLiteral7A05A136E34451BA838B56C57A62ABDD1887D741, 2, /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_5 = L_4;
NullCheck(L_5);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_5, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174, ((int32_t)64), /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_6 = L_5;
NullCheck(L_6);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_6, _stringLiteralEC8D2B1EC3E954083D64BF4DDCCC9E46BE24B490, 8, /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_7 = L_6;
NullCheck(L_7);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_7, _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, ((int32_t)32), /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
Dictionary_2_t8AF75B04804E874AC52999906A7E9A96ADA1DDDE * L_8 = L_7;
NullCheck(L_8);
Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F(L_8, _stringLiteral39A41E7578A2C13FD9882701980A541BE351F584, ((int32_t)127), /*hidden argument*/Dictionary_2_Add_m277641BDB692444F82D916EF3B252AD4D874AB6F_RuntimeMethod_var);
((JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_StaticFields*)il2cpp_codegen_static_fields_for(JsonSchemaConstants_tDCD87B915D355A570F626B579E7DD424960F0283_il2cpp_TypeInfo_var))->set_JsonSchemaTypeMapping_32(L_8);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaException_get_LineNumber_m83379866392A80C92202F986090E9B9685D3C94C (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CLineNumberU3Ek__BackingField_17();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::set_LineNumber(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaException_set_LineNumber_mB16EC51B1368DE7A3297F83260035419C2711FE6 (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLineNumberU3Ek__BackingField_17(L_0);
return;
}
}
// System.Int32 Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaException_get_LinePosition_mA95E866284BBF39599C18B72A40B7A32A8D4178D (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CLinePositionU3Ek__BackingField_18();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::set_LinePosition(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaException_set_LinePosition_m4BC31C16B2F59FEC80567C88A1C49A310B371C26 (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLinePositionU3Ek__BackingField_18(L_0);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaException_get_Path_m430C853BF08025916BEFFF70C2D51900B194CC41 (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CPathU3Ek__BackingField_19();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::set_Path(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaException_set_Path_mBC45DF5D227A0D15B8CB24C21CBD426FCDB109FF (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPathU3Ek__BackingField_19(L_0);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaException__ctor_mF14F91ED23D62AB21456ED62F74C5514D5727E94 (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, const RuntimeMethod* method)
{
{
JsonException__ctor_m99F395B291218EA8C21EBE6B58526FE82243A2E0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaException__ctor_mE58237CC9EEF9BD9D881EAD8AC5DBB8D3A9BC72C (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaException__ctor_m025F576A6AFDF45B40264FFEF9A2D7C28B21EE64 (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
JsonException__ctor_mCC5D66792B1D3941AB7935D2B2E415EBAB2A7FCA(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaException::.ctor(System.String,System.Exception,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaException__ctor_m88F5DBB15E6669A932E0296C65EF1783CA6ECC12 (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, String_t* ___message0, Exception_t * ___innerException1, String_t* ___path2, int32_t ___lineNumber3, int32_t ___linePosition4, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
JsonException__ctor_mCC5D66792B1D3941AB7935D2B2E415EBAB2A7FCA(__this, L_0, L_1, /*hidden argument*/NULL);
String_t* L_2 = ___path2;
JsonSchemaException_set_Path_mBC45DF5D227A0D15B8CB24C21CBD426FCDB109FF_inline(__this, L_2, /*hidden argument*/NULL);
int32_t L_3 = ___lineNumber3;
JsonSchemaException_set_LineNumber_mB16EC51B1368DE7A3297F83260035419C2711FE6_inline(__this, L_3, /*hidden argument*/NULL);
int32_t L_4 = ___linePosition4;
JsonSchemaException_set_LinePosition_m4BC31C16B2F59FEC80567C88A1C49A310B371C26_inline(__this, L_4, /*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
// Vuforia.Newtonsoft.Json.Schema.UndefinedSchemaIdHandling Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::get_UndefinedSchemaIdHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaGenerator_get_UndefinedSchemaIdHandling_m4A29BE818181921E9C13461CB0D05F18EB298D26 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::set_UndefinedSchemaIdHandling(Vuforia.Newtonsoft.Json.Schema.UndefinedSchemaIdHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaGenerator_set_UndefinedSchemaIdHandling_m764DC46AECE47A6CD3D7DD46F650382EA4CFA28A (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::get_ContractResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaGenerator_get_ContractResolver_m25D7B43FA7DC36A3CE93CDD8804710514B3C207B (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__contractResolver_1();
if (L_0)
{
goto IL_000e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
RuntimeObject* L_1;
L_1 = DefaultContractResolver_get_Instance_m2EB0507D1A30F944E6C96C7E90011748897D59E4_inline(/*hidden argument*/NULL);
return L_1;
}
IL_000e:
{
RuntimeObject* L_2 = __this->get__contractResolver_1();
return L_2;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::set_ContractResolver(Vuforia.Newtonsoft.Json.Serialization.IContractResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaGenerator_set_ContractResolver_mA520449A1E461A373C17EF0D38678295F88D1035 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set__contractResolver_1(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::get_CurrentSchema()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get__currentSchema_4();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Push(Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaGenerator_Push_m2BE69834458CCFB3461D0EDE8463928926607C69 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * ___typeSchema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t22C936EC9711AF16BD6FD305D78698670FB49C24_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_0 = ___typeSchema0;
NullCheck(L_0);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_1;
L_1 = TypeSchema_get_Schema_mFE371A75AA114A448718DAF8CA87CA7A19327375_inline(L_0, /*hidden argument*/NULL);
__this->set__currentSchema_4(L_1);
RuntimeObject* L_2 = __this->get__stack_3();
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_3 = ___typeSchema0;
NullCheck(L_2);
InterfaceActionInvoker1< TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>::Add(!0) */, ICollection_1_t22C936EC9711AF16BD6FD305D78698670FB49C24_il2cpp_TypeInfo_var, L_2, L_3);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_4 = __this->get__resolver_2();
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline(L_4, /*hidden argument*/NULL);
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_6 = ___typeSchema0;
NullCheck(L_6);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7;
L_7 = TypeSchema_get_Schema_mFE371A75AA114A448718DAF8CA87CA7A19327375_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_5, L_7);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * JsonSchemaGenerator_Pop_mAEDD4A45B38F37180F8ADE696D5566652BA2B47E (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_LastOrDefault_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mBE0AE0BA080A562C059D22C226E327D70F7E521E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t22C936EC9711AF16BD6FD305D78698670FB49C24_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tB075478F7EC1995F2E30FDC1BD56F685DB9E2066_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * V_0 = NULL;
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * G_B2_0 = NULL;
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * G_B1_0 = NULL;
{
RuntimeObject* L_0 = __this->get__stack_3();
RuntimeObject* L_1 = __this->get__stack_3();
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>::get_Count() */, ICollection_1_t22C936EC9711AF16BD6FD305D78698670FB49C24_il2cpp_TypeInfo_var, L_1);
NullCheck(L_0);
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_3;
L_3 = InterfaceFuncInvoker1< TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>::get_Item(System.Int32) */, IList_1_tB075478F7EC1995F2E30FDC1BD56F685DB9E2066_il2cpp_TypeInfo_var, L_0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)));
RuntimeObject* L_4 = __this->get__stack_3();
RuntimeObject* L_5 = __this->get__stack_3();
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>::get_Count() */, ICollection_1_t22C936EC9711AF16BD6FD305D78698670FB49C24_il2cpp_TypeInfo_var, L_5);
NullCheck(L_4);
InterfaceActionInvoker1< int32_t >::Invoke(4 /* System.Void System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator/TypeSchema>::RemoveAt(System.Int32) */, IList_1_tB075478F7EC1995F2E30FDC1BD56F685DB9E2066_il2cpp_TypeInfo_var, L_4, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)));
RuntimeObject* L_7 = __this->get__stack_3();
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_8;
L_8 = Enumerable_LastOrDefault_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mBE0AE0BA080A562C059D22C226E327D70F7E521E(L_7, /*hidden argument*/Enumerable_LastOrDefault_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mBE0AE0BA080A562C059D22C226E327D70F7E521E_RuntimeMethod_var);
V_0 = L_8;
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_9 = V_0;
G_B1_0 = L_3;
if (!L_9)
{
G_B2_0 = L_3;
goto IL_004c;
}
}
{
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_10 = V_0;
NullCheck(L_10);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_11;
L_11 = TypeSchema_get_Schema_mFE371A75AA114A448718DAF8CA87CA7A19327375_inline(L_10, /*hidden argument*/NULL);
__this->set__currentSchema_4(L_11);
return G_B1_0;
}
IL_004c:
{
__this->set__currentSchema_4((JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)NULL);
return G_B2_0;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Generate(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_Generate_m76F6C67767A11A30D198C101F13C541A6895550D (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 *)il2cpp_codegen_object_new(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
JsonSchemaResolver__ctor_m36F1987E2C2CE3ABFC4A3BD1014D8FC01CDD1338(L_1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2;
L_2 = JsonSchemaGenerator_Generate_mEF761D93F5F957BE3698ECF675BC48F9040D59EE(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Generate(System.Type,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_Generate_m025BDA01A257E4239791A4172F781EDA9B93C287 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = ___resolver1;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2;
L_2 = JsonSchemaGenerator_Generate_mEF761D93F5F957BE3698ECF675BC48F9040D59EE(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Generate(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_Generate_m8F2DB9368E283B3F16A1A78494E39B536D727319 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, bool ___rootSchemaNullable1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 *)il2cpp_codegen_object_new(JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543_il2cpp_TypeInfo_var);
JsonSchemaResolver__ctor_m36F1987E2C2CE3ABFC4A3BD1014D8FC01CDD1338(L_1, /*hidden argument*/NULL);
bool L_2 = ___rootSchemaNullable1;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_3;
L_3 = JsonSchemaGenerator_Generate_mEF761D93F5F957BE3698ECF675BC48F9040D59EE(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::Generate(System.Type,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_Generate_mEF761D93F5F957BE3698ECF675BC48F9040D59EE (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, bool ___rootSchemaNullable2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral060BD55633A7BB0DB575F9B05139A7E7F61D0BA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
Type_t * G_B2_0 = NULL;
JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * G_B2_1 = NULL;
Type_t * G_B1_0 = NULL;
JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * G_B1_1 = NULL;
int32_t G_B3_0 = 0;
Type_t * G_B3_1 = NULL;
JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * G_B3_2 = NULL;
{
Type_t * L_0 = ___type0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = ___resolver1;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_1, _stringLiteral060BD55633A7BB0DB575F9B05139A7E7F61D0BA6, /*hidden argument*/NULL);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_2 = ___resolver1;
__this->set__resolver_2(L_2);
Type_t * L_3 = ___type0;
bool L_4 = ___rootSchemaNullable2;
G_B1_0 = L_3;
G_B1_1 = __this;
if (!L_4)
{
G_B2_0 = L_3;
G_B2_1 = __this;
goto IL_0025;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 2;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0026:
{
NullCheck(G_B3_2);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5;
L_5 = JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5(G_B3_2, G_B3_1, G_B3_0, (bool)0, /*hidden argument*/NULL);
return L_5;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetTitle(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaGenerator_GetTitle_m31094A4B15681D63049A42A703E863FBAF6EF498 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * V_0 = NULL;
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_1;
L_1 = JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC(L_0, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC_RuntimeMethod_var);
V_0 = L_1;
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = JsonContainerAttribute_get_Title_m2C7E47FD95131BF5B15A1E15590157E9C38809F0_inline(L_3, /*hidden argument*/NULL);
bool L_5;
L_5 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_001e;
}
}
{
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = JsonContainerAttribute_get_Title_m2C7E47FD95131BF5B15A1E15590157E9C38809F0_inline(L_6, /*hidden argument*/NULL);
return L_7;
}
IL_001e:
{
return (String_t*)NULL;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetDescription(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaGenerator_GetDescription_m707E3D9355C1DD7D0D688E2AB2E781E4FF8284C2 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * V_0 = NULL;
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_1;
L_1 = JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC(L_0, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC_RuntimeMethod_var);
V_0 = L_1;
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = JsonContainerAttribute_get_Description_m36A11696F3A92C56E12A7B072D70890BD5DF2412_inline(L_3, /*hidden argument*/NULL);
bool L_5;
L_5 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_001e;
}
}
{
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = JsonContainerAttribute_get_Description_m36A11696F3A92C56E12A7B072D70890BD5DF2412_inline(L_6, /*hidden argument*/NULL);
return L_7;
}
IL_001e:
{
return (String_t*)NULL;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetTypeId(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaGenerator_GetTypeId_m303C59673A4DB95D3C2567AEA7DDB9D6FAAD50FC (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, bool ___explicitOnly1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * V_0 = NULL;
int32_t V_1 = 0;
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_1;
L_1 = JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC(L_0, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2_m94EE0F2696C2453BD3FADB86157135C24EE47EEC_RuntimeMethod_var);
V_0 = L_1;
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = JsonContainerAttribute_get_Id_m3D757A30FE066422291F149C46662EC985844723_inline(L_3, /*hidden argument*/NULL);
bool L_5;
L_5 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_001e;
}
}
{
JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = JsonContainerAttribute_get_Id_m3D757A30FE066422291F149C46662EC985844723_inline(L_6, /*hidden argument*/NULL);
return L_7;
}
IL_001e:
{
bool L_8 = ___explicitOnly1;
if (!L_8)
{
goto IL_0023;
}
}
{
return (String_t*)NULL;
}
IL_0023:
{
int32_t L_9;
L_9 = JsonSchemaGenerator_get_UndefinedSchemaIdHandling_m4A29BE818181921E9C13461CB0D05F18EB298D26_inline(__this, /*hidden argument*/NULL);
V_1 = L_9;
int32_t L_10 = V_1;
if ((((int32_t)L_10) == ((int32_t)1)))
{
goto IL_0034;
}
}
{
int32_t L_11 = V_1;
if ((((int32_t)L_11) == ((int32_t)2)))
{
goto IL_003b;
}
}
{
goto IL_0042;
}
IL_0034:
{
Type_t * L_12 = ___type0;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_12);
return L_13;
}
IL_003b:
{
Type_t * L_14 = ___type0;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_14);
return L_15;
}
IL_0042:
{
return (String_t*)NULL;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GenerateInternal(System.Type,Vuforia.Newtonsoft.Json.Required,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, int32_t ___valueRequired1, bool ___required2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_GetNamesAndValues_TisInt64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_m88F1B9B0C479873ACAD0C1D77500290E3ADBE5C1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t588E51899B1B70CA035A284B5C5D10D7368A2CF6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Any_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mFAD5A570936ED2070D3D6F104342CB2C98F5FA6A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m19BBB060B4743D7235D420006F697CA01DA131DB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t089F01F78F1F68B4BD588C27CA1BA75014341A6A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tA61E5719275F614ACAD0430ACC399DAE3C25352C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tE4BF4B4E3806D342141C1DB193ABA59EC105EDC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_GetCachedAttribute_TisJsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67_m58AF80822B3946DA06E1E67A40939EDB8D2D7BB5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass23_0_U3CGenerateInternalU3Eb__0_m6882178CB478DDE227C7BDD85644546AC0E87F7C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * V_3 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_4 = NULL;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_5;
memset((&V_5), 0, sizeof(V_5));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_6;
memset((&V_6), 0, sizeof(V_6));
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 V_7;
memset((&V_7), 0, sizeof(V_7));
bool V_8 = false;
JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * V_9 = NULL;
bool V_10 = false;
Type_t * V_11 = NULL;
int32_t V_12 = 0;
Type_t * V_13 = NULL;
Type_t * V_14 = NULL;
int32_t V_15 = 0;
int32_t V_16 = 0;
RuntimeObject* V_17 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_18 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * G_B6_0 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * G_B5_0 = NULL;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C G_B7_0;
memset((&G_B7_0), 0, sizeof(G_B7_0));
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * G_B7_1 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * G_B17_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * G_B19_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * G_B18_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * G_B21_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * G_B20_0 = NULL;
int32_t G_B29_0 = 0;
Type_t * G_B32_0 = NULL;
JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * G_B32_1 = NULL;
RuntimeObject* G_B32_2 = NULL;
Type_t * G_B31_0 = NULL;
JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * G_B31_1 = NULL;
RuntimeObject* G_B31_2 = NULL;
int32_t G_B33_0 = 0;
Type_t * G_B33_1 = NULL;
JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * G_B33_2 = NULL;
RuntimeObject* G_B33_3 = NULL;
int32_t G_B48_0 = 0;
{
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_0 = (U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass23_0__ctor_m2E465230194C300F483B9CCB45ED5602084B9513(L_0, /*hidden argument*/NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_1 = V_0;
Type_t * L_2 = ___type0;
NullCheck(L_1);
L_1->set_type_0(L_2);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_3 = V_0;
NullCheck(L_3);
Type_t * L_4 = L_3->get_type_0();
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_4, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_5 = V_0;
NullCheck(L_5);
Type_t * L_6 = L_5->get_type_0();
String_t* L_7;
L_7 = JsonSchemaGenerator_GetTypeId_m303C59673A4DB95D3C2567AEA7DDB9D6FAAD50FC(__this, L_6, (bool)0, /*hidden argument*/NULL);
V_1 = L_7;
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_8 = V_0;
NullCheck(L_8);
Type_t * L_9 = L_8->get_type_0();
String_t* L_10;
L_10 = JsonSchemaGenerator_GetTypeId_m303C59673A4DB95D3C2567AEA7DDB9D6FAAD50FC(__this, L_9, (bool)1, /*hidden argument*/NULL);
V_2 = L_10;
String_t* L_11 = V_1;
bool L_12;
L_12 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_00d1;
}
}
{
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_13 = __this->get__resolver_2();
String_t* L_14 = V_1;
NullCheck(L_13);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_15;
L_15 = VirtualFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, String_t* >::Invoke(4 /* Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::GetSchema(System.String) */, L_13, L_14);
V_4 = L_15;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_16 = V_4;
if (!L_16)
{
goto IL_00d1;
}
}
{
int32_t L_17 = ___valueRequired1;
if ((((int32_t)L_17) == ((int32_t)2)))
{
goto IL_009d;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_18 = V_4;
NullCheck(L_18);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_19;
L_19 = JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline(L_18, /*hidden argument*/NULL);
bool L_20;
L_20 = JsonSchemaGenerator_HasFlag_mC8FE89B76A69FD7BD1B079BB5378D34DB7D06672(L_19, ((int32_t)64), /*hidden argument*/NULL);
if (L_20)
{
goto IL_009d;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_21 = V_4;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_22 = L_21;
NullCheck(L_22);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_23;
L_23 = JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline(L_22, /*hidden argument*/NULL);
V_5 = L_23;
bool L_24;
L_24 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_5), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
G_B5_0 = L_22;
if (L_24)
{
G_B6_0 = L_22;
goto IL_0089;
}
}
{
il2cpp_codegen_initobj((&V_6), sizeof(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_25 = V_6;
G_B7_0 = L_25;
G_B7_1 = G_B5_0;
goto IL_0098;
}
IL_0089:
{
int32_t L_26;
L_26 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_5), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_27;
memset((&L_27), 0, sizeof(L_27));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_27), ((int32_t)((int32_t)L_26|(int32_t)((int32_t)64))), /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
G_B7_0 = L_27;
G_B7_1 = G_B6_0;
}
IL_0098:
{
NullCheck(G_B7_1);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(G_B7_1, G_B7_0, /*hidden argument*/NULL);
}
IL_009d:
{
bool L_28 = ___required2;
if (!L_28)
{
goto IL_00ce;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_29 = V_4;
NullCheck(L_29);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_30;
L_30 = JsonSchema_get_Required_mE10F257E5A89313CF4111615DBFCF8638B3E58D7_inline(L_29, /*hidden argument*/NULL);
V_7 = L_30;
V_8 = (bool)1;
bool L_31;
L_31 = Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)(&V_7), /*hidden argument*/Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
bool L_32 = V_8;
bool L_33;
L_33 = Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)(&V_7), /*hidden argument*/Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_31) == ((int32_t)L_32))? 1 : 0)&(int32_t)L_33)))
{
goto IL_00ce;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_34 = V_4;
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_35;
memset((&L_35), 0, sizeof(L_35));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_35), (bool)1, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
NullCheck(L_34);
JsonSchema_set_Required_mD2C868E3252D959332507BFAF8B9E436F5F9A8F4_inline(L_34, L_35, /*hidden argument*/NULL);
}
IL_00ce:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_36 = V_4;
return L_36;
}
IL_00d1:
{
RuntimeObject* L_37 = __this->get__stack_3();
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_38 = V_0;
Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E * L_39 = (Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E *)il2cpp_codegen_object_new(Func_2_t0582EA9EA5383F5FDCCD15B55960C0CA471C247E_il2cpp_TypeInfo_var);
Func_2__ctor_m19BBB060B4743D7235D420006F697CA01DA131DB(L_39, L_38, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass23_0_U3CGenerateInternalU3Eb__0_m6882178CB478DDE227C7BDD85644546AC0E87F7C_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m19BBB060B4743D7235D420006F697CA01DA131DB_RuntimeMethod_var);
bool L_40;
L_40 = Enumerable_Any_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mFAD5A570936ED2070D3D6F104342CB2C98F5FA6A(L_37, L_39, /*hidden argument*/Enumerable_Any_TisTypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_mFAD5A570936ED2070D3D6F104342CB2C98F5FA6A_RuntimeMethod_var);
if (!L_40)
{
goto IL_0105;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_41;
L_41 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_42 = V_0;
NullCheck(L_42);
Type_t * L_43 = L_42->get_type_0();
String_t* L_44;
L_44 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6FCD854BA7485F443120CDBF6B37C0A26D14C53D)), L_41, L_43, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_45 = (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var)));
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(L_45, L_44, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5_RuntimeMethod_var)));
}
IL_0105:
{
RuntimeObject* L_46;
L_46 = JsonSchemaGenerator_get_ContractResolver_m25D7B43FA7DC36A3CE93CDD8804710514B3C207B(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_47 = V_0;
NullCheck(L_47);
Type_t * L_48 = L_47->get_type_0();
NullCheck(L_46);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_49;
L_49 = InterfaceFuncInvoker1< JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *, Type_t * >::Invoke(0 /* Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.IContractResolver::ResolveContract(System.Type) */, IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var, L_46, L_48);
V_3 = L_49;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_50 = V_3;
NullCheck(L_50);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_51;
L_51 = JsonContract_get_Converter_mDE546D9E7644EC1EFE17954CD6C3A03CA23AFDE5_inline(L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0122;
}
}
{
G_B17_0 = ((JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)(NULL));
goto IL_0128;
}
IL_0122:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_52 = V_3;
NullCheck(L_52);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_53;
L_53 = JsonContract_get_InternalConverter_m52505C93F76DFA4AAA3C1B68DB40B0ABE7D286BF_inline(L_52, /*hidden argument*/NULL);
G_B17_0 = L_53;
}
IL_0128:
{
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_54 = V_0;
NullCheck(L_54);
Type_t * L_55 = L_54->get_type_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_56 = (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)il2cpp_codegen_object_new(JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_il2cpp_TypeInfo_var);
JsonSchema__ctor_m3E0CBE1171FD35441162159F6C7CB8AA8F4E7BE0(L_56, /*hidden argument*/NULL);
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_57 = (TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 *)il2cpp_codegen_object_new(TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969_il2cpp_TypeInfo_var);
TypeSchema__ctor_m77DEB660DC03EFCE1AC37B8CEB04C690FF61928A(L_57, L_55, L_56, /*hidden argument*/NULL);
JsonSchemaGenerator_Push_m2BE69834458CCFB3461D0EDE8463928926607C69(__this, L_57, /*hidden argument*/NULL);
String_t* L_58 = V_2;
G_B18_0 = G_B17_0;
if (!L_58)
{
G_B19_0 = G_B17_0;
goto IL_014d;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_59;
L_59 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
String_t* L_60 = V_2;
NullCheck(L_59);
JsonSchema_set_Id_mE5CC93267D31400AE1819273B7BBCACB100CB7CD_inline(L_59, L_60, /*hidden argument*/NULL);
G_B19_0 = G_B18_0;
}
IL_014d:
{
bool L_61 = ___required2;
G_B20_0 = G_B19_0;
if (!L_61)
{
G_B21_0 = G_B19_0;
goto IL_0161;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_62;
L_62 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_63;
memset((&L_63), 0, sizeof(L_63));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_63), (bool)1, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
NullCheck(L_62);
JsonSchema_set_Required_mD2C868E3252D959332507BFAF8B9E436F5F9A8F4_inline(L_62, L_63, /*hidden argument*/NULL);
G_B21_0 = G_B20_0;
}
IL_0161:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_64;
L_64 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_65 = V_0;
NullCheck(L_65);
Type_t * L_66 = L_65->get_type_0();
String_t* L_67;
L_67 = JsonSchemaGenerator_GetTitle_m31094A4B15681D63049A42A703E863FBAF6EF498(__this, L_66, /*hidden argument*/NULL);
NullCheck(L_64);
JsonSchema_set_Title_mC30C6A6EEFBE2DD153FB48E008424C199B62801D_inline(L_64, L_67, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_68;
L_68 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_69 = V_0;
NullCheck(L_69);
Type_t * L_70 = L_69->get_type_0();
String_t* L_71;
L_71 = JsonSchemaGenerator_GetDescription_m707E3D9355C1DD7D0D688E2AB2E781E4FF8284C2(__this, L_70, /*hidden argument*/NULL);
NullCheck(L_68);
JsonSchema_set_Description_m497296EAA19C9D470CE9A61CE77073BD87C991A7_inline(L_68, L_71, /*hidden argument*/NULL);
if (!G_B21_0)
{
goto IL_01a8;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_72;
L_72 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_73;
memset((&L_73), 0, sizeof(L_73));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_73), ((int32_t)127), /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
NullCheck(L_72);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_72, L_73, /*hidden argument*/NULL);
goto IL_0455;
}
IL_01a8:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_74 = V_3;
NullCheck(L_74);
int32_t L_75 = L_74->get_ContractType_5();
V_15 = L_75;
int32_t L_76 = V_15;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_76, (int32_t)1)))
{
case 0:
{
goto IL_01de;
}
case 1:
{
goto IL_0226;
}
case 2:
{
goto IL_02c4;
}
case 3:
{
goto IL_039c;
}
case 4:
{
goto IL_03cd;
}
case 5:
{
goto IL_043f;
}
case 6:
{
goto IL_043f;
}
case 7:
{
goto IL_042b;
}
}
}
{
goto IL_043f;
}
IL_01de:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_77;
L_77 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
int32_t L_78 = ___valueRequired1;
int32_t L_79;
L_79 = JsonSchemaGenerator_AddNullType_mD7117F1E5C752636BFE722C90CE22560EE7E0564(__this, ((int32_t)16), L_78, /*hidden argument*/NULL);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_80;
memset((&L_80), 0, sizeof(L_80));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_80), L_79, /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
NullCheck(L_77);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_77, L_80, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_81;
L_81 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_82 = V_0;
NullCheck(L_82);
Type_t * L_83 = L_82->get_type_0();
String_t* L_84;
L_84 = JsonSchemaGenerator_GetTypeId_m303C59673A4DB95D3C2567AEA7DDB9D6FAAD50FC(__this, L_83, (bool)0, /*hidden argument*/NULL);
NullCheck(L_81);
JsonSchema_set_Id_mE5CC93267D31400AE1819273B7BBCACB100CB7CD_inline(L_81, L_84, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_85 = V_0;
NullCheck(L_85);
Type_t * L_86 = L_85->get_type_0();
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_87 = V_3;
JsonSchemaGenerator_GenerateObjectSchema_m9FA54B2627DF2AC9DB041108484F585848F80830(__this, L_86, ((JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 *)CastclassClass((RuntimeObject*)L_87, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_0455;
}
IL_0226:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_88;
L_88 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
int32_t L_89 = ___valueRequired1;
int32_t L_90;
L_90 = JsonSchemaGenerator_AddNullType_mD7117F1E5C752636BFE722C90CE22560EE7E0564(__this, ((int32_t)32), L_89, /*hidden argument*/NULL);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_91;
memset((&L_91), 0, sizeof(L_91));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_91), L_90, /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
NullCheck(L_88);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_88, L_91, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_92;
L_92 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_93 = V_0;
NullCheck(L_93);
Type_t * L_94 = L_93->get_type_0();
String_t* L_95;
L_95 = JsonSchemaGenerator_GetTypeId_m303C59673A4DB95D3C2567AEA7DDB9D6FAAD50FC(__this, L_94, (bool)0, /*hidden argument*/NULL);
NullCheck(L_92);
JsonSchema_set_Id_mE5CC93267D31400AE1819273B7BBCACB100CB7CD_inline(L_92, L_95, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_96 = V_0;
NullCheck(L_96);
Type_t * L_97 = L_96->get_type_0();
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_t476FA33E0AE100491B415FE839361363E5B53749_il2cpp_TypeInfo_var);
JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * L_98;
L_98 = JsonTypeReflector_GetCachedAttribute_TisJsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67_m58AF80822B3946DA06E1E67A40939EDB8D2D7BB5(L_97, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67_m58AF80822B3946DA06E1E67A40939EDB8D2D7BB5_RuntimeMethod_var);
V_9 = L_98;
JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * L_99 = V_9;
if (!L_99)
{
goto IL_0271;
}
}
{
JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * L_100 = V_9;
NullCheck(L_100);
bool L_101;
L_101 = JsonArrayAttribute_get_AllowNullItems_m04EC3BEA9224D29E0FDF46CE28EBD8A8ADF1F4EA_inline(L_100, /*hidden argument*/NULL);
G_B29_0 = ((int32_t)(L_101));
goto IL_0272;
}
IL_0271:
{
G_B29_0 = 1;
}
IL_0272:
{
V_10 = (bool)G_B29_0;
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_102 = V_0;
NullCheck(L_102);
Type_t * L_103 = L_102->get_type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
Type_t * L_104;
L_104 = ReflectionUtils_GetCollectionItemType_m94B565016C959DC626CB46C42959D504445E1AA0(L_103, /*hidden argument*/NULL);
V_11 = L_104;
Type_t * L_105 = V_11;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_106;
L_106 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_105, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_106)
{
goto IL_0455;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_107;
L_107 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * L_108 = (List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 *)il2cpp_codegen_object_new(List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9(L_108, /*hidden argument*/List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
NullCheck(L_107);
JsonSchema_set_Items_m98467635105FE963BBF41DB97EB0F1053A0D23DA_inline(L_107, L_108, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_109;
L_109 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
NullCheck(L_109);
RuntimeObject* L_110;
L_110 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_109, /*hidden argument*/NULL);
Type_t * L_111 = V_11;
bool L_112 = V_10;
G_B31_0 = L_111;
G_B31_1 = __this;
G_B31_2 = L_110;
if (!L_112)
{
G_B32_0 = L_111;
G_B32_1 = __this;
G_B32_2 = L_110;
goto IL_02b3;
}
}
{
G_B33_0 = 0;
G_B33_1 = G_B31_0;
G_B33_2 = G_B31_1;
G_B33_3 = G_B31_2;
goto IL_02b4;
}
IL_02b3:
{
G_B33_0 = 2;
G_B33_1 = G_B32_0;
G_B33_2 = G_B32_1;
G_B33_3 = G_B32_2;
}
IL_02b4:
{
NullCheck(G_B33_2);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_113;
L_113 = JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5(G_B33_2, G_B33_1, G_B33_0, (bool)0, /*hidden argument*/NULL);
NullCheck(G_B33_3);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, G_B33_3, L_113);
goto IL_0455;
}
IL_02c4:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_114;
L_114 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_115 = V_0;
NullCheck(L_115);
Type_t * L_116 = L_115->get_type_0();
int32_t L_117 = ___valueRequired1;
int32_t L_118;
L_118 = JsonSchemaGenerator_GetJsonSchemaType_m218797C2A4903C28A40C17AD3790079D6F3235B7(__this, L_116, L_117, /*hidden argument*/NULL);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_119;
memset((&L_119), 0, sizeof(L_119));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_119), L_118, /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
NullCheck(L_114);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_114, L_119, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_120;
L_120 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
NullCheck(L_120);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_121;
L_121 = JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline(L_120, /*hidden argument*/NULL);
V_5 = L_121;
V_16 = 4;
int32_t L_122;
L_122 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_5), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
int32_t L_123 = V_16;
bool L_124;
L_124 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_5), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (!((int32_t)((int32_t)((((int32_t)L_122) == ((int32_t)L_123))? 1 : 0)&(int32_t)L_124)))
{
goto IL_0455;
}
}
{
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_125 = V_0;
NullCheck(L_125);
Type_t * L_126 = L_125->get_type_0();
bool L_127;
L_127 = TypeExtensions_IsEnum_m23C7D46C3B24AB80AA4F69B06A9A31C0A8743655(L_126, /*hidden argument*/NULL);
if (!L_127)
{
goto IL_0455;
}
}
{
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_128 = V_0;
NullCheck(L_128);
Type_t * L_129 = L_128->get_type_0();
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_130 = { reinterpret_cast<intptr_t> (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_131;
L_131 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_130, /*hidden argument*/NULL);
NullCheck(L_129);
bool L_132;
L_132 = VirtualFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_129, L_131, (bool)1);
if (L_132)
{
goto IL_0455;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_133;
L_133 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 * L_134 = (List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 *)il2cpp_codegen_object_new(List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_il2cpp_TypeInfo_var);
List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF(L_134, /*hidden argument*/List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF_RuntimeMethod_var);
NullCheck(L_133);
JsonSchema_set_Enum_m600F66C93A07B7B23914016BCC4ADC350DB41372_inline(L_133, L_134, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_135 = V_0;
NullCheck(L_135);
Type_t * L_136 = L_135->get_type_0();
IL2CPP_RUNTIME_CLASS_INIT(EnumUtils_t588E51899B1B70CA035A284B5C5D10D7368A2CF6_il2cpp_TypeInfo_var);
RuntimeObject* L_137;
L_137 = EnumUtils_GetNamesAndValues_TisInt64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_m88F1B9B0C479873ACAD0C1D77500290E3ADBE5C1(L_136, /*hidden argument*/EnumUtils_GetNamesAndValues_TisInt64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_m88F1B9B0C479873ACAD0C1D77500290E3ADBE5C1_RuntimeMethod_var);
NullCheck(L_137);
RuntimeObject* L_138;
L_138 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>>::GetEnumerator() */, IEnumerable_1_tA61E5719275F614ACAD0430ACC399DAE3C25352C_il2cpp_TypeInfo_var, L_137);
V_17 = L_138;
}
IL_0356:
try
{// begin try (depth: 1)
{
goto IL_0382;
}
IL_0358:
{
RuntimeObject* L_139 = V_17;
NullCheck(L_139);
EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B * L_140;
L_140 = InterfaceFuncInvoker0< EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>>::get_Current() */, IEnumerator_1_tE4BF4B4E3806D342141C1DB193ABA59EC105EDC6_il2cpp_TypeInfo_var, L_139);
NullCheck(L_140);
int64_t L_141;
L_141 = EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_inline(L_140, /*hidden argument*/EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_RuntimeMethod_var);
int64_t L_142 = L_141;
RuntimeObject * L_143 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_142);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_144;
L_144 = JToken_FromObject_mB0B842B8437F2BA0C9711979F1A72712202568ED(L_143, /*hidden argument*/NULL);
V_18 = L_144;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_145;
L_145 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
NullCheck(L_145);
RuntimeObject* L_146;
L_146 = JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline(L_145, /*hidden argument*/NULL);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_147 = V_18;
NullCheck(L_146);
InterfaceActionInvoker1< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Linq.JToken>::Add(!0) */, ICollection_1_t089F01F78F1F68B4BD588C27CA1BA75014341A6A_il2cpp_TypeInfo_var, L_146, L_147);
}
IL_0382:
{
RuntimeObject* L_148 = V_17;
NullCheck(L_148);
bool L_149;
L_149 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_148);
if (L_149)
{
goto IL_0358;
}
}
IL_038b:
{
IL2CPP_LEAVE(0x455, FINALLY_0390);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0390;
}
FINALLY_0390:
{// begin finally (depth: 1)
{
RuntimeObject* L_150 = V_17;
if (!L_150)
{
goto IL_039b;
}
}
IL_0394:
{
RuntimeObject* L_151 = V_17;
NullCheck(L_151);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_151);
}
IL_039b:
{
IL2CPP_END_FINALLY(912)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(912)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x455, IL_0455)
}
IL_039c:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_152 = V_3;
NullCheck(L_152);
Type_t * L_153;
L_153 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_152, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
bool L_154;
L_154 = ReflectionUtils_IsNullable_mC2D6CD3473D20C96AD796FE220368A0D6F61DDA0(L_153, /*hidden argument*/NULL);
if (!L_154)
{
goto IL_03b3;
}
}
{
int32_t L_155 = ___valueRequired1;
int32_t L_156;
L_156 = JsonSchemaGenerator_AddNullType_mD7117F1E5C752636BFE722C90CE22560EE7E0564(__this, 1, L_155, /*hidden argument*/NULL);
G_B48_0 = ((int32_t)(L_156));
goto IL_03b4;
}
IL_03b3:
{
G_B48_0 = 1;
}
IL_03b4:
{
V_12 = G_B48_0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_157;
L_157 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
int32_t L_158 = V_12;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_159;
memset((&L_159), 0, sizeof(L_159));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_159), L_158, /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
NullCheck(L_157);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_157, L_159, /*hidden argument*/NULL);
goto IL_0455;
}
IL_03cd:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_160;
L_160 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
int32_t L_161 = ___valueRequired1;
int32_t L_162;
L_162 = JsonSchemaGenerator_AddNullType_mD7117F1E5C752636BFE722C90CE22560EE7E0564(__this, ((int32_t)16), L_161, /*hidden argument*/NULL);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_163;
memset((&L_163), 0, sizeof(L_163));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_163), L_162, /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
NullCheck(L_160);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_160, L_163, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass23_0_tD8493A767CD9EDC18B629EE7D532B4F7B12FE008 * L_164 = V_0;
NullCheck(L_164);
Type_t * L_165 = L_164->get_type_0();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
ReflectionUtils_GetDictionaryKeyValueTypes_m992E7E0F49132A8E0ACFEEE6C0144B7425AA6303(L_165, (Type_t **)(&V_13), (Type_t **)(&V_14), /*hidden argument*/NULL);
Type_t * L_166 = V_13;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_167;
L_167 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_166, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_167)
{
goto IL_0455;
}
}
{
RuntimeObject* L_168;
L_168 = JsonSchemaGenerator_get_ContractResolver_m25D7B43FA7DC36A3CE93CDD8804710514B3C207B(__this, /*hidden argument*/NULL);
Type_t * L_169 = V_13;
NullCheck(L_168);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_170;
L_170 = InterfaceFuncInvoker1< JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *, Type_t * >::Invoke(0 /* Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.IContractResolver::ResolveContract(System.Type) */, IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var, L_168, L_169);
NullCheck(L_170);
int32_t L_171 = L_170->get_ContractType_5();
if ((!(((uint32_t)L_171) == ((uint32_t)3))))
{
goto IL_0455;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_172;
L_172 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
Type_t * L_173 = V_14;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_174;
L_174 = JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5(__this, L_173, 0, (bool)0, /*hidden argument*/NULL);
NullCheck(L_172);
JsonSchema_set_AdditionalProperties_m342347187D74F472699CC67CCD93EEDFBAB091F5_inline(L_172, L_174, /*hidden argument*/NULL);
goto IL_0455;
}
IL_042b:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_175;
L_175 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_176;
memset((&L_176), 0, sizeof(L_176));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_176), ((int32_t)127), /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
NullCheck(L_175);
JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline(L_175, L_176, /*hidden argument*/NULL);
goto IL_0455;
}
IL_043f:
{
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_177;
L_177 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_178 = V_3;
String_t* L_179;
L_179 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral829DD8C65921D16DD04C9B1B107DA10B23699427)), L_177, L_178, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_180 = (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var)));
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(L_180, L_179, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_180, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5_RuntimeMethod_var)));
}
IL_0455:
{
TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * L_181;
L_181 = JsonSchemaGenerator_Pop_mAEDD4A45B38F37180F8ADE696D5566652BA2B47E(__this, /*hidden argument*/NULL);
NullCheck(L_181);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_182;
L_182 = TypeSchema_get_Schema_mFE371A75AA114A448718DAF8CA87CA7A19327375_inline(L_181, /*hidden argument*/NULL);
return L_182;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::AddNullType(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType,Vuforia.Newtonsoft.Json.Required)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaGenerator_AddNullType_mD7117F1E5C752636BFE722C90CE22560EE7E0564 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, int32_t ___type0, int32_t ___valueRequired1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___valueRequired1;
if ((((int32_t)L_0) == ((int32_t)2)))
{
goto IL_0009;
}
}
{
int32_t L_1 = ___type0;
return (int32_t)(((int32_t)((int32_t)L_1|(int32_t)((int32_t)64))));
}
IL_0009:
{
int32_t L_2 = ___type0;
return L_2;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::HasFlag(Vuforia.Newtonsoft.Json.DefaultValueHandling,Vuforia.Newtonsoft.Json.DefaultValueHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaGenerator_HasFlag_m3165BDCCBCD87B10798F2DBF0D6E4B77287F5842 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, int32_t ___value0, int32_t ___flag1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
int32_t L_1 = ___flag1;
int32_t L_2 = ___flag1;
return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) == ((int32_t)L_2))? 1 : 0);
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GenerateObjectSchema(System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaGenerator_GenerateObjectSchema_m9FA54B2627DF2AC9DB041108484F585848F80830 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t5EFD102786697C03ED0BEB3B6811F347BE6A6241_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6887AE493086930CEF3A683492F3AD2AA1E1C60B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m88EA3C6DB2CBBF8587DD2891E56AAB44B71CCBC2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * V_1 = NULL;
bool V_2 = false;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_3 = NULL;
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 V_6;
memset((&V_6), 0, sizeof(V_6));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
int32_t G_B8_0 = 0;
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0;
L_0 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 * L_1 = (Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1 *)il2cpp_codegen_object_new(Dictionary_2_t241D76DB0B38557AEFFCA0764F92798BC237B0E1_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0(L_1, /*hidden argument*/Dictionary_2__ctor_mCF0D3E17D85E18B553255633EAE9660838452BC0_RuntimeMethod_var);
NullCheck(L_0);
JsonSchema_set_Properties_mA71EBA6B5C5D4F33347D50D8F68C3BF19554D713_inline(L_0, L_1, /*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_2 = ___contract1;
NullCheck(L_2);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_3;
L_3 = JsonObjectContract_get_Properties_m199B76032C42E8560001FCFE7741F5DD64988CBA_inline(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2(L_3, /*hidden argument*/Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2_RuntimeMethod_var);
V_0 = L_4;
}
IL_001c:
try
{// begin try (depth: 1)
{
goto IL_00c7;
}
IL_0021:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_6;
L_6 = InterfaceFuncInvoker0< JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>::get_Current() */, IEnumerator_1_t5EFD102786697C03ED0BEB3B6811F347BE6A6241_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_7 = V_1;
NullCheck(L_7);
bool L_8;
L_8 = JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline(L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_00c7;
}
}
IL_0033:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_9 = V_1;
NullCheck(L_9);
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 L_10;
L_10 = JsonProperty_get_NullValueHandling_mE711C0CE9C27769ECC27E2D22B12E787E9BE693F_inline(L_9, /*hidden argument*/NULL);
V_4 = L_10;
V_5 = 1;
int32_t L_11;
L_11 = Nullable_1_GetValueOrDefault_m6887AE493086930CEF3A683492F3AD2AA1E1C60B_inline((Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *)(&V_4), /*hidden argument*/Nullable_1_GetValueOrDefault_m6887AE493086930CEF3A683492F3AD2AA1E1C60B_RuntimeMethod_var);
int32_t L_12 = V_5;
bool L_13;
L_13 = Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_inline((Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *)(&V_4), /*hidden argument*/Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_11) == ((int32_t)L_12))? 1 : 0)&(int32_t)L_13)))
{
goto IL_007e;
}
}
IL_0053:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_14 = V_1;
NullCheck(L_14);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_15;
L_15 = JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline(L_14, /*hidden argument*/NULL);
V_6 = L_15;
int32_t L_16;
L_16 = Nullable_1_GetValueOrDefault_m88EA3C6DB2CBBF8587DD2891E56AAB44B71CCBC2_inline((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)(&V_6), /*hidden argument*/Nullable_1_GetValueOrDefault_m88EA3C6DB2CBBF8587DD2891E56AAB44B71CCBC2_RuntimeMethod_var);
bool L_17;
L_17 = JsonSchemaGenerator_HasFlag_m3165BDCCBCD87B10798F2DBF0D6E4B77287F5842(__this, L_16, 1, /*hidden argument*/NULL);
if (L_17)
{
goto IL_007e;
}
}
IL_006b:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_18 = V_1;
NullCheck(L_18);
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * L_19;
L_19 = JsonProperty_get_ShouldSerialize_m7CD4E9EB8C176BB1E36B55774EAF0E81AE231D7B_inline(L_18, /*hidden argument*/NULL);
if (L_19)
{
goto IL_007e;
}
}
IL_0073:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_20 = V_1;
NullCheck(L_20);
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * L_21;
L_21 = JsonProperty_get_GetIsSpecified_m25DC0FD35E26E1D64D756EE3F8B29232FDB0F515_inline(L_20, /*hidden argument*/NULL);
G_B8_0 = ((!(((RuntimeObject*)(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB *)L_21) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
goto IL_007f;
}
IL_007e:
{
G_B8_0 = 1;
}
IL_007f:
{
V_2 = (bool)G_B8_0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_22 = V_1;
NullCheck(L_22);
Type_t * L_23;
L_23 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_22, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_24 = V_1;
NullCheck(L_24);
int32_t L_25;
L_25 = JsonProperty_get_Required_mAC88A30F754D2CDEB8366CEECCA214279B407906(L_24, /*hidden argument*/NULL);
bool L_26 = V_2;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_27;
L_27 = JsonSchemaGenerator_GenerateInternal_mF83139C083EC1E299B5F0C71DCE120F4672BE6C5(__this, L_23, L_25, (bool)((((int32_t)L_26) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
V_3 = L_27;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_28 = V_1;
NullCheck(L_28);
RuntimeObject * L_29;
L_29 = JsonProperty_get_DefaultValue_m2F0B235EDFA3FB17FBE4B333B7B45C8209AC6473(L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00b0;
}
}
IL_009f:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_30 = V_3;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_31 = V_1;
NullCheck(L_31);
RuntimeObject * L_32;
L_32 = JsonProperty_get_DefaultValue_m2F0B235EDFA3FB17FBE4B333B7B45C8209AC6473(L_31, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_33;
L_33 = JToken_FromObject_mB0B842B8437F2BA0C9711979F1A72712202568ED(L_32, /*hidden argument*/NULL);
NullCheck(L_30);
JsonSchema_set_Default_mD91A00F8C6E98164325C256BD3C2F3A40226F952_inline(L_30, L_33, /*hidden argument*/NULL);
}
IL_00b0:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_34;
L_34 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
NullCheck(L_34);
RuntimeObject* L_35;
L_35 = JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline(L_34, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_36 = V_1;
NullCheck(L_36);
String_t* L_37;
L_37 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_36, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_38 = V_3;
NullCheck(L_35);
InterfaceActionInvoker2< String_t*, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0,!1) */, IDictionary_2_tED758BE9DEC80F59C946444F9666E8C40AA92EDF_il2cpp_TypeInfo_var, L_35, L_37, L_38);
}
IL_00c7:
{
RuntimeObject* L_39 = V_0;
NullCheck(L_39);
bool L_40;
L_40 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_39);
if (L_40)
{
goto IL_0021;
}
}
IL_00d2:
{
IL2CPP_LEAVE(0xDE, FINALLY_00d4);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00d4;
}
FINALLY_00d4:
{// begin finally (depth: 1)
{
RuntimeObject* L_41 = V_0;
if (!L_41)
{
goto IL_00dd;
}
}
IL_00d7:
{
RuntimeObject* L_42 = V_0;
NullCheck(L_42);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_42);
}
IL_00dd:
{
IL2CPP_END_FINALLY(212)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(212)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xDE, IL_00de)
}
IL_00de:
{
Type_t * L_43 = ___type0;
bool L_44;
L_44 = TypeExtensions_IsSealed_mD10DD6AC20ACB440C9B5BECA1432DF10D2723100(L_43, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_00f2;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_45;
L_45 = JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline(__this, /*hidden argument*/NULL);
NullCheck(L_45);
JsonSchema_set_AllowAdditionalProperties_mCEC6844B12E85B4EAC2392D0CB900192309AA572_inline(L_45, (bool)0, /*hidden argument*/NULL);
}
IL_00f2:
{
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::HasFlag(System.Nullable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaGenerator_HasFlag_mC8FE89B76A69FD7BD1B079BB5378D34DB7D06672 (Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, int32_t ___flag1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_2;
memset((&V_2), 0, sizeof(V_2));
int32_t V_3 = 0;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_4;
memset((&V_4), 0, sizeof(V_4));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C G_B5_0;
memset((&G_B5_0), 0, sizeof(G_B5_0));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C G_B11_0;
memset((&G_B11_0), 0, sizeof(G_B11_0));
{
bool L_0;
L_0 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&___value0), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (L_0)
{
goto IL_000b;
}
}
{
return (bool)1;
}
IL_000b:
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_1 = ___value0;
V_2 = L_1;
int32_t L_2 = ___flag1;
V_3 = L_2;
bool L_3;
L_3 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_2), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (L_3)
{
goto IL_0024;
}
}
{
il2cpp_codegen_initobj((&V_4), sizeof(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_4 = V_4;
G_B5_0 = L_4;
goto IL_0032;
}
IL_0024:
{
int32_t L_5;
L_5 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_2), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
int32_t L_6 = V_3;
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_7;
memset((&L_7), 0, sizeof(L_7));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_7), ((int32_t)((int32_t)L_5&(int32_t)L_6)), /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
G_B5_0 = L_7;
}
IL_0032:
{
V_0 = G_B5_0;
int32_t L_8 = ___flag1;
V_1 = L_8;
int32_t L_9;
L_9 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
int32_t L_10 = V_1;
bool L_11;
L_11 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (!((int32_t)((int32_t)((((int32_t)L_9) == ((int32_t)L_10))? 1 : 0)&(int32_t)L_11)))
{
goto IL_004b;
}
}
{
return (bool)1;
}
IL_004b:
{
int32_t L_12 = ___flag1;
if ((!(((uint32_t)L_12) == ((uint32_t)4))))
{
goto IL_008d;
}
}
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_13 = ___value0;
V_2 = L_13;
bool L_14;
L_14 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_2), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (L_14)
{
goto IL_0066;
}
}
{
il2cpp_codegen_initobj((&V_4), sizeof(Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_15 = V_4;
G_B11_0 = L_15;
goto IL_0074;
}
IL_0066:
{
int32_t L_16;
L_16 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_2), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_17;
memset((&L_17), 0, sizeof(L_17));
Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A((&L_17), ((int32_t)((int32_t)L_16&(int32_t)2)), /*hidden argument*/Nullable_1__ctor_m048B903367B2DBDE792B61BB20CA102D887DD83A_RuntimeMethod_var);
G_B11_0 = L_17;
}
IL_0074:
{
V_0 = G_B11_0;
V_1 = 2;
int32_t L_18;
L_18 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
int32_t L_19 = V_1;
bool L_20;
L_20 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (!((int32_t)((int32_t)((((int32_t)L_18) == ((int32_t)L_19))? 1 : 0)&(int32_t)L_20)))
{
goto IL_008d;
}
}
{
return (bool)1;
}
IL_008d:
{
return (bool)0;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::GetJsonSchemaType(System.Type,Vuforia.Newtonsoft.Json.Required)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaGenerator_GetJsonSchemaType_m218797C2A4903C28A40C17AD3790079D6F3235B7 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, Type_t * ___type0, int32_t ___valueRequired1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_tE67B037CB4024E301EF5FF99A76C04AEAD465E24_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
int32_t L_0 = ___valueRequired1;
if ((((int32_t)L_0) == ((int32_t)2)))
{
goto IL_0021;
}
}
{
Type_t * L_1 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
bool L_2;
L_2 = ReflectionUtils_IsNullable_mC2D6CD3473D20C96AD796FE220368A0D6F61DDA0(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0021;
}
}
{
V_0 = ((int32_t)64);
Type_t * L_3 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
bool L_4;
L_4 = ReflectionUtils_IsNullableType_mF8A09DA966FEB998A743CCA27E4E39F70D72C7C0(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0021;
}
}
{
Type_t * L_5 = ___type0;
Type_t * L_6;
L_6 = Nullable_GetUnderlyingType_mC5699E7E11E1AFE25365CAB564A48F0193318629(L_5, /*hidden argument*/NULL);
___type0 = L_6;
}
IL_0021:
{
Type_t * L_7 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tE67B037CB4024E301EF5FF99A76C04AEAD465E24_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = ConvertUtils_GetTypeCode_m8C63961A39C296357D69629F88E06AE03089CDDE(L_7, /*hidden argument*/NULL);
V_1 = L_8;
int32_t L_9 = V_1;
switch (L_9)
{
case 0:
{
goto IL_00d8;
}
case 1:
{
goto IL_00d8;
}
case 2:
{
goto IL_00e5;
}
case 3:
{
goto IL_00f9;
}
case 4:
{
goto IL_00e1;
}
case 5:
{
goto IL_00f9;
}
case 6:
{
goto IL_00e9;
}
case 7:
{
goto IL_00f9;
}
case 8:
{
goto IL_00e9;
}
case 9:
{
goto IL_00f9;
}
case 10:
{
goto IL_00e9;
}
case 11:
{
goto IL_00f9;
}
case 12:
{
goto IL_00e9;
}
case 13:
{
goto IL_00f9;
}
case 14:
{
goto IL_00e9;
}
case 15:
{
goto IL_00f9;
}
case 16:
{
goto IL_00e9;
}
case 17:
{
goto IL_00f9;
}
case 18:
{
goto IL_00e9;
}
case 19:
{
goto IL_00f9;
}
case 20:
{
goto IL_00e9;
}
case 21:
{
goto IL_00f9;
}
case 22:
{
goto IL_00ed;
}
case 23:
{
goto IL_00f9;
}
case 24:
{
goto IL_00ed;
}
case 25:
{
goto IL_00f9;
}
case 26:
{
goto IL_00f1;
}
case 27:
{
goto IL_00f9;
}
case 28:
{
goto IL_00f1;
}
case 29:
{
goto IL_00f9;
}
case 30:
{
goto IL_00ed;
}
case 31:
{
goto IL_00f9;
}
case 32:
{
goto IL_00f5;
}
case 33:
{
goto IL_00f9;
}
case 34:
{
goto IL_00f5;
}
case 35:
{
goto IL_00f9;
}
case 36:
{
goto IL_00e9;
}
case 37:
{
goto IL_00f9;
}
case 38:
{
goto IL_00f5;
}
case 39:
{
goto IL_00f5;
}
case 40:
{
goto IL_00f5;
}
case 41:
{
goto IL_00dc;
}
}
}
{
goto IL_00f9;
}
IL_00d8:
{
int32_t L_10 = V_0;
return (int32_t)(((int32_t)((int32_t)L_10|(int32_t)1)));
}
IL_00dc:
{
int32_t L_11 = V_0;
return (int32_t)(((int32_t)((int32_t)L_11|(int32_t)((int32_t)64))));
}
IL_00e1:
{
int32_t L_12 = V_0;
return (int32_t)(((int32_t)((int32_t)L_12|(int32_t)8)));
}
IL_00e5:
{
int32_t L_13 = V_0;
return (int32_t)(((int32_t)((int32_t)L_13|(int32_t)1)));
}
IL_00e9:
{
int32_t L_14 = V_0;
return (int32_t)(((int32_t)((int32_t)L_14|(int32_t)4)));
}
IL_00ed:
{
int32_t L_15 = V_0;
return (int32_t)(((int32_t)((int32_t)L_15|(int32_t)2)));
}
IL_00f1:
{
int32_t L_16 = V_0;
return (int32_t)(((int32_t)((int32_t)L_16|(int32_t)1)));
}
IL_00f5:
{
int32_t L_17 = V_0;
return (int32_t)(((int32_t)((int32_t)L_17|(int32_t)1)));
}
IL_00f9:
{
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_18;
L_18 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
int32_t L_19 = V_1;
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PrimitiveTypeCode_tA1245D8181181974698A4A3580EBFB359C077562_il2cpp_TypeInfo_var)), &L_20);
Type_t * L_22 = ___type0;
String_t* L_23;
L_23 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8070F9A18AEE653E353F430FE2A2533C696CEA8B)), L_18, L_21, L_22, /*hidden argument*/NULL);
JsonException_tA0851478052E710490C73E995BE27E80545D03F2 * L_24 = (JsonException_tA0851478052E710490C73E995BE27E80545D03F2 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var)));
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSchemaGenerator_GetJsonSchemaType_m218797C2A4903C28A40C17AD3790079D6F3235B7_RuntimeMethod_var)));
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaGenerator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaGenerator__ctor_m5BB565422EB705D2C78703D57154259C8D9A10D0 (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mB907091DD72A6D2506461A16B86CDF4F2585DFF7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA * L_0 = (List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA *)il2cpp_codegen_object_new(List_1_t6BB95E2D8FE9CBD96FE97DDFE87B27951347A9DA_il2cpp_TypeInfo_var);
List_1__ctor_mB907091DD72A6D2506461A16B86CDF4F2585DFF7(L_0, /*hidden argument*/List_1__ctor_mB907091DD72A6D2506461A16B86CDF4F2585DFF7_RuntimeMethod_var);
__this->set__stack_3(L_0);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__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.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Required()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_Required_mF03089412305B3532BA80CC5219B59195E2697D2 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CRequiredU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Required(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Required_m92F174CDF2FB140E199A8457E3EDE0F79DC234B6 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CRequiredU3Ek__BackingField_0(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaModel_get_Type_m32832C2841F9440C9C2BE0D87CBCFE762F9D5F2F (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CTypeU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Type(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Type_mC504800F33CD42CA79713500F55355019411F06C (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CTypeU3Ek__BackingField_1(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MinimumLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MinimumLength_m202E68CC63F66C9CA0B73E6A71F05FC2C1D70E6E (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumLengthU3Ek__BackingField_2();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MinimumLength(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MinimumLength_m52817184992805085DB188C2DF6EB1D9E041A50D (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumLengthU3Ek__BackingField_2(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MaximumLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MaximumLength_m968FFB32095E20804F62DBD252157C6ADF9B4ED9 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumLengthU3Ek__BackingField_3();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MaximumLength(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MaximumLength_m09D5904017ABDC6F63F82CC4DC2D681007B42BA5 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumLengthU3Ek__BackingField_3(L_0);
return;
}
}
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_DivisibleBy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_DivisibleBy_m45E02D93EB7D9233ECDE2475C528C6F1C55A4EFC (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CDivisibleByU3Ek__BackingField_4();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_DivisibleBy(System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_DivisibleBy_mB6A2B2DAD1F0081C38CA5AFE2FB85DA6157D39FB (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CDivisibleByU3Ek__BackingField_4(L_0);
return;
}
}
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Minimum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_Minimum_m0FCDCA112003142DEB3C3336FBA380F9C0C916EB (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMinimumU3Ek__BackingField_5();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Minimum(System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Minimum_m61D8105744E980239642E3B75FED8C534FB30798 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMinimumU3Ek__BackingField_5(L_0);
return;
}
}
// System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Maximum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_Maximum_m3D940F342F91C642714D028BC82D4731F1466C4B (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMaximumU3Ek__BackingField_6();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Maximum(System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Maximum_m8A5B9AED658A0F537142DD07E2FDC8C835DB892C (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMaximumU3Ek__BackingField_6(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_ExclusiveMinimum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_ExclusiveMinimum_m82EF76FA0DABD5CA4C8CF6FF4AD4383E6121043E (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CExclusiveMinimumU3Ek__BackingField_7();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_ExclusiveMinimum(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_ExclusiveMinimum_m5896A35FE7E4BE674F207ECA6A2C9CB34E3BEDA8 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CExclusiveMinimumU3Ek__BackingField_7(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_ExclusiveMaximum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_ExclusiveMaximum_m6B69DD931E50E5877C047F42B7CF4AFA7762E9A7 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CExclusiveMaximumU3Ek__BackingField_8();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_ExclusiveMaximum(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_ExclusiveMaximum_m068F19085C41CE67C8BB6070045E6871EFBCE28B (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CExclusiveMaximumU3Ek__BackingField_8(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MinimumItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MinimumItems_m8A06A582F1074DD5D8C7ED87E31155E9F4C89336 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumItemsU3Ek__BackingField_9();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MinimumItems(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MinimumItems_m10F4E8101AB8E3414BC98FFB8E169D75A8F9A6F5 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumItemsU3Ek__BackingField_9(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_MaximumItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MaximumItems_m961B32D79899A718C3FEA6B3A0259D633071783A (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumItemsU3Ek__BackingField_10();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_MaximumItems(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MaximumItems_m91FFFD5C73BF3CA5E3E4061E6527ABDD21126163 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumItemsU3Ek__BackingField_10(L_0);
return;
}
}
// System.Collections.Generic.IList`1<System.String> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Patterns()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Patterns_mCB92BDE936EEAAD0F7D0C8829915FE3EC42FC61A (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPatternsU3Ek__BackingField_11();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Patterns(System.Collections.Generic.IList`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Patterns_m2F8B3925E787F3C987F71EAE0636B5B68F9E4773 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPatternsU3Ek__BackingField_11(L_0);
return;
}
}
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Items()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Items_m8811B5DB2D179477C7E2CB33218E52357AC3D9F9 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CItemsU3Ek__BackingField_12();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Items(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Items_mD5ED8E2F8DB4342F10FD80C17227F2A0DBCC3520 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CItemsU3Ek__BackingField_12(L_0);
return;
}
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Properties_m07BFFEDE48F889117ED2A16DF8537134E22509E9 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPropertiesU3Ek__BackingField_13();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Properties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Properties_mE97FFCE6FC266F8351E57498507C826FDE9735FC (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPropertiesU3Ek__BackingField_13(L_0);
return;
}
}
// System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_PatternProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_PatternProperties_mBDE98371110E1294AE26CB046A3C8385908438AA (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPatternPropertiesU3Ek__BackingField_14();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_PatternProperties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_PatternProperties_m0719A65899EDCF4C263ED726E0629E530FB38625 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPatternPropertiesU3Ek__BackingField_14(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_AdditionalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * JsonSchemaModel_get_AdditionalProperties_m888DE46BC1E3C5D240C5ECC0B91E4154AAAD3471 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = __this->get_U3CAdditionalPropertiesU3Ek__BackingField_15();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AdditionalProperties_mB31CE5D6C8F521EC45A6ACBC4F6AC54CB0694D9E (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = ___value0;
__this->set_U3CAdditionalPropertiesU3Ek__BackingField_15(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_AdditionalItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * JsonSchemaModel_get_AdditionalItems_m5D9F34FC0A1D3635BB18FC290CCDDF33B98FDD85 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = __this->get_U3CAdditionalItemsU3Ek__BackingField_16();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AdditionalItems_m97AB0135F89D14888090DF8097307FD102A098B0 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = ___value0;
__this->set_U3CAdditionalItemsU3Ek__BackingField_16(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_PositionalItemsValidation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_PositionalItemsValidation_m093834D8885E82F53F8456B3A123FD50F45F912B (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CPositionalItemsValidationU3Ek__BackingField_17();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_PositionalItemsValidation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_PositionalItemsValidation_m5DB7F044CB0DAE01C46704A3E4CE560D72209C78 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CPositionalItemsValidationU3Ek__BackingField_17(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_AllowAdditionalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_AllowAdditionalProperties_m751F929C7221276837C8271A0AB570BD98AFE5C8 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalPropertiesU3Ek__BackingField_18();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AllowAdditionalProperties(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AllowAdditionalProperties_m401CDC441A5679792AE1D9322A5592EF6D7B3487 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalPropertiesU3Ek__BackingField_18(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_AllowAdditionalItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_AllowAdditionalItems_mBAA10CFC177C760086906738BCABF24402A4E253 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalItemsU3Ek__BackingField_19();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_AllowAdditionalItems(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AllowAdditionalItems_m95ABD84632D3CB43830C18314394D17F76132F27 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalItemsU3Ek__BackingField_19(L_0);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_UniqueItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_UniqueItems_mD95FA018C4C58430516454E670E876D5B352E097 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CUniqueItemsU3Ek__BackingField_20();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_UniqueItems(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_UniqueItems_m3D5704A81698D3DBFF5431D381B1357716EB0F31 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CUniqueItemsU3Ek__BackingField_20(L_0);
return;
}
}
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken> Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Enum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Enum_m694A64197D79CF787EF89B05CFFEEC60C89DF341 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CEnumU3Ek__BackingField_21();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Enum(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Linq.JToken>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Enum_m1A4B041BA72AFD2F92FA5B84299E8FD9D5246DD5 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CEnumU3Ek__BackingField_21(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaType Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::get_Disallow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSchemaModel_get_Disallow_m322DB2D4FF319245AC0D8520D27A6EFC2C02653A (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CDisallowU3Ek__BackingField_22();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::set_Disallow(Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Disallow_mF0560B8F598E2501A0AB20FAB8BB251F8C03C09F (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CDisallowU3Ek__BackingField_22(L_0);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel__ctor_mBF1710C743A09A9A7EC3CDD6099AE288001BC8D5 (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
JsonSchemaModel_set_Type_mC504800F33CD42CA79713500F55355019411F06C_inline(__this, ((int32_t)127), /*hidden argument*/NULL);
JsonSchemaModel_set_AllowAdditionalProperties_m401CDC441A5679792AE1D9322A5592EF6D7B3487_inline(__this, (bool)1, /*hidden argument*/NULL);
JsonSchemaModel_set_AllowAdditionalItems_m95ABD84632D3CB43830C18314394D17F76132F27_inline(__this, (bool)1, /*hidden argument*/NULL);
JsonSchemaModel_set_Required_m92F174CDF2FB140E199A8457E3EDE0F79DC234B6_inline(__this, (bool)0, /*hidden argument*/NULL);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::Create(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * JsonSchemaModel_Create_mCACD7004DC15D7C0141491652F68BB347F0F22A7 (RuntimeObject* ___schemata0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * V_0 = NULL;
RuntimeObject* V_1 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC *)il2cpp_codegen_object_new(JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC_il2cpp_TypeInfo_var);
JsonSchemaModel__ctor_mBF1710C743A09A9A7EC3CDD6099AE288001BC8D5(L_0, /*hidden argument*/NULL);
V_0 = L_0;
RuntimeObject* L_1 = ___schemata0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::GetEnumerator() */, IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var, L_1);
V_1 = L_2;
}
IL_000d:
try
{// begin try (depth: 1)
{
goto IL_001d;
}
IL_000f:
{
RuntimeObject* L_3 = V_1;
NullCheck(L_3);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_4;
L_4 = InterfaceFuncInvoker0< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Current() */, IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var, L_3);
V_2 = L_4;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_5 = V_0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_6 = V_2;
JsonSchemaModel_Combine_m9E8C23CEAFA7468B77165462DD8F13072664CF7A(L_5, L_6, /*hidden argument*/NULL);
}
IL_001d:
{
RuntimeObject* L_7 = V_1;
NullCheck(L_7);
bool L_8;
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_000f;
}
}
IL_0025:
{
IL2CPP_LEAVE(0x31, FINALLY_0027);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0027;
}
FINALLY_0027:
{// begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0030;
}
}
IL_002a:
{
RuntimeObject* L_10 = V_1;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_10);
}
IL_0030:
{
IL2CPP_END_FINALLY(39)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(39)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x31, IL_0031)
}
IL_0031:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_11 = V_0;
return L_11;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel::Combine(Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModel_Combine_m9E8C23CEAFA7468B77165462DD8F13072664CF7A (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___model0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionUtils_AddDistinct_TisString_t_m3774AD69BE246EEECD735E76055E7AEEB1E215E6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionUtils_AddRangeDistinct_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mA695752C95842B876955494309517A3CD42F6DBC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 V_0;
memset((&V_0), 0, sizeof(V_0));
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_1;
memset((&V_1), 0, sizeof(V_1));
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B2_0 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B3_1 = NULL;
int32_t G_B5_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B5_1 = NULL;
int32_t G_B4_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B4_1 = NULL;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B6_2 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B8_0 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B7_0 = NULL;
int32_t G_B9_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B9_1 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B11_0 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B10_0 = NULL;
int32_t G_B12_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B12_1 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B14_0 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B13_0 = NULL;
int32_t G_B15_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B15_1 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B17_0 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B16_0 = NULL;
int32_t G_B18_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B18_1 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B20_0 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B19_0 = NULL;
int32_t G_B21_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B21_1 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B23_0 = NULL;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B22_0 = NULL;
int32_t G_B24_0 = 0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * G_B24_1 = NULL;
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_1 = ___model0;
NullCheck(L_1);
bool L_2;
L_2 = JsonSchemaModel_get_Required_mF03089412305B3532BA80CC5219B59195E2697D2_inline(L_1, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_2)
{
G_B2_0 = L_0;
goto IL_0019;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_3 = ___schema1;
NullCheck(L_3);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_4;
L_4 = JsonSchema_get_Required_mE10F257E5A89313CF4111615DBFCF8638B3E58D7_inline(L_3, /*hidden argument*/NULL);
V_0 = L_4;
bool L_5;
L_5 = Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
G_B3_0 = ((int32_t)(L_5));
G_B3_1 = G_B1_0;
goto IL_001a;
}
IL_0019:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_001a:
{
NullCheck(G_B3_1);
JsonSchemaModel_set_Required_m92F174CDF2FB140E199A8457E3EDE0F79DC234B6_inline(G_B3_1, (bool)G_B3_0, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_6 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_7 = ___model0;
NullCheck(L_7);
int32_t L_8;
L_8 = JsonSchemaModel_get_Type_m32832C2841F9440C9C2BE0D87CBCFE762F9D5F2F_inline(L_7, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9 = ___schema1;
NullCheck(L_9);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_10;
L_10 = JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline(L_9, /*hidden argument*/NULL);
V_1 = L_10;
bool L_11;
L_11 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
G_B4_0 = L_8;
G_B4_1 = L_6;
if (L_11)
{
G_B5_0 = L_8;
G_B5_1 = L_6;
goto IL_003a;
}
}
{
G_B6_0 = ((int32_t)127);
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
goto IL_0041;
}
IL_003a:
{
int32_t L_12;
L_12 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
G_B6_0 = ((int32_t)(L_12));
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
}
IL_0041:
{
NullCheck(G_B6_2);
JsonSchemaModel_set_Type_mC504800F33CD42CA79713500F55355019411F06C_inline(G_B6_2, ((int32_t)((int32_t)G_B6_1&(int32_t)G_B6_0)), /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_13 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_14 = ___model0;
NullCheck(L_14);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_15;
L_15 = JsonSchemaModel_get_MinimumLength_m202E68CC63F66C9CA0B73E6A71F05FC2C1D70E6E_inline(L_14, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_16 = ___schema1;
NullCheck(L_16);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_17;
L_17 = JsonSchema_get_MinimumLength_m1287BFA7D47F2FEF859181B2F39F8C4E8DFC28D9_inline(L_16, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_18;
L_18 = MathUtilities_Max_mAA5A370399D9532965AB6CB4429582B31650719C(L_15, L_17, /*hidden argument*/NULL);
NullCheck(L_13);
JsonSchemaModel_set_MinimumLength_m52817184992805085DB188C2DF6EB1D9E041A50D_inline(L_13, L_18, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_19 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_20 = ___model0;
NullCheck(L_20);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_21;
L_21 = JsonSchemaModel_get_MaximumLength_m968FFB32095E20804F62DBD252157C6ADF9B4ED9_inline(L_20, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_22 = ___schema1;
NullCheck(L_22);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_23;
L_23 = JsonSchema_get_MaximumLength_m0DDE88D8E215CAC7DFF8483833E2FFA54B9065BD_inline(L_22, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_24;
L_24 = MathUtilities_Min_mB3FE480C333D4BAA6935D228C8C191DAF02C72E2(L_21, L_23, /*hidden argument*/NULL);
NullCheck(L_19);
JsonSchemaModel_set_MaximumLength_m09D5904017ABDC6F63F82CC4DC2D681007B42BA5_inline(L_19, L_24, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_25 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_26 = ___model0;
NullCheck(L_26);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_27;
L_27 = JsonSchemaModel_get_DivisibleBy_m45E02D93EB7D9233ECDE2475C528C6F1C55A4EFC_inline(L_26, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_28 = ___schema1;
NullCheck(L_28);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_29;
L_29 = JsonSchema_get_DivisibleBy_m56C5137F847D9E9D752762F25289F4F4A68B459E_inline(L_28, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_30;
L_30 = MathUtilities_Max_m534362FF4C0B3A76F4F99C50824D9F66E5A10EC0(L_27, L_29, /*hidden argument*/NULL);
NullCheck(L_25);
JsonSchemaModel_set_DivisibleBy_mB6A2B2DAD1F0081C38CA5AFE2FB85DA6157D39FB_inline(L_25, L_30, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_31 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_32 = ___model0;
NullCheck(L_32);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_33;
L_33 = JsonSchemaModel_get_Minimum_m0FCDCA112003142DEB3C3336FBA380F9C0C916EB_inline(L_32, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_34 = ___schema1;
NullCheck(L_34);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_35;
L_35 = JsonSchema_get_Minimum_m2F769905CBCB189A8F9ADEEA3527F1DE7B5536BA_inline(L_34, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_36;
L_36 = MathUtilities_Max_m534362FF4C0B3A76F4F99C50824D9F66E5A10EC0(L_33, L_35, /*hidden argument*/NULL);
NullCheck(L_31);
JsonSchemaModel_set_Minimum_m61D8105744E980239642E3B75FED8C534FB30798_inline(L_31, L_36, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_37 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_38 = ___model0;
NullCheck(L_38);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_39;
L_39 = JsonSchemaModel_get_Maximum_m3D940F342F91C642714D028BC82D4731F1466C4B_inline(L_38, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_40 = ___schema1;
NullCheck(L_40);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_41;
L_41 = JsonSchema_get_Maximum_mD2018496516B7337DC72B09292EA403363C1B7D8_inline(L_40, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_42;
L_42 = MathUtilities_Max_m534362FF4C0B3A76F4F99C50824D9F66E5A10EC0(L_39, L_41, /*hidden argument*/NULL);
NullCheck(L_37);
JsonSchemaModel_set_Maximum_m8A5B9AED658A0F537142DD07E2FDC8C835DB892C_inline(L_37, L_42, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_43 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_44 = ___model0;
NullCheck(L_44);
bool L_45;
L_45 = JsonSchemaModel_get_ExclusiveMinimum_m82EF76FA0DABD5CA4C8CF6FF4AD4383E6121043E_inline(L_44, /*hidden argument*/NULL);
G_B7_0 = L_43;
if (L_45)
{
G_B8_0 = L_43;
goto IL_00d3;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_46 = ___schema1;
NullCheck(L_46);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_47;
L_47 = JsonSchema_get_ExclusiveMinimum_m6ACB2FE8EA54329929EA483E564258C9129BEB7F_inline(L_46, /*hidden argument*/NULL);
V_0 = L_47;
bool L_48;
L_48 = Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
G_B9_0 = ((int32_t)(L_48));
G_B9_1 = G_B7_0;
goto IL_00d4;
}
IL_00d3:
{
G_B9_0 = 1;
G_B9_1 = G_B8_0;
}
IL_00d4:
{
NullCheck(G_B9_1);
JsonSchemaModel_set_ExclusiveMinimum_m5896A35FE7E4BE674F207ECA6A2C9CB34E3BEDA8_inline(G_B9_1, (bool)G_B9_0, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_49 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_50 = ___model0;
NullCheck(L_50);
bool L_51;
L_51 = JsonSchemaModel_get_ExclusiveMaximum_m6B69DD931E50E5877C047F42B7CF4AFA7762E9A7_inline(L_50, /*hidden argument*/NULL);
G_B10_0 = L_49;
if (L_51)
{
G_B11_0 = L_49;
goto IL_00f2;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_52 = ___schema1;
NullCheck(L_52);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_53;
L_53 = JsonSchema_get_ExclusiveMaximum_mB67D9A7E1FA8D3F88BE1272425F3D360AF02835A_inline(L_52, /*hidden argument*/NULL);
V_0 = L_53;
bool L_54;
L_54 = Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
G_B12_0 = ((int32_t)(L_54));
G_B12_1 = G_B10_0;
goto IL_00f3;
}
IL_00f2:
{
G_B12_0 = 1;
G_B12_1 = G_B11_0;
}
IL_00f3:
{
NullCheck(G_B12_1);
JsonSchemaModel_set_ExclusiveMaximum_m068F19085C41CE67C8BB6070045E6871EFBCE28B_inline(G_B12_1, (bool)G_B12_0, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_55 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_56 = ___model0;
NullCheck(L_56);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_57;
L_57 = JsonSchemaModel_get_MinimumItems_m8A06A582F1074DD5D8C7ED87E31155E9F4C89336_inline(L_56, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_58 = ___schema1;
NullCheck(L_58);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_59;
L_59 = JsonSchema_get_MinimumItems_m9ED05C6927619F28EFE31874547496920B27B8CF_inline(L_58, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_60;
L_60 = MathUtilities_Max_mAA5A370399D9532965AB6CB4429582B31650719C(L_57, L_59, /*hidden argument*/NULL);
NullCheck(L_55);
JsonSchemaModel_set_MinimumItems_m10F4E8101AB8E3414BC98FFB8E169D75A8F9A6F5_inline(L_55, L_60, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_61 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_62 = ___model0;
NullCheck(L_62);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_63;
L_63 = JsonSchemaModel_get_MaximumItems_m961B32D79899A718C3FEA6B3A0259D633071783A_inline(L_62, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_64 = ___schema1;
NullCheck(L_64);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_65;
L_65 = JsonSchema_get_MaximumItems_mE340B9ECEDD43C9231F5A62579B4648A2D294233_inline(L_64, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_66;
L_66 = MathUtilities_Min_mB3FE480C333D4BAA6935D228C8C191DAF02C72E2(L_63, L_65, /*hidden argument*/NULL);
NullCheck(L_61);
JsonSchemaModel_set_MaximumItems_m91FFFD5C73BF3CA5E3E4061E6527ABDD21126163_inline(L_61, L_66, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_67 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_68 = ___model0;
NullCheck(L_68);
bool L_69;
L_69 = JsonSchemaModel_get_PositionalItemsValidation_m093834D8885E82F53F8456B3A123FD50F45F912B_inline(L_68, /*hidden argument*/NULL);
G_B13_0 = L_67;
if (L_69)
{
G_B14_0 = L_67;
goto IL_0137;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_70 = ___schema1;
NullCheck(L_70);
bool L_71;
L_71 = JsonSchema_get_PositionalItemsValidation_m68D32066FDE9DC6D426AC7FE078DC265E8C02385_inline(L_70, /*hidden argument*/NULL);
G_B15_0 = ((int32_t)(L_71));
G_B15_1 = G_B13_0;
goto IL_0138;
}
IL_0137:
{
G_B15_0 = 1;
G_B15_1 = G_B14_0;
}
IL_0138:
{
NullCheck(G_B15_1);
JsonSchemaModel_set_PositionalItemsValidation_m5DB7F044CB0DAE01C46704A3E4CE560D72209C78_inline(G_B15_1, (bool)G_B15_0, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_72 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_73 = ___model0;
NullCheck(L_73);
bool L_74;
L_74 = JsonSchemaModel_get_AllowAdditionalProperties_m751F929C7221276837C8271A0AB570BD98AFE5C8_inline(L_73, /*hidden argument*/NULL);
G_B16_0 = L_72;
if (!L_74)
{
G_B17_0 = L_72;
goto IL_014e;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_75 = ___schema1;
NullCheck(L_75);
bool L_76;
L_76 = JsonSchema_get_AllowAdditionalProperties_m92CF5DA0D05DF54861368B196E8A314DD6EB05B8_inline(L_75, /*hidden argument*/NULL);
G_B18_0 = ((int32_t)(L_76));
G_B18_1 = G_B16_0;
goto IL_014f;
}
IL_014e:
{
G_B18_0 = 0;
G_B18_1 = G_B17_0;
}
IL_014f:
{
NullCheck(G_B18_1);
JsonSchemaModel_set_AllowAdditionalProperties_m401CDC441A5679792AE1D9322A5592EF6D7B3487_inline(G_B18_1, (bool)G_B18_0, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_77 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_78 = ___model0;
NullCheck(L_78);
bool L_79;
L_79 = JsonSchemaModel_get_AllowAdditionalItems_mBAA10CFC177C760086906738BCABF24402A4E253_inline(L_78, /*hidden argument*/NULL);
G_B19_0 = L_77;
if (!L_79)
{
G_B20_0 = L_77;
goto IL_0165;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_80 = ___schema1;
NullCheck(L_80);
bool L_81;
L_81 = JsonSchema_get_AllowAdditionalItems_m3A60FE808206C2141F6148816F99E68A27E8EF20_inline(L_80, /*hidden argument*/NULL);
G_B21_0 = ((int32_t)(L_81));
G_B21_1 = G_B19_0;
goto IL_0166;
}
IL_0165:
{
G_B21_0 = 0;
G_B21_1 = G_B20_0;
}
IL_0166:
{
NullCheck(G_B21_1);
JsonSchemaModel_set_AllowAdditionalItems_m95ABD84632D3CB43830C18314394D17F76132F27_inline(G_B21_1, (bool)G_B21_0, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_82 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_83 = ___model0;
NullCheck(L_83);
bool L_84;
L_84 = JsonSchemaModel_get_UniqueItems_mD95FA018C4C58430516454E670E876D5B352E097_inline(L_83, /*hidden argument*/NULL);
G_B22_0 = L_82;
if (L_84)
{
G_B23_0 = L_82;
goto IL_017c;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_85 = ___schema1;
NullCheck(L_85);
bool L_86;
L_86 = JsonSchema_get_UniqueItems_m2CA14F211B0E25BCCEABB228D7A7BE0EE79E9579_inline(L_85, /*hidden argument*/NULL);
G_B24_0 = ((int32_t)(L_86));
G_B24_1 = G_B22_0;
goto IL_017d;
}
IL_017c:
{
G_B24_0 = 1;
G_B24_1 = G_B23_0;
}
IL_017d:
{
NullCheck(G_B24_1);
JsonSchemaModel_set_UniqueItems_m3D5704A81698D3DBFF5431D381B1357716EB0F31_inline(G_B24_1, (bool)G_B24_0, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_87 = ___schema1;
NullCheck(L_87);
RuntimeObject* L_88;
L_88 = JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline(L_87, /*hidden argument*/NULL);
if (!L_88)
{
goto IL_01b4;
}
}
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_89 = ___model0;
NullCheck(L_89);
RuntimeObject* L_90;
L_90 = JsonSchemaModel_get_Enum_m694A64197D79CF787EF89B05CFFEEC60C89DF341_inline(L_89, /*hidden argument*/NULL);
if (L_90)
{
goto IL_019d;
}
}
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_91 = ___model0;
List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 * L_92 = (List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902 *)il2cpp_codegen_object_new(List_1_t573679A39FDE8DF9B63D86DE8A3FB3C1FE431902_il2cpp_TypeInfo_var);
List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF(L_92, /*hidden argument*/List_1__ctor_mB4A2C969900527B6775BDFF5CEF2F41F25ABB0DF_RuntimeMethod_var);
NullCheck(L_91);
JsonSchemaModel_set_Enum_m1A4B041BA72AFD2F92FA5B84299E8FD9D5246DD5_inline(L_91, L_92, /*hidden argument*/NULL);
}
IL_019d:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_93 = ___model0;
NullCheck(L_93);
RuntimeObject* L_94;
L_94 = JsonSchemaModel_get_Enum_m694A64197D79CF787EF89B05CFFEEC60C89DF341_inline(L_93, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_95 = ___schema1;
NullCheck(L_95);
RuntimeObject* L_96;
L_96 = JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline(L_95, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
JTokenEqualityComparer_t549EF9E784AC1BE73394B0E666DFC5FFA1619F01 * L_97;
L_97 = JToken_get_EqualityComparer_m1E24B16C04767A32F626387058B832850F9C2E28(/*hidden argument*/NULL);
bool L_98;
L_98 = CollectionUtils_AddRangeDistinct_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mA695752C95842B876955494309517A3CD42F6DBC(L_94, L_96, L_97, /*hidden argument*/CollectionUtils_AddRangeDistinct_TisJToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_mA695752C95842B876955494309517A3CD42F6DBC_RuntimeMethod_var);
}
IL_01b4:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_99 = ___model0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_100 = ___model0;
NullCheck(L_100);
int32_t L_101;
L_101 = JsonSchemaModel_get_Disallow_m322DB2D4FF319245AC0D8520D27A6EFC2C02653A_inline(L_100, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_102 = ___schema1;
NullCheck(L_102);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_103;
L_103 = JsonSchema_get_Disallow_m03B2414DB9D56599AFEB6FD4D32B6A80810E6401_inline(L_102, /*hidden argument*/NULL);
V_1 = L_103;
int32_t L_104;
L_104 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
NullCheck(L_99);
JsonSchemaModel_set_Disallow_mF0560B8F598E2501A0AB20FAB8BB251F8C03C09F_inline(L_99, ((int32_t)((int32_t)L_101|(int32_t)L_104)), /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_105 = ___schema1;
NullCheck(L_105);
String_t* L_106;
L_106 = JsonSchema_get_Pattern_mF1CF5D66E3DB45EB8A5708FAF2AD8EE6305EE283_inline(L_105, /*hidden argument*/NULL);
if (!L_106)
{
goto IL_01fc;
}
}
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_107 = ___model0;
NullCheck(L_107);
RuntimeObject* L_108;
L_108 = JsonSchemaModel_get_Patterns_mCB92BDE936EEAAD0F7D0C8829915FE3EC42FC61A_inline(L_107, /*hidden argument*/NULL);
if (L_108)
{
goto IL_01ea;
}
}
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_109 = ___model0;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_110 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_110, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
NullCheck(L_109);
JsonSchemaModel_set_Patterns_m2F8B3925E787F3C987F71EAE0636B5B68F9E4773_inline(L_109, L_110, /*hidden argument*/NULL);
}
IL_01ea:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_111 = ___model0;
NullCheck(L_111);
RuntimeObject* L_112;
L_112 = JsonSchemaModel_get_Patterns_mCB92BDE936EEAAD0F7D0C8829915FE3EC42FC61A_inline(L_111, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_113 = ___schema1;
NullCheck(L_113);
String_t* L_114;
L_114 = JsonSchema_get_Pattern_mF1CF5D66E3DB45EB8A5708FAF2AD8EE6305EE283_inline(L_113, /*hidden argument*/NULL);
bool L_115;
L_115 = CollectionUtils_AddDistinct_TisString_t_m3774AD69BE246EEECD735E76055E7AEEB1E215E6(L_112, L_114, /*hidden argument*/CollectionUtils_AddDistinct_TisString_t_m3774AD69BE246EEECD735E76055E7AEEB1E215E6_RuntimeMethod_var);
}
IL_01fc:
{
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
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::Build(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * JsonSchemaModelBuilder_Build_m498EAD4B1884947617DACE302735ACB9492A1F99 (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * L_0 = (JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C *)il2cpp_codegen_object_new(JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C_il2cpp_TypeInfo_var);
JsonSchemaNodeCollection__ctor_mBB965152CB3A476A867F1FB881F97EA142A3EDE6(L_0, /*hidden argument*/NULL);
__this->set__nodes_0(L_0);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_1 = ___schema0;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_2;
L_2 = JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C(__this, (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *)NULL, L_1, /*hidden argument*/NULL);
__this->set__node_2(L_2);
Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * L_3 = (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D *)il2cpp_codegen_object_new(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204(L_3, /*hidden argument*/Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204_RuntimeMethod_var);
__this->set__nodeModels_1(L_3);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_4 = __this->get__node_2();
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_5;
L_5 = JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D(__this, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddSchema(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___existingNode0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collection_1_Add_m3A5C023BFE7F7967C248D5C8249EAEF9C202D9BD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyedCollection_2_Contains_m69A8FD8070340A46FC65CF67CAB73C4743694366_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyedCollection_2_get_Item_m542C4F66BC961ACA5A7DF102D52C56BBF4E353B9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_Contains_m6C04C6F8A87787663493D488B88A771E553F5D5C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * G_B10_0 = NULL;
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___existingNode0;
if (!L_0)
{
goto IL_0030;
}
}
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_1 = ___existingNode0;
NullCheck(L_1);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_2;
L_2 = JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline(L_1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_3 = ___schema1;
NullCheck(L_2);
bool L_4;
L_4 = ReadOnlyCollection_1_Contains_m6C04C6F8A87787663493D488B88A771E553F5D5C(L_2, L_3, /*hidden argument*/ReadOnlyCollection_1_Contains_m6C04C6F8A87787663493D488B88A771E553F5D5C_RuntimeMethod_var);
if (!L_4)
{
goto IL_0013;
}
}
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_5 = ___existingNode0;
return L_5;
}
IL_0013:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_6 = ___existingNode0;
NullCheck(L_6);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_7;
L_7 = JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline(L_6, /*hidden argument*/NULL);
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_8 = (JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)SZArrayNew(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var, (uint32_t)1);
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_9 = L_8;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_10 = ___schema1;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)L_10);
RuntimeObject* L_11;
L_11 = Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B(L_7, (RuntimeObject*)(RuntimeObject*)L_9, /*hidden argument*/Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B_RuntimeMethod_var);
String_t* L_12;
L_12 = JsonSchemaNode_GetId_m852E5D69649E7DEA7FF425D103D1033D3299C87F(L_11, /*hidden argument*/NULL);
V_0 = L_12;
goto IL_0040;
}
IL_0030:
{
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_13 = (JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)SZArrayNew(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var, (uint32_t)1);
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_14 = L_13;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_15 = ___schema1;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_15);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)L_15);
String_t* L_16;
L_16 = JsonSchemaNode_GetId_m852E5D69649E7DEA7FF425D103D1033D3299C87F((RuntimeObject*)(RuntimeObject*)L_14, /*hidden argument*/NULL);
V_0 = L_16;
}
IL_0040:
{
JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * L_17 = __this->get__nodes_0();
String_t* L_18 = V_0;
NullCheck(L_17);
bool L_19;
L_19 = KeyedCollection_2_Contains_m69A8FD8070340A46FC65CF67CAB73C4743694366(L_17, L_18, /*hidden argument*/KeyedCollection_2_Contains_m69A8FD8070340A46FC65CF67CAB73C4743694366_RuntimeMethod_var);
if (!L_19)
{
goto IL_005b;
}
}
{
JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * L_20 = __this->get__nodes_0();
String_t* L_21 = V_0;
NullCheck(L_20);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_22;
L_22 = KeyedCollection_2_get_Item_m542C4F66BC961ACA5A7DF102D52C56BBF4E353B9(L_20, L_21, /*hidden argument*/KeyedCollection_2_get_Item_m542C4F66BC961ACA5A7DF102D52C56BBF4E353B9_RuntimeMethod_var);
return L_22;
}
IL_005b:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_23 = ___existingNode0;
if (L_23)
{
goto IL_0066;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_24 = ___schema1;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_25 = (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *)il2cpp_codegen_object_new(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A_il2cpp_TypeInfo_var);
JsonSchemaNode__ctor_m7739A99965CBFA94887E32CC2D43115B160870FF(L_25, L_24, /*hidden argument*/NULL);
G_B10_0 = L_25;
goto IL_006d;
}
IL_0066:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_26 = ___existingNode0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_27 = ___schema1;
NullCheck(L_26);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_28;
L_28 = JsonSchemaNode_Combine_m04AECD5A282E6F91A03B531FB30A35774CC9069A(L_26, L_27, /*hidden argument*/NULL);
G_B10_0 = L_28;
}
IL_006d:
{
V_1 = G_B10_0;
JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * L_29 = __this->get__nodes_0();
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_30 = V_1;
NullCheck(L_29);
Collection_1_Add_m3A5C023BFE7F7967C248D5C8249EAEF9C202D9BD(L_29, L_30, /*hidden argument*/Collection_1_Add_m3A5C023BFE7F7967C248D5C8249EAEF9C202D9BD_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_31 = ___schema1;
NullCheck(L_31);
RuntimeObject* L_32;
L_32 = JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline(L_31, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_33 = V_1;
NullCheck(L_33);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_34;
L_34 = JsonSchemaNode_get_Properties_mCC467D792598C7AC7BCBA25C225B9308EB6857E4_inline(L_33, /*hidden argument*/NULL);
JsonSchemaModelBuilder_AddProperties_m820C04535BDDE60C70422BD4EC469EC0DC342CF7(__this, L_32, L_34, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_35 = ___schema1;
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966_inline(L_35, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_37 = V_1;
NullCheck(L_37);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_38;
L_38 = JsonSchemaNode_get_PatternProperties_mB3EA48165E92338BE23988BB313C9845D7962B28_inline(L_37, /*hidden argument*/NULL);
JsonSchemaModelBuilder_AddProperties_m820C04535BDDE60C70422BD4EC469EC0DC342CF7(__this, L_36, L_38, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_39 = ___schema1;
NullCheck(L_39);
RuntimeObject* L_40;
L_40 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_39, /*hidden argument*/NULL);
if (!L_40)
{
goto IL_00d0;
}
}
{
V_2 = 0;
goto IL_00c2;
}
IL_00aa:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_41 = V_1;
int32_t L_42 = V_2;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_43 = ___schema1;
NullCheck(L_43);
RuntimeObject* L_44;
L_44 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_43, /*hidden argument*/NULL);
int32_t L_45 = V_2;
NullCheck(L_44);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_46;
L_46 = InterfaceFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Item(System.Int32) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_44, L_45);
JsonSchemaModelBuilder_AddItem_m6589E3E85C7DB82328B85DD357CFEACBE82F4A3D(__this, L_41, L_42, L_46, /*hidden argument*/NULL);
int32_t L_47 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1));
}
IL_00c2:
{
int32_t L_48 = V_2;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_49 = ___schema1;
NullCheck(L_49);
RuntimeObject* L_50;
L_50 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_49, /*hidden argument*/NULL);
NullCheck(L_50);
int32_t L_51;
L_51 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_50);
if ((((int32_t)L_48) < ((int32_t)L_51)))
{
goto IL_00aa;
}
}
IL_00d0:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_52 = ___schema1;
NullCheck(L_52);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_53;
L_53 = JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline(L_52, /*hidden argument*/NULL);
if (!L_53)
{
goto IL_00e5;
}
}
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_54 = V_1;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_55 = ___schema1;
NullCheck(L_55);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_56;
L_56 = JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline(L_55, /*hidden argument*/NULL);
JsonSchemaModelBuilder_AddAdditionalItems_m9CDEAA7096A4CB3AEC875901B1B5339A02CF5E7F(__this, L_54, L_56, /*hidden argument*/NULL);
}
IL_00e5:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_57 = ___schema1;
NullCheck(L_57);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_58;
L_58 = JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline(L_57, /*hidden argument*/NULL);
if (!L_58)
{
goto IL_00fa;
}
}
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_59 = V_1;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_60 = ___schema1;
NullCheck(L_60);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_61;
L_61 = JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline(L_60, /*hidden argument*/NULL);
JsonSchemaModelBuilder_AddAdditionalProperties_m0EABBA27A80C44B97078A20A75DB0D938A96050A(__this, L_59, L_61, /*hidden argument*/NULL);
}
IL_00fa:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_62 = ___schema1;
NullCheck(L_62);
RuntimeObject* L_63;
L_63 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_0136;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_64 = ___schema1;
NullCheck(L_64);
RuntimeObject* L_65;
L_65 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_64, /*hidden argument*/NULL);
NullCheck(L_65);
RuntimeObject* L_66;
L_66 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::GetEnumerator() */, IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var, L_65);
V_3 = L_66;
}
IL_010e:
try
{// begin try (depth: 1)
{
goto IL_0122;
}
IL_0110:
{
RuntimeObject* L_67 = V_3;
NullCheck(L_67);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_68;
L_68 = InterfaceFuncInvoker0< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Current() */, IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var, L_67);
V_4 = L_68;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_69 = V_1;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_70 = V_4;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_71;
L_71 = JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C(__this, L_69, L_70, /*hidden argument*/NULL);
V_1 = L_71;
}
IL_0122:
{
RuntimeObject* L_72 = V_3;
NullCheck(L_72);
bool L_73;
L_73 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_72);
if (L_73)
{
goto IL_0110;
}
}
IL_012a:
{
IL2CPP_LEAVE(0x136, FINALLY_012c);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_012c;
}
FINALLY_012c:
{// begin finally (depth: 1)
{
RuntimeObject* L_74 = V_3;
if (!L_74)
{
goto IL_0135;
}
}
IL_012f:
{
RuntimeObject* L_75 = V_3;
NullCheck(L_75);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_75);
}
IL_0135:
{
IL2CPP_END_FINALLY(300)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(300)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x136, IL_0136)
}
IL_0136:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_76 = V_1;
return L_76;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddProperties(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>,System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddProperties_m820C04535BDDE60C70422BD4EC469EC0DC342CF7 (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, RuntimeObject* ___source0, RuntimeObject* ___target1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t7DF6899F2BA1397B41A6840049A6007E241BDD6D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9B7286E28DDF27F42FEA121F400EFFC965EC21EB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
RuntimeObject* L_0 = ___source0;
if (!L_0)
{
goto IL_003c;
}
}
{
RuntimeObject* L_1 = ___source0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::GetEnumerator() */, IEnumerable_1_t7DF6899F2BA1397B41A6840049A6007E241BDD6D_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
IL_000a:
try
{// begin try (depth: 1)
{
goto IL_0028;
}
IL_000c:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE L_4;
L_4 = InterfaceFuncInvoker0< KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::get_Current() */, IEnumerator_1_t9B7286E28DDF27F42FEA121F400EFFC965EC21EB_il2cpp_TypeInfo_var, L_3);
V_1 = L_4;
RuntimeObject* L_5 = ___target1;
String_t* L_6;
L_6 = KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7;
L_7 = KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var);
JsonSchemaModelBuilder_AddProperty_m8A24DAF394ED22B20517D68C12ABD2C4D688F25A(__this, L_5, L_6, L_7, /*hidden argument*/NULL);
}
IL_0028:
{
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
bool L_9;
L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_8);
if (L_9)
{
goto IL_000c;
}
}
IL_0030:
{
IL2CPP_LEAVE(0x3C, FINALLY_0032);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0032;
}
FINALLY_0032:
{// begin finally (depth: 1)
{
RuntimeObject* L_10 = V_0;
if (!L_10)
{
goto IL_003b;
}
}
IL_0035:
{
RuntimeObject* L_11 = V_0;
NullCheck(L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_11);
}
IL_003b:
{
IL2CPP_END_FINALLY(50)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(50)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x3C, IL_003c)
}
IL_003c:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddProperty(System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>,System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddProperty_m8A24DAF394ED22B20517D68C12ABD2C4D688F25A (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, RuntimeObject* ___target0, String_t* ___propertyName1, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tFDCEAF6D3EFC758712C1FEFC0B219B668E4EE11B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * V_0 = NULL;
{
RuntimeObject* L_0 = ___target0;
String_t* L_1 = ___propertyName1;
NullCheck(L_0);
bool L_2;
L_2 = InterfaceFuncInvoker2< bool, String_t*, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A ** >::Invoke(7 /* System.Boolean System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::TryGetValue(!0,!1&) */, IDictionary_2_tFDCEAF6D3EFC758712C1FEFC0B219B668E4EE11B_il2cpp_TypeInfo_var, L_0, L_1, (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A **)(&V_0));
RuntimeObject* L_3 = ___target0;
String_t* L_4 = ___propertyName1;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_5 = V_0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_6 = ___schema2;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_7;
L_7 = JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C(__this, L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_3);
InterfaceActionInvoker2< String_t*, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>::set_Item(!0,!1) */, IDictionary_2_tFDCEAF6D3EFC758712C1FEFC0B219B668E4EE11B_il2cpp_TypeInfo_var, L_3, L_4, L_7);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddItem(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,System.Int32,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddItem_m6589E3E85C7DB82328B85DD357CFEACBE82F4A3D (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___parentNode0, int32_t ___index1, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m539B9C5AEFD365A6F584290E6DC600FAD49B42C3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mBA23A4CC4EFCE2EA3D3C22802D824971741EAEFA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mACAD93BE1CBD3BF09E92CFEF97B1416A7286923E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mAE81CE6260AAB19E7B95D2C832B9BB8F1B799A67_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * V_0 = NULL;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * V_1 = NULL;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * G_B3_0 = NULL;
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___parentNode0;
NullCheck(L_0);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_1;
L_1 = JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_mBA23A4CC4EFCE2EA3D3C22802D824971741EAEFA_inline(L_1, /*hidden argument*/List_1_get_Count_mBA23A4CC4EFCE2EA3D3C22802D824971741EAEFA_RuntimeMethod_var);
int32_t L_3 = ___index1;
if ((((int32_t)L_2) > ((int32_t)L_3)))
{
goto IL_0011;
}
}
{
G_B3_0 = ((JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *)(NULL));
goto IL_001d;
}
IL_0011:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_4 = ___parentNode0;
NullCheck(L_4);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_5;
L_5 = JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline(L_4, /*hidden argument*/NULL);
int32_t L_6 = ___index1;
NullCheck(L_5);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_7;
L_7 = List_1_get_Item_mACAD93BE1CBD3BF09E92CFEF97B1416A7286923E_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_mACAD93BE1CBD3BF09E92CFEF97B1416A7286923E_RuntimeMethod_var);
G_B3_0 = L_7;
}
IL_001d:
{
V_0 = G_B3_0;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_8 = V_0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9 = ___schema2;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_10;
L_10 = JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C(__this, L_8, L_9, /*hidden argument*/NULL);
V_1 = L_10;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_11 = ___parentNode0;
NullCheck(L_11);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_12;
L_12 = JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
int32_t L_13;
L_13 = List_1_get_Count_mBA23A4CC4EFCE2EA3D3C22802D824971741EAEFA_inline(L_12, /*hidden argument*/List_1_get_Count_mBA23A4CC4EFCE2EA3D3C22802D824971741EAEFA_RuntimeMethod_var);
int32_t L_14 = ___index1;
if ((((int32_t)L_13) > ((int32_t)L_14)))
{
goto IL_0042;
}
}
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_15 = ___parentNode0;
NullCheck(L_15);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_16;
L_16 = JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline(L_15, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_17 = V_1;
NullCheck(L_16);
List_1_Add_m539B9C5AEFD365A6F584290E6DC600FAD49B42C3(L_16, L_17, /*hidden argument*/List_1_Add_m539B9C5AEFD365A6F584290E6DC600FAD49B42C3_RuntimeMethod_var);
return;
}
IL_0042:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_18 = ___parentNode0;
NullCheck(L_18);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_19;
L_19 = JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline(L_18, /*hidden argument*/NULL);
int32_t L_20 = ___index1;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_21 = V_1;
NullCheck(L_19);
List_1_set_Item_mAE81CE6260AAB19E7B95D2C832B9BB8F1B799A67(L_19, L_20, L_21, /*hidden argument*/List_1_set_Item_mAE81CE6260AAB19E7B95D2C832B9BB8F1B799A67_RuntimeMethod_var);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddAdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddAdditionalProperties_m0EABBA27A80C44B97078A20A75DB0D938A96050A (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___parentNode0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___parentNode0;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_1 = ___parentNode0;
NullCheck(L_1);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_2;
L_2 = JsonSchemaNode_get_AdditionalProperties_m436759B9BEDD56FE5BAF6E1919895E6ACCCCE56D_inline(L_1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_3 = ___schema1;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_4;
L_4 = JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C(__this, L_2, L_3, /*hidden argument*/NULL);
NullCheck(L_0);
JsonSchemaNode_set_AdditionalProperties_mB21AAB51FC3B28A084E07DE82C451EA58F5C5610_inline(L_0, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::AddAdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder_AddAdditionalItems_m9CDEAA7096A4CB3AEC875901B1B5339A02CF5E7F (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___parentNode0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___parentNode0;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_1 = ___parentNode0;
NullCheck(L_1);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_2;
L_2 = JsonSchemaNode_get_AdditionalItems_m0CB14CBA4217FB5A85B1AC8C04DA6683E59EFCCA_inline(L_1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_3 = ___schema1;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_4;
L_4 = JsonSchemaModelBuilder_AddSchema_m1069D872D72F7D0DC5B3BC46DC30BDC73A61414C(__this, L_2, L_3, /*hidden argument*/NULL);
NullCheck(L_0);
JsonSchemaNode_set_AdditionalItems_m991DD15FCBDD85A6E13B201F4220E24D60C11DE0_inline(L_0, L_4, /*hidden argument*/NULL);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::BuildNodeModel(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m225475E4E83E522DD62EED59A3CEE0C3EDB59F00_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m6AC44986777C1BBB268576DA82DD82802C4A85D1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m35EB95EA65469F78AE0E1B7AC7D448D68C4C342B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mC35A51160C074B79577C5DF4E2E623727F6A2323_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m114499EADC9D2B89AD415914552F19A3FFC48F5D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m50EEF239A5C444908DC656A4A19996183F9F3501_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m5D78F7645DF53B1AD2A16931A56F977B70564C44_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m5E2A1AC26FB33B567A1A57433325029C8781EDFE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m5FF8D629A6DD271836E95FE685520918657FBCB1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m7554B4F006BDAC276CE86C6ACD4567757CE3C090_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t69BE548547D2B8FA4957D450B8F03A7319F53F28_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tDD38EE0A7BD9CD204A53723E8AB7269730B7FBCF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m5CE8A5AF744019B78C385AF3FAB11A424D135480_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_mA4A5284294F43CF0779FEC979D057359BF95D83B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m3E62BA9D468CE5F737CF008AE9AF0AAC8146074A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m47ACAF0DE63A171CC0E4B96737540E1F9CDDE594_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * V_0 = NULL;
Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 V_1;
memset((&V_1), 0, sizeof(V_1));
KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 V_2;
memset((&V_2), 0, sizeof(V_2));
KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 V_3;
memset((&V_3), 0, sizeof(V_3));
Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 V_4;
memset((&V_4), 0, sizeof(V_4));
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets;
{
Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * L_0 = __this->get__nodeModels_1();
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_1 = ___node0;
NullCheck(L_0);
bool L_2;
L_2 = Dictionary_2_TryGetValue_m6AC44986777C1BBB268576DA82DD82802C4A85D1(L_0, L_1, (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m6AC44986777C1BBB268576DA82DD82802C4A85D1_RuntimeMethod_var);
if (!L_2)
{
goto IL_0012;
}
}
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_3 = V_0;
return L_3;
}
IL_0012:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_4 = ___node0;
NullCheck(L_4);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_5;
L_5 = JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline(L_4, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_6;
L_6 = JsonSchemaModel_Create_mCACD7004DC15D7C0141491652F68BB347F0F22A7(L_5, /*hidden argument*/NULL);
V_0 = L_6;
Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * L_7 = __this->get__nodeModels_1();
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_8 = ___node0;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_9 = V_0;
NullCheck(L_7);
Dictionary_2_set_Item_mC35A51160C074B79577C5DF4E2E623727F6A2323(L_7, L_8, L_9, /*hidden argument*/Dictionary_2_set_Item_mC35A51160C074B79577C5DF4E2E623727F6A2323_RuntimeMethod_var);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_10 = ___node0;
NullCheck(L_10);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_11;
L_11 = JsonSchemaNode_get_Properties_mCC467D792598C7AC7BCBA25C225B9308EB6857E4_inline(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 L_12;
L_12 = Dictionary_2_GetEnumerator_m225475E4E83E522DD62EED59A3CEE0C3EDB59F00(L_11, /*hidden argument*/Dictionary_2_GetEnumerator_m225475E4E83E522DD62EED59A3CEE0C3EDB59F00_RuntimeMethod_var);
V_1 = L_12;
}
IL_0037:
try
{// begin try (depth: 1)
{
goto IL_0073;
}
IL_0039:
{
KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 L_13;
L_13 = Enumerator_get_Current_m7554B4F006BDAC276CE86C6ACD4567757CE3C090_inline((Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *)(&V_1), /*hidden argument*/Enumerator_get_Current_m7554B4F006BDAC276CE86C6ACD4567757CE3C090_RuntimeMethod_var);
V_2 = L_13;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_14 = V_0;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = JsonSchemaModel_get_Properties_m07BFFEDE48F889117ED2A16DF8537134E22509E9_inline(L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_0054;
}
}
IL_0049:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_16 = V_0;
Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE * L_17 = (Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE *)il2cpp_codegen_object_new(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m35EB95EA65469F78AE0E1B7AC7D448D68C4C342B(L_17, /*hidden argument*/Dictionary_2__ctor_m35EB95EA65469F78AE0E1B7AC7D448D68C4C342B_RuntimeMethod_var);
NullCheck(L_16);
JsonSchemaModel_set_Properties_mE97FFCE6FC266F8351E57498507C826FDE9735FC_inline(L_16, L_17, /*hidden argument*/NULL);
}
IL_0054:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_18 = V_0;
NullCheck(L_18);
RuntimeObject* L_19;
L_19 = JsonSchemaModel_get_Properties_m07BFFEDE48F889117ED2A16DF8537134E22509E9_inline(L_18, /*hidden argument*/NULL);
String_t* L_20;
L_20 = KeyValuePair_2_get_Key_m5CE8A5AF744019B78C385AF3FAB11A424D135480_inline((KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 *)(&V_2), /*hidden argument*/KeyValuePair_2_get_Key_m5CE8A5AF744019B78C385AF3FAB11A424D135480_RuntimeMethod_var);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_21;
L_21 = KeyValuePair_2_get_Value_mA4A5284294F43CF0779FEC979D057359BF95D83B_inline((KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 *)(&V_2), /*hidden argument*/KeyValuePair_2_get_Value_mA4A5284294F43CF0779FEC979D057359BF95D83B_RuntimeMethod_var);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_22;
L_22 = JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D(__this, L_21, /*hidden argument*/NULL);
NullCheck(L_19);
InterfaceActionInvoker2< String_t*, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::set_Item(!0,!1) */, IDictionary_2_tDD38EE0A7BD9CD204A53723E8AB7269730B7FBCF_il2cpp_TypeInfo_var, L_19, L_20, L_22);
}
IL_0073:
{
bool L_23;
L_23 = Enumerator_MoveNext_m5E2A1AC26FB33B567A1A57433325029C8781EDFE((Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m5E2A1AC26FB33B567A1A57433325029C8781EDFE_RuntimeMethod_var);
if (L_23)
{
goto IL_0039;
}
}
IL_007c:
{
IL2CPP_LEAVE(0x8C, FINALLY_007e);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_007e;
}
FINALLY_007e:
{// begin finally (depth: 1)
Enumerator_Dispose_m50EEF239A5C444908DC656A4A19996183F9F3501((Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *)(&V_1), /*hidden argument*/Enumerator_Dispose_m50EEF239A5C444908DC656A4A19996183F9F3501_RuntimeMethod_var);
IL2CPP_END_FINALLY(126)
}// end finally (depth: 1)
IL2CPP_CLEANUP(126)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x8C, IL_008c)
}
IL_008c:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_24 = ___node0;
NullCheck(L_24);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_25;
L_25 = JsonSchemaNode_get_PatternProperties_mB3EA48165E92338BE23988BB313C9845D7962B28_inline(L_24, /*hidden argument*/NULL);
NullCheck(L_25);
Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 L_26;
L_26 = Dictionary_2_GetEnumerator_m225475E4E83E522DD62EED59A3CEE0C3EDB59F00(L_25, /*hidden argument*/Dictionary_2_GetEnumerator_m225475E4E83E522DD62EED59A3CEE0C3EDB59F00_RuntimeMethod_var);
V_1 = L_26;
}
IL_0098:
try
{// begin try (depth: 1)
{
goto IL_00d4;
}
IL_009a:
{
KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 L_27;
L_27 = Enumerator_get_Current_m7554B4F006BDAC276CE86C6ACD4567757CE3C090_inline((Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *)(&V_1), /*hidden argument*/Enumerator_get_Current_m7554B4F006BDAC276CE86C6ACD4567757CE3C090_RuntimeMethod_var);
V_3 = L_27;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_28 = V_0;
NullCheck(L_28);
RuntimeObject* L_29;
L_29 = JsonSchemaModel_get_PatternProperties_mBDE98371110E1294AE26CB046A3C8385908438AA_inline(L_28, /*hidden argument*/NULL);
if (L_29)
{
goto IL_00b5;
}
}
IL_00aa:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_30 = V_0;
Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE * L_31 = (Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE *)il2cpp_codegen_object_new(Dictionary_2_t3A39FB9AF2202344B7779FA55D6A8E1B477C25AE_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m35EB95EA65469F78AE0E1B7AC7D448D68C4C342B(L_31, /*hidden argument*/Dictionary_2__ctor_m35EB95EA65469F78AE0E1B7AC7D448D68C4C342B_RuntimeMethod_var);
NullCheck(L_30);
JsonSchemaModel_set_PatternProperties_m0719A65899EDCF4C263ED726E0629E530FB38625_inline(L_30, L_31, /*hidden argument*/NULL);
}
IL_00b5:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_32 = V_0;
NullCheck(L_32);
RuntimeObject* L_33;
L_33 = JsonSchemaModel_get_PatternProperties_mBDE98371110E1294AE26CB046A3C8385908438AA_inline(L_32, /*hidden argument*/NULL);
String_t* L_34;
L_34 = KeyValuePair_2_get_Key_m5CE8A5AF744019B78C385AF3FAB11A424D135480_inline((KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 *)(&V_3), /*hidden argument*/KeyValuePair_2_get_Key_m5CE8A5AF744019B78C385AF3FAB11A424D135480_RuntimeMethod_var);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_35;
L_35 = KeyValuePair_2_get_Value_mA4A5284294F43CF0779FEC979D057359BF95D83B_inline((KeyValuePair_2_tE964FD4C5A843FF9EBD9A8F0B3B6C52215D6BF77 *)(&V_3), /*hidden argument*/KeyValuePair_2_get_Value_mA4A5284294F43CF0779FEC979D057359BF95D83B_RuntimeMethod_var);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_36;
L_36 = JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D(__this, L_35, /*hidden argument*/NULL);
NullCheck(L_33);
InterfaceActionInvoker2< String_t*, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::set_Item(!0,!1) */, IDictionary_2_tDD38EE0A7BD9CD204A53723E8AB7269730B7FBCF_il2cpp_TypeInfo_var, L_33, L_34, L_36);
}
IL_00d4:
{
bool L_37;
L_37 = Enumerator_MoveNext_m5E2A1AC26FB33B567A1A57433325029C8781EDFE((Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m5E2A1AC26FB33B567A1A57433325029C8781EDFE_RuntimeMethod_var);
if (L_37)
{
goto IL_009a;
}
}
IL_00dd:
{
IL2CPP_LEAVE(0xED, FINALLY_00df);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00df;
}
FINALLY_00df:
{// begin finally (depth: 1)
Enumerator_Dispose_m50EEF239A5C444908DC656A4A19996183F9F3501((Enumerator_tE0DE5F09D09670F9F67E83577374AF3BFD7D2D41 *)(&V_1), /*hidden argument*/Enumerator_Dispose_m50EEF239A5C444908DC656A4A19996183F9F3501_RuntimeMethod_var);
IL2CPP_END_FINALLY(223)
}// end finally (depth: 1)
IL2CPP_CLEANUP(223)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xED, IL_00ed)
}
IL_00ed:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_38 = ___node0;
NullCheck(L_38);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_39;
L_39 = JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline(L_38, /*hidden argument*/NULL);
NullCheck(L_39);
Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 L_40;
L_40 = List_1_GetEnumerator_m3E62BA9D468CE5F737CF008AE9AF0AAC8146074A(L_39, /*hidden argument*/List_1_GetEnumerator_m3E62BA9D468CE5F737CF008AE9AF0AAC8146074A_RuntimeMethod_var);
V_4 = L_40;
}
IL_00fa:
try
{// begin try (depth: 1)
{
goto IL_012b;
}
IL_00fc:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_41;
L_41 = Enumerator_get_Current_m5FF8D629A6DD271836E95FE685520918657FBCB1_inline((Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 *)(&V_4), /*hidden argument*/Enumerator_get_Current_m5FF8D629A6DD271836E95FE685520918657FBCB1_RuntimeMethod_var);
V_5 = L_41;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_42 = V_0;
NullCheck(L_42);
RuntimeObject* L_43;
L_43 = JsonSchemaModel_get_Items_m8811B5DB2D179477C7E2CB33218E52357AC3D9F9_inline(L_42, /*hidden argument*/NULL);
if (L_43)
{
goto IL_0118;
}
}
IL_010d:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_44 = V_0;
List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9 * L_45 = (List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9 *)il2cpp_codegen_object_new(List_1_t36FB429C864BBEEE732594FA82A79598A0E4AAB9_il2cpp_TypeInfo_var);
List_1__ctor_m47ACAF0DE63A171CC0E4B96737540E1F9CDDE594(L_45, /*hidden argument*/List_1__ctor_m47ACAF0DE63A171CC0E4B96737540E1F9CDDE594_RuntimeMethod_var);
NullCheck(L_44);
JsonSchemaModel_set_Items_mD5ED8E2F8DB4342F10FD80C17227F2A0DBCC3520_inline(L_44, L_45, /*hidden argument*/NULL);
}
IL_0118:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_46 = V_0;
NullCheck(L_46);
RuntimeObject* L_47;
L_47 = JsonSchemaModel_get_Items_m8811B5DB2D179477C7E2CB33218E52357AC3D9F9_inline(L_46, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_48 = V_5;
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_49;
L_49 = JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D(__this, L_48, /*hidden argument*/NULL);
NullCheck(L_47);
InterfaceActionInvoker1< JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaModel>::Add(!0) */, ICollection_1_t69BE548547D2B8FA4957D450B8F03A7319F53F28_il2cpp_TypeInfo_var, L_47, L_49);
}
IL_012b:
{
bool L_50;
L_50 = Enumerator_MoveNext_m5D78F7645DF53B1AD2A16931A56F977B70564C44((Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 *)(&V_4), /*hidden argument*/Enumerator_MoveNext_m5D78F7645DF53B1AD2A16931A56F977B70564C44_RuntimeMethod_var);
if (L_50)
{
goto IL_00fc;
}
}
IL_0134:
{
IL2CPP_LEAVE(0x144, FINALLY_0136);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0136;
}
FINALLY_0136:
{// begin finally (depth: 1)
Enumerator_Dispose_m114499EADC9D2B89AD415914552F19A3FFC48F5D((Enumerator_t721338F4FDF8608E31D252A53F1C46F2154E25E5 *)(&V_4), /*hidden argument*/Enumerator_Dispose_m114499EADC9D2B89AD415914552F19A3FFC48F5D_RuntimeMethod_var);
IL2CPP_END_FINALLY(310)
}// end finally (depth: 1)
IL2CPP_CLEANUP(310)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x144, IL_0144)
}
IL_0144:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_51 = ___node0;
NullCheck(L_51);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_52;
L_52 = JsonSchemaNode_get_AdditionalProperties_m436759B9BEDD56FE5BAF6E1919895E6ACCCCE56D_inline(L_51, /*hidden argument*/NULL);
if (!L_52)
{
goto IL_015e;
}
}
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_53 = V_0;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_54 = ___node0;
NullCheck(L_54);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_55;
L_55 = JsonSchemaNode_get_AdditionalProperties_m436759B9BEDD56FE5BAF6E1919895E6ACCCCE56D_inline(L_54, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_56;
L_56 = JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D(__this, L_55, /*hidden argument*/NULL);
NullCheck(L_53);
JsonSchemaModel_set_AdditionalProperties_mB31CE5D6C8F521EC45A6ACBC4F6AC54CB0694D9E_inline(L_53, L_56, /*hidden argument*/NULL);
}
IL_015e:
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_57 = ___node0;
NullCheck(L_57);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_58;
L_58 = JsonSchemaNode_get_AdditionalItems_m0CB14CBA4217FB5A85B1AC8C04DA6683E59EFCCA_inline(L_57, /*hidden argument*/NULL);
if (!L_58)
{
goto IL_0178;
}
}
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_59 = V_0;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_60 = ___node0;
NullCheck(L_60);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_61;
L_61 = JsonSchemaNode_get_AdditionalItems_m0CB14CBA4217FB5A85B1AC8C04DA6683E59EFCCA_inline(L_60, /*hidden argument*/NULL);
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_62;
L_62 = JsonSchemaModelBuilder_BuildNodeModel_m468FACAE278331CF8D53491D4F6DB2794340A56D(__this, L_61, /*hidden argument*/NULL);
NullCheck(L_59);
JsonSchemaModel_set_AdditionalItems_m97AB0135F89D14888090DF8097307FD102A098B0_inline(L_59, L_62, /*hidden argument*/NULL);
}
IL_0178:
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_63 = V_0;
return L_63;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaModelBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaModelBuilder__ctor_mC6F3F4E59F33AB2667DBBA191F68510D25E2CF8F (JsonSchemaModelBuilder_tE2BDF0AC532FB6C7C95B726B7ACE057D19A8B4E9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * L_0 = (JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C *)il2cpp_codegen_object_new(JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C_il2cpp_TypeInfo_var);
JsonSchemaNodeCollection__ctor_mBB965152CB3A476A867F1FB881F97EA142A3EDE6(L_0, /*hidden argument*/NULL);
__this->set__nodes_0(L_0);
Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D * L_1 = (Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D *)il2cpp_codegen_object_new(Dictionary_2_tBC236CD13A7D8672D989D662AE2CC0FA339FEB2D_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204(L_1, /*hidden argument*/Dictionary_2__ctor_mDF09F7C83ACFE0AF70198CF13D242EE272972204_RuntimeMethod_var);
__this->set__nodeModels_1(L_1);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__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.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaNode_get_Id_m7954D1D84C16EF5C6AF0FC5C6FC3E4728D7B2504 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CIdU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Id_m3F0F26E1F1B1B8DFADE14CDF103F03CF17A0BFFA (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CIdU3Ek__BackingField_0(L_0);
return;
}
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Schemas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_0 = __this->get_U3CSchemasU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Schemas(System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Schemas_mA598D04B0F218FA649BA7FA6509B36AC288932B5 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * ___value0, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_0 = ___value0;
__this->set_U3CSchemasU3Ek__BackingField_1(L_0);
return;
}
}
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * JsonSchemaNode_get_Properties_mCC467D792598C7AC7BCBA25C225B9308EB6857E4 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = __this->get_U3CPropertiesU3Ek__BackingField_2();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Properties(System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Properties_m4BBD7BD878B2D6BF07985CB16983A656B1BFDB63 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___value0, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = ___value0;
__this->set_U3CPropertiesU3Ek__BackingField_2(L_0);
return;
}
}
// System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_PatternProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * JsonSchemaNode_get_PatternProperties_mB3EA48165E92338BE23988BB313C9845D7962B28 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = __this->get_U3CPatternPropertiesU3Ek__BackingField_3();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_PatternProperties(System.Collections.Generic.Dictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode_set_PatternProperties_mAEA4E6261544AEA505D07EA1181854BE129816F2 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___value0, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = ___value0;
__this->set_U3CPatternPropertiesU3Ek__BackingField_3(L_0);
return;
}
}
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode> Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_Items()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_0 = __this->get_U3CItemsU3Ek__BackingField_4();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_Items(System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Items_m68DE3071817FAE70411DD41ADE8C16412F726484 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * ___value0, const RuntimeMethod* method)
{
{
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_0 = ___value0;
__this->set_U3CItemsU3Ek__BackingField_4(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_AdditionalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_get_AdditionalProperties_m436759B9BEDD56FE5BAF6E1919895E6ACCCCE56D (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = __this->get_U3CAdditionalPropertiesU3Ek__BackingField_5();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_AdditionalProperties(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode_set_AdditionalProperties_mB21AAB51FC3B28A084E07DE82C451EA58F5C5610 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___value0;
__this->set_U3CAdditionalPropertiesU3Ek__BackingField_5(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::get_AdditionalItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_get_AdditionalItems_m0CB14CBA4217FB5A85B1AC8C04DA6683E59EFCCA (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = __this->get_U3CAdditionalItemsU3Ek__BackingField_6();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::set_AdditionalItems(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode_set_AdditionalItems_m991DD15FCBDD85A6E13B201F4220E24D60C11DE0 (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___value0;
__this->set_U3CAdditionalItemsU3Ek__BackingField_6(L_0);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::.ctor(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode__ctor_m7739A99965CBFA94887E32CC2D43115B160870FF (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m52CA765FCCA2E48BD97DC24E93C1D625CFF7A4F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE5461E6B9EC16BCA8AC942A0F3AE6B6274CE90DE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_0 = (JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)SZArrayNew(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var, (uint32_t)1);
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_1 = L_0;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2 = ___schema0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)L_2);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_3 = (ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D *)il2cpp_codegen_object_new(ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D_il2cpp_TypeInfo_var);
ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347(L_3, (RuntimeObject*)(RuntimeObject*)L_1, /*hidden argument*/ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347_RuntimeMethod_var);
JsonSchemaNode_set_Schemas_mA598D04B0F218FA649BA7FA6509B36AC288932B5_inline(__this, L_3, /*hidden argument*/NULL);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_4 = (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A *)il2cpp_codegen_object_new(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m52CA765FCCA2E48BD97DC24E93C1D625CFF7A4F8(L_4, /*hidden argument*/Dictionary_2__ctor_m52CA765FCCA2E48BD97DC24E93C1D625CFF7A4F8_RuntimeMethod_var);
JsonSchemaNode_set_Properties_m4BBD7BD878B2D6BF07985CB16983A656B1BFDB63_inline(__this, L_4, /*hidden argument*/NULL);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_5 = (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A *)il2cpp_codegen_object_new(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m52CA765FCCA2E48BD97DC24E93C1D625CFF7A4F8(L_5, /*hidden argument*/Dictionary_2__ctor_m52CA765FCCA2E48BD97DC24E93C1D625CFF7A4F8_RuntimeMethod_var);
JsonSchemaNode_set_PatternProperties_mAEA4E6261544AEA505D07EA1181854BE129816F2_inline(__this, L_5, /*hidden argument*/NULL);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_6 = (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *)il2cpp_codegen_object_new(List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3_il2cpp_TypeInfo_var);
List_1__ctor_mE5461E6B9EC16BCA8AC942A0F3AE6B6274CE90DE(L_6, /*hidden argument*/List_1__ctor_mE5461E6B9EC16BCA8AC942A0F3AE6B6274CE90DE_RuntimeMethod_var);
JsonSchemaNode_set_Items_m68DE3071817FAE70411DD41ADE8C16412F726484_inline(__this, L_6, /*hidden argument*/NULL);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_7;
L_7 = JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline(__this, /*hidden argument*/NULL);
String_t* L_8;
L_8 = JsonSchemaNode_GetId_m852E5D69649E7DEA7FF425D103D1033D3299C87F(L_7, /*hidden argument*/NULL);
JsonSchemaNode_set_Id_m3F0F26E1F1B1B8DFADE14CDF103F03CF17A0BFFA_inline(__this, L_8, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::.ctor(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode,Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNode__ctor_m8B90F187A438BC73A9F3C61B5CA93CB05AB15E9E (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___source0, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m961E3EC8E476FA149BC0EDDD496DAC164064976F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToList_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mE585C55012AF958EF1DB29B42274FED62CE32398_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1BCB824DBA7CA0D9CB62B72D886DE789CF54C108_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___source0;
NullCheck(L_0);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_1;
L_1 = JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline(L_0, /*hidden argument*/NULL);
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_2 = (JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0*)SZArrayNew(JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0_il2cpp_TypeInfo_var, (uint32_t)1);
JsonSchemaU5BU5D_t3C0A70F5413CD3F61E36E202E46C3781625E29E0* L_3 = L_2;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_4 = ___schema1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *)L_4);
RuntimeObject* L_5;
L_5 = Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B(L_1, (RuntimeObject*)(RuntimeObject*)L_3, /*hidden argument*/Enumerable_Union_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mECD8B926CDFA4DCCCBA3D77CF4B236F5BF7B284B_RuntimeMethod_var);
List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * L_6;
L_6 = Enumerable_ToList_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mE585C55012AF958EF1DB29B42274FED62CE32398(L_5, /*hidden argument*/Enumerable_ToList_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_mE585C55012AF958EF1DB29B42274FED62CE32398_RuntimeMethod_var);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_7 = (ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D *)il2cpp_codegen_object_new(ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D_il2cpp_TypeInfo_var);
ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347(L_7, L_6, /*hidden argument*/ReadOnlyCollection_1__ctor_m016BB3E601EFB6839E8A3D8F6538044A4B488347_RuntimeMethod_var);
JsonSchemaNode_set_Schemas_mA598D04B0F218FA649BA7FA6509B36AC288932B5_inline(__this, L_7, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_8 = ___source0;
NullCheck(L_8);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_9;
L_9 = JsonSchemaNode_get_Properties_mCC467D792598C7AC7BCBA25C225B9308EB6857E4_inline(L_8, /*hidden argument*/NULL);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_10 = (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A *)il2cpp_codegen_object_new(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m961E3EC8E476FA149BC0EDDD496DAC164064976F(L_10, L_9, /*hidden argument*/Dictionary_2__ctor_m961E3EC8E476FA149BC0EDDD496DAC164064976F_RuntimeMethod_var);
JsonSchemaNode_set_Properties_m4BBD7BD878B2D6BF07985CB16983A656B1BFDB63_inline(__this, L_10, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_11 = ___source0;
NullCheck(L_11);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_12;
L_12 = JsonSchemaNode_get_PatternProperties_mB3EA48165E92338BE23988BB313C9845D7962B28_inline(L_11, /*hidden argument*/NULL);
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_13 = (Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A *)il2cpp_codegen_object_new(Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m961E3EC8E476FA149BC0EDDD496DAC164064976F(L_13, L_12, /*hidden argument*/Dictionary_2__ctor_m961E3EC8E476FA149BC0EDDD496DAC164064976F_RuntimeMethod_var);
JsonSchemaNode_set_PatternProperties_mAEA4E6261544AEA505D07EA1181854BE129816F2_inline(__this, L_13, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_14 = ___source0;
NullCheck(L_14);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_15;
L_15 = JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline(L_14, /*hidden argument*/NULL);
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_16 = (List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 *)il2cpp_codegen_object_new(List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3_il2cpp_TypeInfo_var);
List_1__ctor_m1BCB824DBA7CA0D9CB62B72D886DE789CF54C108(L_16, L_15, /*hidden argument*/List_1__ctor_m1BCB824DBA7CA0D9CB62B72D886DE789CF54C108_RuntimeMethod_var);
JsonSchemaNode_set_Items_m68DE3071817FAE70411DD41ADE8C16412F726484_inline(__this, L_16, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_17 = ___source0;
NullCheck(L_17);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_18;
L_18 = JsonSchemaNode_get_AdditionalProperties_m436759B9BEDD56FE5BAF6E1919895E6ACCCCE56D_inline(L_17, /*hidden argument*/NULL);
JsonSchemaNode_set_AdditionalProperties_mB21AAB51FC3B28A084E07DE82C451EA58F5C5610_inline(__this, L_18, /*hidden argument*/NULL);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_19 = ___source0;
NullCheck(L_19);
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_20;
L_20 = JsonSchemaNode_get_AdditionalItems_m0CB14CBA4217FB5A85B1AC8C04DA6683E59EFCCA_inline(L_19, /*hidden argument*/NULL);
JsonSchemaNode_set_AdditionalItems_m991DD15FCBDD85A6E13B201F4220E24D60C11DE0_inline(__this, L_20, /*hidden argument*/NULL);
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_21;
L_21 = JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline(__this, /*hidden argument*/NULL);
String_t* L_22;
L_22 = JsonSchemaNode_GetId_m852E5D69649E7DEA7FF425D103D1033D3299C87F(L_21, /*hidden argument*/NULL);
JsonSchemaNode_set_Id_m3F0F26E1F1B1B8DFADE14CDF103F03CF17A0BFFA_inline(__this, L_22, /*hidden argument*/NULL);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::Combine(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_Combine_m04AECD5A282E6F91A03B531FB30A35774CC9069A (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___schema0;
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_1 = (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A *)il2cpp_codegen_object_new(JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A_il2cpp_TypeInfo_var);
JsonSchemaNode__ctor_m8B90F187A438BC73A9F3C61B5CA93CB05AB15E9E(L_1, __this, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode::GetId(System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaNode_GetId_m852E5D69649E7DEA7FF425D103D1033D3299C87F (RuntimeObject* ___schemata0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_OrderBy_TisString_t_TisString_t_m1E85D28DB2DE3ED553500801E1EF8B577D90A196_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Select_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_TisString_t_mC71C0D1B8428E68C1B59EBB91E85DE64B414892F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m22403E6E9EC24A3D8103D29D9D66B5EEEA0AC69E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_mE856C7A5862B47592399BC91363D477EBB21FB8A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CGetIdU3Eb__31_0_m05CC4F7690E0993641F634E11754E1B8340C2E55_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CGetIdU3Eb__31_1_m6D941F36A1B53F413FB526E81EAF9B4415C40578_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0);
s_Il2CppMethodInitialized = true;
}
Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * G_B2_0 = NULL;
RuntimeObject* G_B2_1 = NULL;
String_t* G_B2_2 = NULL;
Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * G_B1_0 = NULL;
RuntimeObject* G_B1_1 = NULL;
String_t* G_B1_2 = NULL;
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * G_B4_0 = NULL;
RuntimeObject* G_B4_1 = NULL;
String_t* G_B4_2 = NULL;
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * G_B3_0 = NULL;
RuntimeObject* G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
{
RuntimeObject* L_0 = ___schemata0;
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var);
Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * L_1 = ((U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var))->get_U3CU3E9__31_0_1();
Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * L_2 = L_1;
G_B1_0 = L_2;
G_B1_1 = L_0;
G_B1_2 = _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0;
if (L_2)
{
G_B2_0 = L_2;
G_B2_1 = L_0;
G_B2_2 = _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0;
goto IL_0025;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var);
U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226 * L_3 = ((U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * L_4 = (Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 *)il2cpp_codegen_object_new(Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419_il2cpp_TypeInfo_var);
Func_2__ctor_mE856C7A5862B47592399BC91363D477EBB21FB8A(L_4, L_3, (intptr_t)((intptr_t)U3CU3Ec_U3CGetIdU3Eb__31_0_m05CC4F7690E0993641F634E11754E1B8340C2E55_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mE856C7A5862B47592399BC91363D477EBB21FB8A_RuntimeMethod_var);
Func_2_t208CA66C70C6C2A2F1A7207A8ACFCF1F23946419 * L_5 = L_4;
((U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var))->set_U3CU3E9__31_0_1(L_5);
G_B2_0 = L_5;
G_B2_1 = G_B1_1;
G_B2_2 = G_B1_2;
}
IL_0025:
{
RuntimeObject* L_6;
L_6 = Enumerable_Select_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_TisString_t_mC71C0D1B8428E68C1B59EBB91E85DE64B414892F(G_B2_1, G_B2_0, /*hidden argument*/Enumerable_Select_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_TisString_t_mC71C0D1B8428E68C1B59EBB91E85DE64B414892F_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var);
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * L_7 = ((U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var))->get_U3CU3E9__31_1_2();
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * L_8 = L_7;
G_B3_0 = L_8;
G_B3_1 = L_6;
G_B3_2 = G_B2_2;
if (L_8)
{
G_B4_0 = L_8;
G_B4_1 = L_6;
G_B4_2 = G_B2_2;
goto IL_0049;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var);
U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226 * L_9 = ((U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * L_10 = (Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A *)il2cpp_codegen_object_new(Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A_il2cpp_TypeInfo_var);
Func_2__ctor_m22403E6E9EC24A3D8103D29D9D66B5EEEA0AC69E(L_10, L_9, (intptr_t)((intptr_t)U3CU3Ec_U3CGetIdU3Eb__31_1_m6D941F36A1B53F413FB526E81EAF9B4415C40578_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m22403E6E9EC24A3D8103D29D9D66B5EEEA0AC69E_RuntimeMethod_var);
Func_2_t5FF29EF71496B6AFA2C5B7FF601B0EFA1C47A41A * L_11 = L_10;
((U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9D337855DC340BDD2F5DCBE8F9AA04C12E976226_il2cpp_TypeInfo_var))->set_U3CU3E9__31_1_2(L_11);
G_B4_0 = L_11;
G_B4_1 = G_B3_1;
G_B4_2 = G_B3_2;
}
IL_0049:
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var);
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_12;
L_12 = StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812_inline(/*hidden argument*/NULL);
RuntimeObject* L_13;
L_13 = Enumerable_OrderBy_TisString_t_TisString_t_m1E85D28DB2DE3ED553500801E1EF8B577D90A196(G_B4_1, G_B4_0, L_12, /*hidden argument*/Enumerable_OrderBy_TisString_t_TisString_t_m1E85D28DB2DE3ED553500801E1EF8B577D90A196_RuntimeMethod_var);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_14;
L_14 = Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90(L_13, /*hidden argument*/Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90_RuntimeMethod_var);
String_t* L_15;
L_15 = String_Join_m8846EB11F0A221BDE237DE041D17764B36065404(G_B4_2, L_14, /*hidden argument*/NULL);
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String Vuforia.Newtonsoft.Json.Schema.JsonSchemaNodeCollection::GetKeyForItem(Vuforia.Newtonsoft.Json.Schema.JsonSchemaNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSchemaNodeCollection_GetKeyForItem_m9EA353FD024624FF523C221913499A8DB8E10426 (JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___item0, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___item0;
NullCheck(L_0);
String_t* L_1;
L_1 = JsonSchemaNode_get_Id_m7954D1D84C16EF5C6AF0FC5C6FC3E4728D7B2504_inline(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaNodeCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaNodeCollection__ctor_mBB965152CB3A476A867F1FB881F97EA142A3EDE6 (JsonSchemaNodeCollection_tAB5C1CC503EC54730CC49CB8C8FCD8D209BFD42C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyedCollection_2__ctor_m48A600BEFDD1FEC28EA581FC3D528B9040B9C50E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
KeyedCollection_2__ctor_m48A600BEFDD1FEC28EA581FC3D528B9040B9C50E(__this, /*hidden argument*/KeyedCollection_2__ctor_m48A600BEFDD1FEC28EA581FC3D528B9040B9C50E_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema> Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::get_LoadedSchemas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CLoadedSchemasU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::set_LoadedSchemas(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaResolver_set_LoadedSchemas_mD18AF47B37CF153EEACBE5612B9A3D5D7A984AB1 (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CLoadedSchemasU3Ek__BackingField_0(L_0);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaResolver__ctor_m36F1987E2C2CE3ABFC4A3BD1014D8FC01CDD1338 (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 * L_0 = (List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92 *)il2cpp_codegen_object_new(List_1_tDFEC884410B44C3F8E57DAC41A6895740DAC4B92_il2cpp_TypeInfo_var);
List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9(L_0, /*hidden argument*/List_1__ctor_m5EDAAA928176FAEBFD8D88550970D4F5FBAB4FF9_RuntimeMethod_var);
JsonSchemaResolver_set_LoadedSchemas_mD18AF47B37CF153EEACBE5612B9A3D5D7A984AB1_inline(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::GetSchema(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaResolver_GetSchema_mB3F725DBC508B4C4B55B55555B9B911826A57A3D (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, String_t* ___reference0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_SingleOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m0BBCBD11C7A5EC18148E37C2748511A9A1998732_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_mD6A40784A3BF1580E589768D2C4549F9AB683B81_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass5_0_U3CGetSchemaU3Eb__0_m73ED2812EAC528A349B004BCF2B0F17F6CF82FB8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass5_0_U3CGetSchemaU3Eb__1_mE63608A4F6798371811763D3B8786F03E14E1F8F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C * V_0 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_1 = NULL;
{
U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C * L_0 = (U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass5_0__ctor_m680F2FFB64E55D378193E365D26216CB46C79196(L_0, /*hidden argument*/NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C * L_1 = V_0;
String_t* L_2 = ___reference0;
NullCheck(L_1);
L_1->set_reference_0(L_2);
RuntimeObject* L_3;
L_3 = JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C * L_4 = V_0;
Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E * L_5 = (Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E *)il2cpp_codegen_object_new(Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E_il2cpp_TypeInfo_var);
Func_2__ctor_mD6A40784A3BF1580E589768D2C4549F9AB683B81(L_5, L_4, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass5_0_U3CGetSchemaU3Eb__0_m73ED2812EAC528A349B004BCF2B0F17F6CF82FB8_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mD6A40784A3BF1580E589768D2C4549F9AB683B81_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_6;
L_6 = Enumerable_SingleOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m0BBCBD11C7A5EC18148E37C2748511A9A1998732(L_3, L_5, /*hidden argument*/Enumerable_SingleOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m0BBCBD11C7A5EC18148E37C2748511A9A1998732_RuntimeMethod_var);
V_1 = L_6;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7 = V_1;
if (L_7)
{
goto IL_0040;
}
}
{
RuntimeObject* L_8;
L_8 = JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline(__this, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass5_0_t46C69F226892515792BDF26C6165AF05E03BCC4C * L_9 = V_0;
Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E * L_10 = (Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E *)il2cpp_codegen_object_new(Func_2_t7D6396B5E9E3FA75605D458177B0EF8510B6E34E_il2cpp_TypeInfo_var);
Func_2__ctor_mD6A40784A3BF1580E589768D2C4549F9AB683B81(L_10, L_9, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass5_0_U3CGetSchemaU3Eb__1_mE63608A4F6798371811763D3B8786F03E14E1F8F_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mD6A40784A3BF1580E589768D2C4549F9AB683B81_RuntimeMethod_var);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_11;
L_11 = Enumerable_SingleOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m0BBCBD11C7A5EC18148E37C2748511A9A1998732(L_8, L_10, /*hidden argument*/Enumerable_SingleOrDefault_TisJsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252_m0BBCBD11C7A5EC18148E37C2748511A9A1998732_RuntimeMethod_var);
V_1 = L_11;
}
IL_0040:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_12 = V_1;
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
#ifdef __clang__
#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 Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::.ctor(Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter__ctor_mFACE064CE425690159991C7AD8CA2DB91EA0459C (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * ___resolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_0 = ___writer0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_1 = ___writer0;
__this->set__writer_0(L_1);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_2 = ___resolver1;
__this->set__resolver_1(L_2);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::ReferenceOrWriteSchema(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382);
s_Il2CppMethodInitialized = true;
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___schema0;
NullCheck(L_0);
String_t* L_1;
L_1 = JsonSchema_get_Id_m6E623D59EC896B0E61E052FFA065D811EB025D4F_inline(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0053;
}
}
{
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_2 = __this->get__resolver_1();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_3 = ___schema0;
NullCheck(L_3);
String_t* L_4;
L_4 = JsonSchema_get_Id_m6E623D59EC896B0E61E052FFA065D811EB025D4F_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5;
L_5 = VirtualFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, String_t* >::Invoke(4 /* Vuforia.Newtonsoft.Json.Schema.JsonSchema Vuforia.Newtonsoft.Json.Schema.JsonSchemaResolver::GetSchema(System.String) */, L_2, L_4);
if (!L_5)
{
goto IL_0053;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_6 = __this->get__writer_0();
NullCheck(L_6);
VirtualActionInvoker0::Invoke(8 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartObject() */, L_6);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_7 = __this->get__writer_0();
NullCheck(L_7);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_7, _stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_8 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9 = ___schema0;
NullCheck(L_9);
String_t* L_10;
L_10 = JsonSchema_get_Id_m6E623D59EC896B0E61E052FFA065D811EB025D4F_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_8);
VirtualActionInvoker1< String_t* >::Invoke(26 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteValue(System.String) */, L_8, L_10);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_11 = __this->get__writer_0();
NullCheck(L_11);
VirtualActionInvoker0::Invoke(9 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndObject() */, L_11);
return;
}
IL_0053:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_12 = ___schema0;
JsonSchemaWriter_WriteSchema_m75B5C88EB60B09DB2BD923D9578AFD3020739373(__this, L_12, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteSchema(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteSchema_m75B5C88EB60B09DB2BD923D9578AFD3020739373 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_m2E2FDF87BAE323A8D7D02657BE1A08C063C62171_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E62D1EEC1CF40EEC3E55E672939594A78C717D9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1686F48CC3AD3DD2B612D62EB88622FEC5B6DD43);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37F0398E165BACF30D3A975D97E35DC44E292611);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral384565B8399EC9A224FB52B7078096010121FA9F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4007673E3F5027936FAA7FB6877DEFB8CE58B9E5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral582CA839E138CD30C2D18043773A48C9AB5FCBBC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6069E2EAB74D6040838072F6667CDE859AFD7BD1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75943AF587C23BD0440669483018246AA68D3FEB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral856E49BD180C1280035E1FD8DB7E1DB6F896F2AA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8640B5B3EA5D79BF55FFD3D0D0AADA17A24415C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99A6C960DEDF9A76FC230C814F2CA93C0CB90972);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99E9F2CC6DAC8AD0A2109D6567FD0302893A6846);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABE5C9736BF7B5384ED17BE19B13E69EAD5C6956);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBDA7FC09DA5C880BF9D6040156838ACE1A02817F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7B4D926EF9532A71B25AEC040A33D52C926425F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD150B768BC4907FDDB1BE9F66C5E43806644D97C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5DF2EF4DE357485D20796D7594D4647A84321E5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8CD2F2DA1948373D6BFA8C44122166BC25E3FC0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB534843932D1025EEE09575458F840C63DC1063);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBEFE00D9826F57DF92563511F63A82DDD84B35E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED62F142374ED70E80FC0B3DD8F56DD83CC6F281);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF062B62A7A557839E147FF7C109EACBC83046E2F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1F2425FA9930B9F296B8CC8059ED97FDF9594FA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___schema0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralEBEFE00D9826F57DF92563511F63A82DDD84B35E, /*hidden argument*/NULL);
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_1 = __this->get__resolver_1();
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline(L_1, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_3 = ___schema0;
NullCheck(L_2);
bool L_4;
L_4 = InterfaceFuncInvoker1< bool, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Contains(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_2, L_3);
if (L_4)
{
goto IL_002f;
}
}
{
JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * L_5 = __this->get__resolver_1();
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline(L_5, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7 = ___schema0;
NullCheck(L_6);
InterfaceActionInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::Add(!0) */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_6, L_7);
}
IL_002f:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_8 = __this->get__writer_0();
NullCheck(L_8);
VirtualActionInvoker0::Invoke(8 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartObject() */, L_8);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_9 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_10 = ___schema0;
NullCheck(L_10);
String_t* L_11;
L_11 = JsonSchema_get_Id_m6E623D59EC896B0E61E052FFA065D811EB025D4F_inline(L_10, /*hidden argument*/NULL);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_9, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, L_11, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_12 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_13 = ___schema0;
NullCheck(L_13);
String_t* L_14;
L_14 = JsonSchema_get_Title_m1BDF2704DA1BE7542A0C7B49733B066E3A78B972_inline(L_13, /*hidden argument*/NULL);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_12, _stringLiteralC7B4D926EF9532A71B25AEC040A33D52C926425F, L_14, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_15 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_16 = ___schema0;
NullCheck(L_16);
String_t* L_17;
L_17 = JsonSchema_get_Description_m1276777F76928EA6DC3D164AC586ADBEE74327F2_inline(L_16, /*hidden argument*/NULL);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_15, _stringLiteralEB534843932D1025EEE09575458F840C63DC1063, L_17, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_18 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_19 = ___schema0;
NullCheck(L_19);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_20;
L_20 = JsonSchema_get_Required_mE10F257E5A89313CF4111615DBFCF8638B3E58D7_inline(L_19, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_21 = L_20;
RuntimeObject * L_22 = Box(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var, &L_21);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_18, _stringLiteral99A6C960DEDF9A76FC230C814F2CA93C0CB90972, L_22, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_23 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_24 = ___schema0;
NullCheck(L_24);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_25;
L_25 = JsonSchema_get_ReadOnly_m1A9ED1B1815C4D294B53DA506798CE902DCF19DD_inline(L_24, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_26 = L_25;
RuntimeObject * L_27 = Box(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var, &L_26);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_23, _stringLiteral2ECA47452988C370602B26B2F5E3A7BF45020DD9, L_27, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_28 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_29 = ___schema0;
NullCheck(L_29);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_30;
L_30 = JsonSchema_get_Hidden_m5A79091FB74532E835A8D3382DEE2B81FE67851B_inline(L_29, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_31 = L_30;
RuntimeObject * L_32 = Box(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var, &L_31);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_28, _stringLiteral0E62D1EEC1CF40EEC3E55E672939594A78C717D9, L_32, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_33 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_34 = ___schema0;
NullCheck(L_34);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_35;
L_35 = JsonSchema_get_Transient_mB0C10CB0B919F5F2259E6371A64A71308CE3CA57_inline(L_34, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_36 = L_35;
RuntimeObject * L_37 = Box(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var, &L_36);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_33, _stringLiteralED62F142374ED70E80FC0B3DD8F56DD83CC6F281, L_37, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_38 = ___schema0;
NullCheck(L_38);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_39;
L_39 = JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline(L_38, /*hidden argument*/NULL);
V_0 = L_39;
bool L_40;
L_40 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (!L_40)
{
goto IL_011e;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_41 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_42 = ___schema0;
NullCheck(L_42);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_43;
L_43 = JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline(L_42, /*hidden argument*/NULL);
V_0 = L_43;
int32_t L_44;
L_44 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
JsonSchemaWriter_WriteType_m934DF63C0E7B69B8289C00E7BFBBEBE9C4A161AB(__this, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, L_41, L_44, /*hidden argument*/NULL);
}
IL_011e:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_45 = ___schema0;
NullCheck(L_45);
bool L_46;
L_46 = JsonSchema_get_AllowAdditionalProperties_m92CF5DA0D05DF54861368B196E8A314DD6EB05B8_inline(L_45, /*hidden argument*/NULL);
if (L_46)
{
goto IL_0149;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_47 = __this->get__writer_0();
NullCheck(L_47);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_47, _stringLiteral99E9F2CC6DAC8AD0A2109D6567FD0302893A6846);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_48 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_49 = ___schema0;
NullCheck(L_49);
bool L_50;
L_50 = JsonSchema_get_AllowAdditionalProperties_m92CF5DA0D05DF54861368B196E8A314DD6EB05B8_inline(L_49, /*hidden argument*/NULL);
NullCheck(L_48);
VirtualActionInvoker1< bool >::Invoke(33 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteValue(System.Boolean) */, L_48, L_50);
goto IL_016d;
}
IL_0149:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_51 = ___schema0;
NullCheck(L_51);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_52;
L_52 = JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline(L_51, /*hidden argument*/NULL);
if (!L_52)
{
goto IL_016d;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_53 = __this->get__writer_0();
NullCheck(L_53);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_53, _stringLiteral99E9F2CC6DAC8AD0A2109D6567FD0302893A6846);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_54 = ___schema0;
NullCheck(L_54);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_55;
L_55 = JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline(L_54, /*hidden argument*/NULL);
JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071(__this, L_55, /*hidden argument*/NULL);
}
IL_016d:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_56 = ___schema0;
NullCheck(L_56);
bool L_57;
L_57 = JsonSchema_get_AllowAdditionalItems_m3A60FE808206C2141F6148816F99E68A27E8EF20_inline(L_56, /*hidden argument*/NULL);
if (L_57)
{
goto IL_0198;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_58 = __this->get__writer_0();
NullCheck(L_58);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_58, _stringLiteral582CA839E138CD30C2D18043773A48C9AB5FCBBC);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_59 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_60 = ___schema0;
NullCheck(L_60);
bool L_61;
L_61 = JsonSchema_get_AllowAdditionalItems_m3A60FE808206C2141F6148816F99E68A27E8EF20_inline(L_60, /*hidden argument*/NULL);
NullCheck(L_59);
VirtualActionInvoker1< bool >::Invoke(33 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteValue(System.Boolean) */, L_59, L_61);
goto IL_01bc;
}
IL_0198:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_62 = ___schema0;
NullCheck(L_62);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_63;
L_63 = JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline(L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_01bc;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_64 = __this->get__writer_0();
NullCheck(L_64);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_64, _stringLiteral582CA839E138CD30C2D18043773A48C9AB5FCBBC);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_65 = ___schema0;
NullCheck(L_65);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_66;
L_66 = JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline(L_65, /*hidden argument*/NULL);
JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071(__this, L_66, /*hidden argument*/NULL);
}
IL_01bc:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_67 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_68 = ___schema0;
NullCheck(L_68);
RuntimeObject* L_69;
L_69 = JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline(L_68, /*hidden argument*/NULL);
JsonSchemaWriter_WriteSchemaDictionaryIfNotNull_m952AFDEE6516CDB459B7F70B8D9B16AC5918E857(__this, L_67, _stringLiteral8640B5B3EA5D79BF55FFD3D0D0AADA17A24415C1, L_69, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_70 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_71 = ___schema0;
NullCheck(L_71);
RuntimeObject* L_72;
L_72 = JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966_inline(L_71, /*hidden argument*/NULL);
JsonSchemaWriter_WriteSchemaDictionaryIfNotNull_m952AFDEE6516CDB459B7F70B8D9B16AC5918E857(__this, L_70, _stringLiteralF1F2425FA9930B9F296B8CC8059ED97FDF9594FA, L_72, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_73 = ___schema0;
JsonSchemaWriter_WriteItems_m359FEE14F7E1005381BCA7FB6D74EFA85EF57854(__this, L_73, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_74 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_75 = ___schema0;
NullCheck(L_75);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_76;
L_76 = JsonSchema_get_Minimum_m2F769905CBCB189A8F9ADEEA3527F1DE7B5536BA_inline(L_75, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_77 = L_76;
RuntimeObject * L_78 = Box(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209_il2cpp_TypeInfo_var, &L_77);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_74, _stringLiteral1686F48CC3AD3DD2B612D62EB88622FEC5B6DD43, L_78, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_79 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_80 = ___schema0;
NullCheck(L_80);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_81;
L_81 = JsonSchema_get_Maximum_mD2018496516B7337DC72B09292EA403363C1B7D8_inline(L_80, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_82 = L_81;
RuntimeObject * L_83 = Box(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209_il2cpp_TypeInfo_var, &L_82);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_79, _stringLiteralBDA7FC09DA5C880BF9D6040156838ACE1A02817F, L_83, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_84 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_85 = ___schema0;
NullCheck(L_85);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_86;
L_86 = JsonSchema_get_ExclusiveMinimum_m6ACB2FE8EA54329929EA483E564258C9129BEB7F_inline(L_85, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_87 = L_86;
RuntimeObject * L_88 = Box(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var, &L_87);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_84, _stringLiteral75943AF587C23BD0440669483018246AA68D3FEB, L_88, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_89 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_90 = ___schema0;
NullCheck(L_90);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_91;
L_91 = JsonSchema_get_ExclusiveMaximum_mB67D9A7E1FA8D3F88BE1272425F3D360AF02835A_inline(L_90, /*hidden argument*/NULL);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_92 = L_91;
RuntimeObject * L_93 = Box(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3_il2cpp_TypeInfo_var, &L_92);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_89, _stringLiteralABE5C9736BF7B5384ED17BE19B13E69EAD5C6956, L_93, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_94 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_95 = ___schema0;
NullCheck(L_95);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_96;
L_96 = JsonSchema_get_MinimumLength_m1287BFA7D47F2FEF859181B2F39F8C4E8DFC28D9_inline(L_95, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_97 = L_96;
RuntimeObject * L_98 = Box(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103_il2cpp_TypeInfo_var, &L_97);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_94, _stringLiteral6069E2EAB74D6040838072F6667CDE859AFD7BD1, L_98, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_99 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_100 = ___schema0;
NullCheck(L_100);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_101;
L_101 = JsonSchema_get_MaximumLength_m0DDE88D8E215CAC7DFF8483833E2FFA54B9065BD_inline(L_100, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_102 = L_101;
RuntimeObject * L_103 = Box(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103_il2cpp_TypeInfo_var, &L_102);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_99, _stringLiteralD150B768BC4907FDDB1BE9F66C5E43806644D97C, L_103, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_104 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_105 = ___schema0;
NullCheck(L_105);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_106;
L_106 = JsonSchema_get_MinimumItems_m9ED05C6927619F28EFE31874547496920B27B8CF_inline(L_105, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_107 = L_106;
RuntimeObject * L_108 = Box(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103_il2cpp_TypeInfo_var, &L_107);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_104, _stringLiteral4007673E3F5027936FAA7FB6877DEFB8CE58B9E5, L_108, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_109 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_110 = ___schema0;
NullCheck(L_110);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_111;
L_111 = JsonSchema_get_MaximumItems_mE340B9ECEDD43C9231F5A62579B4648A2D294233_inline(L_110, /*hidden argument*/NULL);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_112 = L_111;
RuntimeObject * L_113 = Box(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103_il2cpp_TypeInfo_var, &L_112);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_109, _stringLiteralF062B62A7A557839E147FF7C109EACBC83046E2F, L_113, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_114 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_115 = ___schema0;
NullCheck(L_115);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_116;
L_116 = JsonSchema_get_DivisibleBy_m56C5137F847D9E9D752762F25289F4F4A68B459E_inline(L_115, /*hidden argument*/NULL);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_117 = L_116;
RuntimeObject * L_118 = Box(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209_il2cpp_TypeInfo_var, &L_117);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_114, _stringLiteral37F0398E165BACF30D3A975D97E35DC44E292611, L_118, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_119 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_120 = ___schema0;
NullCheck(L_120);
String_t* L_121;
L_121 = JsonSchema_get_Format_m05C805C7441A8BD78FD6AF182E7AE1A354BC472E_inline(L_120, /*hidden argument*/NULL);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_119, _stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA, L_121, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_122 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_123 = ___schema0;
NullCheck(L_123);
String_t* L_124;
L_124 = JsonSchema_get_Pattern_mF1CF5D66E3DB45EB8A5708FAF2AD8EE6305EE283_inline(L_123, /*hidden argument*/NULL);
JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71(__this, L_122, _stringLiteralD8CD2F2DA1948373D6BFA8C44122166BC25E3FC0, L_124, /*hidden argument*/NULL);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_125 = ___schema0;
NullCheck(L_125);
RuntimeObject* L_126;
L_126 = JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline(L_125, /*hidden argument*/NULL);
if (!L_126)
{
goto IL_0381;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_127 = __this->get__writer_0();
NullCheck(L_127);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_127, _stringLiteral384565B8399EC9A224FB52B7078096010121FA9F);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_128 = __this->get__writer_0();
NullCheck(L_128);
VirtualActionInvoker0::Invoke(10 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartArray() */, L_128);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_129 = ___schema0;
NullCheck(L_129);
RuntimeObject* L_130;
L_130 = JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline(L_129, /*hidden argument*/NULL);
NullCheck(L_130);
RuntimeObject* L_131;
L_131 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Linq.JToken>::GetEnumerator() */, IEnumerable_1_t9DFF2C56D7941ACD9B62391A91351E53D4624AC6_il2cpp_TypeInfo_var, L_130);
V_1 = L_131;
}
IL_034a:
try
{// begin try (depth: 1)
{
goto IL_0362;
}
IL_034c:
{
RuntimeObject* L_132 = V_1;
NullCheck(L_132);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_133;
L_133 = InterfaceFuncInvoker0< JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_t9D3E713F8938CF33F827C721FDA0523EECEBC72E_il2cpp_TypeInfo_var, L_132);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_134 = __this->get__writer_0();
JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* L_135;
L_135 = Array_Empty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_m2E2FDF87BAE323A8D7D02657BE1A08C063C62171_inline(/*hidden argument*/Array_Empty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_m2E2FDF87BAE323A8D7D02657BE1A08C063C62171_RuntimeMethod_var);
NullCheck(L_133);
VirtualActionInvoker2< JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D *, JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* >::Invoke(21 /* System.Void Vuforia.Newtonsoft.Json.Linq.JToken::WriteTo(Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.JsonConverter[]) */, L_133, L_134, L_135);
}
IL_0362:
{
RuntimeObject* L_136 = V_1;
NullCheck(L_136);
bool L_137;
L_137 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_136);
if (L_137)
{
goto IL_034c;
}
}
IL_036a:
{
IL2CPP_LEAVE(0x376, FINALLY_036c);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_036c;
}
FINALLY_036c:
{// begin finally (depth: 1)
{
RuntimeObject* L_138 = V_1;
if (!L_138)
{
goto IL_0375;
}
}
IL_036f:
{
RuntimeObject* L_139 = V_1;
NullCheck(L_139);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_139);
}
IL_0375:
{
IL2CPP_END_FINALLY(876)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(876)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x376, IL_0376)
}
IL_0376:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_140 = __this->get__writer_0();
NullCheck(L_140);
VirtualActionInvoker0::Invoke(11 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndArray() */, L_140);
}
IL_0381:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_141 = ___schema0;
NullCheck(L_141);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_142;
L_142 = JsonSchema_get_Default_mD2503533B14AE7DBA53B4991927F0C139F4EAE5B_inline(L_141, /*hidden argument*/NULL);
if (!L_142)
{
goto IL_03af;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_143 = __this->get__writer_0();
NullCheck(L_143);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_143, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_144 = ___schema0;
NullCheck(L_144);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_145;
L_145 = JsonSchema_get_Default_mD2503533B14AE7DBA53B4991927F0C139F4EAE5B_inline(L_144, /*hidden argument*/NULL);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_146 = __this->get__writer_0();
JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* L_147;
L_147 = Array_Empty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_m2E2FDF87BAE323A8D7D02657BE1A08C063C62171_inline(/*hidden argument*/Array_Empty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_m2E2FDF87BAE323A8D7D02657BE1A08C063C62171_RuntimeMethod_var);
NullCheck(L_145);
VirtualActionInvoker2< JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D *, JsonConverterU5BU5D_t961615AA9956D0EFB43ECE00B2E3C2FE80555461* >::Invoke(21 /* System.Void Vuforia.Newtonsoft.Json.Linq.JToken::WriteTo(Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.JsonConverter[]) */, L_145, L_146, L_147);
}
IL_03af:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_148 = ___schema0;
NullCheck(L_148);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_149;
L_149 = JsonSchema_get_Disallow_m03B2414DB9D56599AFEB6FD4D32B6A80810E6401_inline(L_148, /*hidden argument*/NULL);
V_0 = L_149;
bool L_150;
L_150 = Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mE4D423E0AD33A23EFE1F988ABCA9723C771C2784_RuntimeMethod_var);
if (!L_150)
{
goto IL_03de;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_151 = __this->get__writer_0();
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_152 = ___schema0;
NullCheck(L_152);
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_153;
L_153 = JsonSchema_get_Disallow_m03B2414DB9D56599AFEB6FD4D32B6A80810E6401_inline(L_152, /*hidden argument*/NULL);
V_0 = L_153;
int32_t L_154;
L_154 = Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_inline((Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m6DF46FE6869CCB296C9B9AD3DA9A33227EFFD419_RuntimeMethod_var);
JsonSchemaWriter_WriteType_m934DF63C0E7B69B8289C00E7BFBBEBE9C4A161AB(__this, _stringLiteral856E49BD180C1280035E1FD8DB7E1DB6F896F2AA, L_151, L_154, /*hidden argument*/NULL);
}
IL_03de:
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_155 = ___schema0;
NullCheck(L_155);
RuntimeObject* L_156;
L_156 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_155, /*hidden argument*/NULL);
if (!L_156)
{
goto IL_046f;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_157 = ___schema0;
NullCheck(L_157);
RuntimeObject* L_158;
L_158 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_157, /*hidden argument*/NULL);
NullCheck(L_158);
int32_t L_159;
L_159 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_158);
if ((((int32_t)L_159) <= ((int32_t)0)))
{
goto IL_046f;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_160 = __this->get__writer_0();
NullCheck(L_160);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_160, _stringLiteralD5DF2EF4DE357485D20796D7594D4647A84321E5);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_161 = ___schema0;
NullCheck(L_161);
RuntimeObject* L_162;
L_162 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_161, /*hidden argument*/NULL);
NullCheck(L_162);
int32_t L_163;
L_163 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_162);
if ((!(((uint32_t)L_163) == ((uint32_t)1))))
{
goto IL_0429;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_164 = ___schema0;
NullCheck(L_164);
RuntimeObject* L_165;
L_165 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_164, /*hidden argument*/NULL);
NullCheck(L_165);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_166;
L_166 = InterfaceFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Item(System.Int32) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_165, 0);
JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071(__this, L_166, /*hidden argument*/NULL);
goto IL_046f;
}
IL_0429:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_167 = __this->get__writer_0();
NullCheck(L_167);
VirtualActionInvoker0::Invoke(10 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartArray() */, L_167);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_168 = ___schema0;
NullCheck(L_168);
RuntimeObject* L_169;
L_169 = JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline(L_168, /*hidden argument*/NULL);
NullCheck(L_169);
RuntimeObject* L_170;
L_170 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::GetEnumerator() */, IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var, L_169);
V_2 = L_170;
}
IL_0440:
try
{// begin try (depth: 1)
{
goto IL_0450;
}
IL_0442:
{
RuntimeObject* L_171 = V_2;
NullCheck(L_171);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_172;
L_172 = InterfaceFuncInvoker0< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Current() */, IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var, L_171);
V_3 = L_172;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_173 = V_3;
JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071(__this, L_173, /*hidden argument*/NULL);
}
IL_0450:
{
RuntimeObject* L_174 = V_2;
NullCheck(L_174);
bool L_175;
L_175 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_174);
if (L_175)
{
goto IL_0442;
}
}
IL_0458:
{
IL2CPP_LEAVE(0x464, FINALLY_045a);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_045a;
}
FINALLY_045a:
{// begin finally (depth: 1)
{
RuntimeObject* L_176 = V_2;
if (!L_176)
{
goto IL_0463;
}
}
IL_045d:
{
RuntimeObject* L_177 = V_2;
NullCheck(L_177);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_177);
}
IL_0463:
{
IL2CPP_END_FINALLY(1114)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(1114)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x464, IL_0464)
}
IL_0464:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_178 = __this->get__writer_0();
NullCheck(L_178);
VirtualActionInvoker0::Invoke(11 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndArray() */, L_178);
}
IL_046f:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_179 = __this->get__writer_0();
NullCheck(L_179);
VirtualActionInvoker0::Invoke(9 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndObject() */, L_179);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteSchemaDictionaryIfNotNull(Vuforia.Newtonsoft.Json.JsonWriter,System.String,System.Collections.Generic.IDictionary`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteSchemaDictionaryIfNotNull_m952AFDEE6516CDB459B7F70B8D9B16AC5918E857 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, String_t* ___propertyName1, RuntimeObject* ___properties2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t7DF6899F2BA1397B41A6840049A6007E241BDD6D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9B7286E28DDF27F42FEA121F400EFFC965EC21EB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
RuntimeObject* L_0 = ___properties2;
if (!L_0)
{
goto IL_0054;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_1 = ___writer0;
String_t* L_2 = ___propertyName1;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_1, L_2);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_3 = ___writer0;
NullCheck(L_3);
VirtualActionInvoker0::Invoke(8 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartObject() */, L_3);
RuntimeObject* L_4 = ___properties2;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::GetEnumerator() */, IEnumerable_1_t7DF6899F2BA1397B41A6840049A6007E241BDD6D_il2cpp_TypeInfo_var, L_4);
V_0 = L_5;
}
IL_0017:
try
{// begin try (depth: 1)
{
goto IL_003a;
}
IL_0019:
{
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE L_7;
L_7 = InterfaceFuncInvoker0< KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Vuforia.Newtonsoft.Json.Schema.JsonSchema>>::get_Current() */, IEnumerator_1_t9B7286E28DDF27F42FEA121F400EFFC965EC21EB_il2cpp_TypeInfo_var, L_6);
V_1 = L_7;
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_8 = ___writer0;
String_t* L_9;
L_9 = KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Key_mB3B94D7DCC54E3185B264013CE157D5C9B01C664_RuntimeMethod_var);
NullCheck(L_8);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_8, L_9);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_10;
L_10 = KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_inline((KeyValuePair_2_t6423DB70F3785EBFEAB798AE39C9C03283E083FE *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_m2584365EE5256744FEB1A30D6BE1755B9D76019C_RuntimeMethod_var);
JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071(__this, L_10, /*hidden argument*/NULL);
}
IL_003a:
{
RuntimeObject* L_11 = V_0;
NullCheck(L_11);
bool L_12;
L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_11);
if (L_12)
{
goto IL_0019;
}
}
IL_0042:
{
IL2CPP_LEAVE(0x4E, FINALLY_0044);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0044;
}
FINALLY_0044:
{// begin finally (depth: 1)
{
RuntimeObject* L_13 = V_0;
if (!L_13)
{
goto IL_004d;
}
}
IL_0047:
{
RuntimeObject* L_14 = V_0;
NullCheck(L_14);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_14);
}
IL_004d:
{
IL2CPP_END_FINALLY(68)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(68)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x4E, IL_004e)
}
IL_004e:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_15 = ___writer0;
NullCheck(L_15);
VirtualActionInvoker0::Invoke(9 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndObject() */, L_15);
}
IL_0054:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteItems(Vuforia.Newtonsoft.Json.Schema.JsonSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteItems_m359FEE14F7E1005381BCA7FB6D74EFA85EF57854 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___schema0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF300D2310959AF105732D339376803869D9B2B91);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___schema0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0011;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_2 = ___schema0;
NullCheck(L_2);
bool L_3;
L_3 = JsonSchema_get_PositionalItemsValidation_m68D32066FDE9DC6D426AC7FE078DC265E8C02385_inline(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0011;
}
}
{
return;
}
IL_0011:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_4 = __this->get__writer_0();
NullCheck(L_4);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_4, _stringLiteralF300D2310959AF105732D339376803869D9B2B91);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_5 = ___schema0;
NullCheck(L_5);
bool L_6;
L_6 = JsonSchema_get_PositionalItemsValidation_m68D32066FDE9DC6D426AC7FE078DC265E8C02385_inline(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0069;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_7 = ___schema0;
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0052;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_9 = ___schema0;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
int32_t L_11;
L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Count() */, ICollection_1_tA0AC7DDE973A7558FC6F90DC7072BBC6CEEA2F8E_il2cpp_TypeInfo_var, L_10);
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0052;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_12 = ___schema0;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_12, /*hidden argument*/NULL);
NullCheck(L_13);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_14;
L_14 = InterfaceFuncInvoker1< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Item(System.Int32) */, IList_1_tC8337D2B90959E16B0BB67B226DD8CC56140F4FF_il2cpp_TypeInfo_var, L_13, 0);
JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071(__this, L_14, /*hidden argument*/NULL);
return;
}
IL_0052:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_15 = __this->get__writer_0();
NullCheck(L_15);
VirtualActionInvoker0::Invoke(8 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartObject() */, L_15);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_16 = __this->get__writer_0();
NullCheck(L_16);
VirtualActionInvoker0::Invoke(9 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndObject() */, L_16);
return;
}
IL_0069:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_17 = __this->get__writer_0();
NullCheck(L_17);
VirtualActionInvoker0::Invoke(10 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartArray() */, L_17);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_18 = ___schema0;
NullCheck(L_18);
RuntimeObject* L_19;
L_19 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00ac;
}
}
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_20 = ___schema0;
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline(L_20, /*hidden argument*/NULL);
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::GetEnumerator() */, IEnumerable_1_tFA350CEB9242830053612341BCFCFC621CA037F4_il2cpp_TypeInfo_var, L_21);
V_0 = L_22;
}
IL_0088:
try
{// begin try (depth: 1)
{
goto IL_0098;
}
IL_008a:
{
RuntimeObject* L_23 = V_0;
NullCheck(L_23);
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_24;
L_24 = InterfaceFuncInvoker0< JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Schema.JsonSchema>::get_Current() */, IEnumerator_1_t0DB49ACE05830D782AB6CF5F5122D18095BFCED0_il2cpp_TypeInfo_var, L_23);
V_1 = L_24;
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_25 = V_1;
JsonSchemaWriter_ReferenceOrWriteSchema_m604D6DDFA8552CBD5FF35AF43A89D8DBB962A071(__this, L_25, /*hidden argument*/NULL);
}
IL_0098:
{
RuntimeObject* L_26 = V_0;
NullCheck(L_26);
bool L_27;
L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_26);
if (L_27)
{
goto IL_008a;
}
}
IL_00a0:
{
IL2CPP_LEAVE(0xAC, FINALLY_00a2);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a2;
}
FINALLY_00a2:
{// begin finally (depth: 1)
{
RuntimeObject* L_28 = V_0;
if (!L_28)
{
goto IL_00ab;
}
}
IL_00a5:
{
RuntimeObject* L_29 = V_0;
NullCheck(L_29);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_29);
}
IL_00ab:
{
IL2CPP_END_FINALLY(162)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(162)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xAC, IL_00ac)
}
IL_00ac:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_30 = __this->get__writer_0();
NullCheck(L_30);
VirtualActionInvoker0::Invoke(11 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndArray() */, L_30);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WriteType(System.String,Vuforia.Newtonsoft.Json.JsonWriter,Vuforia.Newtonsoft.Json.Schema.JsonSchemaType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WriteType_m934DF63C0E7B69B8289C00E7BFBBEBE9C4A161AB (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, String_t* ___propertyName0, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer1, int32_t ___type2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_GetFlagsValues_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mD413E86AEC861FFCA27E971F22FB10053445D957_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t588E51899B1B70CA035A284B5C5D10D7368A2CF6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToList_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mAB328558697EB651EDF687507ADA9C1410216D85_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Where_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mE1019DF8B412D2CBC104B92C8E809BF9D94266D8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_mB80C1DBAC6EBC6330E49EAEF7FBD08560094C33E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tDE4AD2D87BDB1031ADAF959CD6A1948E3CEE697E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t34982A91F6D7E54FCD0BFCF4A049AF65199FAB92_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tD5F33258EBEFB9C172E4D2490B25EFE8C30ECE84_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tC5D786096068F23888FB8B2F4A5D3CC450893E6D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m7ADF7BEFC5894B7234ED409535024A10BC328C79_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE348095099D15AC7CFA9980F30366D8AC4607951_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CWriteTypeU3Eb__7_0_m416B01C5275A0182E39310794DA494831EE917DD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
int32_t V_2 = 0;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * G_B4_0 = NULL;
RuntimeObject* G_B4_1 = NULL;
Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * G_B3_0 = NULL;
RuntimeObject* G_B3_1 = NULL;
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL);
int32_t L_2 = ___type2;
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(JsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_il2cpp_TypeInfo_var, &L_3);
IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Enum_IsDefined_m70E955627155998B426145940DE105ECEF213B96(L_1, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0026;
}
}
{
List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A * L_6 = (List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A *)il2cpp_codegen_object_new(List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A_il2cpp_TypeInfo_var);
List_1__ctor_mE348095099D15AC7CFA9980F30366D8AC4607951(L_6, /*hidden argument*/List_1__ctor_mE348095099D15AC7CFA9980F30366D8AC4607951_RuntimeMethod_var);
List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A * L_7 = L_6;
int32_t L_8 = ___type2;
NullCheck(L_7);
List_1_Add_m7ADF7BEFC5894B7234ED409535024A10BC328C79(L_7, L_8, /*hidden argument*/List_1_Add_m7ADF7BEFC5894B7234ED409535024A10BC328C79_RuntimeMethod_var);
V_0 = (RuntimeObject*)L_7;
goto IL_0056;
}
IL_0026:
{
int32_t L_9 = ___type2;
IL2CPP_RUNTIME_CLASS_INIT(EnumUtils_t588E51899B1B70CA035A284B5C5D10D7368A2CF6_il2cpp_TypeInfo_var);
RuntimeObject* L_10;
L_10 = EnumUtils_GetFlagsValues_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mD413E86AEC861FFCA27E971F22FB10053445D957(L_9, /*hidden argument*/EnumUtils_GetFlagsValues_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mD413E86AEC861FFCA27E971F22FB10053445D957_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_il2cpp_TypeInfo_var);
Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * L_11 = ((U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_il2cpp_TypeInfo_var))->get_U3CU3E9__7_0_1();
Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * L_12 = L_11;
G_B3_0 = L_12;
G_B3_1 = L_10;
if (L_12)
{
G_B4_0 = L_12;
G_B4_1 = L_10;
goto IL_004b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_il2cpp_TypeInfo_var);
U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3 * L_13 = ((U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * L_14 = (Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 *)il2cpp_codegen_object_new(Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83_il2cpp_TypeInfo_var);
Func_2__ctor_mB80C1DBAC6EBC6330E49EAEF7FBD08560094C33E(L_14, L_13, (intptr_t)((intptr_t)U3CU3Ec_U3CWriteTypeU3Eb__7_0_m416B01C5275A0182E39310794DA494831EE917DD_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mB80C1DBAC6EBC6330E49EAEF7FBD08560094C33E_RuntimeMethod_var);
Func_2_t6FAF5ED95EFE306730309475C5ADC56E1F8A6B83 * L_15 = L_14;
((U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t51C75F5D9FE0C34E73619FED1AA0E79BCEF07CC3_il2cpp_TypeInfo_var))->set_U3CU3E9__7_0_1(L_15);
G_B4_0 = L_15;
G_B4_1 = G_B3_1;
}
IL_004b:
{
RuntimeObject* L_16;
L_16 = Enumerable_Where_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mE1019DF8B412D2CBC104B92C8E809BF9D94266D8(G_B4_1, G_B4_0, /*hidden argument*/Enumerable_Where_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mE1019DF8B412D2CBC104B92C8E809BF9D94266D8_RuntimeMethod_var);
List_1_tBDC72FEC41BAB71929C786E93DE3F5E91A8F2C2A * L_17;
L_17 = Enumerable_ToList_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mAB328558697EB651EDF687507ADA9C1410216D85(L_16, /*hidden argument*/Enumerable_ToList_TisJsonSchemaType_t89F923BA09FA940BF213F37AFFF80A9A90992AC3_mAB328558697EB651EDF687507ADA9C1410216D85_RuntimeMethod_var);
V_0 = (RuntimeObject*)L_17;
}
IL_0056:
{
RuntimeObject* L_18 = V_0;
NullCheck(L_18);
int32_t L_19;
L_19 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::get_Count() */, ICollection_1_tDE4AD2D87BDB1031ADAF959CD6A1948E3CEE697E_il2cpp_TypeInfo_var, L_18);
if (L_19)
{
goto IL_005f;
}
}
{
return;
}
IL_005f:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_20 = ___writer1;
String_t* L_21 = ___propertyName0;
NullCheck(L_20);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_20, L_21);
RuntimeObject* L_22 = V_0;
NullCheck(L_22);
int32_t L_23;
L_23 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::get_Count() */, ICollection_1_tDE4AD2D87BDB1031ADAF959CD6A1948E3CEE697E_il2cpp_TypeInfo_var, L_22);
if ((!(((uint32_t)L_23) == ((uint32_t)1))))
{
goto IL_0082;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_24 = ___writer1;
RuntimeObject* L_25 = V_0;
NullCheck(L_25);
int32_t L_26;
L_26 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::get_Item(System.Int32) */, IList_1_tC5D786096068F23888FB8B2F4A5D3CC450893E6D_il2cpp_TypeInfo_var, L_25, 0);
String_t* L_27;
L_27 = JsonSchemaBuilder_MapType_mA7D35CA58A914F286A6C0CF7B6B8735DAB01C9DE(L_26, /*hidden argument*/NULL);
NullCheck(L_24);
VirtualActionInvoker1< String_t* >::Invoke(26 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteValue(System.String) */, L_24, L_27);
return;
}
IL_0082:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_28 = ___writer1;
NullCheck(L_28);
VirtualActionInvoker0::Invoke(10 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartArray() */, L_28);
RuntimeObject* L_29 = V_0;
NullCheck(L_29);
RuntimeObject* L_30;
L_30 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::GetEnumerator() */, IEnumerable_1_t34982A91F6D7E54FCD0BFCF4A049AF65199FAB92_il2cpp_TypeInfo_var, L_29);
V_1 = L_30;
}
IL_008f:
try
{// begin try (depth: 1)
{
goto IL_00a4;
}
IL_0091:
{
RuntimeObject* L_31 = V_1;
NullCheck(L_31);
int32_t L_32;
L_32 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Schema.JsonSchemaType>::get_Current() */, IEnumerator_1_tD5F33258EBEFB9C172E4D2490B25EFE8C30ECE84_il2cpp_TypeInfo_var, L_31);
V_2 = L_32;
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_33 = ___writer1;
int32_t L_34 = V_2;
String_t* L_35;
L_35 = JsonSchemaBuilder_MapType_mA7D35CA58A914F286A6C0CF7B6B8735DAB01C9DE(L_34, /*hidden argument*/NULL);
NullCheck(L_33);
VirtualActionInvoker1< String_t* >::Invoke(26 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteValue(System.String) */, L_33, L_35);
}
IL_00a4:
{
RuntimeObject* L_36 = V_1;
NullCheck(L_36);
bool L_37;
L_37 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_36);
if (L_37)
{
goto IL_0091;
}
}
IL_00ac:
{
IL2CPP_LEAVE(0xB8, FINALLY_00ae);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00ae;
}
FINALLY_00ae:
{// begin finally (depth: 1)
{
RuntimeObject* L_38 = V_1;
if (!L_38)
{
goto IL_00b7;
}
}
IL_00b1:
{
RuntimeObject* L_39 = V_1;
NullCheck(L_39);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_39);
}
IL_00b7:
{
IL2CPP_END_FINALLY(174)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(174)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xB8, IL_00b8)
}
IL_00b8:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_40 = ___writer1;
NullCheck(L_40);
VirtualActionInvoker0::Invoke(11 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndArray() */, L_40);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Schema.JsonSchemaWriter::WritePropertyIfNotNull(Vuforia.Newtonsoft.Json.JsonWriter,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSchemaWriter_WritePropertyIfNotNull_mD725337C5C6EE8A6380452E55BAE890A21A35E71 (JsonSchemaWriter_tE9B81FDD45558568D2DFBD9EFDB281B72501148A * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___writer0, String_t* ___propertyName1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value2;
if (!L_0)
{
goto IL_0011;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_1 = ___writer0;
String_t* L_2 = ___propertyName1;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_1, L_2);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_3 = ___writer0;
RuntimeObject * L_4 = ___value2;
NullCheck(L_3);
VirtualActionInvoker1< RuntimeObject * >::Invoke(63 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteValue(System.Object) */, L_3, L_4);
}
IL_0011:
{
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 Vuforia.Newtonsoft.Json.JsonSerializationException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializationException__ctor_mE8212B2AB120923C49C0498783D69564DC0AEDDE (JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * __this, const RuntimeMethod* method)
{
{
JsonException__ctor_m99F395B291218EA8C21EBE6B58526FE82243A2E0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializationException__ctor_m9A2E0DC94F19403862C86632D10004E281471CE6 (JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
JsonException__ctor_m4BDEFF1275067475C5A5E0DA58CB5927019377A6(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializationException__ctor_mC338D313B4483D3C8267C0840FDFF532791F94CC (JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
JsonException__ctor_mCC5D66792B1D3941AB7935D2B2E415EBAB2A7FCA(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// Vuforia.Newtonsoft.Json.JsonSerializationException Vuforia.Newtonsoft.Json.JsonSerializationException::Create(Vuforia.Newtonsoft.Json.JsonReader,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___message1, const RuntimeMethod* method)
{
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
String_t* L_1 = ___message1;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_2;
L_2 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_0, L_1, (Exception_t *)NULL, /*hidden argument*/NULL);
return L_2;
}
}
// Vuforia.Newtonsoft.Json.JsonSerializationException Vuforia.Newtonsoft.Json.JsonSerializationException::Create(Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747 (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___message1, Exception_t * ___ex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader0;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_1);
String_t* L_3 = ___message1;
Exception_t * L_4 = ___ex2;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_5;
L_5 = JsonSerializationException_Create_mFFA9AB1922FBE02C1D3436D129B549A4A97718A8(((RuntimeObject*)IsInst((RuntimeObject*)L_0, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// Vuforia.Newtonsoft.Json.JsonSerializationException Vuforia.Newtonsoft.Json.JsonSerializationException::Create(Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * JsonSerializationException_Create_mFFA9AB1922FBE02C1D3436D129B549A4A97718A8 (RuntimeObject* ___lineInfo0, String_t* ___path1, String_t* ___message2, Exception_t * ___ex3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___lineInfo0;
String_t* L_1 = ___path1;
String_t* L_2 = ___message2;
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_3;
L_3 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(L_0, L_1, L_2, /*hidden argument*/NULL);
___message2 = L_3;
String_t* L_4 = ___message2;
Exception_t * L_5 = ___ex3;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_6 = (JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 *)il2cpp_codegen_object_new(JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07_il2cpp_TypeInfo_var);
JsonSerializationException__ctor_mC338D313B4483D3C8267C0840FDFF532791F94CC(L_6, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::add_Error(System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_add_Error_m4FCE4EC0BDCEEF2E4C94CB2180205CA5E338F35B (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * V_0 = NULL;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * V_1 = NULL;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * V_2 = NULL;
{
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_0 = __this->get_Error_30();
V_0 = L_0;
}
IL_0007:
{
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_1 = V_0;
V_1 = L_1;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_2 = V_1;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_3 = ___value0;
Delegate_t * L_4;
L_4 = Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B_il2cpp_TypeInfo_var));
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B ** L_5 = __this->get_address_of_Error_30();
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_6 = V_2;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_7 = V_1;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_8;
L_8 = InterlockedCompareExchangeImpl<EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *>((EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B **)L_5, L_6, L_7);
V_0 = L_8;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_9 = V_0;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *)L_9) == ((RuntimeObject*)(EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::remove_Error(System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_remove_Error_m1FBCBC271C672DF35492158AB3A92F58D9CFB55E (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * V_0 = NULL;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * V_1 = NULL;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * V_2 = NULL;
{
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_0 = __this->get_Error_30();
V_0 = L_0;
}
IL_0007:
{
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_1 = V_0;
V_1 = L_1;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_2 = V_1;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_3 = ___value0;
Delegate_t * L_4;
L_4 = Delegate_Remove_m8B4AD17254118B2904720D55C9B34FB3DCCBD7D4(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B_il2cpp_TypeInfo_var));
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B ** L_5 = __this->get_address_of_Error_30();
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_6 = V_2;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_7 = V_1;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_8;
L_8 = InterlockedCompareExchangeImpl<EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *>((EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B **)L_5, L_6, L_7);
V_0 = L_8;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_9 = V_0;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *)L_9) == ((RuntimeObject*)(EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver Vuforia.Newtonsoft.Json.JsonSerializer::get_ReferenceResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializer_get_ReferenceResolver_mF35CC0812A1718D9C6987835199BEE9ED6929AAC (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = JsonSerializer_GetReferenceResolver_mB1A2477F3CEB4C37E81DF088872CB399056FC78C(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ReferenceResolver(Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_ReferenceResolver_m5AA42BE91BA4767426D948E9030AA6952C9A1D4C (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
if (L_0)
{
goto IL_0013;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral55AF7DBF13B32167FCB3F5C1105702295D67D528)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_ReferenceResolver_m5AA42BE91BA4767426D948E9030AA6952C9A1D4C_RuntimeMethod_var)));
}
IL_0013:
{
RuntimeObject* L_2 = ___value0;
__this->set__referenceResolver_16(L_2);
return;
}
}
// Vuforia.Newtonsoft.Json.SerializationBinder Vuforia.Newtonsoft.Json.JsonSerializer::get_Binder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * JsonSerializer_get_Binder_m5D3F55AF289823093A4DC92C998093A169A1F39C (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * L_0 = __this->get__binder_14();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_Binder(Vuforia.Newtonsoft.Json.SerializationBinder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_Binder_m3B0C07727E69E34BC56F4B10698F9C8C88AC930D (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * ___value0, const RuntimeMethod* method)
{
{
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * L_0 = ___value0;
if (L_0)
{
goto IL_0013;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB56B1A8EB1266CAF5186ABF821BE92341AEB5FAF)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_Binder_m3B0C07727E69E34BC56F4B10698F9C8C88AC930D_RuntimeMethod_var)));
}
IL_0013:
{
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * L_2 = ___value0;
__this->set__binder_14(L_2);
return;
}
}
// Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializer_get_TraceWriter_mCCC8D401C30386FC4C72F0E6C63B0B70FEF600B6 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__traceWriter_12();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_TraceWriter(Vuforia.Newtonsoft.Json.Serialization.ITraceWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_TraceWriter_m48DE04CF5F64165965DF50BB037AE3BD93FDD838 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set__traceWriter_12(L_0);
return;
}
}
// System.Collections.IEqualityComparer Vuforia.Newtonsoft.Json.JsonSerializer::get_EqualityComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializer_get_EqualityComparer_m0922B5907BEEA591EA7665668D7C4E16DBE341AC (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__equalityComparer_13();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_EqualityComparer(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_EqualityComparer_m6A3C7EA49E99188376A7A4B90BB7B353C2D3C853 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set__equalityComparer_13(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.TypeNameHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_TypeNameHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_TypeNameHandling_m08117B08FC30C61B4EB9544BCC0FDA9A4AB92E30 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__typeNameHandling_0();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_TypeNameHandling(Vuforia.Newtonsoft.Json.TypeNameHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_TypeNameHandling_m1027F8E59BA49CBA97562209F5F2068AE85BB4F2 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)4)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_TypeNameHandling_m1027F8E59BA49CBA97562209F5F2068AE85BB4F2_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__typeNameHandling_0(L_3);
return;
}
}
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle Vuforia.Newtonsoft.Json.JsonSerializer::get_TypeNameAssemblyFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_TypeNameAssemblyFormat_mDA3B71C52B55D20450A0154C602CE028D844C120 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__typeNameAssemblyFormat_1();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_TypeNameAssemblyFormat(System.Runtime.Serialization.Formatters.FormatterAssemblyStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_TypeNameAssemblyFormat_m61DEC75BE40A16153C4EEBE11D09A7AB0CCC8AF2 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_TypeNameAssemblyFormat_m61DEC75BE40A16153C4EEBE11D09A7AB0CCC8AF2_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__typeNameAssemblyFormat_1(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.PreserveReferencesHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_PreserveReferencesHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_PreserveReferencesHandling_mEBC2FBA13E350979E5F37B34BBBECD751A6F461B (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__preserveReferencesHandling_2();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_PreserveReferencesHandling(Vuforia.Newtonsoft.Json.PreserveReferencesHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_PreserveReferencesHandling_m4F19115351DDF0AC9C4776275DB66EF4677FBDC7 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)3)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_PreserveReferencesHandling_m4F19115351DDF0AC9C4776275DB66EF4677FBDC7_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__preserveReferencesHandling_2(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.ReferenceLoopHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_ReferenceLoopHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_ReferenceLoopHandling_m7419060EE032B5C189307416604C1A35DA702F09 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__referenceLoopHandling_3();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ReferenceLoopHandling(Vuforia.Newtonsoft.Json.ReferenceLoopHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_ReferenceLoopHandling_mD4FDD7EC96C26CCFD25892D99E276FB11902E4A3 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)2)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_ReferenceLoopHandling_mD4FDD7EC96C26CCFD25892D99E276FB11902E4A3_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__referenceLoopHandling_3(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.MissingMemberHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_MissingMemberHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_MissingMemberHandling_m4A41652C2AACEB7FB60A0EEC7A50DA7EE4968F45 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__missingMemberHandling_4();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_MissingMemberHandling(Vuforia.Newtonsoft.Json.MissingMemberHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_MissingMemberHandling_m78C7E0ECAA241BF7690948BE719225E76235A5F2 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_MissingMemberHandling_m78C7E0ECAA241BF7690948BE719225E76235A5F2_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__missingMemberHandling_4(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.NullValueHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_NullValueHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_NullValueHandling_m17B474DA61488F75D3B8EB38CDB8DAFBA1615E75 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__nullValueHandling_6();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_NullValueHandling(Vuforia.Newtonsoft.Json.NullValueHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_NullValueHandling_mC248AC35999674CF2DEE4138037DE7711C82299B (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_NullValueHandling_mC248AC35999674CF2DEE4138037DE7711C82299B_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__nullValueHandling_6(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.DefaultValueHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_DefaultValueHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_DefaultValueHandling_m18ABD98AE4DD0F69F2BDBF40EBF263EA3A2F44D6 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__defaultValueHandling_7();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_DefaultValueHandling(Vuforia.Newtonsoft.Json.DefaultValueHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_DefaultValueHandling_m61794B3CA51E8F469DA5B66290B9C3A63A0F805D (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)3)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_DefaultValueHandling_m61794B3CA51E8F469DA5B66290B9C3A63A0F805D_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__defaultValueHandling_7(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.ObjectCreationHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_ObjectCreationHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_ObjectCreationHandling_mDA0E08DC62B64DAB122161F284F1808E9EF0779B (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__objectCreationHandling_5();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ObjectCreationHandling(Vuforia.Newtonsoft.Json.ObjectCreationHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_ObjectCreationHandling_m8454C03CA78F7CC57C5B380D247FB57512890275 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)2)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_ObjectCreationHandling_m8454C03CA78F7CC57C5B380D247FB57512890275_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__objectCreationHandling_5(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.ConstructorHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_ConstructorHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_ConstructorHandling_m85DCF5851CE3C87364A8C218E535D57439090F8D (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__constructorHandling_8();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ConstructorHandling(Vuforia.Newtonsoft.Json.ConstructorHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_ConstructorHandling_mEF22C82FDD717F7801516118A0D652E9D9EB78B8 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_ConstructorHandling_mEF22C82FDD717F7801516118A0D652E9D9EB78B8_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__constructorHandling_8(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_MetadataPropertyHandling_mE43AABD8DCEEE7A0A03D4AC88385202E035081A3 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__metadataPropertyHandling_9();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_MetadataPropertyHandling(Vuforia.Newtonsoft.Json.MetadataPropertyHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_MetadataPropertyHandling_m230F22B478E800BD741BA83807C945DC507AD0DB (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)2)))
{
goto IL_0013;
}
}
IL_0008:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_MetadataPropertyHandling_m230F22B478E800BD741BA83807C945DC507AD0DB_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = ___value0;
__this->set__metadataPropertyHandling_9(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.JsonConverterCollection Vuforia.Newtonsoft.Json.JsonSerializer::get_Converters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * JsonSerializer_get_Converters_m3333A62A2376A378CB984743677239ADA058496C (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * L_0 = __this->get__converters_10();
if (L_0)
{
goto IL_0013;
}
}
{
JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * L_1 = (JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D *)il2cpp_codegen_object_new(JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D_il2cpp_TypeInfo_var);
JsonConverterCollection__ctor_m874957895353EBCC634D961B02A70575F1DEF008(L_1, /*hidden argument*/NULL);
__this->set__converters_10(L_1);
}
IL_0013:
{
JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * L_2 = __this->get__converters_10();
return L_2;
}
}
// Vuforia.Newtonsoft.Json.Serialization.IContractResolver Vuforia.Newtonsoft.Json.JsonSerializer::get_ContractResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializer_get_ContractResolver_m4F8208E3B7EFAC6512A9F8E47ACA815FFD45DB8D (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__contractResolver_11();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ContractResolver(Vuforia.Newtonsoft.Json.Serialization.IContractResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_ContractResolver_m105A64E1C43C3A263D7630E9BB1E84A10F386CD9 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B2_0 = NULL;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * G_B2_1 = NULL;
RuntimeObject* G_B1_0 = NULL;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * G_B1_1 = NULL;
{
RuntimeObject* L_0 = ___value0;
RuntimeObject* L_1 = L_0;
G_B1_0 = L_1;
G_B1_1 = __this;
if (L_1)
{
G_B2_0 = L_1;
G_B2_1 = __this;
goto IL_000b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
RuntimeObject* L_2;
L_2 = DefaultContractResolver_get_Instance_m2EB0507D1A30F944E6C96C7E90011748897D59E4_inline(/*hidden argument*/NULL);
G_B2_0 = L_2;
G_B2_1 = G_B1_1;
}
IL_000b:
{
NullCheck(G_B2_1);
G_B2_1->set__contractResolver_11(G_B2_0);
return;
}
}
// System.Runtime.Serialization.StreamingContext Vuforia.Newtonsoft.Json.JsonSerializer::get_Context()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 JsonSerializer_get_Context_m80780E90F92629C31823E6184FEE2C94410D0786 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_0 = __this->get__context_15();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_Context(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_Context_m81AF8BF54E8741B3F048F25ABB76D0E26A13EF23 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___value0, const RuntimeMethod* method)
{
{
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_0 = ___value0;
__this->set__context_15(L_0);
return;
}
}
// Vuforia.Newtonsoft.Json.Formatting Vuforia.Newtonsoft.Json.JsonSerializer::get_Formatting()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_Formatting_m1600AA54C7A1F138BE94D4B836A80ADB8122A6A3 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * L_0 = __this->get_address_of__formatting_17();
int32_t L_1;
L_1 = Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)L_0, /*hidden argument*/Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_RuntimeMethod_var);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_Formatting(Vuforia.Newtonsoft.Json.Formatting)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_Formatting_mCB51DB8675015BF49505152B46EC35A70B2569FB (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807_RuntimeMethod_var);
__this->set__formatting_17(L_1);
return;
}
}
// Vuforia.Newtonsoft.Json.DateFormatHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_DateFormatHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_DateFormatHandling_mD8E147DCF1D9EB0D223C21B0FC0B95AD4C8E8684 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * L_0 = __this->get_address_of__dateFormatHandling_18();
int32_t L_1;
L_1 = Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)L_0, /*hidden argument*/Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_RuntimeMethod_var);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_DateFormatHandling(Vuforia.Newtonsoft.Json.DateFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_DateFormatHandling_m8FB68184B3CB8789127961F702A849C49FAAC016 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5_RuntimeMethod_var);
__this->set__dateFormatHandling_18(L_1);
return;
}
}
// Vuforia.Newtonsoft.Json.DateTimeZoneHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_DateTimeZoneHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_DateTimeZoneHandling_mF9A8CF45B6A72CAF66420A1D53E4A4177A47672F (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_0 = __this->get__dateTimeZoneHandling_19();
V_0 = L_0;
bool L_1;
L_1 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (L_1)
{
goto IL_0012;
}
}
{
return (int32_t)(3);
}
IL_0012:
{
int32_t L_2;
L_2 = Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
return L_2;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_DateTimeZoneHandling(Vuforia.Newtonsoft.Json.DateTimeZoneHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_DateTimeZoneHandling_m780C7473C949977757C194DEED64B723E65110EE (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D_RuntimeMethod_var);
__this->set__dateTimeZoneHandling_19(L_1);
return;
}
}
// Vuforia.Newtonsoft.Json.DateParseHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_DateParseHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_DateParseHandling_m5BCA52EED27D5D629AD33C11E10FF10A93CBC345 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F V_0;
memset((&V_0), 0, sizeof(V_0));
{
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F L_0 = __this->get__dateParseHandling_20();
V_0 = L_0;
bool L_1;
L_1 = Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
if (L_1)
{
goto IL_0012;
}
}
{
return (int32_t)(1);
}
IL_0012:
{
int32_t L_2;
L_2 = Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var);
return L_2;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_DateParseHandling(Vuforia.Newtonsoft.Json.DateParseHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_DateParseHandling_m5600421168EF7469CE6235C67F1B68A95120B996 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB_RuntimeMethod_var);
__this->set__dateParseHandling_20(L_1);
return;
}
}
// Vuforia.Newtonsoft.Json.FloatParseHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_FloatParseHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_FloatParseHandling_mB3918B240D2756FFB0BEFAE32804724EC18F17B3 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * L_0 = __this->get_address_of__floatParseHandling_22();
int32_t L_1;
L_1 = Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)L_0, /*hidden argument*/Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_FloatParseHandling(Vuforia.Newtonsoft.Json.FloatParseHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_FloatParseHandling_m2959D3A8633093B2243C220D3F928F087CC8FEEC (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5_RuntimeMethod_var);
__this->set__floatParseHandling_22(L_1);
return;
}
}
// Vuforia.Newtonsoft.Json.FloatFormatHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_FloatFormatHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_FloatFormatHandling_m767082B9C502BF60E234760D862E473BC4FD75A7 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * L_0 = __this->get_address_of__floatFormatHandling_21();
int32_t L_1;
L_1 = Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)L_0, /*hidden argument*/Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_RuntimeMethod_var);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_FloatFormatHandling(Vuforia.Newtonsoft.Json.FloatFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_FloatFormatHandling_m862C98CB09C44E996A30DBCB2BEF1CB121C098C6 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905_RuntimeMethod_var);
__this->set__floatFormatHandling_21(L_1);
return;
}
}
// Vuforia.Newtonsoft.Json.StringEscapeHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_StringEscapeHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonSerializer_get_StringEscapeHandling_m8377C2D8C5DF17A80049ADF15FAD6D436EA45D8D (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * L_0 = __this->get_address_of__stringEscapeHandling_23();
int32_t L_1;
L_1 = Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)L_0, /*hidden argument*/Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_RuntimeMethod_var);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_StringEscapeHandling(Vuforia.Newtonsoft.Json.StringEscapeHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_StringEscapeHandling_m88370011C3F912574F48C850F6C4BF233199C42C (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A_RuntimeMethod_var);
__this->set__stringEscapeHandling_23(L_1);
return;
}
}
// System.String Vuforia.Newtonsoft.Json.JsonSerializer::get_DateFormatString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSerializer_get_DateFormatString_m865EF51BC9F6F34F551D22910F7CDF841C3D6345 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD0BD4C28C5DD340193C602B92723689D3AD161B);
s_Il2CppMethodInitialized = true;
}
String_t* G_B2_0 = NULL;
String_t* G_B1_0 = NULL;
{
String_t* L_0 = __this->get__dateFormatString_28();
String_t* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000f;
}
}
{
G_B2_0 = _stringLiteralFD0BD4C28C5DD340193C602B92723689D3AD161B;
}
IL_000f:
{
return G_B2_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_DateFormatString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_DateFormatString_m646300AB7F5A9413B79E1E6BE319EEA012D11F91 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__dateFormatString_28(L_0);
__this->set__dateFormatStringSet_29((bool)1);
return;
}
}
// System.Globalization.CultureInfo Vuforia.Newtonsoft.Json.JsonSerializer::get_Culture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * JsonSerializer_get_Culture_mD330054E90818970101BD827A98067C7023A9046 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * G_B2_0 = NULL;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * G_B1_0 = NULL;
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = __this->get__culture_24();
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000f;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ((JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_StaticFields*)il2cpp_codegen_static_fields_for(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var))->get_DefaultCulture_19();
G_B2_0 = L_2;
}
IL_000f:
{
return G_B2_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_Culture(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_Culture_m8E37AE90829148B6E98487CC1F8E820D8CEF7D2A (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___value0, const RuntimeMethod* method)
{
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___value0;
__this->set__culture_24(L_0);
return;
}
}
// System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.JsonSerializer::get_MaxDepth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSerializer_get_MaxDepth_m19C261AD26367795C623A16E27C43C8075E78725 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get__maxDepth_25();
return L_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_MaxDepth(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_MaxDepth_m01C623343973102970B26F33F5F894F3AB4AB05A (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
V_0 = L_0;
V_1 = 0;
int32_t L_1;
L_1 = Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
int32_t L_2 = V_1;
bool L_3;
L_3 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
if (!((int32_t)((int32_t)((((int32_t)((((int32_t)L_1) > ((int32_t)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0)&(int32_t)L_3)))
{
goto IL_002b;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializer_set_MaxDepth_m01C623343973102970B26F33F5F894F3AB4AB05A_RuntimeMethod_var)));
}
IL_002b:
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_5 = ___value0;
__this->set__maxDepth_25(L_5);
__this->set__maxDepthSet_26((bool)1);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.JsonSerializer::get_CheckAdditionalContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializer_get_CheckAdditionalContent_mABD46FB817F7CB64344D35B013EC20F2ED76D779 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * L_0 = __this->get_address_of__checkAdditionalContent_27();
bool L_1;
L_1 = Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)L_0, /*hidden argument*/Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_RuntimeMethod_var);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_CheckAdditionalContent(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_set_CheckAdditionalContent_m2EC51C8F40B91409E5D0D22A67E3139BDEB8FFE3 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___value0;
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_1;
memset((&L_1), 0, sizeof(L_1));
Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_mBD9860C6159D4C77D6FFEF79D6DE34EDF2F44A49_RuntimeMethod_var);
__this->set__checkAdditionalContent_27(L_1);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.JsonSerializer::IsCheckAdditionalContentSet()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializer_IsCheckAdditionalContentSet_m268C9F824BA7ACEC6F9F520756F516D27D4C8B45 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * L_0 = __this->get_address_of__checkAdditionalContent_27();
bool L_1;
L_1 = Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)L_0, /*hidden argument*/Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var);
return L_1;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer__ctor_mAA51A1238396A67925D8AB21A87EEC0A4E2E1C59 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
__this->set__referenceLoopHandling_3(0);
__this->set__missingMemberHandling_4(0);
__this->set__nullValueHandling_6(0);
__this->set__defaultValueHandling_7(0);
__this->set__objectCreationHandling_5(0);
__this->set__preserveReferencesHandling_2(0);
__this->set__constructorHandling_8(0);
__this->set__typeNameHandling_0(0);
__this->set__metadataPropertyHandling_9(0);
IL2CPP_RUNTIME_CLASS_INIT(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var);
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_0 = ((JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_StaticFields*)il2cpp_codegen_static_fields_for(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var))->get_DefaultContext_10();
__this->set__context_15(L_0);
IL2CPP_RUNTIME_CLASS_INIT(DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA_il2cpp_TypeInfo_var);
DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA * L_1 = ((DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA_StaticFields*)il2cpp_codegen_static_fields_for(DefaultSerializationBinder_tD190F6048E878CD84B414E182A7BA30C3BDEF4EA_il2cpp_TypeInfo_var))->get_Instance_0();
__this->set__binder_14(L_1);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ((JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_StaticFields*)il2cpp_codegen_static_fields_for(JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06_il2cpp_TypeInfo_var))->get_DefaultCulture_19();
__this->set__culture_24(L_2);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
RuntimeObject* L_3;
L_3 = DefaultContractResolver_get_Instance_m2EB0507D1A30F944E6C96C7E90011748897D59E4_inline(/*hidden argument*/NULL);
__this->set__contractResolver_11(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.JsonSerializer::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * JsonSerializer_Create_mE6AB182BFDDC7F5CC4F6C992FAA89D11F9538189 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_0 = (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 *)il2cpp_codegen_object_new(JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670_il2cpp_TypeInfo_var);
JsonSerializer__ctor_mAA51A1238396A67925D8AB21A87EEC0A4E2E1C59(L_0, /*hidden argument*/NULL);
return L_0;
}
}
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.JsonSerializer::Create(Vuforia.Newtonsoft.Json.JsonSerializerSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * JsonSerializer_Create_mC34A7D6CCD6902C926326A24522F8FCD859901E2 (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * ___settings0, const RuntimeMethod* method)
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * V_0 = NULL;
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_0;
L_0 = JsonSerializer_Create_mE6AB182BFDDC7F5CC4F6C992FAA89D11F9538189(/*hidden argument*/NULL);
V_0 = L_0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_1 = ___settings0;
if (!L_1)
{
goto IL_0010;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_2 = V_0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_3 = ___settings0;
JsonSerializer_ApplySerializerSettings_m5718611078016DF790DF678BF1448387104CABE9(L_2, L_3, /*hidden argument*/NULL);
}
IL_0010:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_4 = V_0;
return L_4;
}
}
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.JsonSerializer::CreateDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * JsonSerializer_CreateDefault_m2EBD3E65BFBF6072E76C246D4642128BBCB863BC (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_mF7F8897D57AFD82627D0067498090FA0760D8D0A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * V_0 = NULL;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * G_B3_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_il2cpp_TypeInfo_var);
Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * L_0;
L_0 = JsonConvert_get_DefaultSettings_m77E99024334C26B86BE04A6B04E941B2864728B7_inline(/*hidden argument*/NULL);
V_0 = L_0;
Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
G_B3_0 = ((JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 *)(NULL));
goto IL_0012;
}
IL_000c:
{
Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * L_2 = V_0;
NullCheck(L_2);
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_3;
L_3 = Func_1_Invoke_mF7F8897D57AFD82627D0067498090FA0760D8D0A(L_2, /*hidden argument*/Func_1_Invoke_mF7F8897D57AFD82627D0067498090FA0760D8D0A_RuntimeMethod_var);
G_B3_0 = L_3;
}
IL_0012:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_4;
L_4 = JsonSerializer_Create_mC34A7D6CCD6902C926326A24522F8FCD859901E2(G_B3_0, /*hidden argument*/NULL);
return L_4;
}
}
// Vuforia.Newtonsoft.Json.JsonSerializer Vuforia.Newtonsoft.Json.JsonSerializer::CreateDefault(Vuforia.Newtonsoft.Json.JsonSerializerSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * JsonSerializer_CreateDefault_m7F0E31787DEE2FB0BE29E9597F9AB0355D37C16C (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * ___settings0, const RuntimeMethod* method)
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * V_0 = NULL;
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_0;
L_0 = JsonSerializer_CreateDefault_m2EBD3E65BFBF6072E76C246D4642128BBCB863BC(/*hidden argument*/NULL);
V_0 = L_0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_1 = ___settings0;
if (!L_1)
{
goto IL_0010;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_2 = V_0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_3 = ___settings0;
JsonSerializer_ApplySerializerSettings_m5718611078016DF790DF678BF1448387104CABE9(L_2, L_3, /*hidden argument*/NULL);
}
IL_0010:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_4 = V_0;
return L_4;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::ApplySerializerSettings(Vuforia.Newtonsoft.Json.JsonSerializer,Vuforia.Newtonsoft.Json.JsonSerializerSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_ApplySerializerSettings_m5718611078016DF790DF678BF1448387104CABE9 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___serializer0, JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionUtils_IsNullOrEmpty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_mF299FB8F3B747B9C29CBF70B239572FB2917815D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collection_1_Insert_mEBC0E9E49EC561D32EFFC9F03CFBBE41391EB568_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_mE2BC2D36632969E97D0EED98E2CF3E6F6A6CC3B6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t94CA9FEDC89CB2440AB1AC9A80CD64F3346D6940_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tBA29273CF051E6D6E9CFCBF347D6E8B9E43E052B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m0A7DA228818AD92DD59452001FC63E0069BA3C1C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m226492ED52703200F6A1A4C190D07FB3393CB855_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m64F5B977257CFBB20DE258F6F6567B8DCF91570D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m7A43A8CFC0AC024A40B50313E4252BE99F9AFB4C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m82C80B692AFEFF6593F6C624B0DC743C050CA59D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m8C4B9339DAFB9B8973E415AAA2513F0E4ECBFD9C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mBD300EB3CF7634BC42666F4775052069E12A1D03_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mF1C55F03F081410943CDC7EA670948E74A749C2C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_0 = ___settings1;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = JsonSerializerSettings_get_Converters_mC2C54FB4388B72D38871F077ECEF00AF828A9F1C_inline(L_0, /*hidden argument*/NULL);
bool L_2;
L_2 = CollectionUtils_IsNullOrEmpty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_mF299FB8F3B747B9C29CBF70B239572FB2917815D(L_1, /*hidden argument*/CollectionUtils_IsNullOrEmpty_TisJsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C_mF299FB8F3B747B9C29CBF70B239572FB2917815D_RuntimeMethod_var);
if (L_2)
{
goto IL_003b;
}
}
{
V_0 = 0;
goto IL_002d;
}
IL_0011:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_3 = ___serializer0;
NullCheck(L_3);
JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * L_4;
L_4 = VirtualFuncInvoker0< JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * >::Invoke(34 /* Vuforia.Newtonsoft.Json.JsonConverterCollection Vuforia.Newtonsoft.Json.JsonSerializer::get_Converters() */, L_3);
int32_t L_5 = V_0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_6 = ___settings1;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = JsonSerializerSettings_get_Converters_mC2C54FB4388B72D38871F077ECEF00AF828A9F1C_inline(L_6, /*hidden argument*/NULL);
int32_t L_8 = V_0;
NullCheck(L_7);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_9;
L_9 = InterfaceFuncInvoker1< JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.JsonConverter>::get_Item(System.Int32) */, IList_1_tBA29273CF051E6D6E9CFCBF347D6E8B9E43E052B_il2cpp_TypeInfo_var, L_7, L_8);
NullCheck(L_4);
Collection_1_Insert_mEBC0E9E49EC561D32EFFC9F03CFBBE41391EB568(L_4, L_5, L_9, /*hidden argument*/Collection_1_Insert_mEBC0E9E49EC561D32EFFC9F03CFBBE41391EB568_RuntimeMethod_var);
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002d:
{
int32_t L_11 = V_0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_12 = ___settings1;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = JsonSerializerSettings_get_Converters_mC2C54FB4388B72D38871F077ECEF00AF828A9F1C_inline(L_12, /*hidden argument*/NULL);
NullCheck(L_13);
int32_t L_14;
L_14 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.JsonConverter>::get_Count() */, ICollection_1_t94CA9FEDC89CB2440AB1AC9A80CD64F3346D6940_il2cpp_TypeInfo_var, L_13);
if ((((int32_t)L_11) < ((int32_t)L_14)))
{
goto IL_0011;
}
}
IL_003b:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_15 = ___settings1;
NullCheck(L_15);
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 * L_16 = L_15->get_address_of__typeNameHandling_44();
bool L_17;
L_17 = Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_inline((Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *)L_16, /*hidden argument*/Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_RuntimeMethod_var);
if (!L_17)
{
goto IL_0054;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_18 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_19 = ___settings1;
NullCheck(L_19);
int32_t L_20;
L_20 = JsonSerializerSettings_get_TypeNameHandling_mEDFB55CF45FE804E8F7BA611558B6B64D13407BA(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
VirtualActionInvoker1< int32_t >::Invoke(15 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_TypeNameHandling(Vuforia.Newtonsoft.Json.TypeNameHandling) */, L_18, L_20);
}
IL_0054:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_21 = ___settings1;
NullCheck(L_21);
Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 * L_22 = L_21->get_address_of__metadataPropertyHandling_45();
bool L_23;
L_23 = Nullable_1_get_HasValue_m82C80B692AFEFF6593F6C624B0DC743C050CA59D_inline((Nullable_1_t031BB5037A6BD33C50ECEC100AB37FCA36A31561 *)L_22, /*hidden argument*/Nullable_1_get_HasValue_m82C80B692AFEFF6593F6C624B0DC743C050CA59D_RuntimeMethod_var);
if (!L_23)
{
goto IL_006d;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_24 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_25 = ___settings1;
NullCheck(L_25);
int32_t L_26;
L_26 = JsonSerializerSettings_get_MetadataPropertyHandling_mB668AF9D698913A342CC53D2406B9A9CD626E5FE(L_25, /*hidden argument*/NULL);
NullCheck(L_24);
VirtualActionInvoker1< int32_t >::Invoke(33 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_MetadataPropertyHandling(Vuforia.Newtonsoft.Json.MetadataPropertyHandling) */, L_24, L_26);
}
IL_006d:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_27 = ___settings1;
NullCheck(L_27);
Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E * L_28 = L_27->get_address_of__typeNameAssemblyFormat_35();
bool L_29;
L_29 = Nullable_1_get_HasValue_m0A7DA228818AD92DD59452001FC63E0069BA3C1C_inline((Nullable_1_t1961B22E390849F135DCF32799DA4F93168D5C8E *)L_28, /*hidden argument*/Nullable_1_get_HasValue_m0A7DA228818AD92DD59452001FC63E0069BA3C1C_RuntimeMethod_var);
if (!L_29)
{
goto IL_0086;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_30 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_31 = ___settings1;
NullCheck(L_31);
int32_t L_32;
L_32 = JsonSerializerSettings_get_TypeNameAssemblyFormat_m037A3A7C997D5762496273741F1EB2ED3A4AA539(L_31, /*hidden argument*/NULL);
NullCheck(L_30);
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_TypeNameAssemblyFormat(System.Runtime.Serialization.Formatters.FormatterAssemblyStyle) */, L_30, L_32);
}
IL_0086:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_33 = ___settings1;
NullCheck(L_33);
Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 * L_34 = L_33->get_address_of__preserveReferencesHandling_37();
bool L_35;
L_35 = Nullable_1_get_HasValue_mBD300EB3CF7634BC42666F4775052069E12A1D03_inline((Nullable_1_tEE23AF22A2140F4FCAC525D4E5822FE987A34B18 *)L_34, /*hidden argument*/Nullable_1_get_HasValue_mBD300EB3CF7634BC42666F4775052069E12A1D03_RuntimeMethod_var);
if (!L_35)
{
goto IL_009f;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_36 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_37 = ___settings1;
NullCheck(L_37);
int32_t L_38;
L_38 = JsonSerializerSettings_get_PreserveReferencesHandling_m5BA65E5DFED94449CA87FFFEF60EAAA47477C5B8(L_37, /*hidden argument*/NULL);
NullCheck(L_36);
VirtualActionInvoker1< int32_t >::Invoke(19 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_PreserveReferencesHandling(Vuforia.Newtonsoft.Json.PreserveReferencesHandling) */, L_36, L_38);
}
IL_009f:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_39 = ___settings1;
NullCheck(L_39);
Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB * L_40 = L_39->get_address_of__referenceLoopHandling_41();
bool L_41;
L_41 = Nullable_1_get_HasValue_m8C4B9339DAFB9B8973E415AAA2513F0E4ECBFD9C_inline((Nullable_1_t3768D7B5DEDD0B18BEAEC6B3A87AAA2A8C3048FB *)L_40, /*hidden argument*/Nullable_1_get_HasValue_m8C4B9339DAFB9B8973E415AAA2513F0E4ECBFD9C_RuntimeMethod_var);
if (!L_41)
{
goto IL_00b8;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_42 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_43 = ___settings1;
NullCheck(L_43);
int32_t L_44;
L_44 = JsonSerializerSettings_get_ReferenceLoopHandling_m59CB03C93117ABA6273B9E2BF9CFCC3181A809CC(L_43, /*hidden argument*/NULL);
NullCheck(L_42);
VirtualActionInvoker1< int32_t >::Invoke(21 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ReferenceLoopHandling(Vuforia.Newtonsoft.Json.ReferenceLoopHandling) */, L_42, L_44);
}
IL_00b8:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_45 = ___settings1;
NullCheck(L_45);
Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 * L_46 = L_45->get_address_of__missingMemberHandling_40();
bool L_47;
L_47 = Nullable_1_get_HasValue_m7A43A8CFC0AC024A40B50313E4252BE99F9AFB4C_inline((Nullable_1_t65892731BE11BDB797285CEE45CDDB1EA6199B20 *)L_46, /*hidden argument*/Nullable_1_get_HasValue_m7A43A8CFC0AC024A40B50313E4252BE99F9AFB4C_RuntimeMethod_var);
if (!L_47)
{
goto IL_00d1;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_48 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_49 = ___settings1;
NullCheck(L_49);
int32_t L_50;
L_50 = JsonSerializerSettings_get_MissingMemberHandling_m0856E66B56E3A82EE76E2AA74A7B138D08BF2CF5(L_49, /*hidden argument*/NULL);
NullCheck(L_48);
VirtualActionInvoker1< int32_t >::Invoke(23 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_MissingMemberHandling(Vuforia.Newtonsoft.Json.MissingMemberHandling) */, L_48, L_50);
}
IL_00d1:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_51 = ___settings1;
NullCheck(L_51);
Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 * L_52 = L_51->get_address_of__objectCreationHandling_39();
bool L_53;
L_53 = Nullable_1_get_HasValue_m64F5B977257CFBB20DE258F6F6567B8DCF91570D_inline((Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 *)L_52, /*hidden argument*/Nullable_1_get_HasValue_m64F5B977257CFBB20DE258F6F6567B8DCF91570D_RuntimeMethod_var);
if (!L_53)
{
goto IL_00ea;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_54 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_55 = ___settings1;
NullCheck(L_55);
int32_t L_56;
L_56 = JsonSerializerSettings_get_ObjectCreationHandling_m0D24DBE6E0D39926B15610DDED77804F008E2BBD(L_55, /*hidden argument*/NULL);
NullCheck(L_54);
VirtualActionInvoker1< int32_t >::Invoke(29 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ObjectCreationHandling(Vuforia.Newtonsoft.Json.ObjectCreationHandling) */, L_54, L_56);
}
IL_00ea:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_57 = ___settings1;
NullCheck(L_57);
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 * L_58 = L_57->get_address_of__nullValueHandling_38();
bool L_59;
L_59 = Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_inline((Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *)L_58, /*hidden argument*/Nullable_1_get_HasValue_m715521C054B11EFD5F6B748474E63A01E1F43B82_RuntimeMethod_var);
if (!L_59)
{
goto IL_0103;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_60 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_61 = ___settings1;
NullCheck(L_61);
int32_t L_62;
L_62 = JsonSerializerSettings_get_NullValueHandling_m63CBFEF833BFF120A35487969E7C407DC28FEDEE(L_61, /*hidden argument*/NULL);
NullCheck(L_60);
VirtualActionInvoker1< int32_t >::Invoke(25 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_NullValueHandling(Vuforia.Newtonsoft.Json.NullValueHandling) */, L_60, L_62);
}
IL_0103:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_63 = ___settings1;
NullCheck(L_63);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 * L_64 = L_63->get_address_of__defaultValueHandling_36();
bool L_65;
L_65 = Nullable_1_get_HasValue_m226492ED52703200F6A1A4C190D07FB3393CB855_inline((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)L_64, /*hidden argument*/Nullable_1_get_HasValue_m226492ED52703200F6A1A4C190D07FB3393CB855_RuntimeMethod_var);
if (!L_65)
{
goto IL_011c;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_66 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_67 = ___settings1;
NullCheck(L_67);
int32_t L_68;
L_68 = JsonSerializerSettings_get_DefaultValueHandling_m4BF615003A8BA0A9EE2400F04B43DB664C2BCC5F(L_67, /*hidden argument*/NULL);
NullCheck(L_66);
VirtualActionInvoker1< int32_t >::Invoke(27 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_DefaultValueHandling(Vuforia.Newtonsoft.Json.DefaultValueHandling) */, L_66, L_68);
}
IL_011c:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_69 = ___settings1;
NullCheck(L_69);
Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D * L_70 = L_69->get_address_of__constructorHandling_43();
bool L_71;
L_71 = Nullable_1_get_HasValue_mF1C55F03F081410943CDC7EA670948E74A749C2C_inline((Nullable_1_tC374A61D5EEB6397A50A541D002A3458384E618D *)L_70, /*hidden argument*/Nullable_1_get_HasValue_mF1C55F03F081410943CDC7EA670948E74A749C2C_RuntimeMethod_var);
if (!L_71)
{
goto IL_0135;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_72 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_73 = ___settings1;
NullCheck(L_73);
int32_t L_74;
L_74 = JsonSerializerSettings_get_ConstructorHandling_m301F1664E1E053ED859D3B625CF1F543B9E0C728(L_73, /*hidden argument*/NULL);
NullCheck(L_72);
VirtualActionInvoker1< int32_t >::Invoke(31 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ConstructorHandling(Vuforia.Newtonsoft.Json.ConstructorHandling) */, L_72, L_74);
}
IL_0135:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_75 = ___settings1;
NullCheck(L_75);
Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 * L_76 = L_75->get_address_of__context_42();
bool L_77;
L_77 = Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_inline((Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 *)L_76, /*hidden argument*/Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_RuntimeMethod_var);
if (!L_77)
{
goto IL_014e;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_78 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_79 = ___settings1;
NullCheck(L_79);
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_80;
L_80 = JsonSerializerSettings_get_Context_mE7D4B8C55609BA21C47CB3B2A472FE9DF9BDA768(L_79, /*hidden argument*/NULL);
NullCheck(L_78);
VirtualActionInvoker1< StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 >::Invoke(38 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_Context(System.Runtime.Serialization.StreamingContext) */, L_78, L_80);
}
IL_014e:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_81 = ___settings1;
NullCheck(L_81);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * L_82 = L_81->get_address_of__checkAdditionalContent_30();
bool L_83;
L_83 = Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)L_82, /*hidden argument*/Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var);
if (!L_83)
{
goto IL_0167;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_84 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_85 = ___settings1;
NullCheck(L_85);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_86 = L_85->get__checkAdditionalContent_30();
NullCheck(L_84);
L_84->set__checkAdditionalContent_27(L_86);
}
IL_0167:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_87 = ___settings1;
NullCheck(L_87);
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_88;
L_88 = JsonSerializerSettings_get_Error_mE801B024BB7DB4D1D7005CA193AC432D8BE7EA43_inline(L_87, /*hidden argument*/NULL);
if (!L_88)
{
goto IL_017b;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_89 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_90 = ___settings1;
NullCheck(L_90);
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_91;
L_91 = JsonSerializerSettings_get_Error_mE801B024BB7DB4D1D7005CA193AC432D8BE7EA43_inline(L_90, /*hidden argument*/NULL);
NullCheck(L_89);
VirtualActionInvoker1< EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * >::Invoke(4 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::add_Error(System.EventHandler`1<Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs>) */, L_89, L_91);
}
IL_017b:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_92 = ___settings1;
NullCheck(L_92);
RuntimeObject* L_93;
L_93 = JsonSerializerSettings_get_ContractResolver_mFD45D93DD3A8081D05B08E3430FB49FED92D84CD_inline(L_92, /*hidden argument*/NULL);
if (!L_93)
{
goto IL_018f;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_94 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_95 = ___settings1;
NullCheck(L_95);
RuntimeObject* L_96;
L_96 = JsonSerializerSettings_get_ContractResolver_mFD45D93DD3A8081D05B08E3430FB49FED92D84CD_inline(L_95, /*hidden argument*/NULL);
NullCheck(L_94);
VirtualActionInvoker1< RuntimeObject* >::Invoke(36 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ContractResolver(Vuforia.Newtonsoft.Json.Serialization.IContractResolver) */, L_94, L_96);
}
IL_018f:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_97 = ___settings1;
NullCheck(L_97);
Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * L_98;
L_98 = JsonSerializerSettings_get_ReferenceResolverProvider_mF42A379679B2D340D3C20D080C67F9F048D9E292_inline(L_97, /*hidden argument*/NULL);
if (!L_98)
{
goto IL_01a8;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_99 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_100 = ___settings1;
NullCheck(L_100);
Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * L_101;
L_101 = JsonSerializerSettings_get_ReferenceResolverProvider_mF42A379679B2D340D3C20D080C67F9F048D9E292_inline(L_100, /*hidden argument*/NULL);
NullCheck(L_101);
RuntimeObject* L_102;
L_102 = Func_1_Invoke_mE2BC2D36632969E97D0EED98E2CF3E6F6A6CC3B6(L_101, /*hidden argument*/Func_1_Invoke_mE2BC2D36632969E97D0EED98E2CF3E6F6A6CC3B6_RuntimeMethod_var);
NullCheck(L_99);
VirtualActionInvoker1< RuntimeObject* >::Invoke(7 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_ReferenceResolver(Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver) */, L_99, L_102);
}
IL_01a8:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_103 = ___settings1;
NullCheck(L_103);
RuntimeObject* L_104;
L_104 = JsonSerializerSettings_get_TraceWriter_mA98DDD76FAC1AE190CDB347D7E8CC2D481440A89_inline(L_103, /*hidden argument*/NULL);
if (!L_104)
{
goto IL_01bc;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_105 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_106 = ___settings1;
NullCheck(L_106);
RuntimeObject* L_107;
L_107 = JsonSerializerSettings_get_TraceWriter_mA98DDD76FAC1AE190CDB347D7E8CC2D481440A89_inline(L_106, /*hidden argument*/NULL);
NullCheck(L_105);
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_TraceWriter(Vuforia.Newtonsoft.Json.Serialization.ITraceWriter) */, L_105, L_107);
}
IL_01bc:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_108 = ___settings1;
NullCheck(L_108);
RuntimeObject* L_109;
L_109 = JsonSerializerSettings_get_EqualityComparer_m9CD912ED990ADF6D3F9FDB589EE44C34C02D8D91_inline(L_108, /*hidden argument*/NULL);
if (!L_109)
{
goto IL_01d0;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_110 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_111 = ___settings1;
NullCheck(L_111);
RuntimeObject* L_112;
L_112 = JsonSerializerSettings_get_EqualityComparer_m9CD912ED990ADF6D3F9FDB589EE44C34C02D8D91_inline(L_111, /*hidden argument*/NULL);
NullCheck(L_110);
VirtualActionInvoker1< RuntimeObject* >::Invoke(13 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_EqualityComparer(System.Collections.IEqualityComparer) */, L_110, L_112);
}
IL_01d0:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_113 = ___settings1;
NullCheck(L_113);
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * L_114;
L_114 = JsonSerializerSettings_get_Binder_mC2D7E0D0D22A084C2CA45F86EEDF648CCCC1317A_inline(L_113, /*hidden argument*/NULL);
if (!L_114)
{
goto IL_01e4;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_115 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_116 = ___settings1;
NullCheck(L_116);
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * L_117;
L_117 = JsonSerializerSettings_get_Binder_mC2D7E0D0D22A084C2CA45F86EEDF648CCCC1317A_inline(L_116, /*hidden argument*/NULL);
NullCheck(L_115);
VirtualActionInvoker1< SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * >::Invoke(9 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::set_Binder(Vuforia.Newtonsoft.Json.SerializationBinder) */, L_115, L_117);
}
IL_01e4:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_118 = ___settings1;
NullCheck(L_118);
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * L_119 = L_118->get_address_of__formatting_22();
bool L_120;
L_120 = Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)L_119, /*hidden argument*/Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_RuntimeMethod_var);
if (!L_120)
{
goto IL_01fd;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_121 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_122 = ___settings1;
NullCheck(L_122);
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E L_123 = L_122->get__formatting_22();
NullCheck(L_121);
L_121->set__formatting_17(L_123);
}
IL_01fd:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_124 = ___settings1;
NullCheck(L_124);
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * L_125 = L_124->get_address_of__dateFormatHandling_23();
bool L_126;
L_126 = Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)L_125, /*hidden argument*/Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_RuntimeMethod_var);
if (!L_126)
{
goto IL_0216;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_127 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_128 = ___settings1;
NullCheck(L_128);
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 L_129 = L_128->get__dateFormatHandling_23();
NullCheck(L_127);
L_127->set__dateFormatHandling_18(L_129);
}
IL_0216:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_130 = ___settings1;
NullCheck(L_130);
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * L_131 = L_130->get_address_of__dateTimeZoneHandling_24();
bool L_132;
L_132 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)L_131, /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (!L_132)
{
goto IL_022f;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_133 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_134 = ___settings1;
NullCheck(L_134);
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_135 = L_134->get__dateTimeZoneHandling_24();
NullCheck(L_133);
L_133->set__dateTimeZoneHandling_19(L_135);
}
IL_022f:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_136 = ___settings1;
NullCheck(L_136);
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * L_137 = L_136->get_address_of__dateParseHandling_25();
bool L_138;
L_138 = Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)L_137, /*hidden argument*/Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
if (!L_138)
{
goto IL_0248;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_139 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_140 = ___settings1;
NullCheck(L_140);
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F L_141 = L_140->get__dateParseHandling_25();
NullCheck(L_139);
L_139->set__dateParseHandling_20(L_141);
}
IL_0248:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_142 = ___settings1;
NullCheck(L_142);
bool L_143 = L_142->get__dateFormatStringSet_34();
if (!L_143)
{
goto IL_0268;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_144 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_145 = ___settings1;
NullCheck(L_145);
String_t* L_146 = L_145->get__dateFormatString_33();
NullCheck(L_144);
L_144->set__dateFormatString_28(L_146);
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_147 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_148 = ___settings1;
NullCheck(L_148);
bool L_149 = L_148->get__dateFormatStringSet_34();
NullCheck(L_147);
L_147->set__dateFormatStringSet_29(L_149);
}
IL_0268:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_150 = ___settings1;
NullCheck(L_150);
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * L_151 = L_150->get_address_of__floatFormatHandling_26();
bool L_152;
L_152 = Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)L_151, /*hidden argument*/Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_RuntimeMethod_var);
if (!L_152)
{
goto IL_0281;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_153 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_154 = ___settings1;
NullCheck(L_154);
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD L_155 = L_154->get__floatFormatHandling_26();
NullCheck(L_153);
L_153->set__floatFormatHandling_21(L_155);
}
IL_0281:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_156 = ___settings1;
NullCheck(L_156);
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * L_157 = L_156->get_address_of__floatParseHandling_27();
bool L_158;
L_158 = Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)L_157, /*hidden argument*/Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var);
if (!L_158)
{
goto IL_029a;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_159 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_160 = ___settings1;
NullCheck(L_160);
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D L_161 = L_160->get__floatParseHandling_27();
NullCheck(L_159);
L_159->set__floatParseHandling_22(L_161);
}
IL_029a:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_162 = ___settings1;
NullCheck(L_162);
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * L_163 = L_162->get_address_of__stringEscapeHandling_28();
bool L_164;
L_164 = Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)L_163, /*hidden argument*/Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_RuntimeMethod_var);
if (!L_164)
{
goto IL_02b3;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_165 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_166 = ___settings1;
NullCheck(L_166);
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A L_167 = L_166->get__stringEscapeHandling_28();
NullCheck(L_165);
L_165->set__stringEscapeHandling_23(L_167);
}
IL_02b3:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_168 = ___settings1;
NullCheck(L_168);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_169 = L_168->get__culture_29();
if (!L_169)
{
goto IL_02c7;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_170 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_171 = ___settings1;
NullCheck(L_171);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_172 = L_171->get__culture_29();
NullCheck(L_170);
L_170->set__culture_24(L_172);
}
IL_02c7:
{
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_173 = ___settings1;
NullCheck(L_173);
bool L_174 = L_173->get__maxDepthSet_32();
if (!L_174)
{
goto IL_02e7;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_175 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_176 = ___settings1;
NullCheck(L_176);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_177 = L_176->get__maxDepth_31();
NullCheck(L_175);
L_175->set__maxDepth_25(L_177);
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_178 = ___serializer0;
JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * L_179 = ___settings1;
NullCheck(L_179);
bool L_180 = L_179->get__maxDepthSet_32();
NullCheck(L_178);
L_178->set__maxDepthSet_26(L_180);
}
IL_02e7:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Populate(System.IO.TextReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Populate_m5E86FDA72B23BDECAF78F1FAC56538FE1384809C (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, RuntimeObject * ___target1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_0 = ___reader0;
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * L_1 = (JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE *)il2cpp_codegen_object_new(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
JsonTextReader__ctor_m6E8E633BA733A92BE7558C595B55A79B41621B3A(L_1, L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___target1;
JsonSerializer_Populate_mA7DDCC70E0FD15C3337E308452FE61760F4CF3BD(__this, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Populate(Vuforia.Newtonsoft.Json.JsonReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Populate_mA7DDCC70E0FD15C3337E308452FE61760F4CF3BD (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, RuntimeObject * ___target1, const RuntimeMethod* method)
{
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
RuntimeObject * L_1 = ___target1;
VirtualActionInvoker2< JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 *, RuntimeObject * >::Invoke(61 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::PopulateInternal(Vuforia.Newtonsoft.Json.JsonReader,System.Object) */, __this, L_0, L_1);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::PopulateInternal(Vuforia.Newtonsoft.Json.JsonReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_PopulateInternal_mDFE781F7E5DEEFE04F1628ECDD8E48F010A95535 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, RuntimeObject * ___target1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral320772EF40302B49A179DB96BAD02224E97B4018);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * V_0 = NULL;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D V_3;
memset((&V_3), 0, sizeof(V_3));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_4;
memset((&V_4), 0, sizeof(V_4));
String_t* V_5 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * V_6 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * G_B4_0 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * G_B6_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B6_1 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * G_B5_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B5_1 = NULL;
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___target1;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_1, _stringLiteral320772EF40302B49A179DB96BAD02224E97B4018, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader0;
JsonSerializer_SetupReader_mE48113A99E879CA4F106437CCFDD15A6E002DB0B(__this, L_2, (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 **)(&V_0), (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_1), (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&V_2), (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)(&V_3), (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_4), (String_t**)(&V_5), /*hidden argument*/NULL);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
if (!L_3)
{
goto IL_003f;
}
}
{
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
NullCheck(L_4);
int32_t L_5;
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_4);
if ((((int32_t)L_5) >= ((int32_t)4)))
{
goto IL_0042;
}
}
IL_003f:
{
G_B4_0 = ((TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B *)(NULL));
goto IL_0048;
}
IL_0042:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader0;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_7 = (TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B *)il2cpp_codegen_object_new(TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B_il2cpp_TypeInfo_var);
TraceJsonReader__ctor_m34855DCB7B3DA0A4A480F374EA900FE1933FCCD7(L_7, L_6, /*hidden argument*/NULL);
G_B4_0 = L_7;
}
IL_0048:
{
V_6 = G_B4_0;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * L_8 = (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 *)il2cpp_codegen_object_new(JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5_il2cpp_TypeInfo_var);
JsonSerializerInternalReader__ctor_m93FB8AD9EA61CA474E68769C958564B93685F950(L_8, __this, /*hidden argument*/NULL);
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_9 = V_6;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_10 = L_9;
G_B5_0 = L_10;
G_B5_1 = L_8;
if (L_10)
{
G_B6_0 = L_10;
G_B6_1 = L_8;
goto IL_0057;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_11 = ___reader0;
G_B6_0 = ((TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B *)(L_11));
G_B6_1 = G_B5_1;
}
IL_0057:
{
RuntimeObject * L_12 = ___target1;
NullCheck(G_B6_1);
JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0(G_B6_1, G_B6_0, L_12, /*hidden argument*/NULL);
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_13 = V_6;
if (!L_13)
{
goto IL_0075;
}
}
{
RuntimeObject* L_14;
L_14 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_15 = V_6;
NullCheck(L_15);
String_t* L_16;
L_16 = TraceJsonReader_GetDeserializedJsonMessage_m76BFAFE189FA4740DA4BE2CCA4B5E1266ED680FD(L_15, /*hidden argument*/NULL);
NullCheck(L_14);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_14, 4, L_16, (Exception_t *)NULL);
}
IL_0075:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_17 = ___reader0;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_18 = V_0;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_19 = V_1;
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F L_20 = V_2;
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D L_21 = V_3;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_22 = V_4;
String_t* L_23 = V_5;
JsonSerializer_ResetReader_mB09F6062A5FA5110D833B8601F41A4BF7FD404DB(__this, L_17, L_18, L_19, L_20, L_21, L_22, L_23, /*hidden argument*/NULL);
return;
}
}
// System.Object Vuforia.Newtonsoft.Json.JsonSerializer::Deserialize(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializer_Deserialize_m12A5E2D6BA54A67DBFCD96E6B8F74D80D9110FB6 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method)
{
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
RuntimeObject * L_1;
L_1 = JsonSerializer_Deserialize_mFD7F67101B5CE457EF4425EB4F499761309CC4B4(__this, L_0, (Type_t *)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.Object Vuforia.Newtonsoft.Json.JsonSerializer::Deserialize(System.IO.TextReader,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializer_Deserialize_m03B3321E70A1866E9535D7C4A7124DC06CEDDAA5 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, Type_t * ___objectType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_0 = ___reader0;
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * L_1 = (JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE *)il2cpp_codegen_object_new(JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
JsonTextReader__ctor_m6E8E633BA733A92BE7558C595B55A79B41621B3A(L_1, L_0, /*hidden argument*/NULL);
Type_t * L_2 = ___objectType1;
RuntimeObject * L_3;
L_3 = JsonSerializer_Deserialize_mFD7F67101B5CE457EF4425EB4F499761309CC4B4(__this, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Object Vuforia.Newtonsoft.Json.JsonSerializer::Deserialize(Vuforia.Newtonsoft.Json.JsonReader,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializer_Deserialize_mFD7F67101B5CE457EF4425EB4F499761309CC4B4 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, const RuntimeMethod* method)
{
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
Type_t * L_1 = ___objectType1;
RuntimeObject * L_2;
L_2 = VirtualFuncInvoker2< RuntimeObject *, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 *, Type_t * >::Invoke(62 /* System.Object Vuforia.Newtonsoft.Json.JsonSerializer::DeserializeInternal(Vuforia.Newtonsoft.Json.JsonReader,System.Type) */, __this, L_0, L_1);
return L_2;
}
}
// System.Object Vuforia.Newtonsoft.Json.JsonSerializer::DeserializeInternal(Vuforia.Newtonsoft.Json.JsonReader,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializer_DeserializeInternal_m7340399CD05BD7B03B30840590874DDCDECBA826 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * V_0 = NULL;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D V_3;
memset((&V_3), 0, sizeof(V_3));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_4;
memset((&V_4), 0, sizeof(V_4));
String_t* V_5 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * V_6 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * G_B4_0 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * G_B6_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B6_1 = NULL;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * G_B5_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B5_1 = NULL;
RuntimeObject * G_B8_0 = NULL;
RuntimeObject * G_B7_0 = NULL;
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader0;
JsonSerializer_SetupReader_mE48113A99E879CA4F106437CCFDD15A6E002DB0B(__this, L_1, (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 **)(&V_0), (Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_1), (Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&V_2), (Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)(&V_3), (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_4), (String_t**)(&V_5), /*hidden argument*/NULL);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
if (!L_2)
{
goto IL_0034;
}
}
{
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_3);
if ((((int32_t)L_4) >= ((int32_t)4)))
{
goto IL_0037;
}
}
IL_0034:
{
G_B4_0 = ((TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B *)(NULL));
goto IL_003d;
}
IL_0037:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader0;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_6 = (TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B *)il2cpp_codegen_object_new(TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B_il2cpp_TypeInfo_var);
TraceJsonReader__ctor_m34855DCB7B3DA0A4A480F374EA900FE1933FCCD7(L_6, L_5, /*hidden argument*/NULL);
G_B4_0 = L_6;
}
IL_003d:
{
V_6 = G_B4_0;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * L_7 = (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 *)il2cpp_codegen_object_new(JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5_il2cpp_TypeInfo_var);
JsonSerializerInternalReader__ctor_m93FB8AD9EA61CA474E68769C958564B93685F950(L_7, __this, /*hidden argument*/NULL);
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_8 = V_6;
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_9 = L_8;
G_B5_0 = L_9;
G_B5_1 = L_7;
if (L_9)
{
G_B6_0 = L_9;
G_B6_1 = L_7;
goto IL_004c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10 = ___reader0;
G_B6_0 = ((TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B *)(L_10));
G_B6_1 = G_B5_1;
}
IL_004c:
{
Type_t * L_11 = ___objectType1;
bool L_12;
L_12 = VirtualFuncInvoker0< bool >::Invoke(59 /* System.Boolean Vuforia.Newtonsoft.Json.JsonSerializer::get_CheckAdditionalContent() */, __this);
NullCheck(G_B6_1);
RuntimeObject * L_13;
L_13 = JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D(G_B6_1, G_B6_0, L_11, L_12, /*hidden argument*/NULL);
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_14 = V_6;
G_B7_0 = L_13;
if (!L_14)
{
G_B8_0 = L_13;
goto IL_0070;
}
}
{
RuntimeObject* L_15;
L_15 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
TraceJsonReader_t3FC59C0BE313A9EAA48794C0CEA4C3A97837619B * L_16 = V_6;
NullCheck(L_16);
String_t* L_17;
L_17 = TraceJsonReader_GetDeserializedJsonMessage_m76BFAFE189FA4740DA4BE2CCA4B5E1266ED680FD(L_16, /*hidden argument*/NULL);
NullCheck(L_15);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_15, 4, L_17, (Exception_t *)NULL);
G_B8_0 = G_B7_0;
}
IL_0070:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_18 = ___reader0;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_19 = V_0;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_20 = V_1;
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F L_21 = V_2;
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D L_22 = V_3;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_23 = V_4;
String_t* L_24 = V_5;
JsonSerializer_ResetReader_mB09F6062A5FA5110D833B8601F41A4BF7FD404DB(__this, L_18, L_19, L_20, L_21, L_22, L_23, L_24, /*hidden argument*/NULL);
return G_B8_0;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::SetupReader(Vuforia.Newtonsoft.Json.JsonReader,System.Globalization.CultureInfo&,System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>&,System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>&,System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>&,System.Nullable`1<System.Int32>&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_SetupReader_mE48113A99E879CA4F106437CCFDD15A6E002DB0B (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** ___previousCulture1, Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * ___previousDateTimeZoneHandling2, Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * ___previousDateParseHandling3, Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * ___previousFloatParseHandling4, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * ___previousMaxDepth5, String_t** ___previousDateFormatString6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * V_0 = NULL;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D V_3;
memset((&V_3), 0, sizeof(V_3));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_4;
memset((&V_4), 0, sizeof(V_4));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_5;
memset((&V_5), 0, sizeof(V_5));
DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9 * V_6 = NULL;
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = __this->get__culture_24();
if (!L_0)
{
goto IL_0031;
}
}
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = __this->get__culture_24();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader0;
NullCheck(L_2);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_3;
L_3 = JsonReader_get_Culture_m2FC4A353D2CC90A4761CF62CEC6EF6FE3DAA74FE(L_2, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_4;
L_4 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_1, L_3);
if (L_4)
{
goto IL_0031;
}
}
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** L_5 = ___previousCulture1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader0;
NullCheck(L_6);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_7;
L_7 = JsonReader_get_Culture_m2FC4A353D2CC90A4761CF62CEC6EF6FE3DAA74FE(L_6, /*hidden argument*/NULL);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_5, (void*)(RuntimeObject *)L_7);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_8 = ___reader0;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_9 = __this->get__culture_24();
NullCheck(L_8);
JsonReader_set_Culture_m358DAB69604E891560445695FC823BBE41B2F106_inline(L_8, L_9, /*hidden argument*/NULL);
goto IL_0034;
}
IL_0031:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** L_10 = ___previousCulture1;
*((RuntimeObject **)L_10) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)NULL);
}
IL_0034:
{
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * L_11 = __this->get_address_of__dateTimeZoneHandling_19();
bool L_12;
L_12 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)L_11, /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (!L_12)
{
goto IL_0085;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_13 = ___reader0;
NullCheck(L_13);
int32_t L_14;
L_14 = JsonReader_get_DateTimeZoneHandling_m3F91693921E6DA5A0FB9BB66FAF8069C18E11F7C_inline(L_13, /*hidden argument*/NULL);
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_15 = __this->get__dateTimeZoneHandling_19();
V_1 = L_15;
int32_t L_16;
L_16 = Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
bool L_17;
L_17 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_14) == ((int32_t)L_16))? 1 : 0)&(int32_t)L_17)))
{
goto IL_0085;
}
}
{
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * L_18 = ___previousDateTimeZoneHandling2;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_19 = ___reader0;
NullCheck(L_19);
int32_t L_20;
L_20 = JsonReader_get_DateTimeZoneHandling_m3F91693921E6DA5A0FB9BB66FAF8069C18E11F7C_inline(L_19, /*hidden argument*/NULL);
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_21;
memset((&L_21), 0, sizeof(L_21));
Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D((&L_21), L_20, /*hidden argument*/Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D_RuntimeMethod_var);
*(Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)L_18 = L_21;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_22 = ___reader0;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * L_23 = __this->get_address_of__dateTimeZoneHandling_19();
int32_t L_24;
L_24 = Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)L_23, /*hidden argument*/Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
NullCheck(L_22);
JsonReader_set_DateTimeZoneHandling_m3C0CB5F489907DAEB846392146CDD9529D57B3A9(L_22, L_24, /*hidden argument*/NULL);
goto IL_008c;
}
IL_0085:
{
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * L_25 = ___previousDateTimeZoneHandling2;
il2cpp_codegen_initobj(L_25, sizeof(Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 ));
}
IL_008c:
{
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * L_26 = __this->get_address_of__dateParseHandling_20();
bool L_27;
L_27 = Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)L_26, /*hidden argument*/Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
if (!L_27)
{
goto IL_00de;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_28 = ___reader0;
NullCheck(L_28);
int32_t L_29;
L_29 = JsonReader_get_DateParseHandling_m5CF75D4A6FBBED60683E85A68416AFB05C84F84A_inline(L_28, /*hidden argument*/NULL);
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F L_30 = __this->get__dateParseHandling_20();
V_2 = L_30;
int32_t L_31;
L_31 = Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&V_2), /*hidden argument*/Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var);
bool L_32;
L_32 = Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&V_2), /*hidden argument*/Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_29) == ((int32_t)L_31))? 1 : 0)&(int32_t)L_32)))
{
goto IL_00de;
}
}
{
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * L_33 = ___previousDateParseHandling3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_34 = ___reader0;
NullCheck(L_34);
int32_t L_35;
L_35 = JsonReader_get_DateParseHandling_m5CF75D4A6FBBED60683E85A68416AFB05C84F84A_inline(L_34, /*hidden argument*/NULL);
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F L_36;
memset((&L_36), 0, sizeof(L_36));
Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB((&L_36), L_35, /*hidden argument*/Nullable_1__ctor_m3BB50B9D86720A08491A9F0BF27C5A54A1F063DB_RuntimeMethod_var);
*(Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)L_33 = L_36;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_37 = ___reader0;
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * L_38 = __this->get_address_of__dateParseHandling_20();
int32_t L_39;
L_39 = Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)L_38, /*hidden argument*/Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var);
NullCheck(L_37);
JsonReader_set_DateParseHandling_m96CB240BFA3D71CF8E8565BEB8EA1786795B3719(L_37, L_39, /*hidden argument*/NULL);
goto IL_00e6;
}
IL_00de:
{
Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F * L_40 = ___previousDateParseHandling3;
il2cpp_codegen_initobj(L_40, sizeof(Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F ));
}
IL_00e6:
{
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * L_41 = __this->get_address_of__floatParseHandling_22();
bool L_42;
L_42 = Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)L_41, /*hidden argument*/Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var);
if (!L_42)
{
goto IL_0138;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_43 = ___reader0;
NullCheck(L_43);
int32_t L_44;
L_44 = JsonReader_get_FloatParseHandling_mB6FBFE9F4EDB6E6FF07E89A172E2570263140EC8_inline(L_43, /*hidden argument*/NULL);
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D L_45 = __this->get__floatParseHandling_22();
V_3 = L_45;
int32_t L_46;
L_46 = Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)(&V_3), /*hidden argument*/Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var);
bool L_47;
L_47 = Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)(&V_3), /*hidden argument*/Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_44) == ((int32_t)L_46))? 1 : 0)&(int32_t)L_47)))
{
goto IL_0138;
}
}
{
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * L_48 = ___previousFloatParseHandling4;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_49 = ___reader0;
NullCheck(L_49);
int32_t L_50;
L_50 = JsonReader_get_FloatParseHandling_mB6FBFE9F4EDB6E6FF07E89A172E2570263140EC8_inline(L_49, /*hidden argument*/NULL);
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D L_51;
memset((&L_51), 0, sizeof(L_51));
Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5((&L_51), L_50, /*hidden argument*/Nullable_1__ctor_mD19D2C659D487EA7B702B125D9A79760FB20ADE5_RuntimeMethod_var);
*(Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)L_48 = L_51;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_52 = ___reader0;
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * L_53 = __this->get_address_of__floatParseHandling_22();
int32_t L_54;
L_54 = Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)L_53, /*hidden argument*/Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var);
NullCheck(L_52);
JsonReader_set_FloatParseHandling_m9334526CD4846510BE61EEBA025F86AF9A2BB46C(L_52, L_54, /*hidden argument*/NULL);
goto IL_0140;
}
IL_0138:
{
Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D * L_55 = ___previousFloatParseHandling4;
il2cpp_codegen_initobj(L_55, sizeof(Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D ));
}
IL_0140:
{
bool L_56 = __this->get__maxDepthSet_26();
if (!L_56)
{
goto IL_0196;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_57 = ___reader0;
NullCheck(L_57);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_58;
L_58 = JsonReader_get_MaxDepth_mD56632F93DB678570560972E65FE5D5A7831CC28_inline(L_57, /*hidden argument*/NULL);
V_4 = L_58;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_59 = __this->get__maxDepth_25();
V_5 = L_59;
int32_t L_60;
L_60 = Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_4), /*hidden argument*/Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
int32_t L_61;
L_61 = Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_5), /*hidden argument*/Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
bool L_62;
L_62 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_4), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
bool L_63;
L_63 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_5), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_60) == ((int32_t)L_61))? 1 : 0)&(int32_t)((((int32_t)L_62) == ((int32_t)L_63))? 1 : 0))))
{
goto IL_0196;
}
}
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * L_64 = ___previousMaxDepth5;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_65 = ___reader0;
NullCheck(L_65);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_66;
L_66 = JsonReader_get_MaxDepth_mD56632F93DB678570560972E65FE5D5A7831CC28_inline(L_65, /*hidden argument*/NULL);
*(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)L_64 = L_66;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_67 = ___reader0;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_68 = __this->get__maxDepth_25();
NullCheck(L_67);
JsonReader_set_MaxDepth_m50EB95C59AFE6A498AAD847E31F467BFFB1E7A74(L_67, L_68, /*hidden argument*/NULL);
goto IL_019e;
}
IL_0196:
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * L_69 = ___previousMaxDepth5;
il2cpp_codegen_initobj(L_69, sizeof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ));
}
IL_019e:
{
bool L_70 = __this->get__dateFormatStringSet_29();
if (!L_70)
{
goto IL_01d0;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_71 = ___reader0;
NullCheck(L_71);
String_t* L_72;
L_72 = JsonReader_get_DateFormatString_mA13BC1749AF8F2E33BA1365C42CA876BEFC23A54_inline(L_71, /*hidden argument*/NULL);
String_t* L_73 = __this->get__dateFormatString_28();
bool L_74;
L_74 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_72, L_73, /*hidden argument*/NULL);
if (!L_74)
{
goto IL_01d0;
}
}
{
String_t** L_75 = ___previousDateFormatString6;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_76 = ___reader0;
NullCheck(L_76);
String_t* L_77;
L_77 = JsonReader_get_DateFormatString_mA13BC1749AF8F2E33BA1365C42CA876BEFC23A54_inline(L_76, /*hidden argument*/NULL);
*((RuntimeObject **)L_75) = (RuntimeObject *)L_77;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_75, (void*)(RuntimeObject *)L_77);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_78 = ___reader0;
String_t* L_79 = __this->get__dateFormatString_28();
NullCheck(L_78);
JsonReader_set_DateFormatString_m7663A3BDC18FEBEB43B9DEAD863A376BB0A5B443_inline(L_78, L_79, /*hidden argument*/NULL);
goto IL_01d4;
}
IL_01d0:
{
String_t** L_80 = ___previousDateFormatString6;
*((RuntimeObject **)L_80) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_80, (void*)(RuntimeObject *)NULL);
}
IL_01d4:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_81 = ___reader0;
V_0 = ((JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE *)IsInstClass((RuntimeObject*)L_81, JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var));
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * L_82 = V_0;
if (!L_82)
{
goto IL_0201;
}
}
{
RuntimeObject* L_83 = __this->get__contractResolver_11();
V_6 = ((DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9 *)IsInstClass((RuntimeObject*)L_83, DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var));
DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9 * L_84 = V_6;
if (!L_84)
{
goto IL_0201;
}
}
{
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * L_85 = V_0;
DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9 * L_86 = V_6;
NullCheck(L_86);
DefaultContractResolverState_tF2F0070A51C59B266BB72B3AFCACA245AE8847CE * L_87;
L_87 = DefaultContractResolver_GetState_m87DFD2D6035D220F0451DBF5B7336916EC3BA5D9(L_86, /*hidden argument*/NULL);
NullCheck(L_87);
PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 * L_88 = L_87->get_NameTable_1();
NullCheck(L_85);
L_85->set_NameTable_27(L_88);
}
IL_0201:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::ResetReader(Vuforia.Newtonsoft.Json.JsonReader,System.Globalization.CultureInfo,System.Nullable`1<Vuforia.Newtonsoft.Json.DateTimeZoneHandling>,System.Nullable`1<Vuforia.Newtonsoft.Json.DateParseHandling>,System.Nullable`1<Vuforia.Newtonsoft.Json.FloatParseHandling>,System.Nullable`1<System.Int32>,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_ResetReader_mB09F6062A5FA5110D833B8601F41A4BF7FD404DB (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___previousCulture1, Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 ___previousDateTimeZoneHandling2, Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F ___previousDateParseHandling3, Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D ___previousFloatParseHandling4, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___previousMaxDepth5, String_t* ___previousDateFormatString6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * V_0 = NULL;
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___previousCulture1;
if (!L_0)
{
goto IL_000a;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader0;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___previousCulture1;
NullCheck(L_1);
JsonReader_set_Culture_m358DAB69604E891560445695FC823BBE41B2F106_inline(L_1, L_2, /*hidden argument*/NULL);
}
IL_000a:
{
bool L_3;
L_3 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&___previousDateTimeZoneHandling2), /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (!L_3)
{
goto IL_0020;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader0;
int32_t L_5;
L_5 = Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&___previousDateTimeZoneHandling2), /*hidden argument*/Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
NullCheck(L_4);
JsonReader_set_DateTimeZoneHandling_m3C0CB5F489907DAEB846392146CDD9529D57B3A9(L_4, L_5, /*hidden argument*/NULL);
}
IL_0020:
{
bool L_6;
L_6 = Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&___previousDateParseHandling3), /*hidden argument*/Nullable_1_get_HasValue_m844AFAA10161DEBB296D0FFBCB4BD5C59E9DE8D3_RuntimeMethod_var);
if (!L_6)
{
goto IL_0036;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_7 = ___reader0;
int32_t L_8;
L_8 = Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_inline((Nullable_1_t2810DBFCA870A5389B06659A45960C228E293F9F *)(&___previousDateParseHandling3), /*hidden argument*/Nullable_1_GetValueOrDefault_mD8A4032239CA7BCBC7B83AE2B48FAFC9E27DE1C4_RuntimeMethod_var);
NullCheck(L_7);
JsonReader_set_DateParseHandling_m96CB240BFA3D71CF8E8565BEB8EA1786795B3719(L_7, L_8, /*hidden argument*/NULL);
}
IL_0036:
{
bool L_9;
L_9 = Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)(&___previousFloatParseHandling4), /*hidden argument*/Nullable_1_get_HasValue_m81E0B2455A7AD222E1CFCE117334E3EB72082C7B_RuntimeMethod_var);
if (!L_9)
{
goto IL_004c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10 = ___reader0;
int32_t L_11;
L_11 = Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_inline((Nullable_1_tF3BDD30A201EC73AF03646ED55F64B64F0AA2E2D *)(&___previousFloatParseHandling4), /*hidden argument*/Nullable_1_GetValueOrDefault_m923262794B2BE50708F925F795A122F9AC24A8F8_RuntimeMethod_var);
NullCheck(L_10);
JsonReader_set_FloatParseHandling_m9334526CD4846510BE61EEBA025F86AF9A2BB46C(L_10, L_11, /*hidden argument*/NULL);
}
IL_004c:
{
bool L_12 = __this->get__maxDepthSet_26();
if (!L_12)
{
goto IL_005c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_13 = ___reader0;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_14 = ___previousMaxDepth5;
NullCheck(L_13);
JsonReader_set_MaxDepth_m50EB95C59AFE6A498AAD847E31F467BFFB1E7A74(L_13, L_14, /*hidden argument*/NULL);
}
IL_005c:
{
bool L_15 = __this->get__dateFormatStringSet_29();
if (!L_15)
{
goto IL_006c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_16 = ___reader0;
String_t* L_17 = ___previousDateFormatString6;
NullCheck(L_16);
JsonReader_set_DateFormatString_m7663A3BDC18FEBEB43B9DEAD863A376BB0A5B443_inline(L_16, L_17, /*hidden argument*/NULL);
}
IL_006c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_18 = ___reader0;
V_0 = ((JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE *)IsInstClass((RuntimeObject*)L_18, JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE_il2cpp_TypeInfo_var));
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * L_19 = V_0;
if (!L_19)
{
goto IL_007d;
}
}
{
JsonTextReader_t7ED411D2A98D470572753FF386B517E0E5623EBE * L_20 = V_0;
NullCheck(L_20);
L_20->set_NameTable_27((PropertyNameTable_tBBE8B2759BF2A61B19E7FCF811FC18C5DBADB285 *)NULL);
}
IL_007d:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Serialize(System.IO.TextWriter,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Serialize_mB5332AD4DAD02DCA9FCF35FF2A0ACE8D98104259 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___textWriter0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = ___textWriter0;
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * L_1 = (JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 *)il2cpp_codegen_object_new(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0_il2cpp_TypeInfo_var);
JsonTextWriter__ctor_mED308137E7448DDE30E0E119D0E53929A75BC057(L_1, L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___value1;
JsonSerializer_Serialize_m3A6B370D6E1417ECA2EBD1B7EAAC3944B5C0DA7F(__this, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Serialize(Vuforia.Newtonsoft.Json.JsonWriter,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Serialize_m22DD2A61C0E3909EF0CB152A79BD3D69C8950102 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___jsonWriter0, RuntimeObject * ___value1, Type_t * ___objectType2, const RuntimeMethod* method)
{
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_0 = ___jsonWriter0;
RuntimeObject * L_1 = ___value1;
Type_t * L_2 = ___objectType2;
VirtualActionInvoker3< JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D *, RuntimeObject *, Type_t * >::Invoke(63 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::SerializeInternal(Vuforia.Newtonsoft.Json.JsonWriter,System.Object,System.Type) */, __this, L_0, L_1, L_2);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Serialize(System.IO.TextWriter,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Serialize_mBCF1035FE60CFB20A7C5BE6F7C18F965245C2472 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___textWriter0, RuntimeObject * ___value1, Type_t * ___objectType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = ___textWriter0;
JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 * L_1 = (JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0 *)il2cpp_codegen_object_new(JsonTextWriter_tDEE88E98B0A53DD1D1983C1DBE179D53BB1DE9F0_il2cpp_TypeInfo_var);
JsonTextWriter__ctor_mED308137E7448DDE30E0E119D0E53929A75BC057(L_1, L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___value1;
Type_t * L_3 = ___objectType2;
JsonSerializer_Serialize_m22DD2A61C0E3909EF0CB152A79BD3D69C8950102(__this, L_1, L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::Serialize(Vuforia.Newtonsoft.Json.JsonWriter,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_Serialize_m3A6B370D6E1417ECA2EBD1B7EAAC3944B5C0DA7F (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___jsonWriter0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_0 = ___jsonWriter0;
RuntimeObject * L_1 = ___value1;
VirtualActionInvoker3< JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D *, RuntimeObject *, Type_t * >::Invoke(63 /* System.Void Vuforia.Newtonsoft.Json.JsonSerializer::SerializeInternal(Vuforia.Newtonsoft.Json.JsonWriter,System.Object,System.Type) */, __this, L_0, L_1, (Type_t *)NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::SerializeInternal(Vuforia.Newtonsoft.Json.JsonWriter,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_SerializeInternal_m79988ECA84EF00EF3377016A25906B453868E538 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * ___jsonWriter0, RuntimeObject * ___value1, Type_t * ___objectType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB288DF9A2916D57A7E6D73226C3C1BAF54C9408);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E V_0;
memset((&V_0), 0, sizeof(V_0));
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD V_3;
memset((&V_3), 0, sizeof(V_3));
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A V_4;
memset((&V_4), 0, sizeof(V_4));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * V_5 = NULL;
String_t* V_6 = NULL;
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * V_7 = NULL;
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E V_8;
memset((&V_8), 0, sizeof(V_8));
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 V_9;
memset((&V_9), 0, sizeof(V_9));
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 V_10;
memset((&V_10), 0, sizeof(V_10));
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD V_11;
memset((&V_11), 0, sizeof(V_11));
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A V_12;
memset((&V_12), 0, sizeof(V_12));
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * G_B25_0 = NULL;
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * G_B27_0 = NULL;
JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * G_B27_1 = NULL;
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * G_B26_0 = NULL;
JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * G_B26_1 = NULL;
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_0 = ___jsonWriter0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralAB288DF9A2916D57A7E6D73226C3C1BAF54C9408, /*hidden argument*/NULL);
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E ));
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * L_1 = __this->get_address_of__formatting_17();
bool L_2;
L_2 = Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)L_1, /*hidden argument*/Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_RuntimeMethod_var);
if (!L_2)
{
goto IL_005f;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_3 = ___jsonWriter0;
NullCheck(L_3);
int32_t L_4;
L_4 = JsonWriter_get_Formatting_mF93BDFD42949F3657B42373489E40D9A0F8C4C7D_inline(L_3, /*hidden argument*/NULL);
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E L_5 = __this->get__formatting_17();
V_8 = L_5;
int32_t L_6;
L_6 = Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)(&V_8), /*hidden argument*/Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_RuntimeMethod_var);
bool L_7;
L_7 = Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)(&V_8), /*hidden argument*/Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_4) == ((int32_t)L_6))? 1 : 0)&(int32_t)L_7)))
{
goto IL_005f;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_8 = ___jsonWriter0;
NullCheck(L_8);
int32_t L_9;
L_9 = JsonWriter_get_Formatting_mF93BDFD42949F3657B42373489E40D9A0F8C4C7D_inline(L_8, /*hidden argument*/NULL);
Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)(&V_0), L_9, /*hidden argument*/Nullable_1__ctor_m6BFAD89F7B60F22A60E9C455789E35E277324807_RuntimeMethod_var);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_10 = ___jsonWriter0;
Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E * L_11 = __this->get_address_of__formatting_17();
int32_t L_12;
L_12 = Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)L_11, /*hidden argument*/Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_RuntimeMethod_var);
NullCheck(L_10);
JsonWriter_set_Formatting_mE4648783E943F2EA9977ADF85BDCE8F05F29D349(L_10, L_12, /*hidden argument*/NULL);
}
IL_005f:
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 ));
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * L_13 = __this->get_address_of__dateFormatHandling_18();
bool L_14;
L_14 = Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)L_13, /*hidden argument*/Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_RuntimeMethod_var);
if (!L_14)
{
goto IL_00b3;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_15 = ___jsonWriter0;
NullCheck(L_15);
int32_t L_16;
L_16 = JsonWriter_get_DateFormatHandling_m934EA63B68C3F847E5208EA9DE207BBE41A00B27_inline(L_15, /*hidden argument*/NULL);
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 L_17 = __this->get__dateFormatHandling_18();
V_9 = L_17;
int32_t L_18;
L_18 = Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)(&V_9), /*hidden argument*/Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_RuntimeMethod_var);
bool L_19;
L_19 = Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)(&V_9), /*hidden argument*/Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_16) == ((int32_t)L_18))? 1 : 0)&(int32_t)L_19)))
{
goto IL_00b3;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_20 = ___jsonWriter0;
NullCheck(L_20);
int32_t L_21;
L_21 = JsonWriter_get_DateFormatHandling_m934EA63B68C3F847E5208EA9DE207BBE41A00B27_inline(L_20, /*hidden argument*/NULL);
Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)(&V_1), L_21, /*hidden argument*/Nullable_1__ctor_m0F803D19E9E8A3950C20B5F7E42B92955C98FCB5_RuntimeMethod_var);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_22 = ___jsonWriter0;
Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 * L_23 = __this->get_address_of__dateFormatHandling_18();
int32_t L_24;
L_24 = Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)L_23, /*hidden argument*/Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_RuntimeMethod_var);
NullCheck(L_22);
JsonWriter_set_DateFormatHandling_m84D327EF68BA9767DA32175C11C336AA26AD4A40(L_22, L_24, /*hidden argument*/NULL);
}
IL_00b3:
{
il2cpp_codegen_initobj((&V_2), sizeof(Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 ));
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * L_25 = __this->get_address_of__dateTimeZoneHandling_19();
bool L_26;
L_26 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)L_25, /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (!L_26)
{
goto IL_0107;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_27 = ___jsonWriter0;
NullCheck(L_27);
int32_t L_28;
L_28 = JsonWriter_get_DateTimeZoneHandling_m97C5683CADF09A632459EDE3CB92F2A2FE77FC27_inline(L_27, /*hidden argument*/NULL);
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 L_29 = __this->get__dateTimeZoneHandling_19();
V_10 = L_29;
int32_t L_30;
L_30 = Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_10), /*hidden argument*/Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
bool L_31;
L_31 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_10), /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_28) == ((int32_t)L_30))? 1 : 0)&(int32_t)L_31)))
{
goto IL_0107;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_32 = ___jsonWriter0;
NullCheck(L_32);
int32_t L_33;
L_33 = JsonWriter_get_DateTimeZoneHandling_m97C5683CADF09A632459EDE3CB92F2A2FE77FC27_inline(L_32, /*hidden argument*/NULL);
Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_2), L_33, /*hidden argument*/Nullable_1__ctor_m28747428C4461A7223F24FC2D0EC8807C7377E0D_RuntimeMethod_var);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_34 = ___jsonWriter0;
Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 * L_35 = __this->get_address_of__dateTimeZoneHandling_19();
int32_t L_36;
L_36 = Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)L_35, /*hidden argument*/Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
NullCheck(L_34);
JsonWriter_set_DateTimeZoneHandling_m723836FEC0B00B74C392DF9C22652BB1D932D818(L_34, L_36, /*hidden argument*/NULL);
}
IL_0107:
{
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD ));
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * L_37 = __this->get_address_of__floatFormatHandling_21();
bool L_38;
L_38 = Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)L_37, /*hidden argument*/Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_RuntimeMethod_var);
if (!L_38)
{
goto IL_015b;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_39 = ___jsonWriter0;
NullCheck(L_39);
int32_t L_40;
L_40 = JsonWriter_get_FloatFormatHandling_mFF1E711565B799544AD844F23FB341DD6D46BDCD_inline(L_39, /*hidden argument*/NULL);
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD L_41 = __this->get__floatFormatHandling_21();
V_11 = L_41;
int32_t L_42;
L_42 = Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)(&V_11), /*hidden argument*/Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_RuntimeMethod_var);
bool L_43;
L_43 = Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)(&V_11), /*hidden argument*/Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_40) == ((int32_t)L_42))? 1 : 0)&(int32_t)L_43)))
{
goto IL_015b;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_44 = ___jsonWriter0;
NullCheck(L_44);
int32_t L_45;
L_45 = JsonWriter_get_FloatFormatHandling_mFF1E711565B799544AD844F23FB341DD6D46BDCD_inline(L_44, /*hidden argument*/NULL);
Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)(&V_3), L_45, /*hidden argument*/Nullable_1__ctor_m8F186E8BC812DF06C4193F053B2A2D33F87E6905_RuntimeMethod_var);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_46 = ___jsonWriter0;
Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD * L_47 = __this->get_address_of__floatFormatHandling_21();
int32_t L_48;
L_48 = Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)L_47, /*hidden argument*/Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_RuntimeMethod_var);
NullCheck(L_46);
JsonWriter_set_FloatFormatHandling_m7B4A602BC2620AC64785070CE6662DAC339C863D(L_46, L_48, /*hidden argument*/NULL);
}
IL_015b:
{
il2cpp_codegen_initobj((&V_4), sizeof(Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A ));
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * L_49 = __this->get_address_of__stringEscapeHandling_23();
bool L_50;
L_50 = Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)L_49, /*hidden argument*/Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_RuntimeMethod_var);
if (!L_50)
{
goto IL_01af;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_51 = ___jsonWriter0;
NullCheck(L_51);
int32_t L_52;
L_52 = JsonWriter_get_StringEscapeHandling_mC1AFB3064B082108AA096BF2BCAAE35F5185256E_inline(L_51, /*hidden argument*/NULL);
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A L_53 = __this->get__stringEscapeHandling_23();
V_12 = L_53;
int32_t L_54;
L_54 = Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)(&V_12), /*hidden argument*/Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_RuntimeMethod_var);
bool L_55;
L_55 = Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)(&V_12), /*hidden argument*/Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_52) == ((int32_t)L_54))? 1 : 0)&(int32_t)L_55)))
{
goto IL_01af;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_56 = ___jsonWriter0;
NullCheck(L_56);
int32_t L_57;
L_57 = JsonWriter_get_StringEscapeHandling_mC1AFB3064B082108AA096BF2BCAAE35F5185256E_inline(L_56, /*hidden argument*/NULL);
Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)(&V_4), L_57, /*hidden argument*/Nullable_1__ctor_mB1DDD9C1AC3DB827384F9B946D9343CCA34E981A_RuntimeMethod_var);
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_58 = ___jsonWriter0;
Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A * L_59 = __this->get_address_of__stringEscapeHandling_23();
int32_t L_60;
L_60 = Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)L_59, /*hidden argument*/Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_RuntimeMethod_var);
NullCheck(L_58);
JsonWriter_set_StringEscapeHandling_mDB60850DEB6BBC6254A5C38E909EFBD617B808EB(L_58, L_60, /*hidden argument*/NULL);
}
IL_01af:
{
V_5 = (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 *)NULL;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_61 = __this->get__culture_24();
if (!L_61)
{
goto IL_01e1;
}
}
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_62 = __this->get__culture_24();
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_63 = ___jsonWriter0;
NullCheck(L_63);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_64;
L_64 = JsonWriter_get_Culture_m9E97749B7EB90AF01A3D3444BD5A1BFADDBF3041(L_63, /*hidden argument*/NULL);
NullCheck(L_62);
bool L_65;
L_65 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_62, L_64);
if (L_65)
{
goto IL_01e1;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_66 = ___jsonWriter0;
NullCheck(L_66);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_67;
L_67 = JsonWriter_get_Culture_m9E97749B7EB90AF01A3D3444BD5A1BFADDBF3041(L_66, /*hidden argument*/NULL);
V_5 = L_67;
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_68 = ___jsonWriter0;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_69 = __this->get__culture_24();
NullCheck(L_68);
JsonWriter_set_Culture_mE50EBFC707FDE0B65B39EC7CA2BAEB9F1973C385_inline(L_68, L_69, /*hidden argument*/NULL);
}
IL_01e1:
{
V_6 = (String_t*)NULL;
bool L_70 = __this->get__dateFormatStringSet_29();
if (!L_70)
{
goto IL_0213;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_71 = ___jsonWriter0;
NullCheck(L_71);
String_t* L_72;
L_72 = JsonWriter_get_DateFormatString_mC1B37995E57EBFE90BC8BC79702F2F94D7E2CB4D_inline(L_71, /*hidden argument*/NULL);
String_t* L_73 = __this->get__dateFormatString_28();
bool L_74;
L_74 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_72, L_73, /*hidden argument*/NULL);
if (!L_74)
{
goto IL_0213;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_75 = ___jsonWriter0;
NullCheck(L_75);
String_t* L_76;
L_76 = JsonWriter_get_DateFormatString_mC1B37995E57EBFE90BC8BC79702F2F94D7E2CB4D_inline(L_75, /*hidden argument*/NULL);
V_6 = L_76;
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_77 = ___jsonWriter0;
String_t* L_78 = __this->get__dateFormatString_28();
NullCheck(L_77);
JsonWriter_set_DateFormatString_m1E8DABD3EF04FC92FE631D82B5639BC5F845CF46_inline(L_77, L_78, /*hidden argument*/NULL);
}
IL_0213:
{
RuntimeObject* L_79;
L_79 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
if (!L_79)
{
goto IL_0229;
}
}
{
RuntimeObject* L_80;
L_80 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
NullCheck(L_80);
int32_t L_81;
L_81 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_80);
if ((((int32_t)L_81) >= ((int32_t)4)))
{
goto IL_022c;
}
}
IL_0229:
{
G_B25_0 = ((TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A *)(NULL));
goto IL_0232;
}
IL_022c:
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_82 = ___jsonWriter0;
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * L_83 = (TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A *)il2cpp_codegen_object_new(TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A_il2cpp_TypeInfo_var);
TraceJsonWriter__ctor_m8E960E3B86EB3160CE5F42154C7FBAA5A3CD33BF(L_83, L_82, /*hidden argument*/NULL);
G_B25_0 = L_83;
}
IL_0232:
{
V_7 = G_B25_0;
JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 * L_84 = (JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267 *)il2cpp_codegen_object_new(JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267_il2cpp_TypeInfo_var);
JsonSerializerInternalWriter__ctor_mBA92E8717907C9156884135C76E6EADCAD0EEA86(L_84, __this, /*hidden argument*/NULL);
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * L_85 = V_7;
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * L_86 = L_85;
G_B26_0 = L_86;
G_B26_1 = L_84;
if (L_86)
{
G_B27_0 = L_86;
G_B27_1 = L_84;
goto IL_0241;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_87 = ___jsonWriter0;
G_B27_0 = ((TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A *)(L_87));
G_B27_1 = G_B26_1;
}
IL_0241:
{
RuntimeObject * L_88 = ___value1;
Type_t * L_89 = ___objectType2;
NullCheck(G_B27_1);
JsonSerializerInternalWriter_Serialize_m43CBC5175AE82B9F47291ABD9A4DDFBDD49FB571(G_B27_1, G_B27_0, L_88, L_89, /*hidden argument*/NULL);
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * L_90 = V_7;
if (!L_90)
{
goto IL_0260;
}
}
{
RuntimeObject* L_91;
L_91 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, __this);
TraceJsonWriter_t4CC6E824AAF480538630D68B7ED27B57CB92C17A * L_92 = V_7;
NullCheck(L_92);
String_t* L_93;
L_93 = TraceJsonWriter_GetSerializedJsonMessage_m85234EB251FD23E5D9BEA316281B168872C75E24(L_92, /*hidden argument*/NULL);
NullCheck(L_91);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_91, 4, L_93, (Exception_t *)NULL);
}
IL_0260:
{
bool L_94;
L_94 = Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m13ED96C324CAD061F965777EB3C4C7804FEFA1C1_RuntimeMethod_var);
if (!L_94)
{
goto IL_0276;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_95 = ___jsonWriter0;
int32_t L_96;
L_96 = Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_inline((Nullable_1_tF20FDEE5813E83B61582C2AD3A792CE3103B385E *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m6EE0A94C1748BDE887A0CFCE6D1239A07B1DEADC_RuntimeMethod_var);
NullCheck(L_95);
JsonWriter_set_Formatting_mE4648783E943F2EA9977ADF85BDCE8F05F29D349(L_95, L_96, /*hidden argument*/NULL);
}
IL_0276:
{
bool L_97;
L_97 = Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_m705016AA68ACD1203F6F9A43FB3320ED9990DAB5_RuntimeMethod_var);
if (!L_97)
{
goto IL_028c;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_98 = ___jsonWriter0;
int32_t L_99;
L_99 = Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_inline((Nullable_1_t8001F3FF932EF882364AF12AF207498F75D7D665 *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_m014A4CD95D414E54627B0D099107407A89119379_RuntimeMethod_var);
NullCheck(L_98);
JsonWriter_set_DateFormatHandling_m84D327EF68BA9767DA32175C11C336AA26AD4A40(L_98, L_99, /*hidden argument*/NULL);
}
IL_028c:
{
bool L_100;
L_100 = Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_2), /*hidden argument*/Nullable_1_get_HasValue_m12793D865464ED60A2E9F838DC6FEF15B0D29725_RuntimeMethod_var);
if (!L_100)
{
goto IL_02a2;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_101 = ___jsonWriter0;
int32_t L_102;
L_102 = Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_inline((Nullable_1_tBC91AD832BF2858F0C34ACD7DACF56BF58A8C813 *)(&V_2), /*hidden argument*/Nullable_1_GetValueOrDefault_m5F129139D11D36498F71850D6BB93A3809876BF1_RuntimeMethod_var);
NullCheck(L_101);
JsonWriter_set_DateTimeZoneHandling_m723836FEC0B00B74C392DF9C22652BB1D932D818(L_101, L_102, /*hidden argument*/NULL);
}
IL_02a2:
{
bool L_103;
L_103 = Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)(&V_3), /*hidden argument*/Nullable_1_get_HasValue_m0B3C4B90001F35A8F6C3378A231CF9C13959C867_RuntimeMethod_var);
if (!L_103)
{
goto IL_02b8;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_104 = ___jsonWriter0;
int32_t L_105;
L_105 = Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_inline((Nullable_1_t830C4830A2402C111C37939E95E763F69D4F0DBD *)(&V_3), /*hidden argument*/Nullable_1_GetValueOrDefault_m79F6B429BEC49F74F816B95788828871B60ABFCE_RuntimeMethod_var);
NullCheck(L_104);
JsonWriter_set_FloatFormatHandling_m7B4A602BC2620AC64785070CE6662DAC339C863D(L_104, L_105, /*hidden argument*/NULL);
}
IL_02b8:
{
bool L_106;
L_106 = Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)(&V_4), /*hidden argument*/Nullable_1_get_HasValue_m710DE555C730DADAFB3CBAED759ADCEBE6E2024B_RuntimeMethod_var);
if (!L_106)
{
goto IL_02ce;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_107 = ___jsonWriter0;
int32_t L_108;
L_108 = Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_inline((Nullable_1_tA3CDA1CCF4719366C96D1762D86F0491A6B63B6A *)(&V_4), /*hidden argument*/Nullable_1_GetValueOrDefault_mA84CF17C082BCBA2CCEFA58A43DF11089F7FF407_RuntimeMethod_var);
NullCheck(L_107);
JsonWriter_set_StringEscapeHandling_mDB60850DEB6BBC6254A5C38E909EFBD617B808EB(L_107, L_108, /*hidden argument*/NULL);
}
IL_02ce:
{
bool L_109 = __this->get__dateFormatStringSet_29();
if (!L_109)
{
goto IL_02de;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_110 = ___jsonWriter0;
String_t* L_111 = V_6;
NullCheck(L_110);
JsonWriter_set_DateFormatString_m1E8DABD3EF04FC92FE631D82B5639BC5F845CF46_inline(L_110, L_111, /*hidden argument*/NULL);
}
IL_02de:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_112 = V_5;
if (!L_112)
{
goto IL_02ea;
}
}
{
JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * L_113 = ___jsonWriter0;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_114 = V_5;
NullCheck(L_113);
JsonWriter_set_Culture_mE50EBFC707FDE0B65B39EC7CA2BAEB9F1973C385_inline(L_113, L_114, /*hidden argument*/NULL);
}
IL_02ea:
{
return;
}
}
// Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver Vuforia.Newtonsoft.Json.JsonSerializer::GetReferenceResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializer_GetReferenceResolver_mB1A2477F3CEB4C37E81DF088872CB399056FC78C (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__referenceResolver_16();
if (L_0)
{
goto IL_0013;
}
}
{
DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106 * L_1 = (DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106 *)il2cpp_codegen_object_new(DefaultReferenceResolver_t0D76B535DB684B84B22EC0D6F48A52FA5CFED106_il2cpp_TypeInfo_var);
DefaultReferenceResolver__ctor_m02CE560DE89868E5A27CA4B84E723C79EC7156FC(L_1, /*hidden argument*/NULL);
__this->set__referenceResolver_16(L_1);
}
IL_0013:
{
RuntimeObject* L_2 = __this->get__referenceResolver_16();
return L_2;
}
}
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonSerializer_GetMatchingConverter_mD173A3ACE4CC46BCC18EBA196274A4BF9DCE72E0 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
JsonConverterCollection_t25BB8A1F25E26861DB0658B6629F884560DD312D * L_0 = __this->get__converters_10();
Type_t * L_1 = ___type0;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_2;
L_2 = JsonSerializer_GetMatchingConverter_m82672975FE7EA0E7BD6BEA8D8A7D9A0AF982C7C4(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.JsonConverter>,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonSerializer_GetMatchingConverter_m82672975FE7EA0E7BD6BEA8D8A7D9A0AF982C7C4 (RuntimeObject* ___converters0, Type_t * ___objectType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t94CA9FEDC89CB2440AB1AC9A80CD64F3346D6940_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tBA29273CF051E6D6E9CFCBF347D6E8B9E43E052B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_1 = NULL;
{
RuntimeObject* L_0 = ___converters0;
if (!L_0)
{
goto IL_0027;
}
}
{
V_0 = 0;
goto IL_001e;
}
IL_0007:
{
RuntimeObject* L_1 = ___converters0;
int32_t L_2 = V_0;
NullCheck(L_1);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_3;
L_3 = InterfaceFuncInvoker1< JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Vuforia.Newtonsoft.Json.JsonConverter>::get_Item(System.Int32) */, IList_1_tBA29273CF051E6D6E9CFCBF347D6E8B9E43E052B_il2cpp_TypeInfo_var, L_1, L_2);
V_1 = L_3;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_4 = V_1;
Type_t * L_5 = ___objectType1;
NullCheck(L_4);
bool L_6;
L_6 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(6 /* System.Boolean Vuforia.Newtonsoft.Json.JsonConverter::CanConvert(System.Type) */, L_4, L_5);
if (!L_6)
{
goto IL_001a;
}
}
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_7 = V_1;
return L_7;
}
IL_001a:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_001e:
{
int32_t L_9 = V_0;
RuntimeObject* L_10 = ___converters0;
NullCheck(L_10);
int32_t L_11;
L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.JsonConverter>::get_Count() */, ICollection_1_t94CA9FEDC89CB2440AB1AC9A80CD64F3346D6940_il2cpp_TypeInfo_var, L_10);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0007;
}
}
IL_0027:
{
return (JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)NULL;
}
}
// System.Void Vuforia.Newtonsoft.Json.JsonSerializer::OnError(Vuforia.Newtonsoft.Json.Serialization.ErrorEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializer_OnError_m6830555204E88CFC11ECAF539E7254E2B6572366 (JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * __this, ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 * ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_Invoke_m136FFCAEDA0BFA5B52F8A91815A88D5B3A5F1D1C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * V_0 = NULL;
{
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_0 = __this->get_Error_30();
V_0 = L_0;
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_2 = V_0;
ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 * L_3 = ___e0;
NullCheck(L_2);
EventHandler_1_Invoke_m136FFCAEDA0BFA5B52F8A91815A88D5B3A5F1D1C(L_2, __this, L_3, /*hidden argument*/EventHandler_1_Invoke_m136FFCAEDA0BFA5B52F8A91815A88D5B3A5F1D1C_RuntimeMethod_var);
}
IL_0012:
{
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 Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::.ctor(Vuforia.Newtonsoft.Json.JsonSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalBase__ctor_mDD0120AE02ADF7A6CF2FC7443221AD6D58D32C90 (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___serializer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral554ECA773158094C164F69EA4C321EE591591850);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_0 = ___serializer0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteral554ECA773158094C164F69EA4C321EE591591850, /*hidden argument*/NULL);
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_1 = ___serializer0;
__this->set_Serializer_2(L_1);
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_2 = ___serializer0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* Vuforia.Newtonsoft.Json.Serialization.ITraceWriter Vuforia.Newtonsoft.Json.JsonSerializer::get_TraceWriter() */, L_2);
__this->set_TraceWriter_3(L_3);
return;
}
}
// Vuforia.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::get_DefaultReferenceMappings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * JsonSerializerInternalBase_get_DefaultReferenceMappings_m3D0DF0787A4956729FECBB00AB6BDE02F4491F01 (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BidirectionalDictionary_2__ctor_m43BCA1E828FD90928EBDB8BFE89ABC1EBAC3AD9E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualityComparer_1_get_Default_m7C5EC964D0664BC8D6A3AE994AAA1159DAC8A836_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4621200C144ADD9591375B7800437CC2D0927AE9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7382F358493FAF83F88043238506DB8232A14C5C);
s_Il2CppMethodInitialized = true;
}
{
BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * L_0 = __this->get__mappings_1();
if (L_0)
{
goto IL_0027;
}
}
{
EqualityComparer_1_tDC2082D4D5947A0F76D6FA7870E09811B1A8B69E * L_1;
L_1 = EqualityComparer_1_get_Default_m7C5EC964D0664BC8D6A3AE994AAA1159DAC8A836(/*hidden argument*/EqualityComparer_1_get_Default_m7C5EC964D0664BC8D6A3AE994AAA1159DAC8A836_RuntimeMethod_var);
ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8 * L_2 = (ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8 *)il2cpp_codegen_object_new(ReferenceEqualsEqualityComparer_t583713029D3A25200043D123B92B1D0DB8A199D8_il2cpp_TypeInfo_var);
ReferenceEqualsEqualityComparer__ctor_mAA68D0E2A4E74092A99B4C2F2E80CD35B3D8CBF9(L_2, /*hidden argument*/NULL);
BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * L_3 = (BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C *)il2cpp_codegen_object_new(BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C_il2cpp_TypeInfo_var);
BidirectionalDictionary_2__ctor_m43BCA1E828FD90928EBDB8BFE89ABC1EBAC3AD9E(L_3, L_1, L_2, _stringLiteral4621200C144ADD9591375B7800437CC2D0927AE9, _stringLiteral7382F358493FAF83F88043238506DB8232A14C5C, /*hidden argument*/BidirectionalDictionary_2__ctor_m43BCA1E828FD90928EBDB8BFE89ABC1EBAC3AD9E_RuntimeMethod_var);
__this->set__mappings_1(L_3);
}
IL_0027:
{
BidirectionalDictionary_2_tF20BDE7D30BFE390D078BEE2B4214DDCB3C7148C * L_4 = __this->get__mappings_1();
return L_4;
}
}
// Vuforia.Newtonsoft.Json.Serialization.ErrorContext Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::GetErrorContext(System.Object,System.Object,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * JsonSerializerInternalBase_GetErrorContext_m19A4032DCA0A1E4B4516E1F59A6499DDE2EFB5CE (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, RuntimeObject * ___currentObject0, RuntimeObject * ___member1, String_t* ___path2, Exception_t * ___error3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_0 = __this->get__currentErrorContext_0();
if (L_0)
{
goto IL_0018;
}
}
{
RuntimeObject * L_1 = ___currentObject0;
RuntimeObject * L_2 = ___member1;
String_t* L_3 = ___path2;
Exception_t * L_4 = ___error3;
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_5 = (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 *)il2cpp_codegen_object_new(ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589_il2cpp_TypeInfo_var);
ErrorContext__ctor_mEFB81B5E96406673EA96ECC4455439C4D97D4ACC(L_5, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
__this->set__currentErrorContext_0(L_5);
}
IL_0018:
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_6 = __this->get__currentErrorContext_0();
NullCheck(L_6);
Exception_t * L_7;
L_7 = ErrorContext_get_Error_mE4CC6108C1AA2CAA9B7D19C5F3C4C8FE6A591833_inline(L_6, /*hidden argument*/NULL);
Exception_t * L_8 = ___error3;
if ((((RuntimeObject*)(Exception_t *)L_7) == ((RuntimeObject*)(Exception_t *)L_8)))
{
goto IL_0032;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1798B22F19EFFB0D5FBC900A0362B6DBB8EEC6AF)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalBase_GetErrorContext_m19A4032DCA0A1E4B4516E1F59A6499DDE2EFB5CE_RuntimeMethod_var)));
}
IL_0032:
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_10 = __this->get__currentErrorContext_0();
return L_10;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::ClearErrorContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalBase_ClearErrorContext_m13BE0970C0D153472880BEF45A97F079504784E9 (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, const RuntimeMethod* method)
{
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_0 = __this->get__currentErrorContext_0();
if (L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82B97C4F4CFDEC66B7B8C9D844653B1B44AC9A0D)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalBase_ClearErrorContext_m13BE0970C0D153472880BEF45A97F079504784E9_RuntimeMethod_var)));
}
IL_0013:
{
__this->set__currentErrorContext_0((ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 *)NULL);
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::IsErrorHandled(System.Object,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object,Vuforia.Newtonsoft.Json.IJsonLineInfo,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C (JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC * __this, RuntimeObject * ___currentObject0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___keyValue2, RuntimeObject* ___lineInfo3, String_t* ___path4, Exception_t * ___ex5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB060CFF77406762F0D469FCDA47BF024E278ED7A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3C2FADD6E8DD7DE92530B3AA431AAF7D3D456D0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA04D4286952D44B4CB5C87E7D30E05FE4153434);
s_Il2CppMethodInitialized = true;
}
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * V_0 = NULL;
String_t* V_1 = NULL;
String_t* G_B6_0 = NULL;
Type_t * G_B9_0 = NULL;
String_t* G_B9_1 = NULL;
String_t* G_B9_2 = NULL;
Type_t * G_B8_0 = NULL;
String_t* G_B8_1 = NULL;
String_t* G_B8_2 = NULL;
String_t* G_B10_0 = NULL;
String_t* G_B10_1 = NULL;
String_t* G_B10_2 = NULL;
{
RuntimeObject * L_0 = ___currentObject0;
RuntimeObject * L_1 = ___keyValue2;
String_t* L_2 = ___path4;
Exception_t * L_3 = ___ex5;
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_4;
L_4 = JsonSerializerInternalBase_GetErrorContext_m19A4032DCA0A1E4B4516E1F59A6499DDE2EFB5CE(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
RuntimeObject* L_5 = __this->get_TraceWriter_3();
if (!L_5)
{
goto IL_00b6;
}
}
{
RuntimeObject* L_6 = __this->get_TraceWriter_3();
NullCheck(L_6);
int32_t L_7;
L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_6);
if ((((int32_t)L_7) < ((int32_t)1)))
{
goto IL_00b6;
}
}
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_8 = V_0;
NullCheck(L_8);
bool L_9;
L_9 = ErrorContext_get_Traced_mFEA0E38805C49EA21C85E8E1CF4BDEAE76E2CCDC_inline(L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_00b6;
}
}
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_10 = V_0;
NullCheck(L_10);
ErrorContext_set_Traced_mE6B62DA045BF7B4D3394C8561B5722708C9638C0_inline(L_10, (bool)1, /*hidden argument*/NULL);
Type_t * L_11;
L_11 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_12 = { reinterpret_cast<intptr_t> (JsonSerializerInternalWriter_tFEC7D9EB003F081871AA96323A097B045FCCC267_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13;
L_13 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_12, /*hidden argument*/NULL);
bool L_14;
L_14 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_11, L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0059;
}
}
{
G_B6_0 = _stringLiteralB060CFF77406762F0D469FCDA47BF024E278ED7A;
goto IL_005e;
}
IL_0059:
{
G_B6_0 = _stringLiteralE3C2FADD6E8DD7DE92530B3AA431AAF7D3D456D0;
}
IL_005e:
{
V_1 = G_B6_0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_15 = ___contract1;
if (!L_15)
{
goto IL_0080;
}
}
{
String_t* L_16 = V_1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_17 = ___contract1;
NullCheck(L_17);
Type_t * L_18;
L_18 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_17, /*hidden argument*/NULL);
Type_t * L_19 = L_18;
G_B8_0 = L_19;
G_B8_1 = _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
G_B8_2 = L_16;
if (L_19)
{
G_B9_0 = L_19;
G_B9_1 = _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
G_B9_2 = L_16;
goto IL_0075;
}
}
{
G_B10_0 = ((String_t*)(NULL));
G_B10_1 = G_B8_1;
G_B10_2 = G_B8_2;
goto IL_007a;
}
IL_0075:
{
NullCheck(G_B9_0);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B9_0);
G_B10_0 = L_20;
G_B10_1 = G_B9_1;
G_B10_2 = G_B9_2;
}
IL_007a:
{
String_t* L_21;
L_21 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(G_B10_2, G_B10_1, G_B10_0, /*hidden argument*/NULL);
V_1 = L_21;
}
IL_0080:
{
String_t* L_22 = V_1;
Exception_t * L_23 = ___ex5;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_23);
String_t* L_25;
L_25 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_22, _stringLiteralEA04D4286952D44B4CB5C87E7D30E05FE4153434, L_24, /*hidden argument*/NULL);
V_1 = L_25;
Exception_t * L_26 = ___ex5;
if (((JsonException_tA0851478052E710490C73E995BE27E80545D03F2 *)IsInstClass((RuntimeObject*)L_26, JsonException_tA0851478052E710490C73E995BE27E80545D03F2_il2cpp_TypeInfo_var)))
{
goto IL_00a7;
}
}
{
RuntimeObject* L_27 = ___lineInfo3;
String_t* L_28 = ___path4;
String_t* L_29 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_30;
L_30 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(L_27, L_28, L_29, /*hidden argument*/NULL);
V_1 = L_30;
}
IL_00a7:
{
RuntimeObject* L_31 = __this->get_TraceWriter_3();
String_t* L_32 = V_1;
Exception_t * L_33 = ___ex5;
NullCheck(L_31);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_31, 1, L_32, L_33);
}
IL_00b6:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_34 = ___contract1;
if (!L_34)
{
goto IL_00cf;
}
}
{
RuntimeObject * L_35 = ___currentObject0;
if (!L_35)
{
goto IL_00cf;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_36 = ___contract1;
RuntimeObject * L_37 = ___currentObject0;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_38 = __this->get_Serializer_2();
NullCheck(L_38);
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_39;
L_39 = VirtualFuncInvoker0< StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 >::Invoke(37 /* System.Runtime.Serialization.StreamingContext Vuforia.Newtonsoft.Json.JsonSerializer::get_Context() */, L_38);
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_40 = V_0;
NullCheck(L_36);
JsonContract_InvokeOnError_m1A2E38899940F3EA25629559AF7A9FBAD6C6D3F4(L_36, L_37, L_39, L_40, /*hidden argument*/NULL);
}
IL_00cf:
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_41 = V_0;
NullCheck(L_41);
bool L_42;
L_42 = ErrorContext_get_Handled_mEFDC3E1B50AA7F57153F74D3C3CCB07BD44952F6_inline(L_41, /*hidden argument*/NULL);
if (L_42)
{
goto IL_00e9;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_43 = __this->get_Serializer_2();
RuntimeObject * L_44 = ___currentObject0;
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_45 = V_0;
ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 * L_46 = (ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0 *)il2cpp_codegen_object_new(ErrorEventArgs_t7F3627AD76F02C556B145CB936AE84FCBD4006C0_il2cpp_TypeInfo_var);
ErrorEventArgs__ctor_m8C5D4E863C2E5A65A46E302936BCFFA05065B08F(L_46, L_44, L_45, /*hidden argument*/NULL);
NullCheck(L_43);
JsonSerializer_OnError_m6830555204E88CFC11ECAF539E7254E2B6572366(L_43, L_46, /*hidden argument*/NULL);
}
IL_00e9:
{
ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * L_47 = V_0;
NullCheck(L_47);
bool L_48;
L_48 = ErrorContext_get_Handled_mEFDC3E1B50AA7F57153F74D3C3CCB07BD44952F6_inline(L_47, /*hidden argument*/NULL);
return L_48;
}
}
#ifdef __clang__
#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 Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::.ctor(Vuforia.Newtonsoft.Json.JsonSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader__ctor_m93FB8AD9EA61CA474E68769C958564B93685F950 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * ___serializer0, const RuntimeMethod* method)
{
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_0 = ___serializer0;
JsonSerializerInternalBase__ctor_mDD0120AE02ADF7A6CF2FC7443221AD6D58D32C90(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Populate(Vuforia.Newtonsoft.Json.JsonReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, RuntimeObject * ___target1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral320772EF40302B49A179DB96BAD02224E97B4018);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * V_1 = NULL;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * V_2 = NULL;
RuntimeObject* V_3 = NULL;
String_t* V_4 = NULL;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * V_5 = NULL;
RuntimeObject* V_6 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B6_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B7_1 = NULL;
String_t* G_B16_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B20_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B19_0 = NULL;
RuntimeObject* G_B21_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B21_1 = NULL;
{
RuntimeObject * L_0 = ___target1;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteral320772EF40302B49A179DB96BAD02224E97B4018, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___target1;
NullCheck(L_1);
Type_t * L_2;
L_2 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_1, /*hidden argument*/NULL);
V_0 = L_2;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_3 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_3);
RuntimeObject* L_4 = L_3->get__contractResolver_11();
Type_t * L_5 = V_0;
NullCheck(L_4);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_6;
L_6 = InterfaceFuncInvoker1< JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *, Type_t * >::Invoke(0 /* Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.IContractResolver::ResolveContract(System.Type) */, IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var, L_4, L_5);
V_1 = L_6;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_7 = ___reader0;
NullCheck(L_7);
bool L_8;
L_8 = JsonReader_MoveToContent_m65C89A182AAF855F32455D1EE227603DA7C980B6(L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0038;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_9 = ___reader0;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_10;
L_10 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF2C38C9CA6E2C1C890FE7CED0D017FF5DC0206AB)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0_RuntimeMethod_var)));
}
IL_0038:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_11 = ___reader0;
NullCheck(L_11);
int32_t L_12;
L_12 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_11);
if ((!(((uint32_t)L_12) == ((uint32_t)2))))
{
goto IL_008d;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_13 = V_1;
NullCheck(L_13);
int32_t L_14 = L_13->get_ContractType_5();
if ((!(((uint32_t)L_14) == ((uint32_t)2))))
{
goto IL_0076;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_15 = V_1;
V_2 = ((JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 *)CastclassClass((RuntimeObject*)L_15, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245_il2cpp_TypeInfo_var));
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_16 = V_2;
NullCheck(L_16);
bool L_17;
L_17 = JsonArrayContract_get_ShouldCreateWrapper_mBFBB0CE88CF4DA4FD074978F1BC42BBF058A3995_inline(L_16, /*hidden argument*/NULL);
G_B5_0 = __this;
if (L_17)
{
G_B6_0 = __this;
goto IL_0062;
}
}
{
RuntimeObject * L_18 = ___target1;
G_B7_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_18, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var));
G_B7_1 = G_B5_0;
goto IL_006b;
}
IL_0062:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_19 = V_2;
RuntimeObject * L_20 = ___target1;
NullCheck(L_19);
RuntimeObject* L_21;
L_21 = JsonArrayContract_CreateWrapper_m0FC0719BFA78DF65DE2956C7469AB6DFC30F816C(L_19, L_20, /*hidden argument*/NULL);
V_3 = L_21;
RuntimeObject* L_22 = V_3;
G_B7_0 = L_22;
G_B7_1 = G_B6_0;
}
IL_006b:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader0;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_24 = V_2;
NullCheck(G_B7_1);
RuntimeObject * L_25;
L_25 = JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710(G_B7_1, G_B7_0, L_23, L_24, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, (String_t*)NULL, /*hidden argument*/NULL);
return;
}
IL_0076:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_26 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_27;
L_27 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_28 = V_0;
String_t* L_29;
L_29 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6A69264340AEB99E5A3239168210940B46D35B69)), L_27, L_28, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_30;
L_30 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_26, L_29, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0_RuntimeMethod_var)));
}
IL_008d:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_31 = ___reader0;
NullCheck(L_31);
int32_t L_32;
L_32 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_31);
if ((!(((uint32_t)L_32) == ((uint32_t)1))))
{
goto IL_0164;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_33 = ___reader0;
NullCheck(L_33);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_33, /*hidden argument*/NULL);
V_4 = (String_t*)NULL;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_34 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_34);
int32_t L_35;
L_35 = VirtualFuncInvoker0< int32_t >::Invoke(32 /* Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling() */, L_34);
if ((((int32_t)L_35) == ((int32_t)2)))
{
goto IL_00f5;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_36 = ___reader0;
NullCheck(L_36);
int32_t L_37;
L_37 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_36);
if ((!(((uint32_t)L_37) == ((uint32_t)4))))
{
goto IL_00f5;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_38 = ___reader0;
NullCheck(L_38);
RuntimeObject * L_39;
L_39 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_38);
NullCheck(L_39);
String_t* L_40;
L_40 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_39);
bool L_41;
L_41 = String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5(L_40, _stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA, 4, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00f5;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_42 = ___reader0;
NullCheck(L_42);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_42, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_43 = ___reader0;
NullCheck(L_43);
RuntimeObject * L_44;
L_44 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_43);
if (L_44)
{
goto IL_00e2;
}
}
{
G_B16_0 = ((String_t*)(NULL));
goto IL_00ed;
}
IL_00e2:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_45 = ___reader0;
NullCheck(L_45);
RuntimeObject * L_46;
L_46 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_45);
NullCheck(L_46);
String_t* L_47;
L_47 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_46);
G_B16_0 = L_47;
}
IL_00ed:
{
V_4 = G_B16_0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_48 = ___reader0;
NullCheck(L_48);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_48, /*hidden argument*/NULL);
}
IL_00f5:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_49 = V_1;
NullCheck(L_49);
int32_t L_50 = L_49->get_ContractType_5();
if ((!(((uint32_t)L_50) == ((uint32_t)5))))
{
goto IL_0131;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_51 = V_1;
V_5 = ((JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 *)CastclassClass((RuntimeObject*)L_51, JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976_il2cpp_TypeInfo_var));
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_52 = V_5;
NullCheck(L_52);
bool L_53;
L_53 = JsonDictionaryContract_get_ShouldCreateWrapper_m9B288D28EB522BE882B07929FE4649D299C68897_inline(L_52, /*hidden argument*/NULL);
G_B19_0 = __this;
if (L_53)
{
G_B20_0 = __this;
goto IL_0118;
}
}
{
RuntimeObject * L_54 = ___target1;
G_B21_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_54, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var));
G_B21_1 = G_B19_0;
goto IL_0124;
}
IL_0118:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_55 = V_5;
RuntimeObject * L_56 = ___target1;
NullCheck(L_55);
RuntimeObject* L_57;
L_57 = JsonDictionaryContract_CreateWrapper_m891DB68316FBC3D10BFD23FEA0533C3A666CBDFA(L_55, L_56, /*hidden argument*/NULL);
V_6 = L_57;
RuntimeObject* L_58 = V_6;
G_B21_0 = L_58;
G_B21_1 = G_B20_0;
}
IL_0124:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_59 = ___reader0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_60 = V_5;
String_t* L_61 = V_4;
NullCheck(G_B21_1);
RuntimeObject * L_62;
L_62 = JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354(G_B21_1, G_B21_0, L_59, L_60, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, L_61, /*hidden argument*/NULL);
return;
}
IL_0131:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_63 = V_1;
NullCheck(L_63);
int32_t L_64 = L_63->get_ContractType_5();
if ((!(((uint32_t)L_64) == ((uint32_t)1))))
{
goto IL_014d;
}
}
{
RuntimeObject * L_65 = ___target1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_66 = ___reader0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_67 = V_1;
String_t* L_68 = V_4;
RuntimeObject * L_69;
L_69 = JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5(__this, L_65, L_66, ((JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 *)CastclassClass((RuntimeObject*)L_67, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416_il2cpp_TypeInfo_var)), (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, L_68, /*hidden argument*/NULL);
return;
}
IL_014d:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_70 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_71;
L_71 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_72 = V_0;
String_t* L_73;
L_73 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral587117E6A7D3415E8BD609AB6FC74A4316406B97)), L_71, L_72, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_74;
L_74 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_70, L_73, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_74, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0_RuntimeMethod_var)));
}
IL_0164:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_75 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_76;
L_76 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_77 = ___reader0;
NullCheck(L_77);
int32_t L_78;
L_78 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_77);
int32_t L_79 = L_78;
RuntimeObject * L_80 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var)), &L_79);
String_t* L_81;
L_81 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral99EEDFE6D595D330AF92BAF70C03F73752481663)), L_76, L_80, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_82;
L_82 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_75, L_81, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_82, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Populate_m4DF232A784F2D1F9FAE7AE301F2020FC07456FB0_RuntimeMethod_var)));
}
}
// Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetContractSafe(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
return (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)NULL;
}
IL_000b:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_2 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_2);
RuntimeObject* L_3 = L_2->get__contractResolver_11();
Type_t * L_4 = ___type0;
NullCheck(L_3);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_5;
L_5 = InterfaceFuncInvoker1< JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *, Type_t * >::Invoke(0 /* Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.IContractResolver::ResolveContract(System.Type) */, IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var, L_3, L_4);
return L_5;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Deserialize(Vuforia.Newtonsoft.Json.JsonReader,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, bool ___checkAdditionalContent2, const RuntimeMethod* method)
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * V_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_1 = NULL;
RuntimeObject * V_2 = NULL;
RuntimeObject * V_3 = NULL;
Exception_t * V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets;
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D_RuntimeMethod_var)));
}
IL_000e:
{
Type_t * L_2 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_3;
L_3 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_2, /*hidden argument*/NULL);
V_0 = L_3;
}
IL_0016:
try
{// begin try (depth: 1)
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_4 = V_0;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_5;
L_5 = JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36(__this, L_4, (JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)NULL, (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 *)NULL, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, /*hidden argument*/NULL);
V_1 = L_5;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader0;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_6);
if (L_7)
{
goto IL_0062;
}
}
IL_0029:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_8 = ___reader0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_9 = V_0;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_10 = V_1;
bool L_11;
L_11 = JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5(__this, L_8, L_9, (bool)((!(((RuntimeObject*)(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)L_10) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL);
if (L_11)
{
goto IL_0062;
}
}
IL_0037:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_12 = V_0;
if (!L_12)
{
goto IL_005e;
}
}
IL_003a:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_13 = V_0;
NullCheck(L_13);
bool L_14 = L_13->get_IsNullable_0();
if (L_14)
{
goto IL_005e;
}
}
IL_0042:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_15 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_16;
L_16 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_17 = V_0;
NullCheck(L_17);
Type_t * L_18;
L_18 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_17, /*hidden argument*/NULL);
String_t* L_19;
L_19 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE189C8EC0DE127E663B9599C9EE39ED347AA28AE)), L_16, L_18, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_20;
L_20 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_15, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D_RuntimeMethod_var)));
}
IL_005e:
{
V_3 = NULL;
goto IL_00db;
}
IL_0062:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_21 = V_1;
if (!L_21)
{
goto IL_007a;
}
}
IL_0065:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_22 = V_1;
NullCheck(L_22);
bool L_23;
L_23 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean Vuforia.Newtonsoft.Json.JsonConverter::get_CanRead() */, L_22);
if (!L_23)
{
goto IL_007a;
}
}
IL_006d:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_24 = V_1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_25 = ___reader0;
Type_t * L_26 = ___objectType1;
RuntimeObject * L_27;
L_27 = JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814(__this, L_24, L_25, L_26, NULL, /*hidden argument*/NULL);
V_2 = L_27;
goto IL_0088;
}
IL_007a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_28 = ___reader0;
Type_t * L_29 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_30 = V_0;
RuntimeObject * L_31;
L_31 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(__this, L_28, L_29, L_30, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 *)NULL, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, NULL, /*hidden argument*/NULL);
V_2 = L_31;
}
IL_0088:
{
bool L_32 = ___checkAdditionalContent2;
if (!L_32)
{
goto IL_00a7;
}
}
IL_008b:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_33 = ___reader0;
NullCheck(L_33);
bool L_34;
L_34 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_33);
if (!L_34)
{
goto IL_00a7;
}
}
IL_0093:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_35 = ___reader0;
NullCheck(L_35);
int32_t L_36;
L_36 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_35);
if ((((int32_t)L_36) == ((int32_t)5)))
{
goto IL_00a7;
}
}
IL_009c:
{
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_37 = (JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07_il2cpp_TypeInfo_var)));
JsonSerializationException__ctor_m9A2E0DC94F19403862C86632D10004E281471CE6(L_37, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD2956AE0ADA8B1B0E3E0C4A03F3BD968CA54060)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D_RuntimeMethod_var)));
}
IL_00a7:
{
RuntimeObject * L_38 = V_2;
V_3 = L_38;
goto IL_00db;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00ab;
}
throw e;
}
CATCH_00ab:
{// begin catch(System.Exception)
{
V_4 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_39 = V_0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_40 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_41 = ___reader0;
NullCheck(L_41);
String_t* L_42;
L_42 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_41);
Exception_t * L_43 = V_4;
bool L_44;
L_44 = JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C(__this, NULL, L_39, NULL, ((RuntimeObject*)IsInst((RuntimeObject*)L_40, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)))), L_42, L_43, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_00d3;
}
}
IL_00c6:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_45 = ___reader0;
JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A(__this, L_45, (bool)0, 0, /*hidden argument*/NULL);
V_3 = NULL;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00db;
}
IL_00d3:
{
JsonSerializerInternalBase_ClearErrorContext_m13BE0970C0D153472880BEF45A97F079504784E9(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_Deserialize_m27DD9A03E6908DB22C8FFC6150B0F132865B322D_RuntimeMethod_var)));
}
}// end catch (depth: 1)
IL_00db:
{
RuntimeObject * L_46 = V_3;
return L_46;
}
}
// Vuforia.Newtonsoft.Json.Serialization.JsonSerializerProxy Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetInternalSerializer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * JsonSerializerInternalReader_GetInternalSerializer_m2F3A22BC22EF32C22FB4D9F18B20E14309E295C0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * L_0 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_InternalSerializer_4();
if (L_0)
{
goto IL_0014;
}
}
{
JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * L_1 = (JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 *)il2cpp_codegen_object_new(JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2_il2cpp_TypeInfo_var);
JsonSerializerProxy__ctor_m1FB35B78F924E48D4A63417FDE9F256F515509CD(L_1, __this, /*hidden argument*/NULL);
((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->set_InternalSerializer_4(L_1);
}
IL_0014:
{
JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * L_2 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_InternalSerializer_4();
return L_2;
}
}
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJToken(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JsonSerializerInternalReader_CreateJToken_m5DBDB6242EE910DFDE4D7460E22466B0936F54CE (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31);
s_Il2CppMethodInitialized = true;
}
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_0 = NULL;
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_1 = ___contract1;
if (!L_1)
{
goto IL_0066;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_2 = ___contract1;
NullCheck(L_2);
Type_t * L_3;
L_3 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_2, /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5;
L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_4, /*hidden argument*/NULL);
bool L_6;
L_6 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_3, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_002c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_7 = ___reader0;
JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C * L_8;
L_8 = JRaw_Create_m90612550BF2FA535CC6837E201B6CB449E92E125(L_7, /*hidden argument*/NULL);
return L_8;
}
IL_002c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_9 = ___reader0;
NullCheck(L_9);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_9);
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)11)))))
{
goto IL_0066;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_11 = ___contract1;
NullCheck(L_11);
Type_t * L_12;
L_12 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_11, /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (JValue_t5689D44CDE8A21F60A56D7A857CAC50AC6A5639F_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_12, L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_0066;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_16 = ___contract1;
NullCheck(L_16);
Type_t * L_17;
L_17 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_16, /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast<intptr_t> (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19;
L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_18, /*hidden argument*/NULL);
bool L_20;
L_20 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_17, L_19, /*hidden argument*/NULL);
if (L_20)
{
goto IL_0066;
}
}
{
return (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 *)NULL;
}
IL_0066:
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_21 = (JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 *)il2cpp_codegen_object_new(JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320_il2cpp_TypeInfo_var);
JTokenWriter__ctor_m2A1F41A7D42673C903DC389853AC89629384222C(L_21, /*hidden argument*/NULL);
V_1 = L_21;
}
IL_006c:
try
{// begin try (depth: 1)
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_22 = V_1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader0;
NullCheck(L_22);
JsonWriter_WriteToken_m45A1C495AC272C5C0617316FCB8069944E38CAFC(L_22, L_23, /*hidden argument*/NULL);
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_24 = V_1;
NullCheck(L_24);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_25;
L_25 = JTokenWriter_get_Token_mB378C0C399C61C6665241C4278635E34A8A888FC(L_24, /*hidden argument*/NULL);
V_0 = L_25;
IL2CPP_LEAVE(0x86, FINALLY_007c);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_007c;
}
FINALLY_007c:
{// begin finally (depth: 1)
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_26 = V_1;
if (!L_26)
{
goto IL_0085;
}
}
IL_007f:
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_27 = V_1;
NullCheck(L_27);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_27);
}
IL_0085:
{
IL2CPP_END_FINALLY(124)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(124)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x86, IL_0086)
}
IL_0086:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_28 = V_0;
return L_28;
}
}
// Vuforia.Newtonsoft.Json.Linq.JToken Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJObject(Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JsonSerializerInternalReader_CreateJObject_mDD45A15AC45803D1E1F7D7DBDE34F960543607E0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31);
s_Il2CppMethodInitialized = true;
}
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * V_0 = NULL;
String_t* V_1 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31, /*hidden argument*/NULL);
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_1 = (JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 *)il2cpp_codegen_object_new(JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320_il2cpp_TypeInfo_var);
JTokenWriter__ctor_m2A1F41A7D42673C903DC389853AC89629384222C(L_1, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_0011:
try
{// begin try (depth: 1)
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_2 = V_0;
NullCheck(L_2);
VirtualActionInvoker0::Invoke(8 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteStartObject() */, L_2);
}
IL_0017:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_3 = ___reader0;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_3);
if ((!(((uint32_t)L_4) == ((uint32_t)4))))
{
goto IL_0051;
}
}
IL_0020:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader0;
NullCheck(L_5);
RuntimeObject * L_6;
L_6 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_5);
V_1 = ((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_7 = ___reader0;
NullCheck(L_7);
bool L_8;
L_8 = JsonReader_ReadAndMoveToContent_mB9655D1A21835B0C037DD7495FF44EAF13B0E2C7(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0071;
}
}
IL_0034:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_9 = ___reader0;
String_t* L_10 = V_1;
bool L_11;
L_11 = JsonSerializerInternalReader_CheckPropertyName_mBA4F67098EA96B1D3E426B37BB81D7DAAA2D0809(__this, L_9, L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_0069;
}
}
IL_003e:
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_12 = V_0;
String_t* L_13 = V_1;
NullCheck(L_12);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_12, L_13);
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_14 = V_0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_15 = ___reader0;
NullCheck(L_14);
VirtualActionInvoker4< JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 *, bool, bool, bool >::Invoke(17 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteToken(Vuforia.Newtonsoft.Json.JsonReader,System.Boolean,System.Boolean,System.Boolean) */, L_14, L_15, (bool)1, (bool)1, (bool)0);
goto IL_0069;
}
IL_0051:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_16 = ___reader0;
NullCheck(L_16);
int32_t L_17;
L_17 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_16);
if ((((int32_t)L_17) == ((int32_t)5)))
{
goto IL_0069;
}
}
IL_005a:
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_18 = V_0;
NullCheck(L_18);
VirtualActionInvoker0::Invoke(9 /* System.Void Vuforia.Newtonsoft.Json.JsonWriter::WriteEndObject() */, L_18);
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_19 = V_0;
NullCheck(L_19);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_20;
L_20 = JTokenWriter_get_Token_mB378C0C399C61C6665241C4278635E34A8A888FC(L_19, /*hidden argument*/NULL);
V_2 = L_20;
IL2CPP_LEAVE(0x87, FINALLY_007d);
}
IL_0069:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_21 = ___reader0;
NullCheck(L_21);
bool L_22;
L_22 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_21);
if (L_22)
{
goto IL_0017;
}
}
IL_0071:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader0;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_24;
L_24 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateJObject_mDD45A15AC45803D1E1F7D7DBDE34F960543607E0_RuntimeMethod_var)));
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_007d;
}
FINALLY_007d:
{// begin finally (depth: 1)
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_25 = V_0;
if (!L_25)
{
goto IL_0086;
}
}
IL_0080:
{
JTokenWriter_tB93FFC568D7D8C889A7B04B390CBFDF165C86320 * L_26 = V_0;
NullCheck(L_26);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_26);
}
IL_0086:
{
IL2CPP_END_FINALLY(125)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(125)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x87, IL_0087)
}
IL_0087:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_27 = V_2;
return L_27;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateValueInternal(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = ___contract2;
if (!L_0)
{
goto IL_0015;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_1 = ___contract2;
NullCheck(L_1);
int32_t L_2 = L_1->get_ContractType_5();
if ((!(((uint32_t)L_2) == ((uint32_t)8))))
{
goto IL_0015;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_3 = ___reader0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_4 = ___contract2;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_5;
L_5 = JsonSerializerInternalReader_CreateJToken_m5DBDB6242EE910DFDE4D7460E22466B0936F54CE(__this, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_0015:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader0;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_6);
V_2 = L_7;
int32_t L_8 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)))
{
case 0:
{
goto IL_006d;
}
case 1:
{
goto IL_007f;
}
case 2:
{
goto IL_00e4;
}
case 3:
{
goto IL_0126;
}
case 4:
{
goto IL_014b;
}
case 5:
{
goto IL_0115;
}
case 6:
{
goto IL_008e;
}
case 7:
{
goto IL_008e;
}
case 8:
{
goto IL_00a3;
}
case 9:
{
goto IL_008e;
}
case 10:
{
goto IL_0100;
}
case 11:
{
goto IL_0100;
}
case 12:
{
goto IL_0126;
}
case 13:
{
goto IL_0126;
}
case 14:
{
goto IL_0126;
}
case 15:
{
goto IL_008e;
}
case 16:
{
goto IL_008e;
}
}
}
{
goto IL_0126;
}
IL_006d:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_9 = ___reader0;
Type_t * L_10 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_11 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_12 = ___member3;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_13 = ___containerContract4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_14 = ___containerMember5;
RuntimeObject * L_15 = ___existingValue6;
RuntimeObject * L_16;
L_16 = JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A(__this, L_9, L_10, L_11, L_12, L_13, L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
IL_007f:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_17 = ___reader0;
Type_t * L_18 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_19 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_20 = ___member3;
RuntimeObject * L_21 = ___existingValue6;
RuntimeObject * L_22;
L_22 = JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D(__this, L_17, L_18, L_19, L_20, L_21, (String_t*)NULL, /*hidden argument*/NULL);
return L_22;
}
IL_008e:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_24 = ___reader0;
NullCheck(L_24);
RuntimeObject * L_25;
L_25 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_24);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_26;
L_26 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_27 = ___contract2;
Type_t * L_28 = ___objectType1;
RuntimeObject * L_29;
L_29 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_23, L_25, L_26, L_27, L_28, /*hidden argument*/NULL);
return L_29;
}
IL_00a3:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_30 = ___reader0;
NullCheck(L_30);
RuntimeObject * L_31;
L_31 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_30);
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_31, String_t_il2cpp_TypeInfo_var));
Type_t * L_32 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_33 = ___contract2;
String_t* L_34 = V_0;
bool L_35;
L_35 = JsonSerializerInternalReader_CoerceEmptyStringToNull_m9A3830F0898466908BD8BAE1D42B69B18D308927(L_32, L_33, L_34, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_00bb;
}
}
{
return NULL;
}
IL_00bb:
{
Type_t * L_36 = ___objectType1;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_37 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_38;
L_38 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_37, /*hidden argument*/NULL);
bool L_39;
L_39 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_36, L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00d4;
}
}
{
String_t* L_40 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_41;
L_41 = Convert_FromBase64String_mB2E4E2CD03B34DB7C2665694D5B2E967BC81E9A8(L_40, /*hidden argument*/NULL);
return (RuntimeObject *)L_41;
}
IL_00d4:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_42 = ___reader0;
String_t* L_43 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_44;
L_44 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_45 = ___contract2;
Type_t * L_46 = ___objectType1;
RuntimeObject * L_47;
L_47 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_42, L_43, L_44, L_45, L_46, /*hidden argument*/NULL);
return L_47;
}
IL_00e4:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_48 = ___reader0;
NullCheck(L_48);
RuntimeObject * L_49;
L_49 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_48);
NullCheck(L_49);
String_t* L_50;
L_50 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_49);
V_1 = L_50;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_51 = ___reader0;
String_t* L_52 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_53;
L_53 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_54 = ___contract2;
Type_t * L_55 = ___objectType1;
RuntimeObject * L_56;
L_56 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_51, L_52, L_53, L_54, L_55, /*hidden argument*/NULL);
return L_56;
}
IL_0100:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_57 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_58 = ___reader0;
NullCheck(L_58);
RuntimeObject * L_59;
L_59 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_58);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_60;
L_60 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_61 = ___contract2;
Type_t * L_62 = ___objectType1;
RuntimeObject * L_63;
L_63 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_57, L_59, L_60, L_61, L_62, /*hidden argument*/NULL);
return L_63;
}
IL_0115:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_64 = ___reader0;
NullCheck(L_64);
RuntimeObject * L_65;
L_65 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_64);
JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C * L_66 = (JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C *)il2cpp_codegen_object_new(JRaw_tC982B87D76F2480E6A49E984FD34136AB383924C_il2cpp_TypeInfo_var);
JRaw__ctor_mE5B0CC2CC60EE4978297B8E19330BBFFF944A8D0(L_66, ((String_t*)CastclassSealed((RuntimeObject*)L_65, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_66;
}
IL_0126:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_67 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_68 = ___reader0;
NullCheck(L_68);
int32_t L_69;
L_69 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_68);
V_3 = L_69;
RuntimeObject * L_70 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var)), (&V_3));
NullCheck(L_70);
String_t* L_71;
L_71 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_70);
V_3 = *(int32_t*)UnBox(L_70);
String_t* L_72;
L_72 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral982B8642554EB3F56947299FADE52DB3942C46FF)), L_71, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_73;
L_73 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_67, L_72, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD_RuntimeMethod_var)));
}
IL_014b:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_74 = ___reader0;
NullCheck(L_74);
bool L_75;
L_75 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_74);
if (L_75)
{
goto IL_0015;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_76 = ___reader0;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_77;
L_77 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_76, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_77, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD_RuntimeMethod_var)));
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CoerceEmptyStringToNull(System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_CoerceEmptyStringToNull_m9A3830F0898466908BD8BAE1D42B69B18D308927 (Type_t * ___objectType0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, String_t* ___s2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s2;
bool L_1;
L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_003f;
}
}
{
Type_t * L_2 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_003f;
}
}
{
Type_t * L_4 = ___objectType0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_5 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6;
L_6 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_5, /*hidden argument*/NULL);
bool L_7;
L_7 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_003f;
}
}
{
Type_t * L_8 = ___objectType0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_9 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10;
L_10 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_9, /*hidden argument*/NULL);
bool L_11;
L_11 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_003f;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_12 = ___contract1;
if (!L_12)
{
goto IL_003f;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_13 = ___contract1;
NullCheck(L_13);
bool L_14 = L_13->get_IsNullable_0();
return L_14;
}
IL_003f:
{
return (bool)0;
}
}
// System.String Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetExpectedDescription(Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonSerializerInternalReader_GetExpectedDescription_m9EC69D92138EB0051D0E68AD0A6E67C68BEC0AB3 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BF805384F666FCD6F750EF73F99B07A2F8CEA8A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58D203C52FA1BB369FD8FEFE8F3C441B5EB10C22);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69EAD0680C31199A21504A099291CE4D98A76C82);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D724FB21446D07DD3C5F55AB648A18D936C3598);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = ___contract0;
NullCheck(L_0);
int32_t L_1 = L_0->get_ContractType_5();
V_0 = L_1;
int32_t L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))
{
case 0:
{
goto IL_0025;
}
case 1:
{
goto IL_002b;
}
case 2:
{
goto IL_0031;
}
case 3:
{
goto IL_0037;
}
case 4:
{
goto IL_0025;
}
}
}
{
goto IL_003d;
}
IL_0025:
{
return _stringLiteral58D203C52FA1BB369FD8FEFE8F3C441B5EB10C22;
}
IL_002b:
{
return _stringLiteral3BF805384F666FCD6F750EF73F99B07A2F8CEA8A;
}
IL_0031:
{
return _stringLiteral9D724FB21446D07DD3C5F55AB648A18D936C3598;
}
IL_0037:
{
return _stringLiteral69EAD0680C31199A21504A099291CE4D98A76C82;
}
IL_003d:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m81CEEF1FCB5EFBBAA39071F48BCFBC16AED0C915(L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_GetExpectedDescription_m9EC69D92138EB0051D0E68AD0A6E67C68BEC0AB3_RuntimeMethod_var)));
}
}
// Vuforia.Newtonsoft.Json.JsonConverter Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetConverter(Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.JsonConverter,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract0, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___memberConverter1, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, const RuntimeMethod* method)
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_1 = NULL;
{
V_0 = (JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_0 = ___memberConverter1;
if (!L_0)
{
goto IL_0009;
}
}
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_1 = ___memberConverter1;
V_0 = L_1;
goto IL_0070;
}
IL_0009:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_2 = ___containerProperty3;
if (!L_2)
{
goto IL_0020;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_3 = ___containerProperty3;
NullCheck(L_3);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_4;
L_4 = JsonProperty_get_ItemConverter_m3CC25C0DD1537CF8781B7F42345B0F85B1C6E8C1_inline(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0020;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_5 = ___containerProperty3;
NullCheck(L_5);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_6;
L_6 = JsonProperty_get_ItemConverter_m3CC25C0DD1537CF8781B7F42345B0F85B1C6E8C1_inline(L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0070;
}
IL_0020:
{
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_7 = ___containerContract2;
if (!L_7)
{
goto IL_0034;
}
}
{
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_8 = ___containerContract2;
NullCheck(L_8);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_9;
L_9 = JsonContainerContract_get_ItemConverter_m28D204C41031B0A88E1506FA818FCB1A82CE4CE5_inline(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0034;
}
}
{
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_10 = ___containerContract2;
NullCheck(L_10);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_11;
L_11 = JsonContainerContract_get_ItemConverter_m28D204C41031B0A88E1506FA818FCB1A82CE4CE5_inline(L_10, /*hidden argument*/NULL);
V_0 = L_11;
goto IL_0070;
}
IL_0034:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_12 = ___contract0;
if (!L_12)
{
goto IL_0070;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_13 = ___contract0;
NullCheck(L_13);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_14;
L_14 = JsonContract_get_Converter_mDE546D9E7644EC1EFE17954CD6C3A03CA23AFDE5_inline(L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0048;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_15 = ___contract0;
NullCheck(L_15);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_16;
L_16 = JsonContract_get_Converter_mDE546D9E7644EC1EFE17954CD6C3A03CA23AFDE5_inline(L_15, /*hidden argument*/NULL);
V_0 = L_16;
goto IL_0070;
}
IL_0048:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_17 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_18 = ___contract0;
NullCheck(L_18);
Type_t * L_19;
L_19 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_20;
L_20 = JsonSerializer_GetMatchingConverter_mD173A3ACE4CC46BCC18EBA196274A4BF9DCE72E0(L_17, L_19, /*hidden argument*/NULL);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_21 = L_20;
V_1 = L_21;
if (!L_21)
{
goto IL_0061;
}
}
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_22 = V_1;
V_0 = L_22;
goto IL_0070;
}
IL_0061:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_23 = ___contract0;
NullCheck(L_23);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_24;
L_24 = JsonContract_get_InternalConverter_m52505C93F76DFA4AAA3C1B68DB40B0ABE7D286BF_inline(L_23, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_0070;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_25 = ___contract0;
NullCheck(L_25);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_26;
L_26 = JsonContract_get_InternalConverter_m52505C93F76DFA4AAA3C1B68DB40B0ABE7D286BF_inline(L_25, /*hidden argument*/NULL);
V_0 = L_26;
}
IL_0070:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_27 = V_0;
return L_27;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObject(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t131073A2CB9F69A5308A5AA52335DC13EAE4B5DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t6ACA7D9F7FB10319A5DE8ECF6919F79A7740F218_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral042D5257625C9358C840FA1BA4A978DC0470104F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Type_t * V_1 = NULL;
String_t* V_2 = NULL;
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * V_3 = NULL;
RuntimeObject * V_4 = NULL;
RuntimeObject * V_5 = NULL;
int32_t V_6 = 0;
bool V_7 = false;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * V_8 = NULL;
RuntimeObject * V_9 = NULL;
JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 * V_10 = NULL;
int32_t V_11 = 0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * V_12 = NULL;
RuntimeObject * V_13 = NULL;
bool V_14 = false;
RuntimeObject* V_15 = NULL;
RuntimeObject* V_16 = NULL;
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * G_B40_0 = NULL;
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * G_B39_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B46_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B45_0 = NULL;
RuntimeObject* G_B47_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B47_1 = NULL;
{
Type_t * L_0 = ___objectType1;
V_1 = L_0;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_1 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(32 /* Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling() */, L_1);
if ((!(((uint32_t)L_2) == ((uint32_t)2))))
{
goto IL_001d;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_3 = ___reader0;
NullCheck(L_3);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_3, /*hidden argument*/NULL);
V_0 = (String_t*)NULL;
goto IL_00d8;
}
IL_001d:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_4 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(32 /* Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling() */, L_4);
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_00b6;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader0;
V_3 = ((JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B *)IsInstClass((RuntimeObject*)L_6, JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B_il2cpp_TypeInfo_var));
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_7 = V_3;
if (L_7)
{
goto IL_009a;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_8 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_9;
L_9 = JToken_ReadFrom_m7FC077469C84451AE9FCD636565E3E0F5C8FA7E1(L_8, /*hidden argument*/NULL);
NullCheck(L_9);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10;
L_10 = JToken_CreateReader_mD3C1F643860ACF22DD8C270E71A93F9F152931FD(L_9, /*hidden argument*/NULL);
V_3 = ((JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B *)CastclassClass((RuntimeObject*)L_10, JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B_il2cpp_TypeInfo_var));
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_11 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_12 = ___reader0;
NullCheck(L_12);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_13;
L_13 = JsonReader_get_Culture_m2FC4A353D2CC90A4761CF62CEC6EF6FE3DAA74FE(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
JsonReader_set_Culture_m358DAB69604E891560445695FC823BBE41B2F106_inline(L_11, L_13, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_14 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_15 = ___reader0;
NullCheck(L_15);
String_t* L_16;
L_16 = JsonReader_get_DateFormatString_mA13BC1749AF8F2E33BA1365C42CA876BEFC23A54_inline(L_15, /*hidden argument*/NULL);
NullCheck(L_14);
JsonReader_set_DateFormatString_m7663A3BDC18FEBEB43B9DEAD863A376BB0A5B443_inline(L_14, L_16, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_17 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_18 = ___reader0;
NullCheck(L_18);
int32_t L_19;
L_19 = JsonReader_get_DateParseHandling_m5CF75D4A6FBBED60683E85A68416AFB05C84F84A_inline(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
JsonReader_set_DateParseHandling_m96CB240BFA3D71CF8E8565BEB8EA1786795B3719(L_17, L_19, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_20 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_21 = ___reader0;
NullCheck(L_21);
int32_t L_22;
L_22 = JsonReader_get_DateTimeZoneHandling_m3F91693921E6DA5A0FB9BB66FAF8069C18E11F7C_inline(L_21, /*hidden argument*/NULL);
NullCheck(L_20);
JsonReader_set_DateTimeZoneHandling_m3C0CB5F489907DAEB846392146CDD9529D57B3A9(L_20, L_22, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_23 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_24 = ___reader0;
NullCheck(L_24);
int32_t L_25;
L_25 = JsonReader_get_FloatParseHandling_mB6FBFE9F4EDB6E6FF07E89A172E2570263140EC8_inline(L_24, /*hidden argument*/NULL);
NullCheck(L_23);
JsonReader_set_FloatParseHandling_m9334526CD4846510BE61EEBA025F86AF9A2BB46C(L_23, L_25, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_26 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_27 = ___reader0;
NullCheck(L_27);
bool L_28;
L_28 = JsonReader_get_SupportMultipleContent_m96B31B88F011B1298704D38480AC2E80B05AFA29_inline(L_27, /*hidden argument*/NULL);
NullCheck(L_26);
JsonReader_set_SupportMultipleContent_m487B50FDB18FDD3688CC4BAFDE7ED0DF34ED9F86_inline(L_26, L_28, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_29 = V_3;
NullCheck(L_29);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_29, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_30 = V_3;
___reader0 = L_30;
}
IL_009a:
{
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_31 = V_3;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_32 = ___member3;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_33 = ___containerContract4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_34 = ___containerMember5;
RuntimeObject * L_35 = ___existingValue6;
bool L_36;
L_36 = JsonSerializerInternalReader_ReadMetadataPropertiesToken_mB8D6EFC61B31A381189C1FFD0E8D9C1CD5D3AEA7(__this, L_31, (Type_t **)(&V_1), (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)(&___contract2), L_32, L_33, L_34, L_35, (RuntimeObject **)(&V_4), (String_t**)(&V_0), /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00d8;
}
}
{
RuntimeObject * L_37 = V_4;
return L_37;
}
IL_00b6:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_38 = ___reader0;
NullCheck(L_38);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_38, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_39 = ___reader0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_40 = ___member3;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_41 = ___containerContract4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_42 = ___containerMember5;
RuntimeObject * L_43 = ___existingValue6;
bool L_44;
L_44 = JsonSerializerInternalReader_ReadMetadataProperties_m53E9E27D4CEB8410EA0D00AFF421EB5AA4A377CC(__this, L_39, (Type_t **)(&V_1), (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)(&___contract2), L_40, L_41, L_42, L_43, (RuntimeObject **)(&V_5), (String_t**)(&V_0), /*hidden argument*/NULL);
if (!L_44)
{
goto IL_00d8;
}
}
{
RuntimeObject * L_45 = V_5;
return L_45;
}
IL_00d8:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_46 = ___contract2;
bool L_47;
L_47 = JsonSerializerInternalReader_HasNoDefinedType_mE77196F16E7ADFBC60D87C55710413F6BD52CD5B(__this, L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_00e9;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_48 = ___reader0;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_49;
L_49 = JsonSerializerInternalReader_CreateJObject_mDD45A15AC45803D1E1F7D7DBDE34F960543607E0(__this, L_48, /*hidden argument*/NULL);
return L_49;
}
IL_00e9:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_50 = ___contract2;
NullCheck(L_50);
int32_t L_51 = L_50->get_ContractType_5();
V_6 = L_51;
int32_t L_52 = V_6;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)1)))
{
case 0:
{
goto IL_0113;
}
case 1:
{
goto IL_0331;
}
case 2:
{
goto IL_0168;
}
case 3:
{
goto IL_0331;
}
case 4:
{
goto IL_01f4;
}
}
}
{
goto IL_0331;
}
IL_0113:
{
V_7 = (bool)0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_53 = ___contract2;
V_8 = ((JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 *)CastclassClass((RuntimeObject*)L_53, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416_il2cpp_TypeInfo_var));
RuntimeObject * L_54 = ___existingValue6;
if (!L_54)
{
goto IL_0140;
}
}
{
Type_t * L_55 = V_1;
Type_t * L_56 = ___objectType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_57;
L_57 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_55, L_56, /*hidden argument*/NULL);
if (L_57)
{
goto IL_013a;
}
}
{
Type_t * L_58 = V_1;
RuntimeObject * L_59 = ___existingValue6;
NullCheck(L_59);
Type_t * L_60;
L_60 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_59, /*hidden argument*/NULL);
NullCheck(L_58);
bool L_61;
L_61 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(111 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_58, L_60);
if (!L_61)
{
goto IL_0140;
}
}
IL_013a:
{
RuntimeObject * L_62 = ___existingValue6;
V_9 = L_62;
goto IL_0152;
}
IL_0140:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_63 = ___reader0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_64 = V_8;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_65 = ___member3;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_66 = ___containerMember5;
String_t* L_67 = V_0;
RuntimeObject * L_68;
L_68 = JsonSerializerInternalReader_CreateNewObject_mD9BBCC02F1FE14D85F8DAE3035E3D71768A24DC0(__this, L_63, L_64, L_65, L_66, L_67, (bool*)(&V_7), /*hidden argument*/NULL);
V_9 = L_68;
}
IL_0152:
{
bool L_69 = V_7;
if (!L_69)
{
goto IL_0159;
}
}
{
RuntimeObject * L_70 = V_9;
return L_70;
}
IL_0159:
{
RuntimeObject * L_71 = V_9;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_72 = ___reader0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_73 = V_8;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_74 = ___member3;
String_t* L_75 = V_0;
RuntimeObject * L_76;
L_76 = JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5(__this, L_71, L_72, L_73, L_74, L_75, /*hidden argument*/NULL);
return L_76;
}
IL_0168:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_77 = ___contract2;
V_10 = ((JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 *)CastclassClass((RuntimeObject*)L_77, JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var));
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_78 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_78);
int32_t L_79;
L_79 = VirtualFuncInvoker0< int32_t >::Invoke(32 /* Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling() */, L_78);
if ((((int32_t)L_79) == ((int32_t)2)))
{
goto IL_0331;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_80 = ___reader0;
NullCheck(L_80);
int32_t L_81;
L_81 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_80);
if ((!(((uint32_t)L_81) == ((uint32_t)4))))
{
goto IL_0331;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_82 = ___reader0;
NullCheck(L_82);
RuntimeObject * L_83;
L_83 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_82);
NullCheck(L_83);
String_t* L_84;
L_84 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_83);
bool L_85;
L_85 = String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5(L_84, _stringLiteral042D5257625C9358C840FA1BA4A978DC0470104F, 4, /*hidden argument*/NULL);
if (!L_85)
{
goto IL_0331;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_86 = ___reader0;
NullCheck(L_86);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_86, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_87 = ___reader0;
NullCheck(L_87);
int32_t L_88;
L_88 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_87);
if ((!(((uint32_t)L_88) == ((uint32_t)1))))
{
goto IL_01dd;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_89 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_90 = ___reader0;
NullCheck(L_90);
int32_t L_91;
L_91 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_90);
V_11 = L_91;
RuntimeObject * L_92 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var)), (&V_11));
NullCheck(L_92);
String_t* L_93;
L_93 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_92);
V_11 = *(int32_t*)UnBox(L_92);
String_t* L_94;
L_94 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral31908A1F2D84CB426D65A394B11281246101E4C8)), L_93, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_95;
L_95 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_89, L_94, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_95, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A_RuntimeMethod_var)));
}
IL_01dd:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_96 = ___reader0;
Type_t * L_97 = V_1;
JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 * L_98 = V_10;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_99 = ___member3;
RuntimeObject * L_100 = ___existingValue6;
RuntimeObject * L_101;
L_101 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(__this, L_96, L_97, L_98, L_99, (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 *)NULL, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, L_100, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_102 = ___reader0;
NullCheck(L_102);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_102, /*hidden argument*/NULL);
return L_101;
}
IL_01f4:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_103 = ___contract2;
V_12 = ((JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 *)CastclassClass((RuntimeObject*)L_103, JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976_il2cpp_TypeInfo_var));
RuntimeObject * L_104 = ___existingValue6;
if (L_104)
{
goto IL_0301;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_105 = ___reader0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_106 = V_12;
RuntimeObject* L_107;
L_107 = JsonSerializerInternalReader_CreateNewDictionary_mFA1A66BB86EE4864CB12C49EBDFF6BFD00D50B66(__this, L_105, L_106, (bool*)(&V_14), /*hidden argument*/NULL);
V_15 = L_107;
bool L_108 = V_14;
if (!L_108)
{
goto IL_02af;
}
}
{
String_t* L_109 = V_0;
if (!L_109)
{
goto IL_0236;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_110 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_111;
L_111 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_112 = ___contract2;
NullCheck(L_112);
Type_t * L_113;
L_113 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_112, /*hidden argument*/NULL);
String_t* L_114;
L_114 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral95E7540E7EC26CC76468A4809603CCFB51A22AC9)), L_111, L_113, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_115;
L_115 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_110, L_114, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_115, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A_RuntimeMethod_var)));
}
IL_0236:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_116 = ___contract2;
NullCheck(L_116);
RuntimeObject* L_117;
L_117 = JsonContract_get_OnSerializingCallbacks_mFE79890C743727956CEA047578401E6D51DE73E8(L_116, /*hidden argument*/NULL);
NullCheck(L_117);
int32_t L_118;
L_118 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback>::get_Count() */, ICollection_1_t131073A2CB9F69A5308A5AA52335DC13EAE4B5DE_il2cpp_TypeInfo_var, L_117);
if ((((int32_t)L_118) <= ((int32_t)0)))
{
goto IL_0260;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_119 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_120;
L_120 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_121 = ___contract2;
NullCheck(L_121);
Type_t * L_122;
L_122 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_121, /*hidden argument*/NULL);
String_t* L_123;
L_123 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFC49204A8BDC722121A335B23FD825A0748F9208)), L_120, L_122, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_124;
L_124 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_119, L_123, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_124, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A_RuntimeMethod_var)));
}
IL_0260:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_125 = ___contract2;
NullCheck(L_125);
RuntimeObject* L_126;
L_126 = JsonContract_get_OnErrorCallbacks_m3B886B57B0C38DFB72BBEF9A76F73A1CE72AD454(L_125, /*hidden argument*/NULL);
NullCheck(L_126);
int32_t L_127;
L_127 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Serialization.SerializationErrorCallback>::get_Count() */, ICollection_1_t6ACA7D9F7FB10319A5DE8ECF6919F79A7740F218_il2cpp_TypeInfo_var, L_126);
if ((((int32_t)L_127) <= ((int32_t)0)))
{
goto IL_028a;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_128 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_129;
L_129 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_130 = ___contract2;
NullCheck(L_130);
Type_t * L_131;
L_131 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_130, /*hidden argument*/NULL);
String_t* L_132;
L_132 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral12D3D88FEB452D8CC18F3B31FCF2964F2639457E)), L_129, L_131, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_133;
L_133 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_128, L_132, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_133, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A_RuntimeMethod_var)));
}
IL_028a:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_134 = V_12;
NullCheck(L_134);
bool L_135;
L_135 = JsonDictionaryContract_get_HasParameterizedCreatorInternal_m1F975CBA89997D53ABEDFFEA08900BD7313C9EA7(L_134, /*hidden argument*/NULL);
if (L_135)
{
goto IL_02af;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_136 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_137;
L_137 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_138 = ___contract2;
NullCheck(L_138);
Type_t * L_139;
L_139 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_138, /*hidden argument*/NULL);
String_t* L_140;
L_140 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA129B5F194E8BEDE2529D38FADCD24DFAD305791)), L_137, L_139, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_141;
L_141 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_136, L_140, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_141, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A_RuntimeMethod_var)));
}
IL_02af:
{
RuntimeObject* L_142 = V_15;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_143 = ___reader0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_144 = V_12;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_145 = ___member3;
String_t* L_146 = V_0;
RuntimeObject * L_147;
L_147 = JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354(__this, L_142, L_143, L_144, L_145, L_146, /*hidden argument*/NULL);
bool L_148 = V_14;
if (!L_148)
{
goto IL_02e5;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_149 = V_12;
NullCheck(L_149);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_150;
L_150 = JsonDictionaryContract_get_OverrideCreator_m6706A1FF5BDA7F1DD484ECB4CC2648ED3002A1DA_inline(L_149, /*hidden argument*/NULL);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_151 = L_150;
G_B39_0 = L_151;
if (L_151)
{
G_B40_0 = L_151;
goto IL_02d4;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_152 = V_12;
NullCheck(L_152);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_153;
L_153 = JsonDictionaryContract_get_ParameterizedCreator_m54B5BFED5FA609773EC84DFD3DDB34DF66958E1B(L_152, /*hidden argument*/NULL);
G_B40_0 = L_153;
}
IL_02d4:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_154 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_155 = L_154;
RuntimeObject* L_156 = V_15;
NullCheck(L_155);
ArrayElementTypeCheck (L_155, L_156);
(L_155)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_156);
NullCheck(G_B40_0);
RuntimeObject * L_157;
L_157 = ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C(G_B40_0, L_155, /*hidden argument*/ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
return L_157;
}
IL_02e5:
{
RuntimeObject* L_158 = V_15;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_158, IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var)))
{
goto IL_02fb;
}
}
{
RuntimeObject* L_159 = V_15;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_159, IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var)));
RuntimeObject * L_160;
L_160 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Vuforia.Newtonsoft.Json.Utilities.IWrappedDictionary::get_UnderlyingDictionary() */, IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_159, IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var)));
return L_160;
}
IL_02fb:
{
RuntimeObject* L_161 = V_15;
V_13 = L_161;
goto IL_032e;
}
IL_0301:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_162 = V_12;
NullCheck(L_162);
bool L_163;
L_163 = JsonDictionaryContract_get_ShouldCreateWrapper_m9B288D28EB522BE882B07929FE4649D299C68897_inline(L_162, /*hidden argument*/NULL);
G_B45_0 = __this;
if (L_163)
{
G_B46_0 = __this;
goto IL_0314;
}
}
{
RuntimeObject * L_164 = ___existingValue6;
G_B47_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_164, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var));
G_B47_1 = G_B45_0;
goto IL_0321;
}
IL_0314:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_165 = V_12;
RuntimeObject * L_166 = ___existingValue6;
NullCheck(L_165);
RuntimeObject* L_167;
L_167 = JsonDictionaryContract_CreateWrapper_m891DB68316FBC3D10BFD23FEA0533C3A666CBDFA(L_165, L_166, /*hidden argument*/NULL);
V_16 = L_167;
RuntimeObject* L_168 = V_16;
G_B47_0 = L_168;
G_B47_1 = G_B46_0;
}
IL_0321:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_169 = ___reader0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_170 = V_12;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_171 = ___member3;
String_t* L_172 = V_0;
NullCheck(G_B47_1);
RuntimeObject * L_173;
L_173 = JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354(G_B47_1, G_B47_0, L_169, L_170, L_171, L_172, /*hidden argument*/NULL);
V_13 = L_173;
}
IL_032e:
{
RuntimeObject * L_174 = V_13;
return L_174;
}
IL_0331:
{
String_t* L_175;
L_175 = Environment_get_NewLine_mD145C8EE917C986BAA7C5243DEFAF4D333C521B4(/*hidden argument*/NULL);
String_t* L_176;
L_176 = Environment_get_NewLine_mD145C8EE917C986BAA7C5243DEFAF4D333C521B4(/*hidden argument*/NULL);
String_t* L_177;
L_177 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral151B85A346A60325BAC130B4146B00C7EC6269D6)), L_175, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral899FCAB0E7F26F69A2F0358DD419D1346CCA9FEF)), L_176, /*hidden argument*/NULL);
V_2 = L_177;
String_t* L_178 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_179;
L_179 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_180 = V_1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_181 = ___contract2;
String_t* L_182;
L_182 = JsonSerializerInternalReader_GetExpectedDescription_m9EC69D92138EB0051D0E68AD0A6E67C68BEC0AB3(__this, L_181, /*hidden argument*/NULL);
String_t* L_183;
L_183 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(L_178, L_179, L_180, L_182, /*hidden argument*/NULL);
V_2 = L_183;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_184 = ___reader0;
String_t* L_185 = V_2;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_186;
L_186 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_184, L_185, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_186, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateObject_mD8B9E4D76EF9499DB06D3E85DB654C075E05C18A_RuntimeMethod_var)));
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataPropertiesToken(Vuforia.Newtonsoft.Json.Linq.JTokenReader,System.Type&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.Object&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ReadMetadataPropertiesToken_mB8D6EFC61B31A381189C1FFD0E8D9C1CD5D3AEA7 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * ___reader0, Type_t ** ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, RuntimeObject ** ___newValue7, String_t** ___id8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral042D5257625C9358C840FA1BA4A978DC0470104F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11F941DFBA062769D6F047F85D846335446DFB0E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1298EC2264C4F9A0D3A04140873D9D01F481050B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral624220B630D1F7A203600DDF128C76CC987066A6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382);
s_Il2CppMethodInitialized = true;
}
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * V_0 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_1 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_2 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_3 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_4 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_5 = NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * V_6 = NULL;
String_t* V_7 = NULL;
String_t* V_8 = NULL;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * V_9 = NULL;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * V_10 = NULL;
{
String_t** L_0 = ___id8;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
RuntimeObject ** L_1 = ___newValue7;
*((RuntimeObject **)L_1) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_1, (void*)(RuntimeObject *)NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_2 = ___reader0;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0207;
}
}
{
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_4 = ___reader0;
NullCheck(L_4);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_5;
L_5 = JTokenReader_get_CurrentToken_m34D36B014B15EBA8D6FFBACD14A00073436DBA93_inline(L_4, /*hidden argument*/NULL);
V_0 = ((JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 *)CastclassClass((RuntimeObject*)L_5, JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08_il2cpp_TypeInfo_var));
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_6 = V_0;
NullCheck(L_6);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_7;
L_7 = JObject_get_Item_mC0F238250207FBD48438281EC0EAE2A9A9DF57B3(L_6, _stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382, /*hidden argument*/NULL);
V_1 = L_7;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_8 = V_1;
if (!L_8)
{
goto IL_0135;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_9 = V_1;
NullCheck(L_9);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_9);
if ((((int32_t)L_10) == ((int32_t)8)))
{
goto IL_0067;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_11 = V_1;
NullCheck(L_11);
int32_t L_12;
L_12 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* Vuforia.Newtonsoft.Json.Linq.JTokenType Vuforia.Newtonsoft.Json.Linq.JToken::get_Type() */, L_11);
if ((((int32_t)L_12) == ((int32_t)((int32_t)10))))
{
goto IL_0067;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_13 = V_1;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_14 = V_1;
NullCheck(L_14);
String_t* L_15;
L_15 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_14, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_16;
L_16 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_17;
L_17 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9B9C41BB5EAB4B82AA512303E3BD01EC37D9F169)), L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382)), /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_18;
L_18 = JsonSerializationException_Create_mFFA9AB1922FBE02C1D3436D129B549A4A97718A8(L_13, L_15, L_17, (Exception_t *)NULL, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ReadMetadataPropertiesToken_mB8D6EFC61B31A381189C1FFD0E8D9C1CD5D3AEA7_RuntimeMethod_var)));
}
IL_0067:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_19 = V_1;
NullCheck(L_19);
JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * L_20;
L_20 = JToken_get_Parent_m0C47FA701ABB9BD601C13BBF3EA628AD5A0EF57C_inline(L_19, /*hidden argument*/NULL);
V_5 = L_20;
V_6 = (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 *)NULL;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_21 = V_5;
NullCheck(L_21);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_22;
L_22 = JToken_get_Next_m1414D8687D5F635F5FA98957C5EE7AD5B482858E_inline(L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0086;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_23 = V_5;
NullCheck(L_23);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_24;
L_24 = JToken_get_Next_m1414D8687D5F635F5FA98957C5EE7AD5B482858E_inline(L_23, /*hidden argument*/NULL);
V_6 = L_24;
goto IL_0098;
}
IL_0086:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_25 = V_5;
NullCheck(L_25);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_26;
L_26 = JToken_get_Previous_m6275AE15ED645BBBFB79A0CFFD6126964ED22E6F_inline(L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_0098;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_27 = V_5;
NullCheck(L_27);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_28;
L_28 = JToken_get_Previous_m6275AE15ED645BBBFB79A0CFFD6126964ED22E6F_inline(L_27, /*hidden argument*/NULL);
V_6 = L_28;
}
IL_0098:
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_29 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_30;
L_30 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_29, /*hidden argument*/NULL);
V_7 = L_30;
String_t* L_31 = V_7;
if (!L_31)
{
goto IL_0135;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_32 = V_6;
if (!L_32)
{
goto IL_00cf;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_33 = V_6;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_34 = V_6;
NullCheck(L_34);
String_t* L_35;
L_35 = JToken_get_Path_m6EF89EEA56E2B232341B72624EF064E031FBDC24(L_34, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_36;
L_36 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_37;
L_37 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral73F309C03289E6D649CAEE0E88EC2DE4F673E05E)), L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382)), /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_38;
L_38 = JsonSerializationException_Create_mFFA9AB1922FBE02C1D3436D129B549A4A97718A8(L_33, L_35, L_37, (Exception_t *)NULL, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ReadMetadataPropertiesToken_mB8D6EFC61B31A381189C1FFD0E8D9C1CD5D3AEA7_RuntimeMethod_var)));
}
IL_00cf:
{
RuntimeObject ** L_39 = ___newValue7;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_40 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_40);
RuntimeObject* L_41;
L_41 = JsonSerializer_GetReferenceResolver_mB1A2477F3CEB4C37E81DF088872CB399056FC78C(L_40, /*hidden argument*/NULL);
String_t* L_42 = V_7;
NullCheck(L_41);
RuntimeObject * L_43;
L_43 = InterfaceFuncInvoker2< RuntimeObject *, RuntimeObject *, String_t* >::Invoke(0 /* System.Object Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver::ResolveReference(System.Object,System.String) */, IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F_il2cpp_TypeInfo_var, L_41, __this, L_42);
*((RuntimeObject **)L_39) = (RuntimeObject *)L_43;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_39, (void*)(RuntimeObject *)L_43);
RuntimeObject* L_44 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_44)
{
goto IL_012d;
}
}
{
RuntimeObject* L_45 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_45);
int32_t L_46;
L_46 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_45);
if ((((int32_t)L_46) < ((int32_t)3)))
{
goto IL_012d;
}
}
{
RuntimeObject* L_47 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_48 = ___reader0;
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_49 = ___reader0;
NullCheck(L_49);
String_t* L_50;
L_50 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_49);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_51;
L_51 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_52 = V_7;
RuntimeObject ** L_53 = ___newValue7;
RuntimeObject * L_54 = *((RuntimeObject **)L_53);
NullCheck(L_54);
Type_t * L_55;
L_55 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_54, /*hidden argument*/NULL);
String_t* L_56;
L_56 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral624220B630D1F7A203600DDF128C76CC987066A6, L_51, L_52, L_55, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_57;
L_57 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(L_48, L_50, L_56, /*hidden argument*/NULL);
NullCheck(L_47);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_47, 3, L_57, (Exception_t *)NULL);
}
IL_012d:
{
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_58 = ___reader0;
NullCheck(L_58);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_58, /*hidden argument*/NULL);
return (bool)1;
}
IL_0135:
{
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_59 = V_0;
NullCheck(L_59);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_60;
L_60 = JObject_get_Item_mC0F238250207FBD48438281EC0EAE2A9A9DF57B3(L_59, _stringLiteral11F941DFBA062769D6F047F85D846335446DFB0E, /*hidden argument*/NULL);
V_2 = L_60;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_61 = V_2;
if (!L_61)
{
goto IL_01b0;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_62 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_63;
L_63 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_62, /*hidden argument*/NULL);
V_8 = L_63;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_64 = V_2;
NullCheck(L_64);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_65;
L_65 = JToken_CreateReader_mD3C1F643860ACF22DD8C270E71A93F9F152931FD(L_64, /*hidden argument*/NULL);
V_9 = L_65;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_66 = V_9;
NullCheck(L_66);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_66, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_67 = V_9;
Type_t ** L_68 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_69 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_70 = ___member3;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_71 = ___containerContract4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_72 = ___containerMember5;
String_t* L_73 = V_8;
JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF(__this, L_67, (Type_t **)L_68, (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_69, L_70, L_71, L_72, L_73, /*hidden argument*/NULL);
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_74 = V_0;
NullCheck(L_74);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_75;
L_75 = JObject_get_Item_mC0F238250207FBD48438281EC0EAE2A9A9DF57B3(L_74, _stringLiteral042D5257625C9358C840FA1BA4A978DC0470104F, /*hidden argument*/NULL);
if (!L_75)
{
goto IL_01b0;
}
}
IL_017a:
{
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_76 = ___reader0;
NullCheck(L_76);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_76, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_77 = ___reader0;
NullCheck(L_77);
int32_t L_78;
L_78 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_77);
if ((!(((uint32_t)L_78) == ((uint32_t)4))))
{
goto IL_01a2;
}
}
{
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_79 = ___reader0;
NullCheck(L_79);
RuntimeObject * L_80;
L_80 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_79);
bool L_81;
L_81 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(((String_t*)CastclassSealed((RuntimeObject*)L_80, String_t_il2cpp_TypeInfo_var)), _stringLiteral042D5257625C9358C840FA1BA4A978DC0470104F, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01a2;
}
}
{
return (bool)0;
}
IL_01a2:
{
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_82 = ___reader0;
NullCheck(L_82);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_82, /*hidden argument*/NULL);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_83 = ___reader0;
NullCheck(L_83);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_83, /*hidden argument*/NULL);
goto IL_017a;
}
IL_01b0:
{
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_84 = V_0;
NullCheck(L_84);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_85;
L_85 = JObject_get_Item_mC0F238250207FBD48438281EC0EAE2A9A9DF57B3(L_84, _stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA, /*hidden argument*/NULL);
V_3 = L_85;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_86 = V_3;
if (!L_86)
{
goto IL_01c8;
}
}
{
String_t** L_87 = ___id8;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_88 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
String_t* L_89;
L_89 = JToken_op_Explicit_m06413F5AEAF37BA57AAB2FF6B256E6CB1A8883D6(L_88, /*hidden argument*/NULL);
*((RuntimeObject **)L_87) = (RuntimeObject *)L_89;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_87, (void*)(RuntimeObject *)L_89);
}
IL_01c8:
{
JObject_t3602379F438EFE1DE2F13F63F798887F6EF12B08 * L_90 = V_0;
NullCheck(L_90);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_91;
L_91 = JObject_get_Item_mC0F238250207FBD48438281EC0EAE2A9A9DF57B3(L_90, _stringLiteral1298EC2264C4F9A0D3A04140873D9D01F481050B, /*hidden argument*/NULL);
V_4 = L_91;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_92 = V_4;
if (!L_92)
{
goto IL_0207;
}
}
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_93 = V_4;
NullCheck(L_93);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_94;
L_94 = JToken_CreateReader_mD3C1F643860ACF22DD8C270E71A93F9F152931FD(L_93, /*hidden argument*/NULL);
V_10 = L_94;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_95 = V_10;
NullCheck(L_95);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_95, /*hidden argument*/NULL);
RuntimeObject ** L_96 = ___newValue7;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_97 = V_10;
Type_t ** L_98 = ___objectType1;
Type_t * L_99 = *((Type_t **)L_98);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_100 = ___contract2;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_101 = *((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_100);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_102 = ___member3;
RuntimeObject * L_103 = ___existingValue6;
String_t** L_104 = ___id8;
String_t* L_105 = *((String_t**)L_104);
RuntimeObject * L_106;
L_106 = JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D(__this, L_97, L_99, L_101, L_102, L_103, L_105, /*hidden argument*/NULL);
*((RuntimeObject **)L_96) = (RuntimeObject *)L_106;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_96, (void*)(RuntimeObject *)L_106);
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_107 = ___reader0;
NullCheck(L_107);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_107, /*hidden argument*/NULL);
return (bool)1;
}
IL_0207:
{
JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * L_108 = ___reader0;
NullCheck(L_108);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_108, /*hidden argument*/NULL);
return (bool)0;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataProperties(Vuforia.Newtonsoft.Json.JsonReader,System.Type&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.Object&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ReadMetadataProperties_m53E9E27D4CEB8410EA0D00AFF421EB5AA4A377CC (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t ** ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, RuntimeObject * ___existingValue6, RuntimeObject ** ___newValue7, String_t** ___id8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11F941DFBA062769D6F047F85D846335446DFB0E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1298EC2264C4F9A0D3A04140873D9D01F481050B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral624220B630D1F7A203600DDF128C76CC987066A6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
RuntimeObject * V_4 = NULL;
String_t* G_B10_0 = NULL;
String_t** G_B23_0 = NULL;
String_t** G_B22_0 = NULL;
String_t* G_B24_0 = NULL;
String_t** G_B24_1 = NULL;
{
String_t** L_0 = ___id8;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
RuntimeObject ** L_1 = ___newValue7;
*((RuntimeObject **)L_1) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_1, (void*)(RuntimeObject *)NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader0;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)4))))
{
goto IL_01f4;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader0;
NullCheck(L_4);
RuntimeObject * L_5;
L_5 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_4);
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_5);
V_0 = L_6;
String_t* L_7 = V_0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_01f4;
}
}
{
String_t* L_9 = V_0;
NullCheck(L_9);
Il2CppChar L_10;
L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_9, 0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)36)))))
{
goto IL_01f4;
}
}
IL_003a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_11 = ___reader0;
NullCheck(L_11);
RuntimeObject * L_12;
L_12 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_11);
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12);
V_0 = L_13;
String_t* L_14 = V_0;
bool L_15;
L_15 = String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5(L_14, _stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382, 4, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_013d;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_16 = ___reader0;
NullCheck(L_16);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_16, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_17 = ___reader0;
NullCheck(L_17);
int32_t L_18;
L_18 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_17);
if ((((int32_t)L_18) == ((int32_t)((int32_t)9))))
{
goto IL_008c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_19 = ___reader0;
NullCheck(L_19);
int32_t L_20;
L_20 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_19);
if ((((int32_t)L_20) == ((int32_t)((int32_t)11))))
{
goto IL_008c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_21 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_22;
L_22 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_23;
L_23 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9B9C41BB5EAB4B82AA512303E3BD01EC37D9F169)), L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382)), /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_24;
L_24 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_21, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ReadMetadataProperties_m53E9E27D4CEB8410EA0D00AFF421EB5AA4A377CC_RuntimeMethod_var)));
}
IL_008c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_25 = ___reader0;
NullCheck(L_25);
RuntimeObject * L_26;
L_26 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_25);
if (L_26)
{
goto IL_0097;
}
}
{
G_B10_0 = ((String_t*)(NULL));
goto IL_00a2;
}
IL_0097:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_27 = ___reader0;
NullCheck(L_27);
RuntimeObject * L_28;
L_28 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_27);
NullCheck(L_28);
String_t* L_29;
L_29 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28);
G_B10_0 = L_29;
}
IL_00a2:
{
V_2 = G_B10_0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_30 = ___reader0;
NullCheck(L_30);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_30, /*hidden argument*/NULL);
String_t* L_31 = V_2;
if (!L_31)
{
goto IL_0136;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_32 = ___reader0;
NullCheck(L_32);
int32_t L_33;
L_33 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_32);
if ((!(((uint32_t)L_33) == ((uint32_t)4))))
{
goto IL_00d3;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_34 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_35;
L_35 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_36;
L_36 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral73F309C03289E6D649CAEE0E88EC2DE4F673E05E)), L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382)), /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_37;
L_37 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_34, L_36, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ReadMetadataProperties_m53E9E27D4CEB8410EA0D00AFF421EB5AA4A377CC_RuntimeMethod_var)));
}
IL_00d3:
{
RuntimeObject ** L_38 = ___newValue7;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_39 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_39);
RuntimeObject* L_40;
L_40 = JsonSerializer_GetReferenceResolver_mB1A2477F3CEB4C37E81DF088872CB399056FC78C(L_39, /*hidden argument*/NULL);
String_t* L_41 = V_2;
NullCheck(L_40);
RuntimeObject * L_42;
L_42 = InterfaceFuncInvoker2< RuntimeObject *, RuntimeObject *, String_t* >::Invoke(0 /* System.Object Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver::ResolveReference(System.Object,System.String) */, IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F_il2cpp_TypeInfo_var, L_40, __this, L_41);
*((RuntimeObject **)L_38) = (RuntimeObject *)L_42;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_38, (void*)(RuntimeObject *)L_42);
RuntimeObject* L_43 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_43)
{
goto IL_0134;
}
}
{
RuntimeObject* L_44 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_44);
int32_t L_45;
L_45 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_44);
if ((((int32_t)L_45) < ((int32_t)3)))
{
goto IL_0134;
}
}
{
RuntimeObject* L_46 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_47 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_48 = ___reader0;
NullCheck(L_48);
String_t* L_49;
L_49 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_48);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_50;
L_50 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_51 = V_2;
RuntimeObject ** L_52 = ___newValue7;
RuntimeObject * L_53 = *((RuntimeObject **)L_52);
NullCheck(L_53);
Type_t * L_54;
L_54 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_53, /*hidden argument*/NULL);
String_t* L_55;
L_55 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral624220B630D1F7A203600DDF128C76CC987066A6, L_50, L_51, L_54, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_56;
L_56 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_47, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_49, L_55, /*hidden argument*/NULL);
NullCheck(L_46);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_46, 3, L_56, (Exception_t *)NULL);
}
IL_0134:
{
return (bool)1;
}
IL_0136:
{
V_1 = (bool)1;
goto IL_01e5;
}
IL_013d:
{
String_t* L_57 = V_0;
bool L_58;
L_58 = String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5(L_57, _stringLiteral11F941DFBA062769D6F047F85D846335446DFB0E, 4, /*hidden argument*/NULL);
if (!L_58)
{
goto IL_0177;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_59 = ___reader0;
NullCheck(L_59);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_59, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_60 = ___reader0;
NullCheck(L_60);
RuntimeObject * L_61;
L_61 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_60);
NullCheck(L_61);
String_t* L_62;
L_62 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_61);
V_3 = L_62;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_63 = ___reader0;
Type_t ** L_64 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_65 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_66 = ___member3;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_67 = ___containerContract4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_68 = ___containerMember5;
String_t* L_69 = V_3;
JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF(__this, L_63, (Type_t **)L_64, (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_65, L_66, L_67, L_68, L_69, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_70 = ___reader0;
NullCheck(L_70);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_70, /*hidden argument*/NULL);
V_1 = (bool)1;
goto IL_01e5;
}
IL_0177:
{
String_t* L_71 = V_0;
bool L_72;
L_72 = String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5(L_71, _stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA, 4, /*hidden argument*/NULL);
if (!L_72)
{
goto IL_01ae;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_73 = ___reader0;
NullCheck(L_73);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_73, /*hidden argument*/NULL);
String_t** L_74 = ___id8;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_75 = ___reader0;
NullCheck(L_75);
RuntimeObject * L_76;
L_76 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_75);
G_B22_0 = L_74;
if (L_76)
{
G_B23_0 = L_74;
goto IL_0198;
}
}
{
G_B24_0 = ((String_t*)(NULL));
G_B24_1 = G_B22_0;
goto IL_01a3;
}
IL_0198:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_77 = ___reader0;
NullCheck(L_77);
RuntimeObject * L_78;
L_78 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_77);
NullCheck(L_78);
String_t* L_79;
L_79 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_78);
G_B24_0 = L_79;
G_B24_1 = G_B23_0;
}
IL_01a3:
{
*((RuntimeObject **)G_B24_1) = (RuntimeObject *)G_B24_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B24_1, (void*)(RuntimeObject *)G_B24_0);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_80 = ___reader0;
NullCheck(L_80);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_80, /*hidden argument*/NULL);
V_1 = (bool)1;
goto IL_01e5;
}
IL_01ae:
{
String_t* L_81 = V_0;
bool L_82;
L_82 = String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5(L_81, _stringLiteral1298EC2264C4F9A0D3A04140873D9D01F481050B, 4, /*hidden argument*/NULL);
if (!L_82)
{
goto IL_01e3;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_83 = ___reader0;
NullCheck(L_83);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_83, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_84 = ___reader0;
Type_t ** L_85 = ___objectType1;
Type_t * L_86 = *((Type_t **)L_85);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_87 = ___contract2;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_88 = *((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_87);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_89 = ___member3;
RuntimeObject * L_90 = ___existingValue6;
String_t** L_91 = ___id8;
String_t* L_92 = *((String_t**)L_91);
RuntimeObject * L_93;
L_93 = JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D(__this, L_84, L_86, L_88, L_89, L_90, L_92, /*hidden argument*/NULL);
V_4 = L_93;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_94 = ___reader0;
NullCheck(L_94);
JsonReader_ReadAndAssert_m6371A53B284C9D86E3873E1A3C5C9C3D77463618(L_94, /*hidden argument*/NULL);
RuntimeObject ** L_95 = ___newValue7;
RuntimeObject * L_96 = V_4;
*((RuntimeObject **)L_95) = (RuntimeObject *)L_96;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_95, (void*)(RuntimeObject *)L_96);
return (bool)1;
}
IL_01e3:
{
V_1 = (bool)0;
}
IL_01e5:
{
bool L_97 = V_1;
if (!L_97)
{
goto IL_01f4;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_98 = ___reader0;
NullCheck(L_98);
int32_t L_99;
L_99 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_98);
if ((((int32_t)L_99) == ((int32_t)4)))
{
goto IL_003a;
}
}
IL_01f4:
{
return (bool)0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ResolveTypeName(Vuforia.Newtonsoft.Json.JsonReader,System.Type&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t ** ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract4, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember5, String_t* ___qualifiedTypeName6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4200CEC6A675006F1CDF8C63ADD1E8B60954E858);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 V_0;
memset((&V_0), 0, sizeof(V_0));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 V_3;
memset((&V_3), 0, sizeof(V_3));
String_t* V_4 = NULL;
String_t* V_5 = NULL;
Type_t * V_6 = NULL;
Exception_t * V_7 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 G_B3_0;
memset((&G_B3_0), 0, sizeof(G_B3_0));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 G_B7_0;
memset((&G_B7_0), 0, sizeof(G_B7_0));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 G_B11_0;
memset((&G_B11_0), 0, sizeof(G_B11_0));
int32_t G_B16_0 = 0;
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_0 = ___member3;
if (L_0)
{
goto IL_000f;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_1 = V_1;
G_B3_0 = L_1;
goto IL_0016;
}
IL_000f:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_2 = ___member3;
NullCheck(L_2);
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_3;
L_3 = JsonProperty_get_TypeNameHandling_mEBF2DA89C991527B319F376AA9DB70E8DAB4DE2E_inline(L_2, /*hidden argument*/NULL);
G_B3_0 = L_3;
}
IL_0016:
{
V_0 = G_B3_0;
bool L_4;
L_4 = Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_inline((Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_RuntimeMethod_var);
if (L_4)
{
goto IL_007f;
}
}
{
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_5 = ___containerContract4;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_6 = V_2;
G_B7_0 = L_6;
goto IL_0036;
}
IL_002f:
{
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_7 = ___containerContract4;
NullCheck(L_7);
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_8;
L_8 = JsonContainerContract_get_ItemTypeNameHandling_m5127E4BCDB00DCF13DEA6AE715351EC5664EA2BE_inline(L_7, /*hidden argument*/NULL);
G_B7_0 = L_8;
}
IL_0036:
{
V_1 = G_B7_0;
bool L_9;
L_9 = Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_inline((Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_RuntimeMethod_var);
if (L_9)
{
goto IL_0076;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_10 = ___containerMember5;
if (L_10)
{
goto IL_004f;
}
}
{
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 ));
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_11 = V_3;
G_B11_0 = L_11;
goto IL_0056;
}
IL_004f:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_12 = ___containerMember5;
NullCheck(L_12);
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_13;
L_13 = JsonProperty_get_ItemTypeNameHandling_m9975EC554BB17BAF49400485A41EB4B3609E8E9A_inline(L_12, /*hidden argument*/NULL);
G_B11_0 = L_13;
}
IL_0056:
{
V_2 = G_B11_0;
bool L_14;
L_14 = Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_inline((Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *)(&V_2), /*hidden argument*/Nullable_1_get_HasValue_mBD26335623B7E03355CA1365D4706224DD18E1BD_RuntimeMethod_var);
if (L_14)
{
goto IL_006d;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_15 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_15);
int32_t L_16 = L_15->get__typeNameHandling_0();
G_B16_0 = L_16;
goto IL_0086;
}
IL_006d:
{
int32_t L_17;
L_17 = Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_inline((Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *)(&V_2), /*hidden argument*/Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_RuntimeMethod_var);
G_B16_0 = L_17;
goto IL_0086;
}
IL_0076:
{
int32_t L_18;
L_18 = Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_inline((Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_RuntimeMethod_var);
G_B16_0 = L_18;
goto IL_0086;
}
IL_007f:
{
int32_t L_19;
L_19 = Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_inline((Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m2550BDF8F02A8374BDF9302D7BCB474C723CA5FA_RuntimeMethod_var);
G_B16_0 = L_19;
}
IL_0086:
{
if (!G_B16_0)
{
goto IL_017a;
}
}
{
String_t* L_20 = ___qualifiedTypeName6;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
ReflectionUtils_SplitFullyQualifiedTypeName_m56DEC4AA1FABF6B8E10B6046C3651EE0FC7CB8B6(L_20, (String_t**)(&V_4), (String_t**)(&V_5), /*hidden argument*/NULL);
}
IL_0096:
try
{// begin try (depth: 1)
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_21 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_21);
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * L_22 = L_21->get__binder_14();
String_t* L_23 = V_5;
String_t* L_24 = V_4;
NullCheck(L_22);
Type_t * L_25;
L_25 = VirtualFuncInvoker2< Type_t *, String_t*, String_t* >::Invoke(4 /* System.Type Vuforia.Newtonsoft.Json.SerializationBinder::BindToType(System.String,System.String) */, L_22, L_23, L_24);
V_6 = L_25;
goto IL_00ca;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00ae;
}
throw e;
}
CATCH_00ae:
{// begin catch(System.Exception)
V_7 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_26 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_27;
L_27 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_28 = ___qualifiedTypeName6;
String_t* L_29;
L_29 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral44825BA1FE24FA125A1477D51A5B3D81E49CE809)), L_27, L_28, /*hidden argument*/NULL);
Exception_t * L_30 = V_7;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_31;
L_31 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_26, L_29, L_30, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00ca:
{
Type_t * L_32 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_33;
L_33 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_32, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_00ec;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_34 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_35;
L_35 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_36 = ___qualifiedTypeName6;
String_t* L_37;
L_37 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEE9EC4DC6A89D61E3B8BB758D61C093B7C1A9AE6)), L_35, L_36, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_38;
L_38 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_34, L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF_RuntimeMethod_var)));
}
IL_00ec:
{
RuntimeObject* L_39 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_39)
{
goto IL_0133;
}
}
{
RuntimeObject* L_40 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_40);
int32_t L_41;
L_41 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_40);
if ((((int32_t)L_41) < ((int32_t)4)))
{
goto IL_0133;
}
}
{
RuntimeObject* L_42 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_43 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_44 = ___reader0;
NullCheck(L_44);
String_t* L_45;
L_45 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_44);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_46;
L_46 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_47 = ___qualifiedTypeName6;
Type_t * L_48 = V_6;
String_t* L_49;
L_49 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral4200CEC6A675006F1CDF8C63ADD1E8B60954E858, L_46, L_47, L_48, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_50;
L_50 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_43, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_45, L_49, /*hidden argument*/NULL);
NullCheck(L_42);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_42, 4, L_50, (Exception_t *)NULL);
}
IL_0133:
{
Type_t ** L_51 = ___objectType1;
Type_t * L_52 = *((Type_t **)L_51);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_53;
L_53 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_52, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_53)
{
goto IL_016c;
}
}
{
Type_t ** L_54 = ___objectType1;
Type_t * L_55 = *((Type_t **)L_54);
Type_t * L_56 = V_6;
NullCheck(L_55);
bool L_57;
L_57 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(111 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_55, L_56);
if (L_57)
{
goto IL_016c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_58 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_59;
L_59 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_60 = V_6;
NullCheck(L_60);
String_t* L_61;
L_61 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_60);
Type_t ** L_62 = ___objectType1;
Type_t * L_63 = *((Type_t **)L_62);
NullCheck(L_63);
String_t* L_64;
L_64 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_63);
String_t* L_65;
L_65 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5443E3CFB150296B686B12DEC5A9A906246EC008)), L_59, L_61, L_64, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_66;
L_66 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_58, L_65, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ResolveTypeName_m4B3D9E98D0B3C2D0A726DAAEB7CE456EA68BB7CF_RuntimeMethod_var)));
}
IL_016c:
{
Type_t ** L_67 = ___objectType1;
Type_t * L_68 = V_6;
*((RuntimeObject **)L_67) = (RuntimeObject *)L_68;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_67, (void*)(RuntimeObject *)L_68);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_69 = ___contract2;
Type_t * L_70 = V_6;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_71;
L_71 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_70, /*hidden argument*/NULL);
*((RuntimeObject **)L_69) = (RuntimeObject *)L_71;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_69, (void*)(RuntimeObject *)L_71);
}
IL_017a:
{
return;
}
}
// Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureArrayContract(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * JsonSerializerInternalReader_EnsureArrayContract_mBAF9619065E088954C5A59AB052E2FD0D0CDEA4B (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * G_B4_0 = NULL;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * G_B3_0 = NULL;
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = ___contract2;
if (L_0)
{
goto IL_001a;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2;
L_2 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_3 = ___objectType1;
String_t* L_4;
L_4 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4853B58E4CE76A956E53529C8FDA397E751A7287)), L_2, L_3, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_5;
L_5 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_1, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_EnsureArrayContract_mBAF9619065E088954C5A59AB052E2FD0D0CDEA4B_RuntimeMethod_var)));
}
IL_001a:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_6 = ___contract2;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_7 = ((JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 *)IsInstClass((RuntimeObject*)L_6, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245_il2cpp_TypeInfo_var));
G_B3_0 = L_7;
if (L_7)
{
G_B4_0 = L_7;
goto IL_0059;
}
}
{
String_t* L_8;
L_8 = Environment_get_NewLine_mD145C8EE917C986BAA7C5243DEFAF4D333C521B4(/*hidden argument*/NULL);
String_t* L_9;
L_9 = Environment_get_NewLine_mD145C8EE917C986BAA7C5243DEFAF4D333C521B4(/*hidden argument*/NULL);
String_t* L_10;
L_10 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral76D1E865270F30E671453C0D6A3670330AC9DE85)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9123101C0B385390321554D1CC5A3EC38ECB37DF)), L_9, /*hidden argument*/NULL);
V_0 = L_10;
String_t* L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_12;
L_12 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_13 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_14 = ___contract2;
String_t* L_15;
L_15 = JsonSerializerInternalReader_GetExpectedDescription_m9EC69D92138EB0051D0E68AD0A6E67C68BEC0AB3(__this, L_14, /*hidden argument*/NULL);
String_t* L_16;
L_16 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(L_11, L_12, L_13, L_15, /*hidden argument*/NULL);
V_0 = L_16;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_17 = ___reader0;
String_t* L_18 = V_0;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_19;
L_19 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_17, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_EnsureArrayContract_mBAF9619065E088954C5A59AB052E2FD0D0CDEA4B_RuntimeMethod_var)));
}
IL_0059:
{
return G_B4_0;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateList(Vuforia.Newtonsoft.Json.JsonReader,System.Type,Vuforia.Newtonsoft.Json.Serialization.JsonContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, Type_t * ___objectType1, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, RuntimeObject * ___existingValue4, String_t* ___id5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t131073A2CB9F69A5308A5AA52335DC13EAE4B5DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t6ACA7D9F7FB10319A5DE8ECF6919F79A7740F218_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
RuntimeArray * V_4 = NULL;
RuntimeObject* V_5 = NULL;
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * G_B23_0 = NULL;
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * G_B22_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B31_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B30_0 = NULL;
RuntimeObject* G_B32_0 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B32_1 = NULL;
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = ___contract2;
bool L_1;
L_1 = JsonSerializerInternalReader_HasNoDefinedType_mE77196F16E7ADFBC60D87C55710413F6BD52CD5B(__this, L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0012;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_3 = ___contract2;
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_4;
L_4 = JsonSerializerInternalReader_CreateJToken_m5DBDB6242EE910DFDE4D7460E22466B0936F54CE(__this, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0012:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader0;
Type_t * L_6 = ___objectType1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_7 = ___contract2;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_8;
L_8 = JsonSerializerInternalReader_EnsureArrayContract_mBAF9619065E088954C5A59AB052E2FD0D0CDEA4B(__this, L_5, L_6, L_7, /*hidden argument*/NULL);
V_1 = L_8;
RuntimeObject * L_9 = ___existingValue4;
if (L_9)
{
goto IL_0180;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10 = ___reader0;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_11 = V_1;
RuntimeObject* L_12;
L_12 = JsonSerializerInternalReader_CreateNewList_m3750B64E6CE99D30375C4DC66E3CE8195CD6A4B2(__this, L_10, L_11, (bool*)(&V_2), /*hidden argument*/NULL);
V_3 = L_12;
bool L_13 = V_2;
if (!L_13)
{
goto IL_00d4;
}
}
{
String_t* L_14 = ___id5;
if (!L_14)
{
goto IL_0054;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_15 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_16;
L_16 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_17 = ___contract2;
NullCheck(L_17);
Type_t * L_18;
L_18 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_17, /*hidden argument*/NULL);
String_t* L_19;
L_19 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2980C76AF500BE97C70A4DFDFDA3B38072E2BE4D)), L_16, L_18, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_20;
L_20 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_15, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D_RuntimeMethod_var)));
}
IL_0054:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_21 = ___contract2;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = JsonContract_get_OnSerializingCallbacks_mFE79890C743727956CEA047578401E6D51DE73E8(L_21, /*hidden argument*/NULL);
NullCheck(L_22);
int32_t L_23;
L_23 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Serialization.SerializationCallback>::get_Count() */, ICollection_1_t131073A2CB9F69A5308A5AA52335DC13EAE4B5DE_il2cpp_TypeInfo_var, L_22);
if ((((int32_t)L_23) <= ((int32_t)0)))
{
goto IL_007e;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_24 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_25;
L_25 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_26 = ___contract2;
NullCheck(L_26);
Type_t * L_27;
L_27 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_26, /*hidden argument*/NULL);
String_t* L_28;
L_28 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0C420681CE5E1D75C30F0335EBE679C79B4579F9)), L_25, L_27, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_29;
L_29 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_24, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D_RuntimeMethod_var)));
}
IL_007e:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_30 = ___contract2;
NullCheck(L_30);
RuntimeObject* L_31;
L_31 = JsonContract_get_OnErrorCallbacks_m3B886B57B0C38DFB72BBEF9A76F73A1CE72AD454(L_30, /*hidden argument*/NULL);
NullCheck(L_31);
int32_t L_32;
L_32 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<Vuforia.Newtonsoft.Json.Serialization.SerializationErrorCallback>::get_Count() */, ICollection_1_t6ACA7D9F7FB10319A5DE8ECF6919F79A7740F218_il2cpp_TypeInfo_var, L_31);
if ((((int32_t)L_32) <= ((int32_t)0)))
{
goto IL_00a8;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_33 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_34;
L_34 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_35 = ___contract2;
NullCheck(L_35);
Type_t * L_36;
L_36 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_35, /*hidden argument*/NULL);
String_t* L_37;
L_37 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA8E92A345B807AA9388C8CDCF2A98E6D997D6AF)), L_34, L_36, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_38;
L_38 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_33, L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D_RuntimeMethod_var)));
}
IL_00a8:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_39 = V_1;
NullCheck(L_39);
bool L_40;
L_40 = JsonArrayContract_get_HasParameterizedCreatorInternal_mDECD3E5A012191769951C8F1F692F131E47CD570(L_39, /*hidden argument*/NULL);
if (L_40)
{
goto IL_00d4;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_41 = V_1;
NullCheck(L_41);
bool L_42;
L_42 = JsonArrayContract_get_IsArray_m8C8CB9EECD63C9EF6D45946B7FC258AF334E87B5_inline(L_41, /*hidden argument*/NULL);
if (L_42)
{
goto IL_00d4;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_43 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_44;
L_44 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_45 = ___contract2;
NullCheck(L_45);
Type_t * L_46;
L_46 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_45, /*hidden argument*/NULL);
String_t* L_47;
L_47 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral33F9FFFE7C929143FD00A01257379A6DB6234926)), L_44, L_46, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_48;
L_48 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_43, L_47, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D_RuntimeMethod_var)));
}
IL_00d4:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_49 = V_1;
NullCheck(L_49);
bool L_50;
L_50 = JsonArrayContract_get_IsMultidimensionalArray_mF7F027C6DA10C72C3D08232BB0924A9EE38AD310_inline(L_49, /*hidden argument*/NULL);
if (L_50)
{
goto IL_00ec;
}
}
{
RuntimeObject* L_51 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_52 = ___reader0;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_53 = V_1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_54 = ___member3;
String_t* L_55 = ___id5;
RuntimeObject * L_56;
L_56 = JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710(__this, L_51, L_52, L_53, L_54, L_55, /*hidden argument*/NULL);
goto IL_00fa;
}
IL_00ec:
{
RuntimeObject* L_57 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_58 = ___reader0;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_59 = V_1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_60 = ___member3;
String_t* L_61 = ___id5;
RuntimeObject * L_62;
L_62 = JsonSerializerInternalReader_PopulateMultidimensionalArray_mAB445EFB76C13BF0091C79166158B6F28F068876(__this, L_57, L_58, L_59, L_60, L_61, /*hidden argument*/NULL);
}
IL_00fa:
{
bool L_63 = V_2;
if (!L_63)
{
goto IL_0168;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_64 = V_1;
NullCheck(L_64);
bool L_65;
L_65 = JsonArrayContract_get_IsMultidimensionalArray_mF7F027C6DA10C72C3D08232BB0924A9EE38AD310_inline(L_64, /*hidden argument*/NULL);
if (!L_65)
{
goto IL_011f;
}
}
{
RuntimeObject* L_66 = V_3;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_67 = V_1;
NullCheck(L_67);
Type_t * L_68;
L_68 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_67, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_69 = ___contract2;
NullCheck(L_69);
Type_t * L_70;
L_70 = JsonContract_get_CreatedType_mF19D1DA96E2BAF2B3E393E2297135BD08C8E6302_inline(L_69, /*hidden argument*/NULL);
NullCheck(L_70);
int32_t L_71;
L_71 = VirtualFuncInvoker0< int32_t >::Invoke(28 /* System.Int32 System.Type::GetArrayRank() */, L_70);
RuntimeArray * L_72;
L_72 = CollectionUtils_ToMultidimensionalArray_m6FD24AAC96169905CF445D8A6DBFAA87F2C945C0(L_66, L_68, L_71, /*hidden argument*/NULL);
V_3 = L_72;
goto IL_017c;
}
IL_011f:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_73 = V_1;
NullCheck(L_73);
bool L_74;
L_74 = JsonArrayContract_get_IsArray_m8C8CB9EECD63C9EF6D45946B7FC258AF334E87B5_inline(L_73, /*hidden argument*/NULL);
if (!L_74)
{
goto IL_0148;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_75 = V_1;
NullCheck(L_75);
Type_t * L_76;
L_76 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_75, /*hidden argument*/NULL);
RuntimeObject* L_77 = V_3;
NullCheck(L_77);
int32_t L_78;
L_78 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_77);
RuntimeArray * L_79;
L_79 = Array_CreateInstance_m57AC02F4475AF70CA317B48F09B3C29E3BA9C046(L_76, L_78, /*hidden argument*/NULL);
V_4 = L_79;
RuntimeObject* L_80 = V_3;
RuntimeArray * L_81 = V_4;
NullCheck(L_80);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_80, L_81, 0);
RuntimeArray * L_82 = V_4;
V_3 = L_82;
goto IL_017c;
}
IL_0148:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_83 = V_1;
NullCheck(L_83);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_84;
L_84 = JsonArrayContract_get_OverrideCreator_m2CC0CCB39BA9006302F9C8DC385CEB22B9B28EEB_inline(L_83, /*hidden argument*/NULL);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_85 = L_84;
G_B22_0 = L_85;
if (L_85)
{
G_B23_0 = L_85;
goto IL_0158;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_86 = V_1;
NullCheck(L_86);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_87;
L_87 = JsonArrayContract_get_ParameterizedCreator_m255763FA7BC39347E38B6516896268B536CD804B(L_86, /*hidden argument*/NULL);
G_B23_0 = L_87;
}
IL_0158:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_88 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_89 = L_88;
RuntimeObject* L_90 = V_3;
NullCheck(L_89);
ArrayElementTypeCheck (L_89, L_90);
(L_89)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_90);
NullCheck(G_B23_0);
RuntimeObject * L_91;
L_91 = ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C(G_B23_0, L_89, /*hidden argument*/ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
return L_91;
}
IL_0168:
{
RuntimeObject* L_92 = V_3;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_92, IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var)))
{
goto IL_017c;
}
}
{
RuntimeObject* L_93 = V_3;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_93, IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var)));
RuntimeObject * L_94;
L_94 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Vuforia.Newtonsoft.Json.Utilities.IWrappedCollection::get_UnderlyingCollection() */, IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_93, IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var)));
return L_94;
}
IL_017c:
{
RuntimeObject* L_95 = V_3;
V_0 = L_95;
goto IL_01ce;
}
IL_0180:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_96 = V_1;
NullCheck(L_96);
bool L_97;
L_97 = JsonArrayContract_get_CanDeserialize_mEFFB4F298843C2F8D29C99CA2183AA6A89A53E9E_inline(L_96, /*hidden argument*/NULL);
if (L_97)
{
goto IL_01a4;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_98 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_99;
L_99 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_100 = ___contract2;
NullCheck(L_100);
Type_t * L_101;
L_101 = JsonContract_get_CreatedType_mF19D1DA96E2BAF2B3E393E2297135BD08C8E6302_inline(L_100, /*hidden argument*/NULL);
String_t* L_102;
L_102 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20AFD03F1885A0F2821CAFC2EFDCAAFA4559B765)), L_99, L_101, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_103;
L_103 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_98, L_102, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_103, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateList_m39DC943863A3876886F30BB7C97400164F104F3D_RuntimeMethod_var)));
}
IL_01a4:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_104 = V_1;
NullCheck(L_104);
bool L_105;
L_105 = JsonArrayContract_get_ShouldCreateWrapper_mBFBB0CE88CF4DA4FD074978F1BC42BBF058A3995_inline(L_104, /*hidden argument*/NULL);
G_B30_0 = __this;
if (L_105)
{
G_B31_0 = __this;
goto IL_01b6;
}
}
{
RuntimeObject * L_106 = ___existingValue4;
G_B32_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_106, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var));
G_B32_1 = G_B30_0;
goto IL_01c2;
}
IL_01b6:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_107 = V_1;
RuntimeObject * L_108 = ___existingValue4;
NullCheck(L_107);
RuntimeObject* L_109;
L_109 = JsonArrayContract_CreateWrapper_m0FC0719BFA78DF65DE2956C7469AB6DFC30F816C(L_107, L_108, /*hidden argument*/NULL);
V_5 = L_109;
RuntimeObject* L_110 = V_5;
G_B32_0 = L_110;
G_B32_1 = G_B31_0;
}
IL_01c2:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_111 = ___reader0;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_112 = V_1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_113 = ___member3;
String_t* L_114 = ___id5;
NullCheck(G_B32_1);
RuntimeObject * L_115;
L_115 = JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710(G_B32_1, G_B32_0, L_111, L_112, L_113, L_114, /*hidden argument*/NULL);
V_0 = L_115;
}
IL_01ce:
{
RuntimeObject * L_116 = V_0;
return L_116;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasNoDefinedType(Vuforia.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_HasNoDefinedType_mE77196F16E7ADFBC60D87C55710413F6BD52CD5B (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = ___contract0;
if (!L_0)
{
goto IL_0024;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_1 = ___contract0;
NullCheck(L_1);
Type_t * L_2;
L_2 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL);
bool L_5;
L_5 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_2, L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0024;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_6 = ___contract0;
NullCheck(L_6);
int32_t L_7 = L_6->get_ContractType_5();
return (bool)((((int32_t)L_7) == ((int32_t)8))? 1 : 0);
}
IL_0024:
{
return (bool)1;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureType(Vuforia.Newtonsoft.Json.JsonReader,System.Object,System.Globalization.CultureInfo,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, RuntimeObject * ___value1, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture2, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract3, Type_t * ___targetType4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_tE67B037CB4024E301EF5FF99A76C04AEAD465E24_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PrimitiveTypeCode_tA1245D8181181974698A4A3580EBFB359C077562_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
Exception_t * V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 4> __leave_targets;
{
Type_t * L_0 = ___targetType4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000c;
}
}
{
RuntimeObject * L_2 = ___value1;
return L_2;
}
IL_000c:
{
RuntimeObject * L_3 = ___value1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_tA73BA8087E066D24C93D2FDECCC691327114647B_il2cpp_TypeInfo_var);
Type_t * L_4;
L_4 = ReflectionUtils_GetObjectType_m41DBF05EE5918D7A510BE070DE9FF955E4E9CF5C(L_3, /*hidden argument*/NULL);
Type_t * L_5 = ___targetType4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_6;
L_6 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_00c9;
}
}
{
RuntimeObject * L_7 = ___value1;
if (L_7)
{
goto IL_002c;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_8 = ___contract3;
NullCheck(L_8);
bool L_9 = L_8->get_IsNullable_0();
if (!L_9)
{
goto IL_002c;
}
}
{
return NULL;
}
IL_002c:
{
}
IL_002d:
try
{// begin try (depth: 1)
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_10 = ___contract3;
NullCheck(L_10);
bool L_11 = L_10->get_IsConvertable_1();
if (!L_11)
{
goto IL_0098;
}
}
IL_0036:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_12 = ___contract3;
V_0 = ((JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 *)CastclassClass((RuntimeObject*)L_12, JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var));
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_13 = ___contract3;
NullCheck(L_13);
bool L_14 = L_13->get_IsEnum_2();
if (!L_14)
{
goto IL_0087;
}
}
IL_0047:
{
RuntimeObject * L_15 = ___value1;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_15, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0065;
}
}
IL_004f:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_16 = ___contract3;
NullCheck(L_16);
Type_t * L_17 = L_16->get_NonNullableUnderlyingType_3();
RuntimeObject * L_18 = ___value1;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_18);
IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
RuntimeObject * L_20;
L_20 = Enum_Parse_m42052064519239A11D605CD696EC0FD90A0FB039(L_17, L_19, (bool)1, /*hidden argument*/NULL);
V_1 = L_20;
goto IL_00cb;
}
IL_0065:
{
JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 * L_21 = V_0;
NullCheck(L_21);
int32_t L_22;
L_22 = JsonPrimitiveContract_get_TypeCode_m4264CAF3D77442FD9520DEA039D9F07C90D205E9_inline(L_21, /*hidden argument*/NULL);
int32_t L_23 = L_22;
RuntimeObject * L_24 = Box(PrimitiveTypeCode_tA1245D8181181974698A4A3580EBFB359C077562_il2cpp_TypeInfo_var, &L_23);
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tE67B037CB4024E301EF5FF99A76C04AEAD465E24_il2cpp_TypeInfo_var);
bool L_25;
L_25 = ConvertUtils_IsInteger_mCA4A52918C6A4C29C204F22A24E6DD452DC53602(L_24, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_0087;
}
}
IL_0077:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_26 = ___contract3;
NullCheck(L_26);
Type_t * L_27 = L_26->get_NonNullableUnderlyingType_3();
RuntimeObject * L_28 = ___value1;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
RuntimeObject * L_29;
L_29 = Enum_ToObject_m2A05590A0D581206AAEB48B89187FD175D5F0967(L_27, L_28, /*hidden argument*/NULL);
V_1 = L_29;
goto IL_00cb;
}
IL_0087:
{
RuntimeObject * L_30 = ___value1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_31 = ___contract3;
NullCheck(L_31);
Type_t * L_32 = L_31->get_NonNullableUnderlyingType_3();
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_33 = ___culture2;
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
RuntimeObject * L_34;
L_34 = Convert_ChangeType_m6AA3DE3E595A2AABA33B5046BD6CF2AB46466C05(L_30, L_32, L_33, /*hidden argument*/NULL);
V_1 = L_34;
goto IL_00cb;
}
IL_0098:
{
RuntimeObject * L_35 = ___value1;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_36 = ___culture2;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_37 = ___contract3;
NullCheck(L_37);
Type_t * L_38 = L_37->get_NonNullableUnderlyingType_3();
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tE67B037CB4024E301EF5FF99A76C04AEAD465E24_il2cpp_TypeInfo_var);
RuntimeObject * L_39;
L_39 = ConvertUtils_ConvertOrCast_mC1751364BEF4C5B58DD39AA1B26AC2CC9E44B2F5(L_35, L_36, L_38, /*hidden argument*/NULL);
V_1 = L_39;
goto IL_00cb;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00a9;
}
throw e;
}
CATCH_00a9:
{// begin catch(System.Exception)
V_2 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_40 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_41;
L_41 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
RuntimeObject * L_42 = ___value1;
String_t* L_43;
L_43 = MiscellaneousUtils_FormatValueForPrint_m5393F6C1B91B330FF936888EA7A9A0A203E9DB63(L_42, /*hidden argument*/NULL);
Type_t * L_44 = ___targetType4;
String_t* L_45;
L_45 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral34AC5C40D830EF0A8EF122F54B008863A6142239)), L_41, L_43, L_44, /*hidden argument*/NULL);
Exception_t * L_46 = V_2;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_47;
L_47 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_40, L_45, L_46, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00c9:
{
RuntimeObject * L_48 = ___value1;
return L_48;
}
IL_00cb:
{
RuntimeObject * L_49 = V_1;
return L_49;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyValue(Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonConverter,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_SetPropertyValue_m52DD932CDB67236E3E199592EC63C48C1057D100 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property0, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___propertyConverter1, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader4, RuntimeObject * ___target5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7682690C14A574DB67D4BAE609A1BB421CED26E5);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * V_2 = NULL;
bool V_3 = false;
RuntimeObject * V_4 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B11_0 = NULL;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * G_B11_1 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B11_2 = NULL;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * G_B11_3 = NULL;
Type_t * G_B11_4 = NULL;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * G_B11_5 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B11_6 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B10_0 = NULL;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * G_B10_1 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B10_2 = NULL;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * G_B10_3 = NULL;
Type_t * G_B10_4 = NULL;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * G_B10_5 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B10_6 = NULL;
RuntimeObject * G_B12_0 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B12_1 = NULL;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * G_B12_2 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B12_3 = NULL;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * G_B12_4 = NULL;
Type_t * G_B12_5 = NULL;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * G_B12_6 = NULL;
JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * G_B12_7 = NULL;
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_0 = ___property0;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_1 = ___containerContract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_2 = ___containerProperty3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_3 = ___reader4;
RuntimeObject * L_4 = ___target5;
bool L_5;
L_5 = JsonSerializerInternalReader_CalculatePropertyDetails_mBF9CF4F8DBAA199AA8B4922D98C67B86E647BDAB(__this, L_0, (JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C **)(&___propertyConverter1), L_1, L_2, L_3, L_4, (bool*)(&V_1), (RuntimeObject **)(&V_0), (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)(&V_2), (bool*)(&V_3), /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001c;
}
}
{
return (bool)0;
}
IL_001c:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_6 = ___propertyConverter1;
if (!L_6)
{
goto IL_0058;
}
}
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_7 = ___propertyConverter1;
NullCheck(L_7);
bool L_8;
L_8 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean Vuforia.Newtonsoft.Json.JsonConverter::get_CanRead() */, L_7);
if (!L_8)
{
goto IL_0058;
}
}
{
bool L_9 = V_3;
if (L_9)
{
goto IL_0044;
}
}
{
RuntimeObject * L_10 = ___target5;
if (!L_10)
{
goto IL_0044;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_11 = ___property0;
NullCheck(L_11);
bool L_12;
L_12 = JsonProperty_get_Readable_mE66DEC38E3D1417BE030E901B41CA9113272520C_inline(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0044;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_13 = ___property0;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline(L_13, /*hidden argument*/NULL);
RuntimeObject * L_15 = ___target5;
NullCheck(L_14);
RuntimeObject * L_16;
L_16 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Object Vuforia.Newtonsoft.Json.Serialization.IValueProvider::GetValue(System.Object) */, IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var, L_14, L_15);
V_0 = L_16;
}
IL_0044:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_17 = ___propertyConverter1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_18 = ___reader4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_19 = ___property0;
NullCheck(L_19);
Type_t * L_20;
L_20 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_19, /*hidden argument*/NULL);
RuntimeObject * L_21 = V_0;
RuntimeObject * L_22;
L_22 = JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814(__this, L_17, L_18, L_20, L_21, /*hidden argument*/NULL);
V_4 = L_22;
goto IL_0074;
}
IL_0058:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_24 = ___property0;
NullCheck(L_24);
Type_t * L_25;
L_25 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_24, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_26 = V_2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_27 = ___property0;
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_28 = ___containerContract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_29 = ___containerProperty3;
bool L_30 = V_1;
G_B10_0 = L_29;
G_B10_1 = L_28;
G_B10_2 = L_27;
G_B10_3 = L_26;
G_B10_4 = L_25;
G_B10_5 = L_23;
G_B10_6 = __this;
if (L_30)
{
G_B11_0 = L_29;
G_B11_1 = L_28;
G_B11_2 = L_27;
G_B11_3 = L_26;
G_B11_4 = L_25;
G_B11_5 = L_23;
G_B11_6 = __this;
goto IL_006c;
}
}
{
G_B12_0 = NULL;
G_B12_1 = G_B10_0;
G_B12_2 = G_B10_1;
G_B12_3 = G_B10_2;
G_B12_4 = G_B10_3;
G_B12_5 = G_B10_4;
G_B12_6 = G_B10_5;
G_B12_7 = G_B10_6;
goto IL_006d;
}
IL_006c:
{
RuntimeObject * L_31 = V_0;
G_B12_0 = L_31;
G_B12_1 = G_B11_0;
G_B12_2 = G_B11_1;
G_B12_3 = G_B11_2;
G_B12_4 = G_B11_3;
G_B12_5 = G_B11_4;
G_B12_6 = G_B11_5;
G_B12_7 = G_B11_6;
}
IL_006d:
{
NullCheck(G_B12_7);
RuntimeObject * L_32;
L_32 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(G_B12_7, G_B12_6, G_B12_5, G_B12_4, G_B12_3, G_B12_2, G_B12_1, G_B12_0, /*hidden argument*/NULL);
V_4 = L_32;
}
IL_0074:
{
bool L_33 = V_1;
if (!L_33)
{
goto IL_007f;
}
}
{
RuntimeObject * L_34 = V_4;
RuntimeObject * L_35 = V_0;
if ((((RuntimeObject*)(RuntimeObject *)L_34) == ((RuntimeObject*)(RuntimeObject *)L_35)))
{
goto IL_0107;
}
}
IL_007f:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_36 = ___property0;
RuntimeObject * L_37 = V_4;
bool L_38;
L_38 = JsonSerializerInternalReader_ShouldSetPropertyValue_mD92F420E1F3B598299E2EEBFB34D944F2654C24E(__this, L_36, L_37, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_0107;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_39 = ___property0;
NullCheck(L_39);
RuntimeObject* L_40;
L_40 = JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline(L_39, /*hidden argument*/NULL);
RuntimeObject * L_41 = ___target5;
RuntimeObject * L_42 = V_4;
NullCheck(L_40);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void Vuforia.Newtonsoft.Json.Serialization.IValueProvider::SetValue(System.Object,System.Object) */, IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var, L_40, L_41, L_42);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_43 = ___property0;
NullCheck(L_43);
Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * L_44;
L_44 = JsonProperty_get_SetIsSpecified_mEAEB9DF9E91666340C8418B70312C736061B53F1_inline(L_43, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_0105;
}
}
{
RuntimeObject* L_45 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_45)
{
goto IL_00f2;
}
}
{
RuntimeObject* L_46 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_46);
int32_t L_47;
L_47 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_46);
if ((((int32_t)L_47) < ((int32_t)4)))
{
goto IL_00f2;
}
}
{
RuntimeObject* L_48 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_49 = ___reader4;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_50 = ___reader4;
NullCheck(L_50);
String_t* L_51;
L_51 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_50);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_52;
L_52 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_53 = ___property0;
NullCheck(L_53);
String_t* L_54;
L_54 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_53, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_55 = ___property0;
NullCheck(L_55);
Type_t * L_56;
L_56 = JsonProperty_get_DeclaringType_mB0F57AF599AA388A2B92C6B5954B8C54726A6BCC_inline(L_55, /*hidden argument*/NULL);
String_t* L_57;
L_57 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral7682690C14A574DB67D4BAE609A1BB421CED26E5, L_52, L_54, L_56, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_58;
L_58 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_49, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_51, L_57, /*hidden argument*/NULL);
NullCheck(L_48);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_48, 4, L_58, (Exception_t *)NULL);
}
IL_00f2:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_59 = ___property0;
NullCheck(L_59);
Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * L_60;
L_60 = JsonProperty_get_SetIsSpecified_mEAEB9DF9E91666340C8418B70312C736061B53F1_inline(L_59, /*hidden argument*/NULL);
RuntimeObject * L_61 = ___target5;
bool L_62 = ((bool)1);
RuntimeObject * L_63 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_62);
NullCheck(L_60);
Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D(L_60, L_61, L_63, /*hidden argument*/Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_RuntimeMethod_var);
}
IL_0105:
{
return (bool)1;
}
IL_0107:
{
bool L_64 = V_1;
return L_64;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CalculatePropertyDetails(Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonConverter&,Vuforia.Newtonsoft.Json.Serialization.JsonContainerContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.Object,System.Boolean&,System.Object&,Vuforia.Newtonsoft.Json.Serialization.JsonContract&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_CalculatePropertyDetails_mBF9CF4F8DBAA199AA8B4922D98C67B86E647BDAB (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property0, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** ___propertyConverter1, JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * ___containerContract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader4, RuntimeObject * ___target5, bool* ___useExistingValue6, RuntimeObject ** ___currentValue7, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** ___propertyContract8, bool* ___gottenCurrentValue9, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mF2798C0AEE4344D50B89FA536125729BEB8FA49E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 V_3;
memset((&V_3), 0, sizeof(V_3));
bool* G_B11_0 = NULL;
bool* G_B10_0 = NULL;
int32_t G_B12_0 = 0;
bool* G_B12_1 = NULL;
{
RuntimeObject ** L_0 = ___currentValue7;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
bool* L_1 = ___useExistingValue6;
*((int8_t*)L_1) = (int8_t)0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_2 = ___propertyContract8;
*((RuntimeObject **)L_2) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)NULL);
bool* L_3 = ___gottenCurrentValue9;
*((int8_t*)L_3) = (int8_t)0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_4 = ___property0;
NullCheck(L_4);
bool L_5;
L_5 = JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001a;
}
}
{
return (bool)1;
}
IL_001a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader4;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_6);
V_0 = L_7;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_8 = ___property0;
NullCheck(L_8);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_9;
L_9 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_003c;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_10 = ___property0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_11 = ___property0;
NullCheck(L_11);
Type_t * L_12;
L_12 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_11, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_13;
L_13 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_12, /*hidden argument*/NULL);
NullCheck(L_10);
JsonProperty_set_PropertyContract_m5D1ABC8446CDAB8EB9D58BBB2796506EA50BCB00_inline(L_10, L_13, /*hidden argument*/NULL);
}
IL_003c:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_14 = ___property0;
NullCheck(L_14);
Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 L_15;
L_15 = JsonProperty_get_ObjectCreationHandling_m4BBA9FBDCFEA20CAF82C612070D2D8FC70EED712_inline(L_14, /*hidden argument*/NULL);
V_1 = L_15;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_16 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_16);
int32_t L_17 = L_16->get__objectCreationHandling_5();
int32_t L_18;
L_18 = Nullable_1_GetValueOrDefault_mF2798C0AEE4344D50B89FA536125729BEB8FA49E((Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 *)(&V_1), L_17, /*hidden argument*/Nullable_1_GetValueOrDefault_mF2798C0AEE4344D50B89FA536125729BEB8FA49E_RuntimeMethod_var);
if ((((int32_t)L_18) == ((int32_t)2)))
{
goto IL_00b2;
}
}
{
int32_t L_19 = V_0;
if ((((int32_t)L_19) == ((int32_t)2)))
{
goto IL_0060;
}
}
{
int32_t L_20 = V_0;
if ((!(((uint32_t)L_20) == ((uint32_t)1))))
{
goto IL_00b2;
}
}
IL_0060:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_21 = ___property0;
NullCheck(L_21);
bool L_22;
L_22 = JsonProperty_get_Readable_mE66DEC38E3D1417BE030E901B41CA9113272520C_inline(L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_00b2;
}
}
{
RuntimeObject ** L_23 = ___currentValue7;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_24 = ___property0;
NullCheck(L_24);
RuntimeObject* L_25;
L_25 = JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline(L_24, /*hidden argument*/NULL);
RuntimeObject * L_26 = ___target5;
NullCheck(L_25);
RuntimeObject * L_27;
L_27 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Object Vuforia.Newtonsoft.Json.Serialization.IValueProvider::GetValue(System.Object) */, IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var, L_25, L_26);
*((RuntimeObject **)L_23) = (RuntimeObject *)L_27;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_23, (void*)(RuntimeObject *)L_27);
bool* L_28 = ___gottenCurrentValue9;
*((int8_t*)L_28) = (int8_t)1;
RuntimeObject ** L_29 = ___currentValue7;
RuntimeObject * L_30 = *((RuntimeObject **)L_29);
if (!L_30)
{
goto IL_00b2;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_31 = ___propertyContract8;
RuntimeObject ** L_32 = ___currentValue7;
RuntimeObject * L_33 = *((RuntimeObject **)L_32);
NullCheck(L_33);
Type_t * L_34;
L_34 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_33, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_35;
L_35 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_34, /*hidden argument*/NULL);
*((RuntimeObject **)L_31) = (RuntimeObject *)L_35;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_31, (void*)(RuntimeObject *)L_35);
bool* L_36 = ___useExistingValue6;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_37 = ___propertyContract8;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_38 = *((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_37);
NullCheck(L_38);
bool L_39 = L_38->get_IsReadOnlyOrFixedSize_6();
G_B10_0 = L_36;
if (L_39)
{
G_B11_0 = L_36;
goto IL_00b0;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_40 = ___propertyContract8;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_41 = *((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_40);
NullCheck(L_41);
Type_t * L_42;
L_42 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_41, /*hidden argument*/NULL);
bool L_43;
L_43 = TypeExtensions_IsValueType_m0C65E539E74AC4F79E68632A6F6BEEA32F0999D7(L_42, /*hidden argument*/NULL);
G_B12_0 = ((((int32_t)L_43) == ((int32_t)0))? 1 : 0);
G_B12_1 = G_B10_0;
goto IL_00b1;
}
IL_00b0:
{
G_B12_0 = 0;
G_B12_1 = G_B11_0;
}
IL_00b1:
{
*((int8_t*)G_B12_1) = (int8_t)G_B12_0;
}
IL_00b2:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_44 = ___property0;
NullCheck(L_44);
bool L_45;
L_45 = JsonProperty_get_Writable_mCFD17FFBF783AF8F090A391FBAE37088FB9529C1_inline(L_44, /*hidden argument*/NULL);
if (L_45)
{
goto IL_00c1;
}
}
{
bool* L_46 = ___useExistingValue6;
int32_t L_47 = *((uint8_t*)L_46);
if (L_47)
{
goto IL_00c1;
}
}
{
return (bool)1;
}
IL_00c1:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_48 = ___property0;
NullCheck(L_48);
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 L_49;
L_49 = JsonProperty_get_NullValueHandling_mE711C0CE9C27769ECC27E2D22B12E787E9BE693F_inline(L_48, /*hidden argument*/NULL);
V_2 = L_49;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_50 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_50);
int32_t L_51 = L_50->get__nullValueHandling_6();
int32_t L_52;
L_52 = Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357((Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *)(&V_2), L_51, /*hidden argument*/Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357_RuntimeMethod_var);
if ((!(((uint32_t)L_52) == ((uint32_t)1))))
{
goto IL_00e4;
}
}
{
int32_t L_53 = V_0;
if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)11)))))
{
goto IL_00e4;
}
}
{
return (bool)1;
}
IL_00e4:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_54 = ___property0;
NullCheck(L_54);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_55;
L_55 = JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline(L_54, /*hidden argument*/NULL);
V_3 = L_55;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_56 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_56);
int32_t L_57 = L_56->get__defaultValueHandling_7();
int32_t L_58;
L_58 = Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)(&V_3), L_57, /*hidden argument*/Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
bool L_59;
L_59 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_58, 1, /*hidden argument*/NULL);
if (!L_59)
{
goto IL_0146;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_60 = ___property0;
NullCheck(L_60);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_61;
L_61 = JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline(L_60, /*hidden argument*/NULL);
V_3 = L_61;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_62 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_62);
int32_t L_63 = L_62->get__defaultValueHandling_7();
int32_t L_64;
L_64 = Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)(&V_3), L_63, /*hidden argument*/Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
bool L_65;
L_65 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_64, 2, /*hidden argument*/NULL);
if (L_65)
{
goto IL_0146;
}
}
{
int32_t L_66 = V_0;
bool L_67;
L_67 = JsonTokenUtils_IsPrimitiveToken_m632DAA049038523D6EF26A0FFF666F057A67C313(L_66, /*hidden argument*/NULL);
if (!L_67)
{
goto IL_0146;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_68 = ___reader4;
NullCheck(L_68);
RuntimeObject * L_69;
L_69 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_68);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_70 = ___property0;
NullCheck(L_70);
RuntimeObject * L_71;
L_71 = JsonProperty_GetResolvedDefaultValue_mEFBDF54ABD268FC1B4B8310641A7A1A982D0A443(L_70, /*hidden argument*/NULL);
bool L_72;
L_72 = MiscellaneousUtils_ValueEquals_m8EC23B1651540D7A6CC13E3B28D9BA15E0F8B101(L_69, L_71, /*hidden argument*/NULL);
if (!L_72)
{
goto IL_0146;
}
}
{
return (bool)1;
}
IL_0146:
{
RuntimeObject ** L_73 = ___currentValue7;
RuntimeObject * L_74 = *((RuntimeObject **)L_73);
if (L_74)
{
goto IL_0156;
}
}
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_75 = ___propertyContract8;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_76 = ___property0;
NullCheck(L_76);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_77;
L_77 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_76, /*hidden argument*/NULL);
*((RuntimeObject **)L_75) = (RuntimeObject *)L_77;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_75, (void*)(RuntimeObject *)L_77);
goto IL_0186;
}
IL_0156:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_78 = ___propertyContract8;
RuntimeObject ** L_79 = ___currentValue7;
RuntimeObject * L_80 = *((RuntimeObject **)L_79);
NullCheck(L_80);
Type_t * L_81;
L_81 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_80, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_82;
L_82 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_81, /*hidden argument*/NULL);
*((RuntimeObject **)L_78) = (RuntimeObject *)L_82;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_78, (void*)(RuntimeObject *)L_82);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_83 = ___propertyContract8;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_84 = *((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_83);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_85 = ___property0;
NullCheck(L_85);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_86;
L_86 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_85, /*hidden argument*/NULL);
if ((((RuntimeObject*)(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)L_84) == ((RuntimeObject*)(JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)L_86)))
{
goto IL_0186;
}
}
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C ** L_87 = ___propertyConverter1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 ** L_88 = ___propertyContract8;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_89 = *((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 **)L_88);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_90 = ___property0;
NullCheck(L_90);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_91;
L_91 = JsonProperty_get_MemberConverter_m715ABD6F88B92DE7212E9BF1399D10B2ECC09EC2_inline(L_90, /*hidden argument*/NULL);
JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * L_92 = ___containerContract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_93 = ___containerProperty3;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_94;
L_94 = JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36(__this, L_89, L_91, L_92, L_93, /*hidden argument*/NULL);
*((RuntimeObject **)L_87) = (RuntimeObject *)L_94;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_87, (void*)(RuntimeObject *)L_94);
}
IL_0186:
{
return (bool)0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::AddReference(Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___id1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1ECE8F16329BB427EB64D725A279F3122C550A55);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
IL_0000:
try
{// begin try (depth: 1)
{
RuntimeObject* L_0 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_0)
{
goto IL_004a;
}
}
IL_0008:
{
RuntimeObject* L_1 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_1);
if ((((int32_t)L_2) < ((int32_t)4)))
{
goto IL_004a;
}
}
IL_0016:
{
RuntimeObject* L_3 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader0;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_7;
L_7 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_8 = ___id1;
RuntimeObject * L_9 = ___value2;
NullCheck(L_9);
Type_t * L_10;
L_10 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_9, /*hidden argument*/NULL);
String_t* L_11;
L_11 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral1ECE8F16329BB427EB64D725A279F3122C550A55, L_7, L_8, L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_12;
L_12 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_4, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_6, L_11, /*hidden argument*/NULL);
NullCheck(L_3);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_3, 4, L_12, (Exception_t *)NULL);
}
IL_004a:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_13 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = JsonSerializer_GetReferenceResolver_mB1A2477F3CEB4C37E81DF088872CB399056FC78C(L_13, /*hidden argument*/NULL);
String_t* L_15 = ___id1;
RuntimeObject * L_16 = ___value2;
NullCheck(L_14);
InterfaceActionInvoker3< RuntimeObject *, String_t*, RuntimeObject * >::Invoke(3 /* System.Void Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver::AddReference(System.Object,System.String,System.Object) */, IReferenceResolver_tEFD9D0770EA751D9A035FC17D18A77A057E5B62F_il2cpp_TypeInfo_var, L_14, __this, L_15, L_16);
goto IL_0078;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_005f;
}
throw e;
}
CATCH_005f:
{// begin catch(System.Exception)
V_0 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_17 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_18;
L_18 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_19 = ___id1;
String_t* L_20;
L_20 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral79E8141926B919A282CF23E5A415248A65AFAF0B)), L_18, L_19, /*hidden argument*/NULL);
Exception_t * L_21 = V_0;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_22;
L_22 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_17, L_20, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0078:
{
return;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasFlag(Vuforia.Newtonsoft.Json.DefaultValueHandling,Vuforia.Newtonsoft.Json.DefaultValueHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, int32_t ___value0, int32_t ___flag1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
int32_t L_1 = ___flag1;
int32_t L_2 = ___flag1;
return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) == ((int32_t)L_2))? 1 : 0);
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldSetPropertyValue(Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ShouldSetPropertyValue_mD92F420E1F3B598299E2EEBFB34D944F2654C24E (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 V_0;
memset((&V_0), 0, sizeof(V_0));
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_0 = ___property0;
NullCheck(L_0);
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 L_1;
L_1 = JsonProperty_get_NullValueHandling_mE711C0CE9C27769ECC27E2D22B12E787E9BE693F_inline(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_2 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_2);
int32_t L_3 = L_2->get__nullValueHandling_6();
int32_t L_4;
L_4 = Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357((Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 *)(&V_0), L_3, /*hidden argument*/Nullable_1_GetValueOrDefault_m3CD515435268F7B698F2C2FA35908FA76A234357_RuntimeMethod_var);
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_0021;
}
}
{
RuntimeObject * L_5 = ___value1;
if (L_5)
{
goto IL_0021;
}
}
{
return (bool)0;
}
IL_0021:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_6 = ___property0;
NullCheck(L_6);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_7;
L_7 = JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline(L_6, /*hidden argument*/NULL);
V_1 = L_7;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_8 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_8);
int32_t L_9 = L_8->get__defaultValueHandling_7();
int32_t L_10;
L_10 = Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)(&V_1), L_9, /*hidden argument*/Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
bool L_11;
L_11 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_10, 1, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0075;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_12 = ___property0;
NullCheck(L_12);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_13;
L_13 = JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline(L_12, /*hidden argument*/NULL);
V_1 = L_13;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_14 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_14);
int32_t L_15 = L_14->get__defaultValueHandling_7();
int32_t L_16;
L_16 = Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)(&V_1), L_15, /*hidden argument*/Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
bool L_17;
L_17 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_16, 2, /*hidden argument*/NULL);
if (L_17)
{
goto IL_0075;
}
}
{
RuntimeObject * L_18 = ___value1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_19 = ___property0;
NullCheck(L_19);
RuntimeObject * L_20;
L_20 = JsonProperty_GetResolvedDefaultValue_mEFBDF54ABD268FC1B4B8310641A7A1A982D0A443(L_19, /*hidden argument*/NULL);
bool L_21;
L_21 = MiscellaneousUtils_ValueEquals_m8EC23B1651540D7A6CC13E3B28D9BA15E0F8B101(L_18, L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0075;
}
}
{
return (bool)0;
}
IL_0075:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_22 = ___property0;
NullCheck(L_22);
bool L_23;
L_23 = JsonProperty_get_Writable_mCFD17FFBF783AF8F090A391FBAE37088FB9529C1_inline(L_22, /*hidden argument*/NULL);
if (L_23)
{
goto IL_007f;
}
}
{
return (bool)0;
}
IL_007f:
{
return (bool)1;
}
}
// System.Collections.IList Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewList(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerInternalReader_CreateNewList_m3750B64E6CE99D30375C4DC66E3CE8195CD6A4B2 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * ___contract1, bool* ___createdFromNonDefaultCreator2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_0 = ___contract1;
NullCheck(L_0);
bool L_1;
L_1 = JsonArrayContract_get_CanDeserialize_mEFFB4F298843C2F8D29C99CA2183AA6A89A53E9E_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0024;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_3;
L_3 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_4 = ___contract1;
NullCheck(L_4);
Type_t * L_5;
L_5 = JsonContract_get_CreatedType_mF19D1DA96E2BAF2B3E393E2297135BD08C8E6302_inline(L_4, /*hidden argument*/NULL);
String_t* L_6;
L_6 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF98184461BCF923C9A48FD59EFC231C3A79732ED)), L_3, L_5, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_7;
L_7 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_2, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateNewList_m3750B64E6CE99D30375C4DC66E3CE8195CD6A4B2_RuntimeMethod_var)));
}
IL_0024:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_8 = ___contract1;
NullCheck(L_8);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_9;
L_9 = JsonArrayContract_get_OverrideCreator_m2CC0CCB39BA9006302F9C8DC385CEB22B9B28EEB_inline(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0057;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_10 = ___contract1;
NullCheck(L_10);
bool L_11;
L_11 = JsonArrayContract_get_HasParameterizedCreator_m1A2988769C3478834C6117EE8CDD50390C4C4BED_inline(L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_003e;
}
}
{
bool* L_12 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_12) = (int8_t)1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_13 = ___contract1;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = JsonArrayContract_CreateTemporaryCollection_mE34976652154070D0C3959AB1183670DE21D5176(L_13, /*hidden argument*/NULL);
return L_14;
}
IL_003e:
{
bool* L_15 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_15) = (int8_t)0;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_16 = ___contract1;
NullCheck(L_16);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_17;
L_17 = JsonArrayContract_get_OverrideCreator_m2CC0CCB39BA9006302F9C8DC385CEB22B9B28EEB_inline(L_16, /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18;
L_18 = Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_inline(/*hidden argument*/Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_RuntimeMethod_var);
NullCheck(L_17);
RuntimeObject * L_19;
L_19 = ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C(L_17, L_18, /*hidden argument*/ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_19, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var));
}
IL_0057:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_20 = ___contract1;
NullCheck(L_20);
bool L_21 = ((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)L_20)->get_IsReadOnlyOrFixedSize_6();
if (!L_21)
{
goto IL_007b;
}
}
{
bool* L_22 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_22) = (int8_t)1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_23 = ___contract1;
NullCheck(L_23);
RuntimeObject* L_24;
L_24 = JsonArrayContract_CreateTemporaryCollection_mE34976652154070D0C3959AB1183670DE21D5176(L_23, /*hidden argument*/NULL);
V_0 = L_24;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_25 = ___contract1;
NullCheck(L_25);
bool L_26;
L_26 = JsonArrayContract_get_ShouldCreateWrapper_mBFBB0CE88CF4DA4FD074978F1BC42BBF058A3995_inline(L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_0079;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_27 = ___contract1;
RuntimeObject* L_28 = V_0;
NullCheck(L_27);
RuntimeObject* L_29;
L_29 = JsonArrayContract_CreateWrapper_m0FC0719BFA78DF65DE2956C7469AB6DFC30F816C(L_27, L_28, /*hidden argument*/NULL);
V_0 = L_29;
}
IL_0079:
{
RuntimeObject* L_30 = V_0;
return L_30;
}
IL_007b:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_31 = ___contract1;
NullCheck(L_31);
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_32;
L_32 = JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline(L_31, /*hidden argument*/NULL);
if (!L_32)
{
goto IL_00bf;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_33 = ___contract1;
NullCheck(L_33);
bool L_34;
L_34 = JsonContract_get_DefaultCreatorNonPublic_m9DF668CB05F4CED0C01F748CDA35963DAEA6083F_inline(L_33, /*hidden argument*/NULL);
if (!L_34)
{
goto IL_0099;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_35 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_35);
int32_t L_36 = L_35->get__constructorHandling_8();
if ((!(((uint32_t)L_36) == ((uint32_t)1))))
{
goto IL_00bf;
}
}
IL_0099:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_37 = ___contract1;
NullCheck(L_37);
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_38;
L_38 = JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline(L_37, /*hidden argument*/NULL);
NullCheck(L_38);
RuntimeObject * L_39;
L_39 = Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701(L_38, /*hidden argument*/Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_RuntimeMethod_var);
V_1 = L_39;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_40 = ___contract1;
NullCheck(L_40);
bool L_41;
L_41 = JsonArrayContract_get_ShouldCreateWrapper_mBFBB0CE88CF4DA4FD074978F1BC42BBF058A3995_inline(L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00b5;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_42 = ___contract1;
RuntimeObject * L_43 = V_1;
NullCheck(L_42);
RuntimeObject* L_44;
L_44 = JsonArrayContract_CreateWrapper_m0FC0719BFA78DF65DE2956C7469AB6DFC30F816C(L_42, L_43, /*hidden argument*/NULL);
V_1 = L_44;
}
IL_00b5:
{
bool* L_45 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_45) = (int8_t)0;
RuntimeObject * L_46 = V_1;
return ((RuntimeObject*)Castclass((RuntimeObject*)L_46, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var));
}
IL_00bf:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_47 = ___contract1;
NullCheck(L_47);
bool L_48;
L_48 = JsonArrayContract_get_HasParameterizedCreatorInternal_mDECD3E5A012191769951C8F1F692F131E47CD570(L_47, /*hidden argument*/NULL);
if (!L_48)
{
goto IL_00d1;
}
}
{
bool* L_49 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_49) = (int8_t)1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_50 = ___contract1;
NullCheck(L_50);
RuntimeObject* L_51;
L_51 = JsonArrayContract_CreateTemporaryCollection_mE34976652154070D0C3959AB1183670DE21D5176(L_50, /*hidden argument*/NULL);
return L_51;
}
IL_00d1:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_52 = ___contract1;
NullCheck(L_52);
bool L_53 = ((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)L_52)->get_IsInstantiable_8();
if (L_53)
{
goto IL_00f5;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_54 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_55;
L_55 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_56 = ___contract1;
NullCheck(L_56);
Type_t * L_57;
L_57 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_56, /*hidden argument*/NULL);
String_t* L_58;
L_58 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1AB53659FE30FD798C42B2EE484D281FF6C0EC43)), L_55, L_57, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_59;
L_59 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_54, L_58, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_59, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateNewList_m3750B64E6CE99D30375C4DC66E3CE8195CD6A4B2_RuntimeMethod_var)));
}
IL_00f5:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_60 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_61;
L_61 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_62 = ___contract1;
NullCheck(L_62);
Type_t * L_63;
L_63 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_62, /*hidden argument*/NULL);
String_t* L_64;
L_64 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D85C6147D6190E2337474AF1EA989B1EBA8D6B0)), L_61, L_63, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_65;
L_65 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_60, L_64, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateNewList_m3750B64E6CE99D30375C4DC66E3CE8195CD6A4B2_RuntimeMethod_var)));
}
}
// System.Collections.IDictionary Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewDictionary(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerInternalReader_CreateNewDictionary_mFA1A66BB86EE4864CB12C49EBDFF6BFD00D50B66 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * ___contract1, bool* ___createdFromNonDefaultCreator2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_0 = ___contract1;
NullCheck(L_0);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_1;
L_1 = JsonDictionaryContract_get_OverrideCreator_m6706A1FF5BDA7F1DD484ECB4CC2648ED3002A1DA_inline(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0033;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_2 = ___contract1;
NullCheck(L_2);
bool L_3;
L_3 = JsonDictionaryContract_get_HasParameterizedCreator_m4DA582EB6CEC888BA8AC8D831A856D7259A77398_inline(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001a;
}
}
{
bool* L_4 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_4) = (int8_t)1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_5 = ___contract1;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = JsonDictionaryContract_CreateTemporaryDictionary_m2835AA97130851FBE6B45A3D23988BC350B4C054(L_5, /*hidden argument*/NULL);
return L_6;
}
IL_001a:
{
bool* L_7 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_7) = (int8_t)0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_8 = ___contract1;
NullCheck(L_8);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_9;
L_9 = JsonDictionaryContract_get_OverrideCreator_m6706A1FF5BDA7F1DD484ECB4CC2648ED3002A1DA_inline(L_8, /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10;
L_10 = Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_inline(/*hidden argument*/Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_RuntimeMethod_var);
NullCheck(L_9);
RuntimeObject * L_11;
L_11 = ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C(L_9, L_10, /*hidden argument*/ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_11, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var));
}
IL_0033:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_12 = ___contract1;
NullCheck(L_12);
bool L_13 = ((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)L_12)->get_IsReadOnlyOrFixedSize_6();
if (!L_13)
{
goto IL_0045;
}
}
{
bool* L_14 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_14) = (int8_t)1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_15 = ___contract1;
NullCheck(L_15);
RuntimeObject* L_16;
L_16 = JsonDictionaryContract_CreateTemporaryDictionary_m2835AA97130851FBE6B45A3D23988BC350B4C054(L_15, /*hidden argument*/NULL);
return L_16;
}
IL_0045:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_17 = ___contract1;
NullCheck(L_17);
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_18;
L_18 = JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline(L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0089;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_19 = ___contract1;
NullCheck(L_19);
bool L_20;
L_20 = JsonContract_get_DefaultCreatorNonPublic_m9DF668CB05F4CED0C01F748CDA35963DAEA6083F_inline(L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0063;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_21 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_21);
int32_t L_22 = L_21->get__constructorHandling_8();
if ((!(((uint32_t)L_22) == ((uint32_t)1))))
{
goto IL_0089;
}
}
IL_0063:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_23 = ___contract1;
NullCheck(L_23);
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_24;
L_24 = JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline(L_23, /*hidden argument*/NULL);
NullCheck(L_24);
RuntimeObject * L_25;
L_25 = Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701(L_24, /*hidden argument*/Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_RuntimeMethod_var);
V_0 = L_25;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_26 = ___contract1;
NullCheck(L_26);
bool L_27;
L_27 = JsonDictionaryContract_get_ShouldCreateWrapper_m9B288D28EB522BE882B07929FE4649D299C68897_inline(L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_007f;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_28 = ___contract1;
RuntimeObject * L_29 = V_0;
NullCheck(L_28);
RuntimeObject* L_30;
L_30 = JsonDictionaryContract_CreateWrapper_m891DB68316FBC3D10BFD23FEA0533C3A666CBDFA(L_28, L_29, /*hidden argument*/NULL);
V_0 = L_30;
}
IL_007f:
{
bool* L_31 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_31) = (int8_t)0;
RuntimeObject * L_32 = V_0;
return ((RuntimeObject*)Castclass((RuntimeObject*)L_32, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var));
}
IL_0089:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_33 = ___contract1;
NullCheck(L_33);
bool L_34;
L_34 = JsonDictionaryContract_get_HasParameterizedCreatorInternal_m1F975CBA89997D53ABEDFFEA08900BD7313C9EA7(L_33, /*hidden argument*/NULL);
if (!L_34)
{
goto IL_009b;
}
}
{
bool* L_35 = ___createdFromNonDefaultCreator2;
*((int8_t*)L_35) = (int8_t)1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_36 = ___contract1;
NullCheck(L_36);
RuntimeObject* L_37;
L_37 = JsonDictionaryContract_CreateTemporaryDictionary_m2835AA97130851FBE6B45A3D23988BC350B4C054(L_36, /*hidden argument*/NULL);
return L_37;
}
IL_009b:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_38 = ___contract1;
NullCheck(L_38);
bool L_39 = ((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)L_38)->get_IsInstantiable_8();
if (L_39)
{
goto IL_00bf;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_40 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_41;
L_41 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_42 = ___contract1;
NullCheck(L_42);
Type_t * L_43;
L_43 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_42, /*hidden argument*/NULL);
String_t* L_44;
L_44 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1AB53659FE30FD798C42B2EE484D281FF6C0EC43)), L_41, L_43, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_45;
L_45 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_40, L_44, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateNewDictionary_mFA1A66BB86EE4864CB12C49EBDFF6BFD00D50B66_RuntimeMethod_var)));
}
IL_00bf:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_46 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_47;
L_47 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_48 = ___contract1;
NullCheck(L_48);
Type_t * L_49;
L_49 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_48, /*hidden argument*/NULL);
String_t* L_50;
L_50 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE25928FDF622DA8A88884DE94A7261E227714E38)), L_47, L_49, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_51;
L_51 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_46, L_50, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateNewDictionary_mFA1A66BB86EE4864CB12C49EBDFF6BFD00D50B66_RuntimeMethod_var)));
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserializing(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_OnDeserializing_m6BEC46D2383AA5B7E2B1064E2683A2ADF324CA02 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4D9A9B316A5ADCF1BDC4BFFDF434656B0D814AA);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_0)
{
goto IL_0049;
}
}
{
RuntimeObject* L_1 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_1);
if ((((int32_t)L_2) < ((int32_t)3)))
{
goto IL_0049;
}
}
{
RuntimeObject* L_3 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader0;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_7;
L_7 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_8 = ___contract1;
NullCheck(L_8);
Type_t * L_9;
L_9 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_8, /*hidden argument*/NULL);
String_t* L_10;
L_10 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(_stringLiteralD4D9A9B316A5ADCF1BDC4BFFDF434656B0D814AA, L_7, L_9, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_11;
L_11 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_4, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_6, L_10, /*hidden argument*/NULL);
NullCheck(L_3);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_3, 3, L_11, (Exception_t *)NULL);
}
IL_0049:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_12 = ___contract1;
RuntimeObject * L_13 = ___value2;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_14 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_14);
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_15 = L_14->get__context_15();
NullCheck(L_12);
JsonContract_InvokeOnDeserializing_mD5951B47CBEE2D9E82784CFE8F9377BBD68F6FC7(L_12, L_13, L_15, /*hidden argument*/NULL);
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserialized(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_OnDeserialized_m0D0EB15699E6D398A579F89312DFA074E4A600FD (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC26187BA68752A355F8C67922A058062EB40E709);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_0)
{
goto IL_0049;
}
}
{
RuntimeObject* L_1 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_1);
if ((((int32_t)L_2) < ((int32_t)3)))
{
goto IL_0049;
}
}
{
RuntimeObject* L_3 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader0;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_7;
L_7 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_8 = ___contract1;
NullCheck(L_8);
Type_t * L_9;
L_9 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_8, /*hidden argument*/NULL);
String_t* L_10;
L_10 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(_stringLiteralC26187BA68752A355F8C67922A058062EB40E709, L_7, L_9, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_11;
L_11 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_4, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_6, L_10, /*hidden argument*/NULL);
NullCheck(L_3);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_3, 3, L_11, (Exception_t *)NULL);
}
IL_0049:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_12 = ___contract1;
RuntimeObject * L_13 = ___value2;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_14 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_14);
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_15 = L_14->get__context_15();
NullCheck(L_12);
JsonContract_InvokeOnDeserialized_mCC26A952571063A0DDA1AA77D426C5C1A1160C6A(L_12, L_13, L_15, /*hidden argument*/NULL);
return;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateDictionary(System.Collections.IDictionary,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonDictionaryContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject* ___dictionary0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t75ECF8E592F8AEB84A6CEFBAA0E22AABE4667A80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
int32_t V_2 = 0;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_3 = NULL;
int32_t V_4 = 0;
bool V_5 = false;
RuntimeObject * V_6 = NULL;
int32_t V_7 = 0;
RuntimeObject * V_8 = NULL;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_9;
memset((&V_9), 0, sizeof(V_9));
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 V_10;
memset((&V_10), 0, sizeof(V_10));
Exception_t * V_11 = NULL;
Exception_t * V_12 = NULL;
int32_t V_13 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets;
RuntimeObject* G_B3_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * G_B11_0 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * G_B10_0 = NULL;
int32_t G_B14_0 = 0;
{
RuntimeObject* L_0 = ___dictionary0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (L_1)
{
goto IL_000d;
}
}
{
RuntimeObject* L_2 = ___dictionary0;
G_B3_0 = L_2;
goto IL_0013;
}
IL_000d:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
RuntimeObject * L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Vuforia.Newtonsoft.Json.Utilities.IWrappedDictionary::get_UnderlyingDictionary() */, IWrappedDictionary_t7FE848DB3209E4687E3AA5E9708D69A972741747_il2cpp_TypeInfo_var, L_3);
G_B3_0 = ((RuntimeObject*)(L_4));
}
IL_0013:
{
V_1 = G_B3_0;
String_t* L_5 = ___id4;
if (!L_5)
{
goto IL_0022;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader1;
String_t* L_7 = ___id4;
RuntimeObject * L_8 = V_1;
JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB(__this, L_6, L_7, L_8, /*hidden argument*/NULL);
}
IL_0022:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_9 = ___reader1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_10 = ___contract2;
RuntimeObject * L_11 = V_1;
JsonSerializerInternalReader_OnDeserializing_m6BEC46D2383AA5B7E2B1064E2683A2ADF324CA02(__this, L_9, L_10, L_11, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_12 = ___reader1;
NullCheck(L_12);
int32_t L_13;
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 Vuforia.Newtonsoft.Json.JsonReader::get_Depth() */, L_12);
V_2 = L_13;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_14 = ___contract2;
NullCheck(L_14);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_15;
L_15 = JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline(L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_004c;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_16 = ___contract2;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_17 = ___contract2;
NullCheck(L_17);
Type_t * L_18;
L_18 = JsonDictionaryContract_get_DictionaryKeyType_m3E4D788BF34A207200FA41564DA66A39334C2141_inline(L_17, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_19;
L_19 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_18, /*hidden argument*/NULL);
NullCheck(L_16);
JsonDictionaryContract_set_KeyContract_m3EA22CB10EFEC6CB555570CFC08C167C76AE37FD_inline(L_16, L_19, /*hidden argument*/NULL);
}
IL_004c:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_20 = ___contract2;
NullCheck(L_20);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_21;
L_21 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_20, /*hidden argument*/NULL);
if (L_21)
{
goto IL_0066;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_22 = ___contract2;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_23 = ___contract2;
NullCheck(L_23);
Type_t * L_24;
L_24 = JsonDictionaryContract_get_DictionaryValueType_mFB39D141A0DCC9F21C40DAB07540A059D450192D_inline(L_23, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_25;
L_25 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_24, /*hidden argument*/NULL);
NullCheck(L_22);
JsonContainerContract_set_ItemContract_m15429C9FE811261C02E12E75E99BBF637E8FBA2F(L_22, L_25, /*hidden argument*/NULL);
}
IL_0066:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_26 = ___contract2;
NullCheck(L_26);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_27;
L_27 = JsonContainerContract_get_ItemConverter_m28D204C41031B0A88E1506FA818FCB1A82CE4CE5_inline(L_26, /*hidden argument*/NULL);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_28 = L_27;
G_B10_0 = L_28;
if (L_28)
{
G_B11_0 = L_28;
goto IL_0080;
}
}
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_29 = ___contract2;
NullCheck(L_29);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_30;
L_30 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_29, /*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_31 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_32 = ___containerProperty3;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_33;
L_33 = JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36(__this, L_30, (JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)NULL, L_31, L_32, /*hidden argument*/NULL);
G_B11_0 = L_33;
}
IL_0080:
{
V_3 = G_B11_0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_34 = ___contract2;
NullCheck(L_34);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_35;
L_35 = JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline(L_34, /*hidden argument*/NULL);
if (((JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 *)IsInstClass((RuntimeObject*)L_35, JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var)))
{
goto IL_0091;
}
}
{
G_B14_0 = 0;
goto IL_00a1;
}
IL_0091:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_36 = ___contract2;
NullCheck(L_36);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_37;
L_37 = JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline(L_36, /*hidden argument*/NULL);
NullCheck(((JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 *)CastclassClass((RuntimeObject*)L_37, JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var)));
int32_t L_38;
L_38 = JsonPrimitiveContract_get_TypeCode_m4264CAF3D77442FD9520DEA039D9F07C90D205E9_inline(((JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 *)CastclassClass((RuntimeObject*)L_37, JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
G_B14_0 = ((int32_t)(L_38));
}
IL_00a1:
{
V_4 = G_B14_0;
V_5 = (bool)0;
}
IL_00a6:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_39 = ___reader1;
NullCheck(L_39);
int32_t L_40;
L_40 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_39);
V_7 = L_40;
int32_t L_41 = V_7;
if ((((int32_t)L_41) == ((int32_t)4)))
{
goto IL_00c9;
}
}
{
int32_t L_42 = V_7;
if ((((int32_t)L_42) == ((int32_t)5)))
{
goto IL_0287;
}
}
{
int32_t L_43 = V_7;
if ((((int32_t)L_43) == ((int32_t)((int32_t)13))))
{
goto IL_025c;
}
}
{
goto IL_0261;
}
IL_00c9:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_44 = ___reader1;
NullCheck(L_44);
RuntimeObject * L_45;
L_45 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_44);
V_6 = L_45;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_46 = ___reader1;
RuntimeObject * L_47 = V_6;
NullCheck(L_47);
String_t* L_48;
L_48 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_47);
bool L_49;
L_49 = JsonSerializerInternalReader_CheckPropertyName_mBA4F67098EA96B1D3E426B37BB81D7DAAA2D0809(__this, L_46, L_48, /*hidden argument*/NULL);
if (L_49)
{
goto IL_0287;
}
}
{
}
IL_00e5:
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
int32_t L_50 = V_4;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)((int32_t)26)))) > ((uint32_t)1))))
{
goto IL_00fa;
}
}
IL_00ed:
{
int32_t L_51 = V_4;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)((int32_t)28)))) > ((uint32_t)1))))
{
goto IL_0145;
}
}
IL_00f5:
{
goto IL_018a;
}
IL_00fa:
{
RuntimeObject * L_52 = V_6;
NullCheck(L_52);
String_t* L_53;
L_53 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_52);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_54 = ___reader1;
NullCheck(L_54);
int32_t L_55;
L_55 = JsonReader_get_DateTimeZoneHandling_m3F91693921E6DA5A0FB9BB66FAF8069C18E11F7C_inline(L_54, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_56 = ___reader1;
NullCheck(L_56);
String_t* L_57;
L_57 = JsonReader_get_DateFormatString_mA13BC1749AF8F2E33BA1365C42CA876BEFC23A54_inline(L_56, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_58 = ___reader1;
NullCheck(L_58);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_59;
L_59 = JsonReader_get_Culture_m2FC4A353D2CC90A4761CF62CEC6EF6FE3DAA74FE(L_58, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DateTimeUtils_t75ECF8E592F8AEB84A6CEFBAA0E22AABE4667A80_il2cpp_TypeInfo_var);
bool L_60;
L_60 = DateTimeUtils_TryParseDateTime_m6DA82CFA0632176E81811E376157C47BD1D089F9(L_53, L_55, L_57, L_59, (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_9), /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0127;
}
}
IL_011c:
{
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_61 = V_9;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_62 = L_61;
RuntimeObject * L_63 = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &L_62);
V_6 = L_63;
goto IL_01a6;
}
IL_0127:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_64 = ___reader1;
RuntimeObject * L_65 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_66;
L_66 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_67 = ___contract2;
NullCheck(L_67);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_68;
L_68 = JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline(L_67, /*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_69 = ___contract2;
NullCheck(L_69);
Type_t * L_70;
L_70 = JsonDictionaryContract_get_DictionaryKeyType_m3E4D788BF34A207200FA41564DA66A39334C2141_inline(L_69, /*hidden argument*/NULL);
RuntimeObject * L_71;
L_71 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_64, L_65, L_66, L_68, L_70, /*hidden argument*/NULL);
V_6 = L_71;
goto IL_01a6;
}
IL_0145:
{
RuntimeObject * L_72 = V_6;
NullCheck(L_72);
String_t* L_73;
L_73 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_72);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_74 = ___reader1;
NullCheck(L_74);
String_t* L_75;
L_75 = JsonReader_get_DateFormatString_mA13BC1749AF8F2E33BA1365C42CA876BEFC23A54_inline(L_74, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_76 = ___reader1;
NullCheck(L_76);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_77;
L_77 = JsonReader_get_Culture_m2FC4A353D2CC90A4761CF62CEC6EF6FE3DAA74FE(L_76, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DateTimeUtils_t75ECF8E592F8AEB84A6CEFBAA0E22AABE4667A80_il2cpp_TypeInfo_var);
bool L_78;
L_78 = DateTimeUtils_TryParseDateTimeOffset_mA26EE293C308211D722996AD81F1020C4191F0A6(L_73, L_75, L_77, (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)(&V_10), /*hidden argument*/NULL);
if (!L_78)
{
goto IL_016c;
}
}
IL_0161:
{
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_79 = V_10;
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_80 = L_79;
RuntimeObject * L_81 = Box(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var, &L_80);
V_6 = L_81;
goto IL_01a6;
}
IL_016c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_82 = ___reader1;
RuntimeObject * L_83 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_84;
L_84 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_85 = ___contract2;
NullCheck(L_85);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_86;
L_86 = JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline(L_85, /*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_87 = ___contract2;
NullCheck(L_87);
Type_t * L_88;
L_88 = JsonDictionaryContract_get_DictionaryKeyType_m3E4D788BF34A207200FA41564DA66A39334C2141_inline(L_87, /*hidden argument*/NULL);
RuntimeObject * L_89;
L_89 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_82, L_83, L_84, L_86, L_88, /*hidden argument*/NULL);
V_6 = L_89;
goto IL_01a6;
}
IL_018a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_90 = ___reader1;
RuntimeObject * L_91 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_92;
L_92 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_93 = ___contract2;
NullCheck(L_93);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_94;
L_94 = JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline(L_93, /*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_95 = ___contract2;
NullCheck(L_95);
Type_t * L_96;
L_96 = JsonDictionaryContract_get_DictionaryKeyType_m3E4D788BF34A207200FA41564DA66A39334C2141_inline(L_95, /*hidden argument*/NULL);
RuntimeObject * L_97;
L_97 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_90, L_91, L_92, L_94, L_96, /*hidden argument*/NULL);
V_6 = L_97;
}
IL_01a6:
{
goto IL_01ce;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_01a8;
}
throw e;
}
CATCH_01a8:
{// begin catch(System.Exception)
V_11 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_98 = ___reader1;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_99;
L_99 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_100 = ___reader1;
NullCheck(L_100);
RuntimeObject * L_101;
L_101 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_100);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_102 = ___contract2;
NullCheck(L_102);
Type_t * L_103;
L_103 = JsonDictionaryContract_get_DictionaryKeyType_m3E4D788BF34A207200FA41564DA66A39334C2141_inline(L_102, /*hidden argument*/NULL);
String_t* L_104;
L_104 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBBF246D9E5C2F38F2F5F541F0033922424A7E29F)), L_99, L_101, L_103, /*hidden argument*/NULL);
Exception_t * L_105 = V_11;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_106;
L_106 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_98, L_104, L_105, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_106, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_01ce:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_107 = ___reader1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_108 = ___contract2;
NullCheck(L_108);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_109;
L_109 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_108, /*hidden argument*/NULL);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_110 = V_3;
bool L_111;
L_111 = JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5(__this, L_107, L_109, (bool)((!(((RuntimeObject*)(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)L_110) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL);
if (L_111)
{
goto IL_01ed;
}
}
IL_01e1:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_112 = ___reader1;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_113;
L_113 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_112, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_113, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354_RuntimeMethod_var)));
}
IL_01ed:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_114 = V_3;
if (!L_114)
{
goto IL_020b;
}
}
IL_01f0:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_115 = V_3;
NullCheck(L_115);
bool L_116;
L_116 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean Vuforia.Newtonsoft.Json.JsonConverter::get_CanRead() */, L_115);
if (!L_116)
{
goto IL_020b;
}
}
IL_01f8:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_117 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_118 = ___reader1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_119 = ___contract2;
NullCheck(L_119);
Type_t * L_120;
L_120 = JsonDictionaryContract_get_DictionaryValueType_mFB39D141A0DCC9F21C40DAB07540A059D450192D_inline(L_119, /*hidden argument*/NULL);
RuntimeObject * L_121;
L_121 = JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814(__this, L_117, L_118, L_120, NULL, /*hidden argument*/NULL);
V_8 = L_121;
goto IL_0225;
}
IL_020b:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_122 = ___reader1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_123 = ___contract2;
NullCheck(L_123);
Type_t * L_124;
L_124 = JsonDictionaryContract_get_DictionaryValueType_mFB39D141A0DCC9F21C40DAB07540A059D450192D_inline(L_123, /*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_125 = ___contract2;
NullCheck(L_125);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_126;
L_126 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_125, /*hidden argument*/NULL);
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_127 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_128 = ___containerProperty3;
RuntimeObject * L_129;
L_129 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(__this, L_122, L_124, L_126, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, L_127, L_128, NULL, /*hidden argument*/NULL);
V_8 = L_129;
}
IL_0225:
{
RuntimeObject* L_130 = ___dictionary0;
RuntimeObject * L_131 = V_6;
RuntimeObject * L_132 = V_8;
NullCheck(L_130);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_130, L_131, L_132);
goto IL_0287;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0231;
}
throw e;
}
CATCH_0231:
{// begin catch(System.Exception)
{
V_12 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
RuntimeObject * L_133 = V_1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_134 = ___contract2;
RuntimeObject * L_135 = V_6;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_136 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_137 = ___reader1;
NullCheck(L_137);
String_t* L_138;
L_138 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_137);
Exception_t * L_139 = V_12;
bool L_140;
L_140 = JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C(__this, L_133, L_134, L_135, ((RuntimeObject*)IsInst((RuntimeObject*)L_136, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)))), L_138, L_139, /*hidden argument*/NULL);
if (!L_140)
{
goto IL_0258;
}
}
IL_024d:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_141 = ___reader1;
int32_t L_142 = V_2;
JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A(__this, L_141, (bool)1, L_142, /*hidden argument*/NULL);
goto IL_025a;
}
IL_0258:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354_RuntimeMethod_var)));
}
IL_025a:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0287;
}
}// end catch (depth: 1)
IL_025c:
{
V_5 = (bool)1;
goto IL_0287;
}
IL_0261:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_143 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_144 = ___reader1;
NullCheck(L_144);
int32_t L_145;
L_145 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_144);
V_13 = L_145;
RuntimeObject * L_146 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var)), (&V_13));
NullCheck(L_146);
String_t* L_147;
L_147 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_146);
V_13 = *(int32_t*)UnBox(L_146);
String_t* L_148;
L_148 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59AAE90D26AB95D797186FB8118A57880C2A1138)), L_147, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_149;
L_149 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_143, L_148, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_149, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateDictionary_m65A7A2898AD589BD20BF9B6FB6224372DF76D354_RuntimeMethod_var)));
}
IL_0287:
{
bool L_150 = V_5;
if (L_150)
{
goto IL_0296;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_151 = ___reader1;
NullCheck(L_151);
bool L_152;
L_152 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_151);
if (L_152)
{
goto IL_00a6;
}
}
IL_0296:
{
bool L_153 = V_5;
if (L_153)
{
goto IL_02a8;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_154 = ___reader1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_155 = ___contract2;
RuntimeObject * L_156 = V_1;
JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A(__this, L_154, L_155, L_156, _stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443, /*hidden argument*/NULL);
}
IL_02a8:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_157 = ___reader1;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_158 = ___contract2;
RuntimeObject * L_159 = V_1;
JsonSerializerInternalReader_OnDeserialized_m0D0EB15699E6D398A579F89312DFA074E4A600FD(__this, L_157, L_158, L_159, /*hidden argument*/NULL);
RuntimeObject * L_160 = V_1;
return L_160;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateMultidimensionalArray(System.Collections.IList,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateMultidimensionalArray_mAB445EFB76C13BF0091C79166158B6F28F068876 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject* ___list0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_m81BBA8C1F4529D628559B7B58182BBEC34AF61EC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_mC273ABADFD326D9949509DFA020F04A64518D9CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m87B86ED53BBE83FB3CEC83D26371B4D4137526F3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m790AE37267D1C376801B8E5A2A039F21A671881A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_mC832BF38D820FC36997AAF894B302B4734811BFD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B109B989AF932AF20A3B83814B2C123ED5EE391);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * V_1 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_2 = NULL;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_3;
memset((&V_3), 0, sizeof(V_3));
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * V_4 = NULL;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
RuntimeObject * V_8 = NULL;
Exception_t * V_9 = NULL;
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD V_10;
memset((&V_10), 0, sizeof(V_10));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_11;
memset((&V_11), 0, sizeof(V_11));
int32_t V_12 = 0;
RuntimeObject* V_13 = NULL;
int32_t V_14 = 0;
int32_t V_15 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets;
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_0 = ___contract2;
NullCheck(L_0);
Type_t * L_1;
L_1 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(28 /* System.Int32 System.Type::GetArrayRank() */, L_1);
V_0 = L_2;
String_t* L_3 = ___id4;
if (!L_3)
{
goto IL_001a;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader1;
String_t* L_5 = ___id4;
RuntimeObject* L_6 = ___list0;
JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB(__this, L_4, L_5, L_6, /*hidden argument*/NULL);
}
IL_001a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_7 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_8 = ___contract2;
RuntimeObject* L_9 = ___list0;
JsonSerializerInternalReader_OnDeserializing_m6BEC46D2383AA5B7E2B1064E2683A2ADF324CA02(__this, L_7, L_8, L_9, /*hidden argument*/NULL);
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_10 = ___contract2;
NullCheck(L_10);
Type_t * L_11;
L_11 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_10, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_12;
L_12 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_11, /*hidden argument*/NULL);
V_1 = L_12;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_13 = V_1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_14 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_15 = ___containerProperty3;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_16;
L_16 = JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36(__this, L_13, (JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)NULL, L_14, L_15, /*hidden argument*/NULL);
V_2 = L_16;
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ));
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_17 = (Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC *)il2cpp_codegen_object_new(Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC_il2cpp_TypeInfo_var);
Stack_1__ctor_m790AE37267D1C376801B8E5A2A039F21A671881A(L_17, /*hidden argument*/Stack_1__ctor_m790AE37267D1C376801B8E5A2A039F21A671881A_RuntimeMethod_var);
V_4 = L_17;
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_18 = V_4;
RuntimeObject* L_19 = ___list0;
NullCheck(L_18);
Stack_1_Push_m87B86ED53BBE83FB3CEC83D26371B4D4137526F3(L_18, L_19, /*hidden argument*/Stack_1_Push_m87B86ED53BBE83FB3CEC83D26371B4D4137526F3_RuntimeMethod_var);
RuntimeObject* L_20 = ___list0;
V_5 = L_20;
V_6 = (bool)0;
}
IL_0059:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_21 = ___reader1;
NullCheck(L_21);
int32_t L_22;
L_22 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 Vuforia.Newtonsoft.Json.JsonReader::get_Depth() */, L_21);
V_7 = L_22;
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_23 = V_4;
NullCheck(L_23);
int32_t L_24;
L_24 = Stack_1_get_Count_mC832BF38D820FC36997AAF894B302B4734811BFD_inline(L_23, /*hidden argument*/Stack_1_get_Count_mC832BF38D820FC36997AAF894B302B4734811BFD_RuntimeMethod_var);
int32_t L_25 = V_0;
if ((!(((uint32_t)L_24) == ((uint32_t)L_25))))
{
goto IL_0173;
}
}
IL_006e:
try
{// begin try (depth: 1)
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_26 = ___reader1;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_27 = V_1;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_28 = V_2;
bool L_29;
L_29 = JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5(__this, L_26, L_27, (bool)((!(((RuntimeObject*)(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)L_28) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00e0;
}
}
IL_007c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_30 = ___reader1;
NullCheck(L_30);
int32_t L_31;
L_31 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_30);
if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)14)))))
{
goto IL_00a1;
}
}
IL_0086:
{
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_32 = V_4;
NullCheck(L_32);
RuntimeObject* L_33;
L_33 = Stack_1_Pop_mC273ABADFD326D9949509DFA020F04A64518D9CD(L_32, /*hidden argument*/Stack_1_Pop_mC273ABADFD326D9949509DFA020F04A64518D9CD_RuntimeMethod_var);
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_34 = V_4;
NullCheck(L_34);
RuntimeObject* L_35;
L_35 = Stack_1_Peek_m81BBA8C1F4529D628559B7B58182BBEC34AF61EC(L_34, /*hidden argument*/Stack_1_Peek_m81BBA8C1F4529D628559B7B58182BBEC34AF61EC_RuntimeMethod_var);
V_5 = L_35;
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ));
goto IL_00e5;
}
IL_00a1:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_36 = V_2;
if (!L_36)
{
goto IL_00bf;
}
}
IL_00a4:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_37 = V_2;
NullCheck(L_37);
bool L_38;
L_38 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean Vuforia.Newtonsoft.Json.JsonConverter::get_CanRead() */, L_37);
if (!L_38)
{
goto IL_00bf;
}
}
IL_00ac:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_39 = V_2;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_40 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_41 = ___contract2;
NullCheck(L_41);
Type_t * L_42;
L_42 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_41, /*hidden argument*/NULL);
RuntimeObject * L_43;
L_43 = JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814(__this, L_39, L_40, L_42, NULL, /*hidden argument*/NULL);
V_8 = L_43;
goto IL_00d4;
}
IL_00bf:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_44 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_45 = ___contract2;
NullCheck(L_45);
Type_t * L_46;
L_46 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_45, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_47 = V_1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_48 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_49 = ___containerProperty3;
RuntimeObject * L_50;
L_50 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(__this, L_44, L_46, L_47, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, L_48, L_49, NULL, /*hidden argument*/NULL);
V_8 = L_50;
}
IL_00d4:
{
RuntimeObject* L_51 = V_5;
RuntimeObject * L_52 = V_8;
NullCheck(L_51);
int32_t L_53;
L_53 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_51, L_52);
goto IL_00e5;
}
IL_00e0:
{
goto IL_0207;
}
IL_00e5:
{
goto IL_0200;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00ea;
}
throw e;
}
CATCH_00ea:
{// begin catch(System.Exception)
{
V_9 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_54 = ___reader1;
int32_t L_55 = V_7;
NullCheck(L_54);
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_56;
L_56 = JsonReader_GetPosition_mF8427AACE6C27BE3E83852B96C9916B2276A3394(L_54, L_55, /*hidden argument*/NULL);
V_10 = L_56;
RuntimeObject* L_57 = ___list0;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_58 = ___contract2;
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_59 = V_10;
int32_t L_60 = L_59.get_Position_2();
int32_t L_61 = L_60;
RuntimeObject * L_62 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_61);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_63 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_64 = ___reader1;
NullCheck(L_64);
String_t* L_65;
L_65 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_64);
Exception_t * L_66 = V_9;
bool L_67;
L_67 = JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C(__this, L_57, L_58, L_62, ((RuntimeObject*)IsInst((RuntimeObject*)L_63, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)))), L_65, L_66, /*hidden argument*/NULL);
if (!L_67)
{
goto IL_016c;
}
}
IL_011a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_68 = ___reader1;
int32_t L_69 = V_7;
JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A(__this, L_68, (bool)1, L_69, /*hidden argument*/NULL);
bool L_70;
L_70 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_3), /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var)));
if (!L_70)
{
goto IL_015c;
}
}
IL_012d:
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_71 = V_3;
V_11 = L_71;
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_72 = V_10;
int32_t L_73 = L_72.get_Position_2();
V_12 = L_73;
int32_t L_74;
L_74 = Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_11), /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var)));
int32_t L_75 = V_12;
bool L_76;
L_76 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_11), /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var)));
if (!((int32_t)((int32_t)((((int32_t)L_74) == ((int32_t)L_75))? 1 : 0)&(int32_t)L_76)))
{
goto IL_015c;
}
}
IL_014e:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_77 = ___reader1;
Exception_t * L_78 = V_9;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_79;
L_79 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_77, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEB0F4A24C5FE376D8216F48DFEAD9D5F27475997)), L_78, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_79, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateMultidimensionalArray_mAB445EFB76C13BF0091C79166158B6F28F068876_RuntimeMethod_var)));
}
IL_015c:
{
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_80 = V_10;
int32_t L_81 = L_80.get_Position_2();
Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_3), L_81, /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var)));
goto IL_016e;
}
IL_016c:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateMultidimensionalArray_mAB445EFB76C13BF0091C79166158B6F28F068876_RuntimeMethod_var)));
}
IL_016e:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0200;
}
}// end catch (depth: 1)
IL_0173:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_82 = ___reader1;
NullCheck(L_82);
bool L_83;
L_83 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_82);
if (!L_83)
{
goto IL_0207;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_84 = ___reader1;
NullCheck(L_84);
int32_t L_85;
L_85 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_84);
V_14 = L_85;
int32_t L_86 = V_14;
if ((((int32_t)L_86) == ((int32_t)2)))
{
goto IL_0198;
}
}
{
int32_t L_87 = V_14;
if ((((int32_t)L_87) == ((int32_t)5)))
{
goto IL_0200;
}
}
{
int32_t L_88 = V_14;
if ((((int32_t)L_88) == ((int32_t)((int32_t)14))))
{
goto IL_01b8;
}
}
{
goto IL_01da;
}
IL_0198:
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_89 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)il2cpp_codegen_object_new(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var);
List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B(L_89, /*hidden argument*/List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var);
V_13 = L_89;
RuntimeObject* L_90 = V_5;
RuntimeObject* L_91 = V_13;
NullCheck(L_90);
int32_t L_92;
L_92 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_90, L_91);
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_93 = V_4;
RuntimeObject* L_94 = V_13;
NullCheck(L_93);
Stack_1_Push_m87B86ED53BBE83FB3CEC83D26371B4D4137526F3(L_93, L_94, /*hidden argument*/Stack_1_Push_m87B86ED53BBE83FB3CEC83D26371B4D4137526F3_RuntimeMethod_var);
RuntimeObject* L_95 = V_13;
V_5 = L_95;
goto IL_0200;
}
IL_01b8:
{
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_96 = V_4;
NullCheck(L_96);
RuntimeObject* L_97;
L_97 = Stack_1_Pop_mC273ABADFD326D9949509DFA020F04A64518D9CD(L_96, /*hidden argument*/Stack_1_Pop_mC273ABADFD326D9949509DFA020F04A64518D9CD_RuntimeMethod_var);
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_98 = V_4;
NullCheck(L_98);
int32_t L_99;
L_99 = Stack_1_get_Count_mC832BF38D820FC36997AAF894B302B4734811BFD_inline(L_98, /*hidden argument*/Stack_1_get_Count_mC832BF38D820FC36997AAF894B302B4734811BFD_RuntimeMethod_var);
if ((((int32_t)L_99) <= ((int32_t)0)))
{
goto IL_01d5;
}
}
{
Stack_1_t95D8C4D8B6E734CFBECE25C3991BB0DF5D969AFC * L_100 = V_4;
NullCheck(L_100);
RuntimeObject* L_101;
L_101 = Stack_1_Peek_m81BBA8C1F4529D628559B7B58182BBEC34AF61EC(L_100, /*hidden argument*/Stack_1_Peek_m81BBA8C1F4529D628559B7B58182BBEC34AF61EC_RuntimeMethod_var);
V_5 = L_101;
goto IL_0200;
}
IL_01d5:
{
V_6 = (bool)1;
goto IL_0200;
}
IL_01da:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_102 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_103 = ___reader1;
NullCheck(L_103);
int32_t L_104;
L_104 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_103);
V_15 = L_104;
RuntimeObject * L_105 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var)), (&V_15));
NullCheck(L_105);
String_t* L_106;
L_106 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_105);
V_15 = *(int32_t*)UnBox(L_105);
String_t* L_107;
L_107 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral28D1ACF86DE60159D623D170E2603670999293A5)), L_106, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_108;
L_108 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_102, L_107, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_108, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateMultidimensionalArray_mAB445EFB76C13BF0091C79166158B6F28F068876_RuntimeMethod_var)));
}
IL_0200:
{
bool L_109 = V_6;
if (!L_109)
{
goto IL_0059;
}
}
IL_0207:
{
bool L_110 = V_6;
if (L_110)
{
goto IL_0219;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_111 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_112 = ___contract2;
RuntimeObject* L_113 = ___list0;
JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A(__this, L_111, L_112, L_113, _stringLiteral4B109B989AF932AF20A3B83814B2C123ED5EE391, /*hidden argument*/NULL);
}
IL_0219:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_114 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_115 = ___contract2;
RuntimeObject* L_116 = ___list0;
JsonSerializerInternalReader_OnDeserialized_m0D0EB15699E6D398A579F89312DFA074E4A600FD(__this, L_114, L_115, L_116, /*hidden argument*/NULL);
RuntimeObject* L_117 = ___list0;
return L_117;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ThrowUnexpectedEndException(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, RuntimeObject * ___currentObject2, String_t* ___message3, const RuntimeMethod* method)
{
Exception_t * V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
IL_0000:
try
{// begin try (depth: 1)
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader0;
String_t* L_1 = ___message3;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_2;
L_2 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_0, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A_RuntimeMethod_var)));
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0009;
}
throw e;
}
CATCH_0009:
{// begin catch(System.Exception)
{
V_0 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
RuntimeObject * L_3 = ___currentObject2;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_4 = ___contract1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_6);
Exception_t * L_8 = V_0;
bool L_9;
L_9 = JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C(__this, L_3, L_4, NULL, ((RuntimeObject*)IsInst((RuntimeObject*)L_5, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)))), L_7, L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_002d;
}
}
IL_0022:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10 = ___reader0;
JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A(__this, L_10, (bool)0, 0, /*hidden argument*/NULL);
goto IL_002f;
}
IL_002d:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A_RuntimeMethod_var)));
}
IL_002f:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
}// end catch (depth: 1)
IL_0031:
{
return;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateList(System.Collections.IList,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonArrayContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject* ___list0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B109B989AF932AF20A3B83814B2C123ED5EE391);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
int32_t V_2 = 0;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_3 = NULL;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_4;
memset((&V_4), 0, sizeof(V_4));
bool V_5 = false;
RuntimeObject * V_6 = NULL;
Exception_t * V_7 = NULL;
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD V_8;
memset((&V_8), 0, sizeof(V_8));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_9;
memset((&V_9), 0, sizeof(V_9));
int32_t V_10 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets;
RuntimeObject* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___list0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (L_1)
{
goto IL_000d;
}
}
{
RuntimeObject* L_2 = ___list0;
G_B3_0 = L_2;
goto IL_0013;
}
IL_000d:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
RuntimeObject * L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object Vuforia.Newtonsoft.Json.Utilities.IWrappedCollection::get_UnderlyingCollection() */, IWrappedCollection_tC521195F2B175AB979C5C44CD23DF7E6BE396AFE_il2cpp_TypeInfo_var, L_3);
G_B3_0 = ((RuntimeObject*)(L_4));
}
IL_0013:
{
V_1 = G_B3_0;
String_t* L_5 = ___id4;
if (!L_5)
{
goto IL_0022;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader1;
String_t* L_7 = ___id4;
RuntimeObject * L_8 = V_1;
JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB(__this, L_6, L_7, L_8, /*hidden argument*/NULL);
}
IL_0022:
{
RuntimeObject* L_9 = ___list0;
NullCheck(L_9);
bool L_10;
L_10 = InterfaceFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Collections.IList::get_IsFixedSize() */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_9);
if (!L_10)
{
goto IL_0032;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_11 = ___reader1;
NullCheck(L_11);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_11, /*hidden argument*/NULL);
RuntimeObject * L_12 = V_1;
return L_12;
}
IL_0032:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_13 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_14 = ___contract2;
RuntimeObject * L_15 = V_1;
JsonSerializerInternalReader_OnDeserializing_m6BEC46D2383AA5B7E2B1064E2683A2ADF324CA02(__this, L_13, L_14, L_15, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_16 = ___reader1;
NullCheck(L_16);
int32_t L_17;
L_17 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 Vuforia.Newtonsoft.Json.JsonReader::get_Depth() */, L_16);
V_2 = L_17;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_18 = ___contract2;
NullCheck(L_18);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_19;
L_19 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_18, /*hidden argument*/NULL);
if (L_19)
{
goto IL_005c;
}
}
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_20 = ___contract2;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_21 = ___contract2;
NullCheck(L_21);
Type_t * L_22;
L_22 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_21, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_23;
L_23 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_22, /*hidden argument*/NULL);
NullCheck(L_20);
JsonContainerContract_set_ItemContract_m15429C9FE811261C02E12E75E99BBF637E8FBA2F(L_20, L_23, /*hidden argument*/NULL);
}
IL_005c:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_24 = ___contract2;
NullCheck(L_24);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_25;
L_25 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_24, /*hidden argument*/NULL);
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_26 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_27 = ___containerProperty3;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_28;
L_28 = JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36(__this, L_25, (JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)NULL, L_26, L_27, /*hidden argument*/NULL);
V_3 = L_28;
il2cpp_codegen_initobj((&V_4), sizeof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ));
V_5 = (bool)0;
}
IL_0078:
{
}
IL_0079:
try
{// begin try (depth: 1)
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_29 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_30 = ___contract2;
NullCheck(L_30);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_31;
L_31 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_30, /*hidden argument*/NULL);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_32 = V_3;
bool L_33;
L_33 = JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5(__this, L_29, L_31, (bool)((!(((RuntimeObject*)(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)L_32) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL);
if (!L_33)
{
goto IL_00de;
}
}
IL_008c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_34 = ___reader1;
NullCheck(L_34);
int32_t L_35;
L_35 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_34);
if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)14)))))
{
goto IL_009b;
}
}
IL_0096:
{
V_5 = (bool)1;
goto IL_00e3;
}
IL_009b:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_36 = V_3;
if (!L_36)
{
goto IL_00b9;
}
}
IL_009e:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_37 = V_3;
NullCheck(L_37);
bool L_38;
L_38 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean Vuforia.Newtonsoft.Json.JsonConverter::get_CanRead() */, L_37);
if (!L_38)
{
goto IL_00b9;
}
}
IL_00a6:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_39 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_40 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_41 = ___contract2;
NullCheck(L_41);
Type_t * L_42;
L_42 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_41, /*hidden argument*/NULL);
RuntimeObject * L_43;
L_43 = JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814(__this, L_39, L_40, L_42, NULL, /*hidden argument*/NULL);
V_6 = L_43;
goto IL_00d3;
}
IL_00b9:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_44 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_45 = ___contract2;
NullCheck(L_45);
Type_t * L_46;
L_46 = JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline(L_45, /*hidden argument*/NULL);
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_47 = ___contract2;
NullCheck(L_47);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_48;
L_48 = JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline(L_47, /*hidden argument*/NULL);
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_49 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_50 = ___containerProperty3;
RuntimeObject * L_51;
L_51 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(__this, L_44, L_46, L_48, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, L_49, L_50, NULL, /*hidden argument*/NULL);
V_6 = L_51;
}
IL_00d3:
{
RuntimeObject* L_52 = ___list0;
RuntimeObject * L_53 = V_6;
NullCheck(L_52);
int32_t L_54;
L_54 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_52, L_53);
goto IL_00e3;
}
IL_00de:
{
goto IL_0174;
}
IL_00e3:
{
goto IL_016d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00e8;
}
throw e;
}
CATCH_00e8:
{// begin catch(System.Exception)
{
V_7 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_55 = ___reader1;
int32_t L_56 = V_2;
NullCheck(L_55);
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_57;
L_57 = JsonReader_GetPosition_mF8427AACE6C27BE3E83852B96C9916B2276A3394(L_55, L_56, /*hidden argument*/NULL);
V_8 = L_57;
RuntimeObject * L_58 = V_1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_59 = ___contract2;
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_60 = V_8;
int32_t L_61 = L_60.get_Position_2();
int32_t L_62 = L_61;
RuntimeObject * L_63 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_62);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_64 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_65 = ___reader1;
NullCheck(L_65);
String_t* L_66;
L_66 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_65);
Exception_t * L_67 = V_7;
bool L_68;
L_68 = JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C(__this, L_58, L_59, L_63, ((RuntimeObject*)IsInst((RuntimeObject*)L_64, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)))), L_66, L_67, /*hidden argument*/NULL);
if (!L_68)
{
goto IL_0169;
}
}
IL_0117:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_69 = ___reader1;
int32_t L_70 = V_2;
JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A(__this, L_69, (bool)1, L_70, /*hidden argument*/NULL);
bool L_71;
L_71 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_4), /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var)));
if (!L_71)
{
goto IL_0159;
}
}
IL_0129:
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_72 = V_4;
V_9 = L_72;
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_73 = V_8;
int32_t L_74 = L_73.get_Position_2();
V_10 = L_74;
int32_t L_75;
L_75 = Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_9), /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var)));
int32_t L_76 = V_10;
bool L_77;
L_77 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_9), /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var)));
if (!((int32_t)((int32_t)((((int32_t)L_75) == ((int32_t)L_76))? 1 : 0)&(int32_t)L_77)))
{
goto IL_0159;
}
}
IL_014b:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_78 = ___reader1;
Exception_t * L_79 = V_7;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_80;
L_80 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_78, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEB0F4A24C5FE376D8216F48DFEAD9D5F27475997)), L_79, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_80, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710_RuntimeMethod_var)));
}
IL_0159:
{
JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD L_81 = V_8;
int32_t L_82 = L_81.get_Position_2();
Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_4), L_82, /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var)));
goto IL_016b;
}
IL_0169:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateList_m9AA0C17368C691891C388819A5E4184A78D76710_RuntimeMethod_var)));
}
IL_016b:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_016d;
}
}// end catch (depth: 1)
IL_016d:
{
bool L_83 = V_5;
if (!L_83)
{
goto IL_0078;
}
}
IL_0174:
{
bool L_84 = V_5;
if (L_84)
{
goto IL_0186;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_85 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_86 = ___contract2;
RuntimeObject * L_87 = V_1;
JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A(__this, L_85, L_86, L_87, _stringLiteral4B109B989AF932AF20A3B83814B2C123ED5EE391, /*hidden argument*/NULL);
}
IL_0186:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_88 = ___reader1;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_89 = ___contract2;
RuntimeObject * L_90 = V_1;
JsonSerializerInternalReader_OnDeserialized_m0D0EB15699E6D398A579F89312DFA074E4A600FD(__this, L_88, L_89, L_90, /*hidden argument*/NULL);
RuntimeObject * L_91 = V_1;
return L_91;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObjectUsingCreatorWithParameters(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateObjectUsingCreatorWithParameters_m8CADCDE361EAA8AAC0AC6E8A53ED6FA0C26ADDFB (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract1, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty2, ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * ___creator3, String_t* ___id4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collection_1_IndexOf_mC341ABED2EBA87DC323C54204BD605BA5A719381_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_All_TisCreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_mFFEA488B654659723EC5B2BA79E04CF4BDF6353E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Select_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisString_t_m2A3D13F042FA0225593804B4E63880D528ABACD1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m5AD7BEF2DCBFD1927500FFEF0F94969E81CCEDF8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m8B6B2D3577FF227C1C36A1F78C0BB682C3634656_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t5EFD102786697C03ED0BEB3B6811F347BE6A6241_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mC341C2414A46784FE243AA8F98ED52D1461DCB27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringUtils_ForgivingCaseSensitiveFind_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_m6F75DAAC00903901AA7A9C070A9F5F2F2E5AA608_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__34_0_m9CA37F8B7C615C015DB8902ABD507CAAD4089524_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__34_2_mE1C1376A397CA7D3B4B4044C0F5882BF2E7B34F3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass34_0_U3CCreateObjectUsingCreatorWithParametersU3Eb__1_m9B6BEA0D85505EC458548AFEF013785BE9F8539A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DE5FDD57A0D84DA8F3CDC564E9B16BEF0AA963C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Type_t * V_1 = NULL;
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * V_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_3 = NULL;
RuntimeObject * V_4 = NULL;
String_t* V_5 = NULL;
RuntimeObject* V_6 = NULL;
U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B * V_7 = NULL;
Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 V_8;
memset((&V_8), 0, sizeof(V_8));
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * V_9 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * V_10 = NULL;
RuntimeObject * V_11 = NULL;
int32_t V_12 = 0;
int32_t V_13 = 0;
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 V_14;
memset((&V_14), 0, sizeof(V_14));
int32_t V_15 = 0;
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 V_16;
memset((&V_16), 0, sizeof(V_16));
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * V_17 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * V_18 = NULL;
RuntimeObject * V_19 = NULL;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * V_20 = NULL;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * V_21 = NULL;
RuntimeObject * V_22 = NULL;
RuntimeObject* V_23 = NULL;
RuntimeObject* V_24 = NULL;
RuntimeObject * V_25 = NULL;
RuntimeObject* V_26 = NULL;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * V_27 = NULL;
RuntimeObject * V_28 = NULL;
RuntimeObject* V_29 = NULL;
RuntimeObject* V_30 = NULL;
RuntimeObject* V_31 = NULL;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 V_32;
memset((&V_32), 0, sizeof(V_32));
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * V_33 = NULL;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * V_34 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 7> __leave_targets;
int32_t G_B3_0 = 0;
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * G_B7_0 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B7_1 = NULL;
String_t* G_B7_2 = NULL;
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * G_B6_0 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B6_1 = NULL;
String_t* G_B6_2 = NULL;
int32_t G_B29_0 = 0;
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * G_B36_0 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B36_1 = NULL;
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * G_B35_0 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B35_1 = NULL;
RuntimeObject* G_B77_0 = NULL;
RuntimeObject* G_B80_0 = NULL;
RuntimeObject* G_B87_0 = NULL;
RuntimeObject* G_B86_0 = NULL;
{
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_0 = ___creator3;
ValidationUtils_ArgumentNotNull_m0F0ED0DB46C64C05A619243F197B6443A8E93117(L_0, _stringLiteralF152D9FF145C02638C3A1C1C199FDCB227AD9B2D, /*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_1 = ___contract1;
NullCheck(L_1);
bool L_2;
L_2 = JsonObjectContract_get_HasRequiredOrDefaultValueProperties_mF1D94987A10AF9F32697809B825D695EFC90DC39(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0028;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_3 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_3);
int32_t L_4 = L_3->get__defaultValueHandling_7();
bool L_5;
L_5 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_4, 2, /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_5));
goto IL_0029;
}
IL_0028:
{
G_B3_0 = 1;
}
IL_0029:
{
V_0 = (bool)G_B3_0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_6 = ___contract1;
NullCheck(L_6);
Type_t * L_7;
L_7 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_6, /*hidden argument*/NULL);
V_1 = L_7;
RuntimeObject* L_8 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_8)
{
goto IL_00b7;
}
}
{
RuntimeObject* L_9 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_9);
int32_t L_10;
L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_9);
if ((((int32_t)L_10) < ((int32_t)3)))
{
goto IL_00b7;
}
}
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_11 = ___contract1;
NullCheck(L_11);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_12;
L_12 = JsonObjectContract_get_CreatorParameters_mC96781B33DCEF017375CE78720E992EA8FC1AB3F(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_13 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9__34_0_1();
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_14 = L_13;
G_B6_0 = L_14;
G_B6_1 = L_12;
G_B6_2 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
if (L_14)
{
G_B7_0 = L_14;
G_B7_1 = L_12;
G_B7_2 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
goto IL_0071;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 * L_15 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_16 = (Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D *)il2cpp_codegen_object_new(Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D_il2cpp_TypeInfo_var);
Func_2__ctor_m5AD7BEF2DCBFD1927500FFEF0F94969E81CCEDF8(L_16, L_15, (intptr_t)((intptr_t)U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__34_0_m9CA37F8B7C615C015DB8902ABD507CAAD4089524_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m5AD7BEF2DCBFD1927500FFEF0F94969E81CCEDF8_RuntimeMethod_var);
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_17 = L_16;
((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->set_U3CU3E9__34_0_1(L_17);
G_B7_0 = L_17;
G_B7_1 = G_B6_1;
G_B7_2 = G_B6_2;
}
IL_0071:
{
RuntimeObject* L_18;
L_18 = Enumerable_Select_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisString_t_m2A3D13F042FA0225593804B4E63880D528ABACD1(G_B7_1, G_B7_0, /*hidden argument*/Enumerable_Select_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisString_t_m2A3D13F042FA0225593804B4E63880D528ABACD1_RuntimeMethod_var);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19;
L_19 = Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90(L_18, /*hidden argument*/Enumerable_ToArray_TisString_t_m0445E1A936ECCB38A25EAAB68224EFCA197A2F90_RuntimeMethod_var);
String_t* L_20;
L_20 = String_Join_m8846EB11F0A221BDE237DE041D17764B36065404(G_B7_2, L_19, /*hidden argument*/NULL);
V_5 = L_20;
RuntimeObject* L_21 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_22 = ___reader0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader0;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_23);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_25;
L_25 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_26 = ___contract1;
NullCheck(L_26);
Type_t * L_27;
L_27 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_26, /*hidden argument*/NULL);
String_t* L_28 = V_5;
String_t* L_29;
L_29 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral7DE5FDD57A0D84DA8F3CDC564E9B16BEF0AA963C, L_25, L_27, L_28, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_30;
L_30 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_22, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_24, L_29, /*hidden argument*/NULL);
NullCheck(L_21);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_21, 3, L_30, (Exception_t *)NULL);
}
IL_00b7:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_31 = ___contract1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_32 = ___containerProperty2;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_33 = ___reader0;
Type_t * L_34 = V_1;
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_35;
L_35 = JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D(__this, L_31, L_32, L_33, L_34, /*hidden argument*/NULL);
V_2 = L_35;
bool L_36 = V_0;
if (!L_36)
{
goto IL_014e;
}
}
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_37 = ___contract1;
NullCheck(L_37);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_38;
L_38 = JsonObjectContract_get_Properties_m199B76032C42E8560001FCFE7741F5DD64988CBA_inline(L_37, /*hidden argument*/NULL);
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2(L_38, /*hidden argument*/Collection_1_GetEnumerator_m52D888BF87B529A766F4AC1605363387DE5FD9B2_RuntimeMethod_var);
V_6 = L_39;
}
IL_00d5:
try
{// begin try (depth: 1)
{
goto IL_0137;
}
IL_00d7:
{
U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B * L_40 = (U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass34_0__ctor_mCE05025CEC99EA48206334395E325D9FF3C586D3(L_40, /*hidden argument*/NULL);
V_7 = L_40;
U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B * L_41 = V_7;
RuntimeObject* L_42 = V_6;
NullCheck(L_42);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_43;
L_43 = InterfaceFuncInvoker0< JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Vuforia.Newtonsoft.Json.Serialization.JsonProperty>::get_Current() */, IEnumerator_1_t5EFD102786697C03ED0BEB3B6811F347BE6A6241_il2cpp_TypeInfo_var, L_42);
NullCheck(L_41);
L_41->set_property_0(L_43);
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_44 = V_2;
U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B * L_45 = V_7;
Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2 * L_46 = (Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2 *)il2cpp_codegen_object_new(Func_2_t1BEEBF1240DE7094605B750B28D79B0C24BB1FE2_il2cpp_TypeInfo_var);
Func_2__ctor_m8B6B2D3577FF227C1C36A1F78C0BB682C3634656(L_46, L_45, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass34_0_U3CCreateObjectUsingCreatorWithParametersU3Eb__1_m9B6BEA0D85505EC458548AFEF013785BE9F8539A_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m8B6B2D3577FF227C1C36A1F78C0BB682C3634656_RuntimeMethod_var);
bool L_47;
L_47 = Enumerable_All_TisCreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_mFFEA488B654659723EC5B2BA79E04CF4BDF6353E(L_44, L_46, /*hidden argument*/Enumerable_All_TisCreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_mFFEA488B654659723EC5B2BA79E04CF4BDF6353E_RuntimeMethod_var);
if (!L_47)
{
goto IL_0137;
}
}
IL_0101:
{
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_48 = V_2;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_49 = (CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 *)il2cpp_codegen_object_new(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_il2cpp_TypeInfo_var);
CreatorPropertyContext__ctor_mEC19CBAA75096A28ACEB05C597380372FA30E7E6(L_49, /*hidden argument*/NULL);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_50 = L_49;
U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B * L_51 = V_7;
NullCheck(L_51);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_52 = L_51->get_property_0();
NullCheck(L_50);
L_50->set_Property_1(L_52);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_53 = L_50;
U3CU3Ec__DisplayClass34_0_t4FB32F92A1EA418ACDF14032B8F06DA362104C8B * L_54 = V_7;
NullCheck(L_54);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_55 = L_54->get_property_0();
NullCheck(L_55);
String_t* L_56;
L_56 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_55, /*hidden argument*/NULL);
NullCheck(L_53);
L_53->set_Name_0(L_56);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_57 = L_53;
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 L_58;
memset((&L_58), 0, sizeof(L_58));
Nullable_1__ctor_mC341C2414A46784FE243AA8F98ED52D1461DCB27((&L_58), 0, /*hidden argument*/Nullable_1__ctor_mC341C2414A46784FE243AA8F98ED52D1461DCB27_RuntimeMethod_var);
NullCheck(L_57);
L_57->set_Presence_3(L_58);
NullCheck(L_48);
List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E(L_48, L_57, /*hidden argument*/List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E_RuntimeMethod_var);
}
IL_0137:
{
RuntimeObject* L_59 = V_6;
NullCheck(L_59);
bool L_60;
L_60 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_59);
if (L_60)
{
goto IL_00d7;
}
}
IL_0140:
{
IL2CPP_LEAVE(0x14E, FINALLY_0142);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0142;
}
FINALLY_0142:
{// begin finally (depth: 1)
{
RuntimeObject* L_61 = V_6;
if (!L_61)
{
goto IL_014d;
}
}
IL_0146:
{
RuntimeObject* L_62 = V_6;
NullCheck(L_62);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_62);
}
IL_014d:
{
IL2CPP_END_FINALLY(322)
}
}// end finally (depth: 1)
IL2CPP_CLEANUP(322)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x14E, IL_014e)
}
IL_014e:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_63 = ___contract1;
NullCheck(L_63);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_64;
L_64 = JsonObjectContract_get_CreatorParameters_mC96781B33DCEF017375CE78720E992EA8FC1AB3F(L_63, /*hidden argument*/NULL);
NullCheck(L_64);
int32_t L_65;
L_65 = Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E(L_64, /*hidden argument*/Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E_RuntimeMethod_var);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_66 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)L_65);
V_3 = L_66;
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_67 = V_2;
NullCheck(L_67);
Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 L_68;
L_68 = List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1(L_67, /*hidden argument*/List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1_RuntimeMethod_var);
V_8 = L_68;
}
IL_0167:
try
{// begin try (depth: 1)
{
goto IL_031d;
}
IL_016c:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_69;
L_69 = Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_inline((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_RuntimeMethod_var);
V_9 = L_69;
bool L_70 = V_0;
if (!L_70)
{
goto IL_01e9;
}
}
IL_0178:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_71 = V_9;
NullCheck(L_71);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_72 = L_71->get_Property_1();
if (!L_72)
{
goto IL_01e9;
}
}
IL_0181:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_73 = V_9;
NullCheck(L_73);
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 * L_74 = L_73->get_address_of_Presence_3();
bool L_75;
L_75 = Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)L_74, /*hidden argument*/Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_RuntimeMethod_var);
if (L_75)
{
goto IL_01e9;
}
}
IL_018f:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_76 = V_9;
NullCheck(L_76);
RuntimeObject * L_77 = L_76->get_Value_4();
V_11 = L_77;
RuntimeObject * L_78 = V_11;
if (L_78)
{
goto IL_01a1;
}
}
IL_019c:
{
V_12 = 1;
goto IL_01db;
}
IL_01a1:
{
RuntimeObject * L_79 = V_11;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_79, String_t_il2cpp_TypeInfo_var)))
{
goto IL_01d8;
}
}
IL_01aa:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_80 = V_9;
NullCheck(L_80);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_81 = L_80->get_Property_1();
NullCheck(L_81);
Type_t * L_82;
L_82 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_81, /*hidden argument*/NULL);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_83 = V_9;
NullCheck(L_83);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_84 = L_83->get_Property_1();
NullCheck(L_84);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_85;
L_85 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_84, /*hidden argument*/NULL);
RuntimeObject * L_86 = V_11;
bool L_87;
L_87 = JsonSerializerInternalReader_CoerceEmptyStringToNull_m9A3830F0898466908BD8BAE1D42B69B18D308927(L_82, L_85, ((String_t*)CastclassSealed((RuntimeObject*)L_86, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if (L_87)
{
goto IL_01d3;
}
}
IL_01d0:
{
G_B29_0 = 2;
goto IL_01d4;
}
IL_01d3:
{
G_B29_0 = 1;
}
IL_01d4:
{
V_12 = G_B29_0;
goto IL_01db;
}
IL_01d8:
{
V_12 = 2;
}
IL_01db:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_88 = V_9;
int32_t L_89 = V_12;
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 L_90;
memset((&L_90), 0, sizeof(L_90));
Nullable_1__ctor_mC341C2414A46784FE243AA8F98ED52D1461DCB27((&L_90), L_89, /*hidden argument*/Nullable_1__ctor_mC341C2414A46784FE243AA8F98ED52D1461DCB27_RuntimeMethod_var);
NullCheck(L_88);
L_88->set_Presence_3(L_90);
}
IL_01e9:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_91 = V_9;
NullCheck(L_91);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_92 = L_91->get_ConstructorProperty_2();
V_10 = L_92;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_93 = V_10;
if (L_93)
{
goto IL_0237;
}
}
IL_01f6:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_94 = V_9;
NullCheck(L_94);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_95 = L_94->get_Property_1();
if (!L_95)
{
goto IL_0237;
}
}
IL_01ff:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_96 = ___contract1;
NullCheck(L_96);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_97;
L_97 = JsonObjectContract_get_CreatorParameters_mC96781B33DCEF017375CE78720E992EA8FC1AB3F(L_96, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_98 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9__34_2_2();
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_99 = L_98;
G_B35_0 = L_99;
G_B35_1 = L_97;
if (L_99)
{
G_B36_0 = L_99;
G_B36_1 = L_97;
goto IL_0224;
}
}
IL_020d:
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 * L_100 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_101 = (Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D *)il2cpp_codegen_object_new(Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D_il2cpp_TypeInfo_var);
Func_2__ctor_m5AD7BEF2DCBFD1927500FFEF0F94969E81CCEDF8(L_101, L_100, (intptr_t)((intptr_t)U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__34_2_mE1C1376A397CA7D3B4B4044C0F5882BF2E7B34F3_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m5AD7BEF2DCBFD1927500FFEF0F94969E81CCEDF8_RuntimeMethod_var);
Func_2_t38AF9DC1118F503F84FDF48B3B535A0CFDB4E13D * L_102 = L_101;
((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->set_U3CU3E9__34_2_2(L_102);
G_B36_0 = L_102;
G_B36_1 = G_B35_1;
}
IL_0224:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_103 = V_9;
NullCheck(L_103);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_104 = L_103->get_Property_1();
NullCheck(L_104);
String_t* L_105;
L_105 = JsonProperty_get_UnderlyingName_mD74AD89A3D462DDE776F6003298CAD86FA3737CC_inline(L_104, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_106;
L_106 = StringUtils_ForgivingCaseSensitiveFind_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_m6F75DAAC00903901AA7A9C070A9F5F2F2E5AA608(G_B36_1, G_B36_0, L_105, /*hidden argument*/StringUtils_ForgivingCaseSensitiveFind_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_m6F75DAAC00903901AA7A9C070A9F5F2F2E5AA608_RuntimeMethod_var);
V_10 = L_106;
}
IL_0237:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_107 = V_10;
if (!L_107)
{
goto IL_031d;
}
}
IL_023e:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_108 = V_10;
NullCheck(L_108);
bool L_109;
L_109 = JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline(L_108, /*hidden argument*/NULL);
if (L_109)
{
goto IL_031d;
}
}
IL_024a:
{
bool L_110 = V_0;
if (!L_110)
{
goto IL_02fb;
}
}
IL_0250:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_111 = V_9;
NullCheck(L_111);
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 L_112 = L_111->get_Presence_3();
V_14 = L_112;
V_15 = 0;
int32_t L_113;
L_113 = Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)(&V_14), /*hidden argument*/Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_RuntimeMethod_var);
int32_t L_114 = V_15;
bool L_115;
L_115 = Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)(&V_14), /*hidden argument*/Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_113) == ((int32_t)L_114))? 1 : 0)&(int32_t)L_115)))
{
goto IL_0292;
}
}
IL_0271:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_116 = V_9;
NullCheck(L_116);
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 L_117 = L_116->get_Presence_3();
V_14 = L_117;
V_15 = 1;
int32_t L_118;
L_118 = Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)(&V_14), /*hidden argument*/Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_RuntimeMethod_var);
int32_t L_119 = V_15;
bool L_120;
L_120 = Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)(&V_14), /*hidden argument*/Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_RuntimeMethod_var);
if (!((int32_t)((int32_t)((((int32_t)L_118) == ((int32_t)L_119))? 1 : 0)&(int32_t)L_120)))
{
goto IL_02fb;
}
}
IL_0292:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_121 = V_10;
NullCheck(L_121);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_122;
L_122 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_121, /*hidden argument*/NULL);
if (L_122)
{
goto IL_02af;
}
}
IL_029b:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_123 = V_10;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_124 = V_10;
NullCheck(L_124);
Type_t * L_125;
L_125 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_124, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_126;
L_126 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_125, /*hidden argument*/NULL);
NullCheck(L_123);
JsonProperty_set_PropertyContract_m5D1ABC8446CDAB8EB9D58BBB2796506EA50BCB00_inline(L_123, L_126, /*hidden argument*/NULL);
}
IL_02af:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_127 = V_10;
NullCheck(L_127);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_128;
L_128 = JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline(L_127, /*hidden argument*/NULL);
V_16 = L_128;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_129 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_129);
int32_t L_130 = L_129->get__defaultValueHandling_7();
int32_t L_131;
L_131 = Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)(&V_16), L_130, /*hidden argument*/Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
bool L_132;
L_132 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_131, 2, /*hidden argument*/NULL);
if (!L_132)
{
goto IL_02fb;
}
}
IL_02d3:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_133 = V_9;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_134 = ___reader0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_135 = V_10;
NullCheck(L_135);
RuntimeObject * L_136;
L_136 = JsonProperty_GetResolvedDefaultValue_mEFBDF54ABD268FC1B4B8310641A7A1A982D0A443(L_135, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_137;
L_137 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_138 = V_10;
NullCheck(L_138);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_139;
L_139 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_138, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_140 = V_10;
NullCheck(L_140);
Type_t * L_141;
L_141 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_140, /*hidden argument*/NULL);
RuntimeObject * L_142;
L_142 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_134, L_136, L_137, L_139, L_141, /*hidden argument*/NULL);
NullCheck(L_133);
L_133->set_Value_4(L_142);
}
IL_02fb:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_143 = ___contract1;
NullCheck(L_143);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_144;
L_144 = JsonObjectContract_get_CreatorParameters_mC96781B33DCEF017375CE78720E992EA8FC1AB3F(L_143, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_145 = V_10;
NullCheck(L_144);
int32_t L_146;
L_146 = Collection_1_IndexOf_mC341ABED2EBA87DC323C54204BD605BA5A719381(L_144, L_145, /*hidden argument*/Collection_1_IndexOf_mC341ABED2EBA87DC323C54204BD605BA5A719381_RuntimeMethod_var);
V_13 = L_146;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_147 = V_3;
int32_t L_148 = V_13;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_149 = V_9;
NullCheck(L_149);
RuntimeObject * L_150 = L_149->get_Value_4();
NullCheck(L_147);
ArrayElementTypeCheck (L_147, L_150);
(L_147)->SetAt(static_cast<il2cpp_array_size_t>(L_148), (RuntimeObject *)L_150);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_151 = V_9;
NullCheck(L_151);
L_151->set_Used_5((bool)1);
}
IL_031d:
{
bool L_152;
L_152 = Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675_RuntimeMethod_var);
if (L_152)
{
goto IL_016c;
}
}
IL_0329:
{
IL2CPP_LEAVE(0x339, FINALLY_032b);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_032b;
}
FINALLY_032b:
{// begin finally (depth: 1)
Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796_RuntimeMethod_var);
IL2CPP_END_FINALLY(811)
}// end finally (depth: 1)
IL2CPP_CLEANUP(811)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x339, IL_0339)
}
IL_0339:
{
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_153 = ___creator3;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_154 = V_3;
NullCheck(L_153);
RuntimeObject * L_155;
L_155 = ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C(L_153, L_154, /*hidden argument*/ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
V_4 = L_155;
String_t* L_156 = ___id4;
if (!L_156)
{
goto IL_0352;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_157 = ___reader0;
String_t* L_158 = ___id4;
RuntimeObject * L_159 = V_4;
JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB(__this, L_157, L_158, L_159, /*hidden argument*/NULL);
}
IL_0352:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_160 = ___reader0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_161 = ___contract1;
RuntimeObject * L_162 = V_4;
JsonSerializerInternalReader_OnDeserializing_m6BEC46D2383AA5B7E2B1064E2683A2ADF324CA02(__this, L_160, L_161, L_162, /*hidden argument*/NULL);
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_163 = V_2;
NullCheck(L_163);
Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 L_164;
L_164 = List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1(L_163, /*hidden argument*/List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1_RuntimeMethod_var);
V_8 = L_164;
}
IL_0364:
try
{// begin try (depth: 1)
{
goto IL_055d;
}
IL_0369:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_165;
L_165 = Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_inline((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_RuntimeMethod_var);
V_17 = L_165;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_166 = V_17;
NullCheck(L_166);
bool L_167 = L_166->get_Used_5();
if (L_167)
{
goto IL_055d;
}
}
IL_037e:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_168 = V_17;
NullCheck(L_168);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_169 = L_168->get_Property_1();
if (!L_169)
{
goto IL_055d;
}
}
IL_038a:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_170 = V_17;
NullCheck(L_170);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_171 = L_170->get_Property_1();
NullCheck(L_171);
bool L_172;
L_172 = JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline(L_171, /*hidden argument*/NULL);
if (L_172)
{
goto IL_055d;
}
}
IL_039b:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_173 = V_17;
NullCheck(L_173);
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 L_174 = L_173->get_Presence_3();
V_14 = L_174;
V_15 = 0;
int32_t L_175;
L_175 = Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)(&V_14), /*hidden argument*/Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_RuntimeMethod_var);
int32_t L_176 = V_15;
bool L_177;
L_177 = Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)(&V_14), /*hidden argument*/Nullable_1_get_HasValue_m0C8F7A54588E55BD16EF26A2D2372BA17CD59084_RuntimeMethod_var);
if (((int32_t)((int32_t)((((int32_t)L_175) == ((int32_t)L_176))? 1 : 0)&(int32_t)L_177)))
{
goto IL_055d;
}
}
IL_03bf:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_178 = V_17;
NullCheck(L_178);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_179 = L_178->get_Property_1();
V_18 = L_179;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_180 = V_17;
NullCheck(L_180);
RuntimeObject * L_181 = L_180->get_Value_4();
V_19 = L_181;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_182 = V_18;
RuntimeObject * L_183 = V_19;
bool L_184;
L_184 = JsonSerializerInternalReader_ShouldSetPropertyValue_mD92F420E1F3B598299E2EEBFB34D944F2654C24E(__this, L_182, L_183, /*hidden argument*/NULL);
if (!L_184)
{
goto IL_03fa;
}
}
IL_03dd:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_185 = V_18;
NullCheck(L_185);
RuntimeObject* L_186;
L_186 = JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline(L_185, /*hidden argument*/NULL);
RuntimeObject * L_187 = V_4;
RuntimeObject * L_188 = V_19;
NullCheck(L_186);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void Vuforia.Newtonsoft.Json.Serialization.IValueProvider::SetValue(System.Object,System.Object) */, IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var, L_186, L_187, L_188);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_189 = V_17;
NullCheck(L_189);
L_189->set_Used_5((bool)1);
goto IL_055d;
}
IL_03fa:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_190 = V_18;
NullCheck(L_190);
bool L_191;
L_191 = JsonProperty_get_Writable_mCFD17FFBF783AF8F090A391FBAE37088FB9529C1_inline(L_190, /*hidden argument*/NULL);
if (L_191)
{
goto IL_055d;
}
}
IL_0406:
{
RuntimeObject * L_192 = V_19;
if (!L_192)
{
goto IL_055d;
}
}
IL_040d:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_193 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_193);
RuntimeObject* L_194 = L_193->get__contractResolver_11();
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_195 = V_18;
NullCheck(L_195);
Type_t * L_196;
L_196 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_195, /*hidden argument*/NULL);
NullCheck(L_194);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_197;
L_197 = InterfaceFuncInvoker1< JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *, Type_t * >::Invoke(0 /* Vuforia.Newtonsoft.Json.Serialization.JsonContract Vuforia.Newtonsoft.Json.Serialization.IContractResolver::ResolveContract(System.Type) */, IContractResolver_tE097A7D3B422473A2A390AE334913AAAEE2F29A8_il2cpp_TypeInfo_var, L_194, L_196);
V_20 = L_197;
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_198 = V_20;
NullCheck(L_198);
int32_t L_199 = L_198->get_ContractType_5();
if ((!(((uint32_t)L_199) == ((uint32_t)2))))
{
goto IL_04a3;
}
}
IL_0430:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_200 = V_20;
V_21 = ((JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 *)CastclassClass((RuntimeObject*)L_200, JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245_il2cpp_TypeInfo_var));
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_201 = V_18;
NullCheck(L_201);
RuntimeObject* L_202;
L_202 = JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline(L_201, /*hidden argument*/NULL);
RuntimeObject * L_203 = V_4;
NullCheck(L_202);
RuntimeObject * L_204;
L_204 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Object Vuforia.Newtonsoft.Json.Serialization.IValueProvider::GetValue(System.Object) */, IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var, L_202, L_203);
V_22 = L_204;
RuntimeObject * L_205 = V_22;
if (!L_205)
{
goto IL_0555;
}
}
IL_0450:
{
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_206 = V_21;
RuntimeObject * L_207 = V_22;
NullCheck(L_206);
RuntimeObject* L_208;
L_208 = JsonArrayContract_CreateWrapper_m0FC0719BFA78DF65DE2956C7469AB6DFC30F816C(L_206, L_207, /*hidden argument*/NULL);
V_23 = L_208;
JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * L_209 = V_21;
RuntimeObject * L_210 = V_19;
NullCheck(L_209);
RuntimeObject* L_211;
L_211 = JsonArrayContract_CreateWrapper_m0FC0719BFA78DF65DE2956C7469AB6DFC30F816C(L_209, L_210, /*hidden argument*/NULL);
NullCheck(L_211);
RuntimeObject* L_212;
L_212 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_211);
V_24 = L_212;
}
IL_046b:
try
{// begin try (depth: 2)
{
goto IL_0480;
}
IL_046d:
{
RuntimeObject* L_213 = V_24;
NullCheck(L_213);
RuntimeObject * L_214;
L_214 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_213);
V_25 = L_214;
RuntimeObject* L_215 = V_23;
RuntimeObject * L_216 = V_25;
NullCheck(L_215);
int32_t L_217;
L_217 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_215, L_216);
}
IL_0480:
{
RuntimeObject* L_218 = V_24;
NullCheck(L_218);
bool L_219;
L_219 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_218);
if (L_219)
{
goto IL_046d;
}
}
IL_0489:
{
IL2CPP_LEAVE(0x555, FINALLY_048e);
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_048e;
}
FINALLY_048e:
{// begin finally (depth: 2)
{
RuntimeObject* L_220 = V_24;
V_26 = ((RuntimeObject*)IsInst((RuntimeObject*)L_220, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_221 = V_26;
if (!L_221)
{
goto IL_04a2;
}
}
IL_049b:
{
RuntimeObject* L_222 = V_26;
NullCheck(L_222);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_222);
}
IL_04a2:
{
IL2CPP_END_FINALLY(1166)
}
}// end finally (depth: 2)
IL2CPP_CLEANUP(1166)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x555, IL_0555)
}
IL_04a3:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_223 = V_20;
NullCheck(L_223);
int32_t L_224 = L_223->get_ContractType_5();
if ((!(((uint32_t)L_224) == ((uint32_t)5))))
{
goto IL_0555;
}
}
IL_04b0:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_225 = V_20;
V_27 = ((JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 *)CastclassClass((RuntimeObject*)L_225, JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976_il2cpp_TypeInfo_var));
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_226 = V_18;
NullCheck(L_226);
RuntimeObject* L_227;
L_227 = JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline(L_226, /*hidden argument*/NULL);
RuntimeObject * L_228 = V_4;
NullCheck(L_227);
RuntimeObject * L_229;
L_229 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Object Vuforia.Newtonsoft.Json.Serialization.IValueProvider::GetValue(System.Object) */, IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var, L_227, L_228);
V_28 = L_229;
RuntimeObject * L_230 = V_28;
if (!L_230)
{
goto IL_0555;
}
}
IL_04d0:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_231 = V_27;
NullCheck(L_231);
bool L_232;
L_232 = JsonDictionaryContract_get_ShouldCreateWrapper_m9B288D28EB522BE882B07929FE4649D299C68897_inline(L_231, /*hidden argument*/NULL);
if (L_232)
{
goto IL_04e2;
}
}
IL_04d9:
{
RuntimeObject * L_233 = V_28;
G_B77_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_233, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var));
goto IL_04ef;
}
IL_04e2:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_234 = V_27;
RuntimeObject * L_235 = V_28;
NullCheck(L_234);
RuntimeObject* L_236;
L_236 = JsonDictionaryContract_CreateWrapper_m891DB68316FBC3D10BFD23FEA0533C3A666CBDFA(L_234, L_235, /*hidden argument*/NULL);
V_31 = L_236;
RuntimeObject* L_237 = V_31;
G_B77_0 = L_237;
}
IL_04ef:
{
V_29 = G_B77_0;
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_238 = V_27;
NullCheck(L_238);
bool L_239;
L_239 = JsonDictionaryContract_get_ShouldCreateWrapper_m9B288D28EB522BE882B07929FE4649D299C68897_inline(L_238, /*hidden argument*/NULL);
if (L_239)
{
goto IL_0503;
}
}
IL_04fa:
{
RuntimeObject * L_240 = V_19;
G_B80_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_240, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var));
goto IL_0510;
}
IL_0503:
{
JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * L_241 = V_27;
RuntimeObject * L_242 = V_19;
NullCheck(L_241);
RuntimeObject* L_243;
L_243 = JsonDictionaryContract_CreateWrapper_m891DB68316FBC3D10BFD23FEA0533C3A666CBDFA(L_241, L_242, /*hidden argument*/NULL);
V_31 = L_243;
RuntimeObject* L_244 = V_31;
G_B80_0 = L_244;
}
IL_0510:
{
NullCheck(G_B80_0);
RuntimeObject* L_245;
L_245 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, G_B80_0);
V_30 = L_245;
}
IL_0517:
try
{// begin try (depth: 2)
{
goto IL_0537;
}
IL_0519:
{
RuntimeObject* L_246 = V_30;
NullCheck(L_246);
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_247;
L_247 = InterfaceFuncInvoker0< DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 >::Invoke(2 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var, L_246);
V_32 = L_247;
RuntimeObject* L_248 = V_29;
RuntimeObject * L_249;
L_249 = DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_32), /*hidden argument*/NULL);
RuntimeObject * L_250;
L_250 = DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_32), /*hidden argument*/NULL);
NullCheck(L_248);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_248, L_249, L_250);
}
IL_0537:
{
RuntimeObject* L_251 = V_30;
NullCheck(L_251);
bool L_252;
L_252 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_251);
if (L_252)
{
goto IL_0519;
}
}
IL_0540:
{
IL2CPP_LEAVE(0x555, FINALLY_0542);
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0542;
}
FINALLY_0542:
{// begin finally (depth: 2)
{
RuntimeObject* L_253 = V_30;
RuntimeObject* L_254 = ((RuntimeObject*)IsInst((RuntimeObject*)L_253, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
G_B86_0 = L_254;
if (L_254)
{
G_B87_0 = L_254;
goto IL_054f;
}
}
IL_054c:
{
goto IL_0554;
}
IL_054f:
{
NullCheck(G_B87_0);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, G_B87_0);
}
IL_0554:
{
IL2CPP_END_FINALLY(1346)
}
}// end finally (depth: 2)
IL2CPP_CLEANUP(1346)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x555, IL_0555)
}
IL_0555:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_255 = V_17;
NullCheck(L_255);
L_255->set_Used_5((bool)1);
}
IL_055d:
{
bool L_256;
L_256 = Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675_RuntimeMethod_var);
if (L_256)
{
goto IL_0369;
}
}
IL_0569:
{
IL2CPP_LEAVE(0x579, FINALLY_056b);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_056b;
}
FINALLY_056b:
{// begin finally (depth: 1)
Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796_RuntimeMethod_var);
IL2CPP_END_FINALLY(1387)
}// end finally (depth: 1)
IL2CPP_CLEANUP(1387)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x579, IL_0579)
}
IL_0579:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_257 = ___contract1;
NullCheck(L_257);
ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * L_258;
L_258 = JsonObjectContract_get_ExtensionDataSetter_m3F50AB8263A9B83DB9BE97EAA2BE3292D911C3D9_inline(L_257, /*hidden argument*/NULL);
if (!L_258)
{
goto IL_05d1;
}
}
{
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_259 = V_2;
NullCheck(L_259);
Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 L_260;
L_260 = List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1(L_259, /*hidden argument*/List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1_RuntimeMethod_var);
V_8 = L_260;
}
IL_0589:
try
{// begin try (depth: 1)
{
goto IL_05b8;
}
IL_058b:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_261;
L_261 = Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_inline((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_RuntimeMethod_var);
V_33 = L_261;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_262 = V_33;
NullCheck(L_262);
bool L_263 = L_262->get_Used_5();
if (L_263)
{
goto IL_05b8;
}
}
IL_059d:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_264 = ___contract1;
NullCheck(L_264);
ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * L_265;
L_265 = JsonObjectContract_get_ExtensionDataSetter_m3F50AB8263A9B83DB9BE97EAA2BE3292D911C3D9_inline(L_264, /*hidden argument*/NULL);
RuntimeObject * L_266 = V_4;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_267 = V_33;
NullCheck(L_267);
String_t* L_268 = L_267->get_Name_0();
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_269 = V_33;
NullCheck(L_269);
RuntimeObject * L_270 = L_269->get_Value_4();
NullCheck(L_265);
ExtensionDataSetter_Invoke_mE89234A069241430AE4C699946D4BB9EFFD90680(L_265, L_266, L_268, L_270, /*hidden argument*/NULL);
}
IL_05b8:
{
bool L_271;
L_271 = Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675_RuntimeMethod_var);
if (L_271)
{
goto IL_058b;
}
}
IL_05c1:
{
IL2CPP_LEAVE(0x5D1, FINALLY_05c3);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_05c3;
}
FINALLY_05c3:
{// begin finally (depth: 1)
Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796_RuntimeMethod_var);
IL2CPP_END_FINALLY(1475)
}// end finally (depth: 1)
IL2CPP_CLEANUP(1475)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x5D1, IL_05d1)
}
IL_05d1:
{
bool L_272 = V_0;
if (!L_272)
{
goto IL_0636;
}
}
{
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_273 = V_2;
NullCheck(L_273);
Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 L_274;
L_274 = List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1(L_273, /*hidden argument*/List_1_GetEnumerator_mF33322D8BD0C2ED0771566E6A046F2D4721A65A1_RuntimeMethod_var);
V_8 = L_274;
}
IL_05dc:
try
{// begin try (depth: 1)
{
goto IL_061d;
}
IL_05de:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_275;
L_275 = Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_inline((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_get_Current_mF1E5DF9B0234103AD45E825EEE1367425660E56B_RuntimeMethod_var);
V_34 = L_275;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_276 = V_34;
NullCheck(L_276);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_277 = L_276->get_Property_1();
if (!L_277)
{
goto IL_061d;
}
}
IL_05f0:
{
RuntimeObject * L_278 = V_4;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_279 = ___reader0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_280 = ___contract1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_281 = ___reader0;
NullCheck(L_281);
int32_t L_282;
L_282 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 Vuforia.Newtonsoft.Json.JsonReader::get_Depth() */, L_281);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_283 = V_34;
NullCheck(L_283);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_284 = L_283->get_Property_1();
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_285 = V_34;
NullCheck(L_285);
Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 * L_286 = L_285->get_address_of_Presence_3();
int32_t L_287;
L_287 = Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_inline((Nullable_1_t8A5738F1C5C341BA7CD87CF9977D4AC642CACBB9 *)L_286, /*hidden argument*/Nullable_1_GetValueOrDefault_m20EC7A382721153EF024E55DE8A15281E77D0C28_RuntimeMethod_var);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_288 = V_34;
NullCheck(L_288);
bool L_289 = L_288->get_Used_5();
JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC(__this, L_278, L_279, L_280, L_282, L_284, L_287, (bool)((((int32_t)L_289) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
}
IL_061d:
{
bool L_290;
L_290 = Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_MoveNext_m63F05CA3E40264EC61F2A40AD5509B989BB7F675_RuntimeMethod_var);
if (L_290)
{
goto IL_05de;
}
}
IL_0626:
{
IL2CPP_LEAVE(0x636, FINALLY_0628);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0628;
}
FINALLY_0628:
{// begin finally (depth: 1)
Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796((Enumerator_tD2B4347F303B521183E778585E0070661A40FB60 *)(&V_8), /*hidden argument*/Enumerator_Dispose_m01AD8336450635D0CB5CFE8F700DC321CFA92796_RuntimeMethod_var);
IL2CPP_END_FINALLY(1576)
}// end finally (depth: 1)
IL2CPP_CLEANUP(1576)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x636, IL_0636)
}
IL_0636:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_291 = ___reader0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_292 = ___contract1;
RuntimeObject * L_293 = V_4;
JsonSerializerInternalReader_OnDeserialized_m0D0EB15699E6D398A579F89312DFA074E4A600FD(__this, L_291, L_292, L_293, /*hidden argument*/NULL);
RuntimeObject * L_294 = V_4;
return L_294;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::DeserializeConvertable(Vuforia.Newtonsoft.Json.JsonConverter,Vuforia.Newtonsoft.Json.JsonReader,System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * ___converter0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, Type_t * ___objectType2, RuntimeObject * ___existingValue3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8903E18FA11D41A7A89310F5B8AD5069A67C6332);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5F8646EEBCBFD1FE550D61889D957ED81DCDF93);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * G_B6_0 = NULL;
RuntimeObject * G_B4_0 = NULL;
RuntimeObject * G_B5_0 = NULL;
{
RuntimeObject* L_0 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_0)
{
goto IL_004a;
}
}
{
RuntimeObject* L_1 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_1);
if ((((int32_t)L_2) < ((int32_t)3)))
{
goto IL_004a;
}
}
{
RuntimeObject* L_3 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_5 = ___reader1;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_7;
L_7 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_8 = ___objectType2;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_9 = ___converter0;
NullCheck(L_9);
Type_t * L_10;
L_10 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_9, /*hidden argument*/NULL);
String_t* L_11;
L_11 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteralE5F8646EEBCBFD1FE550D61889D957ED81DCDF93, L_7, L_8, L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_12;
L_12 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_4, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_6, L_11, /*hidden argument*/NULL);
NullCheck(L_3);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_3, 3, L_12, (Exception_t *)NULL);
}
IL_004a:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_13 = ___converter0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_14 = ___reader1;
Type_t * L_15 = ___objectType2;
RuntimeObject * L_16 = ___existingValue3;
JsonSerializerProxy_t9C6EC51DC36B69F7EAF4E6FB20144EAFE7A24BF2 * L_17;
L_17 = JsonSerializerInternalReader_GetInternalSerializer_m2F3A22BC22EF32C22FB4D9F18B20E14309E295C0(__this, /*hidden argument*/NULL);
NullCheck(L_13);
RuntimeObject * L_18;
L_18 = VirtualFuncInvoker4< RuntimeObject *, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 *, Type_t *, RuntimeObject *, JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * >::Invoke(5 /* System.Object Vuforia.Newtonsoft.Json.JsonConverter::ReadJson(Vuforia.Newtonsoft.Json.JsonReader,System.Type,System.Object,Vuforia.Newtonsoft.Json.JsonSerializer) */, L_13, L_14, L_15, L_16, L_17);
RuntimeObject* L_19 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
G_B4_0 = L_18;
if (!L_19)
{
G_B6_0 = L_18;
goto IL_00a4;
}
}
{
RuntimeObject* L_20 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_20);
int32_t L_21;
L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_20);
G_B5_0 = G_B4_0;
if ((((int32_t)L_21) < ((int32_t)3)))
{
G_B6_0 = G_B4_0;
goto IL_00a4;
}
}
{
RuntimeObject* L_22 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_24 = ___reader1;
NullCheck(L_24);
String_t* L_25;
L_25 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_24);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_26;
L_26 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Type_t * L_27 = ___objectType2;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_28 = ___converter0;
NullCheck(L_28);
Type_t * L_29;
L_29 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_28, /*hidden argument*/NULL);
String_t* L_30;
L_30 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral8903E18FA11D41A7A89310F5B8AD5069A67C6332, L_26, L_27, L_29, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_31;
L_31 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_23, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_25, L_30, /*hidden argument*/NULL);
NullCheck(L_22);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_22, 3, L_31, (Exception_t *)NULL);
G_B6_0 = G_B5_0;
}
IL_00a4:
{
return G_B6_0;
}
}
// System.Collections.Generic.List`1<Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext> Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ResolvePropertyAndCreatorValues(Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty1, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader2, Type_t * ___objectType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC62CE1867CC9B4535B2681E8C4A3CC57735A08FD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t7EE065C775D6730C17E63329CAEE50D15274E511_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral994646925CBD93D6385097937A64FEE9113E5712);
s_Il2CppMethodInitialized = true;
}
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * V_3 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * V_4 = NULL;
int32_t V_5 = 0;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_6 = NULL;
int32_t V_7 = 0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B7_0 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * G_B6_0 = NULL;
{
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_0 = (List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 *)il2cpp_codegen_object_new(List_1_t7EE065C775D6730C17E63329CAEE50D15274E511_il2cpp_TypeInfo_var);
List_1__ctor_mC62CE1867CC9B4535B2681E8C4A3CC57735A08FD(L_0, /*hidden argument*/List_1__ctor_mC62CE1867CC9B4535B2681E8C4A3CC57735A08FD_RuntimeMethod_var);
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader2;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_1);
V_5 = L_2;
int32_t L_3 = V_5;
if ((((int32_t)L_3) == ((int32_t)4)))
{
goto IL_002b;
}
}
{
int32_t L_4 = V_5;
if ((((int32_t)L_4) == ((int32_t)5)))
{
goto IL_022d;
}
}
{
int32_t L_5 = V_5;
if ((((int32_t)L_5) == ((int32_t)((int32_t)13))))
{
goto IL_0203;
}
}
{
goto IL_0207;
}
IL_002b:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader2;
NullCheck(L_6);
RuntimeObject * L_7;
L_7 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_6);
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7);
V_2 = L_8;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_9 = (CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 *)il2cpp_codegen_object_new(CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9_il2cpp_TypeInfo_var);
CreatorPropertyContext__ctor_mEC19CBAA75096A28ACEB05C597380372FA30E7E6(L_9, /*hidden argument*/NULL);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_10 = L_9;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_11 = ___reader2;
NullCheck(L_11);
RuntimeObject * L_12;
L_12 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_11);
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12);
NullCheck(L_10);
L_10->set_Name_0(L_13);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_14 = L_10;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_15 = ___contract0;
NullCheck(L_15);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_16;
L_16 = JsonObjectContract_get_CreatorParameters_mC96781B33DCEF017375CE78720E992EA8FC1AB3F(L_15, /*hidden argument*/NULL);
String_t* L_17 = V_2;
NullCheck(L_16);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_18;
L_18 = JsonPropertyCollection_GetClosestMatchProperty_mECA3B93B882465AC4C9A6BB05786365943825E0F(L_16, L_17, /*hidden argument*/NULL);
NullCheck(L_14);
L_14->set_ConstructorProperty_2(L_18);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_19 = L_14;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_20 = ___contract0;
NullCheck(L_20);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_21;
L_21 = JsonObjectContract_get_Properties_m199B76032C42E8560001FCFE7741F5DD64988CBA_inline(L_20, /*hidden argument*/NULL);
String_t* L_22 = V_2;
NullCheck(L_21);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_23;
L_23 = JsonPropertyCollection_GetClosestMatchProperty_mECA3B93B882465AC4C9A6BB05786365943825E0F(L_21, L_22, /*hidden argument*/NULL);
NullCheck(L_19);
L_19->set_Property_1(L_23);
V_3 = L_19;
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_24 = V_0;
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_25 = V_3;
NullCheck(L_24);
List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E(L_24, L_25, /*hidden argument*/List_1_Add_m0E58CD3B60AC07CA770F1D76634178683E6DEB7E_RuntimeMethod_var);
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_26 = V_3;
NullCheck(L_26);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_27 = L_26->get_ConstructorProperty_2();
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_28 = L_27;
G_B6_0 = L_28;
if (L_28)
{
G_B7_0 = L_28;
goto IL_0089;
}
}
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_29 = V_3;
NullCheck(L_29);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_30 = L_29->get_Property_1();
G_B7_0 = L_30;
}
IL_0089:
{
V_4 = G_B7_0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_31 = V_4;
if (!L_31)
{
goto IL_014d;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_32 = V_4;
NullCheck(L_32);
bool L_33;
L_33 = JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline(L_32, /*hidden argument*/NULL);
if (L_33)
{
goto IL_014d;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_34 = V_4;
NullCheck(L_34);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_35;
L_35 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_34, /*hidden argument*/NULL);
if (L_35)
{
goto IL_00bb;
}
}
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_36 = V_4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_37 = V_4;
NullCheck(L_37);
Type_t * L_38;
L_38 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_37, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_39;
L_39 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_38, /*hidden argument*/NULL);
NullCheck(L_36);
JsonProperty_set_PropertyContract_m5D1ABC8446CDAB8EB9D58BBB2796506EA50BCB00_inline(L_36, L_39, /*hidden argument*/NULL);
}
IL_00bb:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_40 = V_4;
NullCheck(L_40);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_41;
L_41 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_40, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_42 = V_4;
NullCheck(L_42);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_43;
L_43 = JsonProperty_get_MemberConverter_m715ABD6F88B92DE7212E9BF1399D10B2ECC09EC2_inline(L_42, /*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_44 = ___contract0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_45 = ___containerProperty1;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_46;
L_46 = JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36(__this, L_41, L_43, L_44, L_45, /*hidden argument*/NULL);
V_6 = L_46;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_47 = ___reader2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_48 = V_4;
NullCheck(L_48);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_49;
L_49 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_48, /*hidden argument*/NULL);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_50 = V_6;
bool L_51;
L_51 = JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5(__this, L_47, L_49, (bool)((!(((RuntimeObject*)(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)L_50) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL);
if (L_51)
{
goto IL_00ff;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_52 = ___reader2;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_53;
L_53 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_54 = V_2;
String_t* L_55;
L_55 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF32EC47E8782F454C25DF702A5E68A56E0E2D422)), L_53, L_54, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_56;
L_56 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_52, L_55, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_56, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D_RuntimeMethod_var)));
}
IL_00ff:
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_57 = V_6;
if (!L_57)
{
goto IL_0128;
}
}
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_58 = V_6;
NullCheck(L_58);
bool L_59;
L_59 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean Vuforia.Newtonsoft.Json.JsonConverter::get_CanRead() */, L_58);
if (!L_59)
{
goto IL_0128;
}
}
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_60 = V_3;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_61 = V_6;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_62 = ___reader2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_63 = V_4;
NullCheck(L_63);
Type_t * L_64;
L_64 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_63, /*hidden argument*/NULL);
RuntimeObject * L_65;
L_65 = JsonSerializerInternalReader_DeserializeConvertable_m25EB100E6A5908295AA8C61735A555ED26EF0814(__this, L_61, L_62, L_64, NULL, /*hidden argument*/NULL);
NullCheck(L_60);
L_60->set_Value_4(L_65);
goto IL_022d;
}
IL_0128:
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_66 = V_3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_67 = ___reader2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_68 = V_4;
NullCheck(L_68);
Type_t * L_69;
L_69 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_68, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_70 = V_4;
NullCheck(L_70);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_71;
L_71 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_70, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_72 = V_4;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_73 = ___contract0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_74 = ___containerProperty1;
RuntimeObject * L_75;
L_75 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(__this, L_67, L_69, L_71, L_72, L_73, L_74, NULL, /*hidden argument*/NULL);
NullCheck(L_66);
L_66->set_Value_4(L_75);
goto IL_022d;
}
IL_014d:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_76 = ___reader2;
NullCheck(L_76);
bool L_77;
L_77 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_76);
if (L_77)
{
goto IL_016c;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_78 = ___reader2;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_79;
L_79 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_80 = V_2;
String_t* L_81;
L_81 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF32EC47E8782F454C25DF702A5E68A56E0E2D422)), L_79, L_80, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_82;
L_82 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_78, L_81, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_82, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D_RuntimeMethod_var)));
}
IL_016c:
{
RuntimeObject* L_83 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_83)
{
goto IL_01b6;
}
}
{
RuntimeObject* L_84 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_84);
int32_t L_85;
L_85 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_84);
if ((((int32_t)L_85) < ((int32_t)4)))
{
goto IL_01b6;
}
}
{
RuntimeObject* L_86 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_87 = ___reader2;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_88 = ___reader2;
NullCheck(L_88);
String_t* L_89;
L_89 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_88);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_90;
L_90 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_91 = V_2;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_92 = ___contract0;
NullCheck(L_92);
Type_t * L_93;
L_93 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_92, /*hidden argument*/NULL);
String_t* L_94;
L_94 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral994646925CBD93D6385097937A64FEE9113E5712, L_90, L_91, L_93, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_95;
L_95 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_87, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_89, L_94, /*hidden argument*/NULL);
NullCheck(L_86);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_86, 4, L_95, (Exception_t *)NULL);
}
IL_01b6:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_96 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_96);
int32_t L_97 = L_96->get__missingMemberHandling_4();
if ((!(((uint32_t)L_97) == ((uint32_t)1))))
{
goto IL_01e2;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_98 = ___reader2;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_99;
L_99 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_100 = V_2;
Type_t * L_101 = ___objectType3;
NullCheck(L_101);
String_t* L_102;
L_102 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_101);
String_t* L_103;
L_103 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA32663807A568FB91925525AAFB75C7656184AAD)), L_99, L_100, L_102, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_104;
L_104 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_98, L_103, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_104, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D_RuntimeMethod_var)));
}
IL_01e2:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_105 = ___contract0;
NullCheck(L_105);
ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * L_106;
L_106 = JsonObjectContract_get_ExtensionDataSetter_m3F50AB8263A9B83DB9BE97EAA2BE3292D911C3D9_inline(L_105, /*hidden argument*/NULL);
if (!L_106)
{
goto IL_01fb;
}
}
{
CreatorPropertyContext_tD87894C3CA95D977E436351C0DC814A24179FBF9 * L_107 = V_3;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_108 = ___contract0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_109 = ___containerProperty1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_110 = ___reader2;
RuntimeObject * L_111;
L_111 = JsonSerializerInternalReader_ReadExtensionDataValue_m1C0B4203A61E1CE7DE6989444667D22D963A4503(__this, L_108, L_109, L_110, /*hidden argument*/NULL);
NullCheck(L_107);
L_107->set_Value_4(L_111);
goto IL_022d;
}
IL_01fb:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_112 = ___reader2;
NullCheck(L_112);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_112, /*hidden argument*/NULL);
goto IL_022d;
}
IL_0203:
{
V_1 = (bool)1;
goto IL_022d;
}
IL_0207:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_113 = ___reader2;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_114 = ___reader2;
NullCheck(L_114);
int32_t L_115;
L_115 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_114);
V_7 = L_115;
RuntimeObject * L_116 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var)), (&V_7));
NullCheck(L_116);
String_t* L_117;
L_117 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_116);
V_7 = *(int32_t*)UnBox(L_116);
String_t* L_118;
L_118 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59AAE90D26AB95D797186FB8118A57880C2A1138)), L_117, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_119;
L_119 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_113, L_118, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_119, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m9CE8CB68B152CC800B7AC51DA41258169FD51C4D_RuntimeMethod_var)));
}
IL_022d:
{
bool L_120 = V_1;
if (L_120)
{
goto IL_023b;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_121 = ___reader2;
NullCheck(L_121);
bool L_122;
L_122 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_121);
if (L_122)
{
goto IL_0008;
}
}
IL_023b:
{
List_1_t7EE065C775D6730C17E63329CAEE50D15274E511 * L_123 = V_0;
return L_123;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadForType(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonContract,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___contract1, bool ___hasConverter2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
bool L_0 = ___hasConverter2;
if (!L_0)
{
goto IL_000a;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader0;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_1);
return L_2;
}
IL_000a:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_3 = ___contract1;
if (L_3)
{
goto IL_0010;
}
}
{
G_B5_0 = 0;
goto IL_0016;
}
IL_0010:
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_4 = ___contract1;
NullCheck(L_4);
int32_t L_5 = L_4->get_InternalReadType_4();
G_B5_0 = ((int32_t)(L_5));
}
IL_0016:
{
V_0 = G_B5_0;
int32_t L_6 = V_0;
switch (L_6)
{
case 0:
{
goto IL_0043;
}
case 1:
{
goto IL_004a;
}
case 2:
{
goto IL_0065;
}
case 3:
{
goto IL_0077;
}
case 4:
{
goto IL_0053;
}
case 5:
{
goto IL_0080;
}
case 6:
{
goto IL_0089;
}
case 7:
{
goto IL_005c;
}
case 8:
{
goto IL_006e;
}
}
}
{
goto IL_0092;
}
IL_0043:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_7 = ___reader0;
NullCheck(L_7);
bool L_8;
L_8 = JsonReader_ReadAndMoveToContent_mB9655D1A21835B0C037DD7495FF44EAF13B0E2C7(L_7, /*hidden argument*/NULL);
return L_8;
}
IL_004a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_9 = ___reader0;
NullCheck(L_9);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_10;
L_10 = VirtualFuncInvoker0< Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 >::Invoke(13 /* System.Nullable`1<System.Int32> Vuforia.Newtonsoft.Json.JsonReader::ReadAsInt32() */, L_9);
goto IL_0098;
}
IL_0053:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_11 = ___reader0;
NullCheck(L_11);
Nullable_1_tD7EB7EB39E548910812AA4DC702F9C7E3E84A84E L_12;
L_12 = VirtualFuncInvoker0< Nullable_1_tD7EB7EB39E548910812AA4DC702F9C7E3E84A84E >::Invoke(18 /* System.Nullable`1<System.Decimal> Vuforia.Newtonsoft.Json.JsonReader::ReadAsDecimal() */, L_11);
goto IL_0098;
}
IL_005c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_13 = ___reader0;
NullCheck(L_13);
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_14;
L_14 = VirtualFuncInvoker0< Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 >::Invoke(16 /* System.Nullable`1<System.Double> Vuforia.Newtonsoft.Json.JsonReader::ReadAsDouble() */, L_13);
goto IL_0098;
}
IL_0065:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_15 = ___reader0;
NullCheck(L_15);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16;
L_16 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(15 /* System.Byte[] Vuforia.Newtonsoft.Json.JsonReader::ReadAsBytes() */, L_15);
goto IL_0098;
}
IL_006e:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_17 = ___reader0;
NullCheck(L_17);
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_18;
L_18 = VirtualFuncInvoker0< Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 >::Invoke(17 /* System.Nullable`1<System.Boolean> Vuforia.Newtonsoft.Json.JsonReader::ReadAsBoolean() */, L_17);
goto IL_0098;
}
IL_0077:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_19 = ___reader0;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(14 /* System.String Vuforia.Newtonsoft.Json.JsonReader::ReadAsString() */, L_19);
goto IL_0098;
}
IL_0080:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_21 = ___reader0;
NullCheck(L_21);
Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D L_22;
L_22 = VirtualFuncInvoker0< Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D >::Invoke(19 /* System.Nullable`1<System.DateTime> Vuforia.Newtonsoft.Json.JsonReader::ReadAsDateTime() */, L_21);
goto IL_0098;
}
IL_0089:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_23 = ___reader0;
NullCheck(L_23);
Nullable_1_t862AD0841486B81E2FD6C56B0467C57F00E804C7 L_24;
L_24 = VirtualFuncInvoker0< Nullable_1_t862AD0841486B81E2FD6C56B0467C57F00E804C7 >::Invoke(20 /* System.Nullable`1<System.DateTimeOffset> Vuforia.Newtonsoft.Json.JsonReader::ReadAsDateTimeOffset() */, L_23);
goto IL_0098;
}
IL_0092:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_25 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m81CEEF1FCB5EFBBAA39071F48BCFBC16AED0C915(L_25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5_RuntimeMethod_var)));
}
IL_0098:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_26 = ___reader0;
NullCheck(L_26);
int32_t L_27;
L_27 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_26);
return (bool)((!(((uint32_t)L_27) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewObject(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_CreateNewObject_mD9BBCC02F1FE14D85F8DAE3035E3D71768A24DC0 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___objectContract1, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerMember2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___containerProperty3, String_t* ___id4, bool* ___createdFromNonDefaultCreator5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
V_0 = NULL;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_0 = ___objectContract1;
NullCheck(L_0);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_1;
L_1 = JsonObjectContract_get_OverrideCreator_m3C924990EDB91D2E45A45018864B0AEBBD2AE9CD_inline(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0042;
}
}
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_2 = ___objectContract1;
NullCheck(L_2);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_3;
L_3 = JsonObjectContract_get_CreatorParameters_mC96781B33DCEF017375CE78720E992EA8FC1AB3F(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
int32_t L_4;
L_4 = Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E(L_3, /*hidden argument*/Collection_1_get_Count_m22E2B01CB6F73627F21B809BD405689552EBDE1E_RuntimeMethod_var);
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_002e;
}
}
{
bool* L_5 = ___createdFromNonDefaultCreator5;
*((int8_t*)L_5) = (int8_t)1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_6 = ___reader0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_7 = ___objectContract1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_8 = ___containerMember2;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_9 = ___objectContract1;
NullCheck(L_9);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_10;
L_10 = JsonObjectContract_get_OverrideCreator_m3C924990EDB91D2E45A45018864B0AEBBD2AE9CD_inline(L_9, /*hidden argument*/NULL);
String_t* L_11 = ___id4;
RuntimeObject * L_12;
L_12 = JsonSerializerInternalReader_CreateObjectUsingCreatorWithParameters_m8CADCDE361EAA8AAC0AC6E8A53ED6FA0C26ADDFB(__this, L_6, L_7, L_8, L_10, L_11, /*hidden argument*/NULL);
return L_12;
}
IL_002e:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_13 = ___objectContract1;
NullCheck(L_13);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_14;
L_14 = JsonObjectContract_get_OverrideCreator_m3C924990EDB91D2E45A45018864B0AEBBD2AE9CD_inline(L_13, /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)0);
NullCheck(L_14);
RuntimeObject * L_16;
L_16 = ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C(L_14, L_15, /*hidden argument*/ObjectConstructor_1_Invoke_m8C6DF23FDCF86F1990FB778BFE5F15C2D46F250C_RuntimeMethod_var);
V_0 = L_16;
goto IL_0094;
}
IL_0042:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_17 = ___objectContract1;
NullCheck(L_17);
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_18;
L_18 = JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline(L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0076;
}
}
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_19 = ___objectContract1;
NullCheck(L_19);
bool L_20;
L_20 = JsonContract_get_DefaultCreatorNonPublic_m9DF668CB05F4CED0C01F748CDA35963DAEA6083F_inline(L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0068;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_21 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_21);
int32_t L_22 = L_21->get__constructorHandling_8();
if ((((int32_t)L_22) == ((int32_t)1)))
{
goto IL_0068;
}
}
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_23 = ___objectContract1;
NullCheck(L_23);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_24;
L_24 = JsonObjectContract_get_ParameterizedCreator_mF2F01EC69F33384A620BD4CCD6DC81D479185598_inline(L_23, /*hidden argument*/NULL);
if (L_24)
{
goto IL_0076;
}
}
IL_0068:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_25 = ___objectContract1;
NullCheck(L_25);
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_26;
L_26 = JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline(L_25, /*hidden argument*/NULL);
NullCheck(L_26);
RuntimeObject * L_27;
L_27 = Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701(L_26, /*hidden argument*/Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_RuntimeMethod_var);
V_0 = L_27;
goto IL_0094;
}
IL_0076:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_28 = ___objectContract1;
NullCheck(L_28);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_29;
L_29 = JsonObjectContract_get_ParameterizedCreator_mF2F01EC69F33384A620BD4CCD6DC81D479185598_inline(L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_0094;
}
}
{
bool* L_30 = ___createdFromNonDefaultCreator5;
*((int8_t*)L_30) = (int8_t)1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_31 = ___reader0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_32 = ___objectContract1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_33 = ___containerMember2;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_34 = ___objectContract1;
NullCheck(L_34);
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_35;
L_35 = JsonObjectContract_get_ParameterizedCreator_mF2F01EC69F33384A620BD4CCD6DC81D479185598_inline(L_34, /*hidden argument*/NULL);
String_t* L_36 = ___id4;
RuntimeObject * L_37;
L_37 = JsonSerializerInternalReader_CreateObjectUsingCreatorWithParameters_m8CADCDE361EAA8AAC0AC6E8A53ED6FA0C26ADDFB(__this, L_31, L_32, L_33, L_35, L_36, /*hidden argument*/NULL);
return L_37;
}
IL_0094:
{
RuntimeObject * L_38 = V_0;
if (L_38)
{
goto IL_00d7;
}
}
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_39 = ___objectContract1;
NullCheck(L_39);
bool L_40 = ((JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)L_39)->get_IsInstantiable_8();
if (L_40)
{
goto IL_00bb;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_41 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_42;
L_42 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_43 = ___objectContract1;
NullCheck(L_43);
Type_t * L_44;
L_44 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_43, /*hidden argument*/NULL);
String_t* L_45;
L_45 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1AB53659FE30FD798C42B2EE484D281FF6C0EC43)), L_42, L_44, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_46;
L_46 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_41, L_45, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateNewObject_mD9BBCC02F1FE14D85F8DAE3035E3D71768A24DC0_RuntimeMethod_var)));
}
IL_00bb:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_47 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_48;
L_48 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_49 = ___objectContract1;
NullCheck(L_49);
Type_t * L_50;
L_50 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_49, /*hidden argument*/NULL);
String_t* L_51;
L_51 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30E1C2C9FEE07DA6978797C6C97BFFBF823DFA55)), L_48, L_50, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_52;
L_52 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_47, L_51, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_52, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_CreateNewObject_mD9BBCC02F1FE14D85F8DAE3035E3D71768A24DC0_RuntimeMethod_var)));
}
IL_00d7:
{
bool* L_53 = ___createdFromNonDefaultCreator5;
*((int8_t*)L_53) = (int8_t)0;
RuntimeObject * L_54 = V_0;
return L_54;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateObject(System.Object,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject * ___newObject0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract2, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member3, String_t* ___id4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m1898A011255BD54A3F696DE2D486C51C96E47ED5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToDictionary_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisPropertyPresence_tE5B047BC0A04B238D59B572B5A704F5318A90A6B_m5C1EE5851C3D9A15081274ABFA50DA24494D2F33_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m2768168018C781F46BAD0CF6983FE8A80E80DCB9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m697A3AA9E4E62D7197D00C3D0F357C09F4C46B54_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m157F0F75082A445F2ED1105ED4909524C29020A7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m53A02ABD52B5A765CA1FB9BEB69D861B4402E34F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m7A62CE76198D4B225C82B5BFD112FE8C73738104_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m0DC7AE685FF1C2F7E0038363668B9D3583474471_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m0D17F179802CEE9674FCB335B47210AEFE7C36A7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CPopulateObjectU3Eb__39_0_m7B5E19EA7638DA4B6F54ECF33AF494D732BA902C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CPopulateObjectU3Eb__39_1_m6FD64536C62B0B8E4C25D3A773A7A68F4B7AE895_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral826438A672612091F3BC5B6DF6F787E2854B5885);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443);
s_Il2CppMethodInitialized = true;
}
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
String_t* V_4 = NULL;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * V_5 = NULL;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * V_6 = NULL;
Exception_t * V_7 = NULL;
int32_t V_8 = 0;
Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 V_9;
memset((&V_9), 0, sizeof(V_9));
KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E V_10;
memset((&V_10), 0, sizeof(V_10));
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * V_11 = NULL;
int32_t V_12 = 0;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 6> __leave_targets;
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * G_B8_0 = NULL;
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * G_B5_0 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B5_1 = NULL;
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * G_B4_0 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B4_1 = NULL;
Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * G_B7_0 = NULL;
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * G_B7_1 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B7_2 = NULL;
Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * G_B6_0 = NULL;
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * G_B6_1 = NULL;
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * G_B6_2 = NULL;
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_0 = ___reader1;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_1 = ___contract2;
RuntimeObject * L_2 = ___newObject0;
JsonSerializerInternalReader_OnDeserializing_m6BEC46D2383AA5B7E2B1064E2683A2ADF324CA02(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_3 = ___contract2;
NullCheck(L_3);
bool L_4;
L_4 = JsonObjectContract_get_HasRequiredOrDefaultValueProperties_mF1D94987A10AF9F32697809B825D695EFC90DC39(L_3, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0028;
}
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_5 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_5);
int32_t L_6 = L_5->get__defaultValueHandling_7();
bool L_7;
L_7 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_6, 2, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0028;
}
}
{
G_B8_0 = ((Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 *)(NULL));
goto IL_0071;
}
IL_0028:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_8 = ___contract2;
NullCheck(L_8);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_9;
L_9 = JsonObjectContract_get_Properties_m199B76032C42E8560001FCFE7741F5DD64988CBA_inline(L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * L_10 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9__39_0_3();
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * L_11 = L_10;
G_B4_0 = L_11;
G_B4_1 = L_9;
if (L_11)
{
G_B5_0 = L_11;
G_B5_1 = L_9;
goto IL_004d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 * L_12 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * L_13 = (Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 *)il2cpp_codegen_object_new(Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665_il2cpp_TypeInfo_var);
Func_2__ctor_m53A02ABD52B5A765CA1FB9BEB69D861B4402E34F(L_13, L_12, (intptr_t)((intptr_t)U3CU3Ec_U3CPopulateObjectU3Eb__39_0_m7B5E19EA7638DA4B6F54ECF33AF494D732BA902C_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m53A02ABD52B5A765CA1FB9BEB69D861B4402E34F_RuntimeMethod_var);
Func_2_tECD562EE5CCD3B4302017E013AF81584E79A1665 * L_14 = L_13;
((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->set_U3CU3E9__39_0_3(L_14);
G_B5_0 = L_14;
G_B5_1 = G_B4_1;
}
IL_004d:
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * L_15 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9__39_1_4();
Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * L_16 = L_15;
G_B6_0 = L_16;
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
if (L_16)
{
G_B7_0 = L_16;
G_B7_1 = G_B5_0;
G_B7_2 = G_B5_1;
goto IL_006c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var);
U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486 * L_17 = ((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * L_18 = (Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 *)il2cpp_codegen_object_new(Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69_il2cpp_TypeInfo_var);
Func_2__ctor_m7A62CE76198D4B225C82B5BFD112FE8C73738104(L_18, L_17, (intptr_t)((intptr_t)U3CU3Ec_U3CPopulateObjectU3Eb__39_1_m6FD64536C62B0B8E4C25D3A773A7A68F4B7AE895_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m7A62CE76198D4B225C82B5BFD112FE8C73738104_RuntimeMethod_var);
Func_2_tC00BAC3FD95FFCCE89DEE4C7B3919B9385D6FC69 * L_19 = L_18;
((U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t50BCEBBB441FBE9096ECB46D9416000E436EB486_il2cpp_TypeInfo_var))->set_U3CU3E9__39_1_4(L_19);
G_B7_0 = L_19;
G_B7_1 = G_B6_1;
G_B7_2 = G_B6_2;
}
IL_006c:
{
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * L_20;
L_20 = Enumerable_ToDictionary_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisPropertyPresence_tE5B047BC0A04B238D59B572B5A704F5318A90A6B_m5C1EE5851C3D9A15081274ABFA50DA24494D2F33(G_B7_2, G_B7_1, G_B7_0, /*hidden argument*/Enumerable_ToDictionary_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisJsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574_TisPropertyPresence_tE5B047BC0A04B238D59B572B5A704F5318A90A6B_m5C1EE5851C3D9A15081274ABFA50DA24494D2F33_RuntimeMethod_var);
G_B8_0 = L_20;
}
IL_0071:
{
V_0 = G_B8_0;
String_t* L_21 = ___id4;
if (!L_21)
{
goto IL_0080;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_22 = ___reader1;
String_t* L_23 = ___id4;
RuntimeObject * L_24 = ___newObject0;
JsonSerializerInternalReader_AddReference_m68B9FD0AC24F28B30BC3CD320C0E6E908EEF16FB(__this, L_22, L_23, L_24, /*hidden argument*/NULL);
}
IL_0080:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_25 = ___reader1;
NullCheck(L_25);
int32_t L_26;
L_26 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 Vuforia.Newtonsoft.Json.JsonReader::get_Depth() */, L_25);
V_1 = L_26;
V_2 = (bool)0;
}
IL_0089:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_27 = ___reader1;
NullCheck(L_27);
int32_t L_28;
L_28 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_27);
V_3 = L_28;
int32_t L_29 = V_3;
if ((((int32_t)L_29) == ((int32_t)4)))
{
goto IL_00a8;
}
}
{
int32_t L_30 = V_3;
if ((((int32_t)L_30) == ((int32_t)5)))
{
goto IL_0295;
}
}
{
int32_t L_31 = V_3;
if ((((int32_t)L_31) == ((int32_t)((int32_t)13))))
{
goto IL_026b;
}
}
{
goto IL_026f;
}
IL_00a8:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_32 = ___reader1;
NullCheck(L_32);
RuntimeObject * L_33;
L_33 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_32);
NullCheck(L_33);
String_t* L_34;
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33);
V_4 = L_34;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_35 = ___reader1;
String_t* L_36 = V_4;
bool L_37;
L_37 = JsonSerializerInternalReader_CheckPropertyName_mBA4F67098EA96B1D3E426B37BB81D7DAAA2D0809(__this, L_35, L_36, /*hidden argument*/NULL);
if (L_37)
{
goto IL_0295;
}
}
{
}
IL_00c4:
try
{// begin try (depth: 1)
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_38 = ___contract2;
NullCheck(L_38);
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_39;
L_39 = JsonObjectContract_get_Properties_m199B76032C42E8560001FCFE7741F5DD64988CBA_inline(L_38, /*hidden argument*/NULL);
String_t* L_40 = V_4;
NullCheck(L_39);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_41;
L_41 = JsonPropertyCollection_GetClosestMatchProperty_mECA3B93B882465AC4C9A6BB05786365943825E0F(L_39, L_40, /*hidden argument*/NULL);
V_5 = L_41;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_42 = V_5;
if (L_42)
{
goto IL_0175;
}
}
IL_00da:
{
RuntimeObject* L_43 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_43)
{
goto IL_0125;
}
}
IL_00e2:
{
RuntimeObject* L_44 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_44);
int32_t L_45;
L_45 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_44);
if ((((int32_t)L_45) < ((int32_t)4)))
{
goto IL_0125;
}
}
IL_00f0:
{
RuntimeObject* L_46 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_47 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_48 = ___reader1;
NullCheck(L_48);
String_t* L_49;
L_49 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_48);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_50;
L_50 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_51 = V_4;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_52 = ___contract2;
NullCheck(L_52);
Type_t * L_53;
L_53 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_52, /*hidden argument*/NULL);
String_t* L_54;
L_54 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(_stringLiteral826438A672612091F3BC5B6DF6F787E2854B5885, L_50, L_51, L_53, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_55;
L_55 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8(((RuntimeObject*)IsInst((RuntimeObject*)L_47, IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)), L_49, L_54, /*hidden argument*/NULL);
NullCheck(L_46);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_46, 4, L_55, (Exception_t *)NULL);
}
IL_0125:
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_56 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_56);
int32_t L_57 = L_56->get__missingMemberHandling_4();
if ((!(((uint32_t)L_57) == ((uint32_t)1))))
{
goto IL_0156;
}
}
IL_0133:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_58 = ___reader1;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_59;
L_59 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_60 = V_4;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_61 = ___contract2;
NullCheck(L_61);
Type_t * L_62;
L_62 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_61, /*hidden argument*/NULL);
NullCheck(L_62);
String_t* L_63;
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_62);
String_t* L_64;
L_64 = StringUtils_FormatWith_m742341299793755AC98E228DB7F8F23F9C0D43F1(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA32663807A568FB91925525AAFB75C7656184AAD)), L_59, L_60, L_63, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_65;
L_65 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_58, L_64, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5_RuntimeMethod_var)));
}
IL_0156:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_66 = ___reader1;
NullCheck(L_66);
bool L_67;
L_67 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_66);
if (L_67)
{
goto IL_0163;
}
}
IL_015e:
{
goto IL_0295;
}
IL_0163:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_68 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_69 = ___member3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_70 = ___reader1;
String_t* L_71 = V_4;
RuntimeObject * L_72 = ___newObject0;
JsonSerializerInternalReader_SetExtensionData_m384D01058E7D604A21369BA6679D44C12BB61D40(__this, L_68, L_69, L_70, L_71, L_72, /*hidden argument*/NULL);
goto IL_0295;
}
IL_0175:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_73 = V_5;
NullCheck(L_73);
bool L_74;
L_74 = JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline(L_73, /*hidden argument*/NULL);
if (L_74)
{
goto IL_018a;
}
}
IL_017e:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_75 = ___reader1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_76 = V_5;
RuntimeObject * L_77 = ___newObject0;
bool L_78;
L_78 = JsonSerializerInternalReader_ShouldDeserialize_m5F1BCE5806AEE432C758CA3C10E1BE18740C739E(__this, L_75, L_76, L_77, /*hidden argument*/NULL);
if (L_78)
{
goto IL_01b3;
}
}
IL_018a:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_79 = ___reader1;
NullCheck(L_79);
bool L_80;
L_80 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_79);
if (L_80)
{
goto IL_0197;
}
}
IL_0192:
{
goto IL_0295;
}
IL_0197:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_81 = ___reader1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_82 = V_5;
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * L_83 = V_0;
JsonSerializerInternalReader_SetPropertyPresence_m394F62F927D2354E1CBF119E7B9FCCE82E09E9F1(__this, L_81, L_82, L_83, /*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_84 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_85 = ___member3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_86 = ___reader1;
String_t* L_87 = V_4;
RuntimeObject * L_88 = ___newObject0;
JsonSerializerInternalReader_SetExtensionData_m384D01058E7D604A21369BA6679D44C12BB61D40(__this, L_84, L_85, L_86, L_87, L_88, /*hidden argument*/NULL);
goto IL_023e;
}
IL_01b3:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_89 = V_5;
NullCheck(L_89);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_90;
L_90 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_89, /*hidden argument*/NULL);
if (L_90)
{
goto IL_01d0;
}
}
IL_01bc:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_91 = V_5;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_92 = V_5;
NullCheck(L_92);
Type_t * L_93;
L_93 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_92, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_94;
L_94 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_93, /*hidden argument*/NULL);
NullCheck(L_91);
JsonProperty_set_PropertyContract_m5D1ABC8446CDAB8EB9D58BBB2796506EA50BCB00_inline(L_91, L_94, /*hidden argument*/NULL);
}
IL_01d0:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_95 = V_5;
NullCheck(L_95);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_96;
L_96 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_95, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_97 = V_5;
NullCheck(L_97);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_98;
L_98 = JsonProperty_get_MemberConverter_m715ABD6F88B92DE7212E9BF1399D10B2ECC09EC2_inline(L_97, /*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_99 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_100 = ___member3;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_101;
L_101 = JsonSerializerInternalReader_GetConverter_m7950A19A8B232EE8CB0EB8D86ABD45D5CBED3C36(__this, L_96, L_98, L_99, L_100, /*hidden argument*/NULL);
V_6 = L_101;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_102 = ___reader1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_103 = V_5;
NullCheck(L_103);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_104;
L_104 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_103, /*hidden argument*/NULL);
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_105 = V_6;
bool L_106;
L_106 = JsonSerializerInternalReader_ReadForType_m49467C83CBF27897607108B01F78F8FEDFEEE4B5(__this, L_102, L_104, (bool)((!(((RuntimeObject*)(JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C *)L_105) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL);
if (L_106)
{
goto IL_0216;
}
}
IL_01fe:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_107 = ___reader1;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_108;
L_108 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_109 = V_4;
String_t* L_110;
L_110 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF32EC47E8782F454C25DF702A5E68A56E0E2D422)), L_108, L_109, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_111;
L_111 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_107, L_110, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_111, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5_RuntimeMethod_var)));
}
IL_0216:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_112 = ___reader1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_113 = V_5;
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * L_114 = V_0;
JsonSerializerInternalReader_SetPropertyPresence_m394F62F927D2354E1CBF119E7B9FCCE82E09E9F1(__this, L_112, L_113, L_114, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_115 = V_5;
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_116 = V_6;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_117 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_118 = ___member3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_119 = ___reader1;
RuntimeObject * L_120 = ___newObject0;
bool L_121;
L_121 = JsonSerializerInternalReader_SetPropertyValue_m52DD932CDB67236E3E199592EC63C48C1057D100(__this, L_115, L_116, L_117, L_118, L_119, L_120, /*hidden argument*/NULL);
if (L_121)
{
goto IL_023e;
}
}
IL_0231:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_122 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_123 = ___member3;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_124 = ___reader1;
String_t* L_125 = V_4;
RuntimeObject * L_126 = ___newObject0;
JsonSerializerInternalReader_SetExtensionData_m384D01058E7D604A21369BA6679D44C12BB61D40(__this, L_122, L_123, L_124, L_125, L_126, /*hidden argument*/NULL);
}
IL_023e:
{
goto IL_0295;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0240;
}
throw e;
}
CATCH_0240:
{// begin catch(System.Exception)
{
V_7 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
RuntimeObject * L_127 = ___newObject0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_128 = ___contract2;
String_t* L_129 = V_4;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_130 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_131 = ___reader1;
NullCheck(L_131);
String_t* L_132;
L_132 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_131);
Exception_t * L_133 = V_7;
bool L_134;
L_134 = JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C(__this, L_127, L_128, L_129, ((RuntimeObject*)IsInst((RuntimeObject*)L_130, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)))), L_132, L_133, /*hidden argument*/NULL);
if (!L_134)
{
goto IL_0267;
}
}
IL_025c:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_135 = ___reader1;
int32_t L_136 = V_1;
JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A(__this, L_135, (bool)1, L_136, /*hidden argument*/NULL);
goto IL_0269;
}
IL_0267:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5_RuntimeMethod_var)));
}
IL_0269:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0295;
}
}// end catch (depth: 1)
IL_026b:
{
V_2 = (bool)1;
goto IL_0295;
}
IL_026f:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_137 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_138 = ___reader1;
NullCheck(L_138);
int32_t L_139;
L_139 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_138);
V_8 = L_139;
RuntimeObject * L_140 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonToken_t832B106A6BE566FB62B7E9C75ED3F58BFAA8CFCD_il2cpp_TypeInfo_var)), (&V_8));
NullCheck(L_140);
String_t* L_141;
L_141 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_140);
V_8 = *(int32_t*)UnBox(L_140);
String_t* L_142;
L_142 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59AAE90D26AB95D797186FB8118A57880C2A1138)), L_141, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_143;
L_143 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_137, L_142, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_143, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_PopulateObject_m553F547E97F33CA9B69CC11FBBACC79E19E5D7E5_RuntimeMethod_var)));
}
IL_0295:
{
bool L_144 = V_2;
if (L_144)
{
goto IL_02a3;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_145 = ___reader1;
NullCheck(L_145);
bool L_146;
L_146 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_145);
if (L_146)
{
goto IL_0089;
}
}
IL_02a3:
{
bool L_147 = V_2;
if (L_147)
{
goto IL_02b4;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_148 = ___reader1;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_149 = ___contract2;
RuntimeObject * L_150 = ___newObject0;
JsonSerializerInternalReader_ThrowUnexpectedEndException_m12518830CD20F8766182A0794173168CA3CC378A(__this, L_148, L_149, L_150, _stringLiteralA0BCC53BF7797154DACFC269A8F1FC7A7D6F1443, /*hidden argument*/NULL);
}
IL_02b4:
{
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * L_151 = V_0;
if (!L_151)
{
goto IL_0304;
}
}
{
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * L_152 = V_0;
NullCheck(L_152);
Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 L_153;
L_153 = Dictionary_2_GetEnumerator_m1898A011255BD54A3F696DE2D486C51C96E47ED5(L_152, /*hidden argument*/Dictionary_2_GetEnumerator_m1898A011255BD54A3F696DE2D486C51C96E47ED5_RuntimeMethod_var);
V_9 = L_153;
}
IL_02bf:
try
{// begin try (depth: 1)
{
goto IL_02eb;
}
IL_02c1:
{
KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E L_154;
L_154 = Enumerator_get_Current_m157F0F75082A445F2ED1105ED4909524C29020A7_inline((Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 *)(&V_9), /*hidden argument*/Enumerator_get_Current_m157F0F75082A445F2ED1105ED4909524C29020A7_RuntimeMethod_var);
V_10 = L_154;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_155;
L_155 = KeyValuePair_2_get_Key_m0DC7AE685FF1C2F7E0038363668B9D3583474471_inline((KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E *)(&V_10), /*hidden argument*/KeyValuePair_2_get_Key_m0DC7AE685FF1C2F7E0038363668B9D3583474471_RuntimeMethod_var);
V_11 = L_155;
int32_t L_156;
L_156 = KeyValuePair_2_get_Value_m0D17F179802CEE9674FCB335B47210AEFE7C36A7_inline((KeyValuePair_2_t56E0BC7EAB0A407BDFFACA20CEBECD63FBF3089E *)(&V_10), /*hidden argument*/KeyValuePair_2_get_Value_m0D17F179802CEE9674FCB335B47210AEFE7C36A7_RuntimeMethod_var);
V_12 = L_156;
RuntimeObject * L_157 = ___newObject0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_158 = ___reader1;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_159 = ___contract2;
int32_t L_160 = V_1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_161 = V_11;
int32_t L_162 = V_12;
JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC(__this, L_157, L_158, L_159, L_160, L_161, L_162, (bool)1, /*hidden argument*/NULL);
}
IL_02eb:
{
bool L_163;
L_163 = Enumerator_MoveNext_m697A3AA9E4E62D7197D00C3D0F357C09F4C46B54((Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 *)(&V_9), /*hidden argument*/Enumerator_MoveNext_m697A3AA9E4E62D7197D00C3D0F357C09F4C46B54_RuntimeMethod_var);
if (L_163)
{
goto IL_02c1;
}
}
IL_02f4:
{
IL2CPP_LEAVE(0x304, FINALLY_02f6);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_02f6;
}
FINALLY_02f6:
{// begin finally (depth: 1)
Enumerator_Dispose_m2768168018C781F46BAD0CF6983FE8A80E80DCB9((Enumerator_tE567DA489937FA243B4BC36730289D99A00B40C6 *)(&V_9), /*hidden argument*/Enumerator_Dispose_m2768168018C781F46BAD0CF6983FE8A80E80DCB9_RuntimeMethod_var);
IL2CPP_END_FINALLY(758)
}// end finally (depth: 1)
IL2CPP_CLEANUP(758)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x304, IL_0304)
}
IL_0304:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_164 = ___reader1;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_165 = ___contract2;
RuntimeObject * L_166 = ___newObject0;
JsonSerializerInternalReader_OnDeserialized_m0D0EB15699E6D398A579F89312DFA074E4A600FD(__this, L_164, L_165, L_166, /*hidden argument*/NULL);
RuntimeObject * L_167 = ___newObject0;
return L_167;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldDeserialize(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_ShouldDeserialize_m5F1BCE5806AEE432C758CA3C10E1BE18740C739E (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property1, RuntimeObject * ___target2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_Invoke_m9D3C9A756002DA052F4A0129DFF1DA165D7FE913_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A3D36BBA91B774B57A5FDA3FC20C586EA25BA2D);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_0 = ___property1;
NullCheck(L_0);
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * L_1;
L_1 = JsonProperty_get_ShouldDeserialize_m41EEE69A5784AC86C838059F4CE4C8EF91F8CEC3_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_2 = ___property1;
NullCheck(L_2);
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * L_3;
L_3 = JsonProperty_get_ShouldDeserialize_m41EEE69A5784AC86C838059F4CE4C8EF91F8CEC3_inline(L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = ___target2;
NullCheck(L_3);
bool L_5;
L_5 = Predicate_1_Invoke_m9D3C9A756002DA052F4A0129DFF1DA165D7FE913(L_3, L_4, /*hidden argument*/Predicate_1_Invoke_m9D3C9A756002DA052F4A0129DFF1DA165D7FE913_RuntimeMethod_var);
V_0 = L_5;
RuntimeObject* L_6 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
if (!L_6)
{
goto IL_0067;
}
}
{
RuntimeObject* L_7 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
NullCheck(L_7);
int32_t L_8;
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* Vuforia.Newtonsoft.Json.TraceLevel Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter() */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_7);
if ((((int32_t)L_8) < ((int32_t)4)))
{
goto IL_0067;
}
}
{
RuntimeObject* L_9 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_TraceWriter_3();
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10 = ___reader0;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_10);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_12;
L_12 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_13 = ___property1;
NullCheck(L_13);
String_t* L_14;
L_14 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_13, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_15 = ___property1;
NullCheck(L_15);
Type_t * L_16;
L_16 = JsonProperty_get_DeclaringType_mB0F57AF599AA388A2B92C6B5954B8C54726A6BCC_inline(L_15, /*hidden argument*/NULL);
bool L_17 = V_0;
bool L_18 = L_17;
RuntimeObject * L_19 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_18);
String_t* L_20;
L_20 = StringUtils_FormatWith_m68DE5E1A596A265BE77EF5A312E80985EC1B32D9(_stringLiteral7A3D36BBA91B774B57A5FDA3FC20C586EA25BA2D, L_12, L_14, L_16, L_19, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_tB304346999D8C8A491AB7CE66D17873B3479F2FD_il2cpp_TypeInfo_var);
String_t* L_21;
L_21 = JsonPosition_FormatMessage_m47EB828E85BB303B76ADC74679B4684DD81575B8((RuntimeObject*)NULL, L_11, L_20, /*hidden argument*/NULL);
NullCheck(L_9);
InterfaceActionInvoker3< int32_t, String_t*, Exception_t * >::Invoke(1 /* System.Void Vuforia.Newtonsoft.Json.Serialization.ITraceWriter::Trace(Vuforia.Newtonsoft.Json.TraceLevel,System.String,System.Exception) */, ITraceWriter_t81326ED706F1FF6FFB941CD1D4FEA78D230A9DDB_il2cpp_TypeInfo_var, L_9, 4, L_21, (Exception_t *)NULL);
}
IL_0067:
{
bool L_22 = V_0;
return L_22;
}
}
// System.Boolean Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CheckPropertyName(Vuforia.Newtonsoft.Json.JsonReader,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonSerializerInternalReader_CheckPropertyName_mBA4F67098EA96B1D3E426B37BB81D7DAAA2D0809 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, String_t* ___memberName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11F941DFBA062769D6F047F85D846335446DFB0E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1298EC2264C4F9A0D3A04140873D9D01F481050B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382);
s_Il2CppMethodInitialized = true;
}
{
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_0 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(32 /* Vuforia.Newtonsoft.Json.MetadataPropertyHandling Vuforia.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_004a;
}
}
{
String_t* L_2 = ___memberName1;
bool L_3;
L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteralEA05B74022DC98A669248CD353ADDBD7AADAD4AA, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0042;
}
}
{
String_t* L_4 = ___memberName1;
bool L_5;
L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_4, _stringLiteralF96282F5D84FC9B754994ADCFE65DAE2088A7382, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0042;
}
}
{
String_t* L_6 = ___memberName1;
bool L_7;
L_7 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_6, _stringLiteral11F941DFBA062769D6F047F85D846335446DFB0E, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0042;
}
}
{
String_t* L_8 = ___memberName1;
bool L_9;
L_9 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_8, _stringLiteral1298EC2264C4F9A0D3A04140873D9D01F481050B, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_004a;
}
}
IL_0042:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10 = ___reader0;
NullCheck(L_10);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_10, /*hidden argument*/NULL);
return (bool)1;
}
IL_004a:
{
return (bool)0;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetExtensionData(Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_SetExtensionData_m384D01058E7D604A21369BA6679D44C12BB61D40 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member1, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader2, String_t* ___memberName3, RuntimeObject * ___o4, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_0 = ___contract0;
NullCheck(L_0);
ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * L_1;
L_1 = JsonObjectContract_get_ExtensionDataSetter_m3F50AB8263A9B83DB9BE97EAA2BE3292D911C3D9_inline(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0042;
}
}
IL_0008:
try
{// begin try (depth: 1)
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_2 = ___contract0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_3 = ___member1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader2;
RuntimeObject * L_5;
L_5 = JsonSerializerInternalReader_ReadExtensionDataValue_m1C0B4203A61E1CE7DE6989444667D22D963A4503(__this, L_2, L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_6 = ___contract0;
NullCheck(L_6);
ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * L_7;
L_7 = JsonObjectContract_get_ExtensionDataSetter_m3F50AB8263A9B83DB9BE97EAA2BE3292D911C3D9_inline(L_6, /*hidden argument*/NULL);
RuntimeObject * L_8 = ___o4;
String_t* L_9 = ___memberName3;
RuntimeObject * L_10 = V_0;
NullCheck(L_7);
ExtensionDataSetter_Invoke_mE89234A069241430AE4C699946D4BB9EFFD90680(L_7, L_8, L_9, L_10, /*hidden argument*/NULL);
goto IL_0048;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0024;
}
throw e;
}
CATCH_0024:
{// begin catch(System.Exception)
V_1 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_11 = ___reader2;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_12;
L_12 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_13 = ___contract0;
NullCheck(L_13);
Type_t * L_14;
L_14 = JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline(L_13, /*hidden argument*/NULL);
String_t* L_15;
L_15 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral53652561DEA177633565FE197F2CBF3DCD08AFD2)), L_12, L_14, /*hidden argument*/NULL);
Exception_t * L_16 = V_1;
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_17;
L_17 = JsonSerializationException_Create_m81DB3DADDB025041C9BFA9F077F2E61AF3707747(L_11, L_15, L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_SetExtensionData_m384D01058E7D604A21369BA6679D44C12BB61D40_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0042:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_18 = ___reader2;
NullCheck(L_18);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_18, /*hidden argument*/NULL);
}
IL_0048:
{
return;
}
}
// System.Object Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadExtensionDataValue(Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializerInternalReader_ReadExtensionDataValue_m1C0B4203A61E1CE7DE6989444667D22D963A4503 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___member1, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_0 = ___contract0;
NullCheck(L_0);
bool L_1 = L_0->get_ExtensionDataIsJToken_32();
if (!L_1)
{
goto IL_0011;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader2;
IL2CPP_RUNTIME_CLASS_INIT(JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426_il2cpp_TypeInfo_var);
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_3;
L_3 = JToken_ReadFrom_m7FC077469C84451AE9FCD636565E3E0F5C8FA7E1(L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_001f;
}
IL_0011:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader2;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_5 = ___contract0;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_6 = ___member1;
RuntimeObject * L_7;
L_7 = JsonSerializerInternalReader_CreateValueInternal_m9DD51E288D9FE56CC718F132C60FD3F8D88FB2CD(__this, L_4, (Type_t *)NULL, (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 *)NULL, (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 *)NULL, L_5, L_6, NULL, /*hidden argument*/NULL);
V_0 = L_7;
}
IL_001f:
{
RuntimeObject * L_8 = V_0;
return L_8;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EndProcessProperty(System.Object,Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonObjectContract,System.Int32,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, RuntimeObject * ___newObject0, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader1, JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * ___contract2, int32_t ___initialDepth3, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property4, int32_t ___presence5, bool ___setDefaultValue6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mA3DF7B266E62947143C277E6A616F6913CBE28C1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m11A58E870866616D1A3DFDE1370389594B0FC64C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 V_3;
memset((&V_3), 0, sizeof(V_3));
Exception_t * V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
int32_t G_B6_0 = 0;
{
int32_t L_0 = ___presence5;
if (!L_0)
{
goto IL_000c;
}
}
{
int32_t L_1 = ___presence5;
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_016d;
}
}
IL_000c:
{
}
IL_000d:
try
{// begin try (depth: 1)
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_2 = ___property4;
NullCheck(L_2);
Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED L_3 = L_2->get__required_0();
V_1 = L_3;
bool L_4;
L_4 = Nullable_1_get_HasValue_m11A58E870866616D1A3DFDE1370389594B0FC64C_inline((Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_m11A58E870866616D1A3DFDE1370389594B0FC64C_RuntimeMethod_var);
if (L_4)
{
goto IL_002e;
}
}
IL_001e:
{
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_5 = ___contract2;
NullCheck(L_5);
Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED L_6;
L_6 = JsonObjectContract_get_ItemRequired_m934ECF4E56328FC9A0DB4446FDF08B32D2140F5C_inline(L_5, /*hidden argument*/NULL);
V_2 = L_6;
int32_t L_7;
L_7 = Nullable_1_GetValueOrDefault_mA3DF7B266E62947143C277E6A616F6913CBE28C1_inline((Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED *)(&V_2), /*hidden argument*/Nullable_1_GetValueOrDefault_mA3DF7B266E62947143C277E6A616F6913CBE28C1_RuntimeMethod_var);
G_B6_0 = L_7;
goto IL_0035;
}
IL_002e:
{
int32_t L_8;
L_8 = Nullable_1_GetValueOrDefault_mA3DF7B266E62947143C277E6A616F6913CBE28C1_inline((Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_mA3DF7B266E62947143C277E6A616F6913CBE28C1_RuntimeMethod_var);
G_B6_0 = L_8;
}
IL_0035:
{
V_0 = G_B6_0;
int32_t L_9 = ___presence5;
if (!L_9)
{
goto IL_0047;
}
}
IL_003a:
{
int32_t L_10 = ___presence5;
if ((((int32_t)L_10) == ((int32_t)1)))
{
goto IL_00f8;
}
}
IL_0042:
{
goto IL_013a;
}
IL_0047:
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)1)))
{
goto IL_004f;
}
}
IL_004b:
{
int32_t L_12 = V_0;
if ((!(((uint32_t)L_12) == ((uint32_t)2))))
{
goto IL_006c;
}
}
IL_004f:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_13 = ___reader1;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_14;
L_14 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_15 = ___property4;
NullCheck(L_15);
String_t* L_16;
L_16 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_15, /*hidden argument*/NULL);
String_t* L_17;
L_17 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral010BE521575CBE91F7F54CF892BD7A978E39A25A)), L_14, L_16, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_18;
L_18 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_13, L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC_RuntimeMethod_var)));
}
IL_006c:
{
bool L_19 = ___setDefaultValue6;
if (!L_19)
{
goto IL_013a;
}
}
IL_0073:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_20 = ___property4;
NullCheck(L_20);
bool L_21;
L_21 = JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline(L_20, /*hidden argument*/NULL);
if (L_21)
{
goto IL_013a;
}
}
IL_007f:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_22 = ___property4;
NullCheck(L_22);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_23;
L_23 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_22, /*hidden argument*/NULL);
if (L_23)
{
goto IL_009c;
}
}
IL_0088:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_24 = ___property4;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_25 = ___property4;
NullCheck(L_25);
Type_t * L_26;
L_26 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_25, /*hidden argument*/NULL);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_27;
L_27 = JsonSerializerInternalReader_GetContractSafe_mB986272E86D61A069088C58366BEC88EFE29F1F6(__this, L_26, /*hidden argument*/NULL);
NullCheck(L_24);
JsonProperty_set_PropertyContract_m5D1ABC8446CDAB8EB9D58BBB2796506EA50BCB00_inline(L_24, L_27, /*hidden argument*/NULL);
}
IL_009c:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_28 = ___property4;
NullCheck(L_28);
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_29;
L_29 = JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline(L_28, /*hidden argument*/NULL);
V_3 = L_29;
JsonSerializer_t403A87D50C3EABBA012471B2AC981525F8A38670 * L_30 = ((JsonSerializerInternalBase_t15B3FFDE895C93118D20067F47BA84F1B0C257AC *)__this)->get_Serializer_2();
NullCheck(L_30);
int32_t L_31 = L_30->get__defaultValueHandling_7();
int32_t L_32;
L_32 = Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D((Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 *)(&V_3), L_31, /*hidden argument*/Nullable_1_GetValueOrDefault_mFB5866993E94C6C420EF5AB06B007255280A2C7D_RuntimeMethod_var);
bool L_33;
L_33 = JsonSerializerInternalReader_HasFlag_m46040EDC1DD358067106A8AAEB8DA49315F9F1FC(__this, L_32, 2, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_013a;
}
}
IL_00bf:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_34 = ___property4;
NullCheck(L_34);
bool L_35;
L_35 = JsonProperty_get_Writable_mCFD17FFBF783AF8F090A391FBAE37088FB9529C1_inline(L_34, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_013a;
}
}
IL_00c8:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_36 = ___property4;
NullCheck(L_36);
RuntimeObject* L_37;
L_37 = JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline(L_36, /*hidden argument*/NULL);
RuntimeObject * L_38 = ___newObject0;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_39 = ___reader1;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_40 = ___property4;
NullCheck(L_40);
RuntimeObject * L_41;
L_41 = JsonProperty_GetResolvedDefaultValue_mEFBDF54ABD268FC1B4B8310641A7A1A982D0A443(L_40, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_42;
L_42 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_43 = ___property4;
NullCheck(L_43);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_44;
L_44 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_43, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_45 = ___property4;
NullCheck(L_45);
Type_t * L_46;
L_46 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_45, /*hidden argument*/NULL);
RuntimeObject * L_47;
L_47 = JsonSerializerInternalReader_EnsureType_m9DED01C98DB63D3FF896FB08728F2F4F9EC4C06B(__this, L_39, L_41, L_42, L_44, L_46, /*hidden argument*/NULL);
NullCheck(L_37);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Void Vuforia.Newtonsoft.Json.Serialization.IValueProvider::SetValue(System.Object,System.Object) */, IValueProvider_tC839834D2FF483AF7D63516B5F3945E82EDC70B3_il2cpp_TypeInfo_var, L_37, L_38, L_47);
goto IL_013a;
}
IL_00f8:
{
int32_t L_48 = V_0;
if ((!(((uint32_t)L_48) == ((uint32_t)2))))
{
goto IL_0119;
}
}
IL_00fc:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_49 = ___reader1;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_50;
L_50 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_51 = ___property4;
NullCheck(L_51);
String_t* L_52;
L_52 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_51, /*hidden argument*/NULL);
String_t* L_53;
L_53 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8C800344B86B72313ADC8BF6108C4ABC7BED787A)), L_50, L_52, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_54;
L_54 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_49, L_53, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_54, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC_RuntimeMethod_var)));
}
IL_0119:
{
int32_t L_55 = V_0;
if ((!(((uint32_t)L_55) == ((uint32_t)3))))
{
goto IL_013a;
}
}
IL_011d:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_56 = ___reader1;
IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var)));
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_57;
L_57 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_58 = ___property4;
NullCheck(L_58);
String_t* L_59;
L_59 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_58, /*hidden argument*/NULL);
String_t* L_60;
L_60 = StringUtils_FormatWith_mC6E4EF5568ADB813CE621E0A082B9F3851C48667(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9ADF661B6726FA08EA0DC9349348E697A9F8CA8B)), L_57, L_59, /*hidden argument*/NULL);
JsonSerializationException_t6D83516E99C9CE82ECE6449BF4D4C93DA6C66E07 * L_61;
L_61 = JsonSerializationException_Create_mFEDA38C1D7CB992FE351E4B48F4899B0FAA61A3E(L_56, L_60, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC_RuntimeMethod_var)));
}
IL_013a:
{
goto IL_016d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_013c;
}
throw e;
}
CATCH_013c:
{// begin catch(System.Exception)
{
V_4 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *));
RuntimeObject * L_62 = ___newObject0;
JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * L_63 = ___contract2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_64 = ___property4;
NullCheck(L_64);
String_t* L_65;
L_65 = JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline(L_64, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_66 = ___reader1;
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_67 = ___reader1;
NullCheck(L_67);
String_t* L_68;
L_68 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String Vuforia.Newtonsoft.Json.JsonReader::get_Path() */, L_67);
Exception_t * L_69 = V_4;
bool L_70;
L_70 = JsonSerializerInternalBase_IsErrorHandled_m49B399AB4FD2C66C6840FEB76AA490DBA272851C(__this, L_62, L_63, L_65, ((RuntimeObject*)IsInst((RuntimeObject*)L_66, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IJsonLineInfo_t0E2DF6218741854135349A07F58B53FC5F6CE72C_il2cpp_TypeInfo_var)))), L_68, L_69, /*hidden argument*/NULL);
if (!L_70)
{
goto IL_0169;
}
}
IL_015d:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_71 = ___reader1;
int32_t L_72 = ___initialDepth3;
JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A(__this, L_71, (bool)1, L_72, /*hidden argument*/NULL);
goto IL_016b;
}
IL_0169:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonSerializerInternalReader_EndProcessProperty_m169D9F659E85EFD341A7348075724AEDCE4721BC_RuntimeMethod_var)));
}
IL_016b:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_016d;
}
}// end catch (depth: 1)
IL_016d:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyPresence(Vuforia.Newtonsoft.Json.JsonReader,Vuforia.Newtonsoft.Json.Serialization.JsonProperty,System.Collections.Generic.Dictionary`2<Vuforia.Newtonsoft.Json.Serialization.JsonProperty,Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_SetPropertyPresence_m394F62F927D2354E1CBF119E7B9FCCE82E09E9F1 (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * ___property1, Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * ___requiredProperties2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m7A13430904DFDA191E1C82F8C6BF45B16C7DC017_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B8_0 = 0;
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_0 = ___property1;
if (!L_0)
{
goto IL_004e;
}
}
{
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * L_1 = ___requiredProperties2;
if (!L_1)
{
goto IL_004e;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader0;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* Vuforia.Newtonsoft.Json.JsonToken Vuforia.Newtonsoft.Json.JsonReader::get_TokenType() */, L_2);
V_1 = L_3;
int32_t L_4 = V_1;
if ((((int32_t)L_4) == ((int32_t)((int32_t)9))))
{
goto IL_001b;
}
}
{
int32_t L_5 = V_1;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)11)))) > ((uint32_t)1))))
{
goto IL_0040;
}
}
{
goto IL_0044;
}
IL_001b:
{
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_6 = ___property1;
NullCheck(L_6);
Type_t * L_7;
L_7 = JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline(L_6, /*hidden argument*/NULL);
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_8 = ___property1;
NullCheck(L_8);
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_9;
L_9 = JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline(L_8, /*hidden argument*/NULL);
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_10 = ___reader0;
NullCheck(L_10);
RuntimeObject * L_11;
L_11 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object Vuforia.Newtonsoft.Json.JsonReader::get_Value() */, L_10);
bool L_12;
L_12 = JsonSerializerInternalReader_CoerceEmptyStringToNull_m9A3830F0898466908BD8BAE1D42B69B18D308927(L_7, L_9, ((String_t*)CastclassSealed((RuntimeObject*)L_11, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if (L_12)
{
goto IL_003c;
}
}
{
G_B8_0 = 2;
goto IL_003d;
}
IL_003c:
{
G_B8_0 = 1;
}
IL_003d:
{
V_0 = G_B8_0;
goto IL_0046;
}
IL_0040:
{
V_0 = 1;
goto IL_0046;
}
IL_0044:
{
V_0 = 2;
}
IL_0046:
{
Dictionary_2_t9BD23E6F0918EC39B0A8AB00555757B722FFB3E3 * L_13 = ___requiredProperties2;
JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * L_14 = ___property1;
int32_t L_15 = V_0;
NullCheck(L_13);
Dictionary_2_set_Item_m7A13430904DFDA191E1C82F8C6BF45B16C7DC017(L_13, L_14, L_15, /*hidden argument*/Dictionary_2_set_Item_m7A13430904DFDA191E1C82F8C6BF45B16C7DC017_RuntimeMethod_var);
}
IL_004e:
{
return;
}
}
// System.Void Vuforia.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HandleError(Vuforia.Newtonsoft.Json.JsonReader,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializerInternalReader_HandleError_m7F2C351E3424FCE87BEA2C57F8264290CBC3C89A (JsonSerializerInternalReader_tF6ADE19D1EA7062D53AD290A28BB32F9C62B94F5 * __this, JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * ___reader0, bool ___readPastError1, int32_t ___initialDepth2, const RuntimeMethod* method)
{
{
JsonSerializerInternalBase_ClearErrorContext_m13BE0970C0D153472880BEF45A97F079504784E9(__this, /*hidden argument*/NULL);
bool L_0 = ___readPastError1;
if (!L_0)
{
goto IL_0024;
}
}
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_1 = ___reader0;
NullCheck(L_1);
JsonReader_Skip_m7731ED51291986772189A4A01E6F0AE7123C8E26(L_1, /*hidden argument*/NULL);
goto IL_0019;
}
IL_0011:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_2 = ___reader0;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean Vuforia.Newtonsoft.Json.JsonReader::Read() */, L_2);
if (!L_3)
{
goto IL_0024;
}
}
IL_0019:
{
JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * L_4 = ___reader0;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 Vuforia.Newtonsoft.Json.JsonReader::get_Depth() */, L_4);
int32_t L_6 = ___initialDepth2;
if ((((int32_t)L_5) > ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)))))
{
goto IL_0011;
}
}
IL_0024:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReaderException_set_Path_mA56A22E92A2F150167689754236DED6D4C1F69A3_inline (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPathU3Ek__BackingField_19(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReaderException_set_LineNumber_m107F078203427EDE9ECCD29B0A51F26C7C136672_inline (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLineNumberU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReaderException_set_LinePosition_m1ECB8FF6792ABE213B517BC05D5E194D108D09ED_inline (JsonReaderException_tD2FF5240B2AD41C790EC6DFB96E09DA5086E7388 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLinePositionU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AllowAdditionalProperties_mCEC6844B12E85B4EAC2392D0CB900192309AA572_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalPropertiesU3Ek__BackingField_26(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AllowAdditionalItems_mE0EAE117D730544A3E6232533DCFDF8027B03840_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalItemsU3Ek__BackingField_21(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaResolver_get_LoadedSchemas_mFFE84CC46F5B7EE4371DCB9769CBD81021B7AEDE_inline (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CLoadedSchemasU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Location_m86598910A11FE1688F19536676D4832E21181257_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CLocationU3Ek__BackingField_33();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_DeferredReference_mF7F4A198AE7EC9D29E2682BCFF5133A2AD17A511_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CDeferredReferenceU3Ek__BackingField_35();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_ReferencesResolved_mE55F2BF040242E2C842F7F6F364FE88A79BA8F6E_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CReferencesResolvedU3Ek__BackingField_36();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ReferencesResolved_mE14DDCC88AD64CD8EACA9031D44F6A7A4E0E7048_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CReferencesResolvedU3Ek__BackingField_36(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Extends_m110344DA95E8DE6D5E4B8613D253AEB48DCF562B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CExtendsU3Ek__BackingField_31();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Items_m320DBD5E34876627F1CCCD8D32CB5530D0C8AA23_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CItemsU3Ek__BackingField_18();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_get_AdditionalItems_m3B4599E23479E60E71FE7C6A63C7727BD3B267F2_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get_U3CAdditionalItemsU3Ek__BackingField_20();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AdditionalItems_m4505E2C2F6450B0291ED27CA074C12D7BF485CE7_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___value0;
__this->set_U3CAdditionalItemsU3Ek__BackingField_20(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_PatternProperties_mFF2A6E5503ACB460E2DF9DD8587AA3C9F250D966_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPatternPropertiesU3Ek__BackingField_25();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Properties_mE2742064E54AC99611F3783310FFEEF078BB3524_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPropertiesU3Ek__BackingField_23();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchema_get_AdditionalProperties_mAF9F95F8C80AABF9943C2D57D889EF351D7CB4C1_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get_U3CAdditionalPropertiesU3Ek__BackingField_24();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_AdditionalProperties_m342347187D74F472699CC67CCD93EEDFBAB091F5_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * ___value0, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = ___value0;
__this->set_U3CAdditionalPropertiesU3Ek__BackingField_24(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_DeferredReference_mD894E9594C87703F245F56336CCF3CA2A5C7FC64_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CDeferredReferenceU3Ek__BackingField_35(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Location_m261F1FB12D73E27A802A8CC2E0DBF5581920837D_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CLocationU3Ek__BackingField_33(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaBuilder_get_CurrentSchema_m3D88B1C350E23B1BA501EA9BC7FCC664D3FDD4F8_inline (JsonSchemaBuilder_t98DA3F9660055AC533278FDB4A9EEAFD6485491B * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get__currentSchema_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Type_m254754ABC7E1A5E42356626D8F26826F0807C080_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = ___value0;
__this->set_U3CTypeU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Id_mE5CC93267D31400AE1819273B7BBCACB100CB7CD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CIdU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Title_mC30C6A6EEFBE2DD153FB48E008424C199B62801D_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CTitleU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Description_m497296EAA19C9D470CE9A61CE77073BD87C991A7_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CDescriptionU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Properties_mA71EBA6B5C5D4F33347D50D8F68C3BF19554D713_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPropertiesU3Ek__BackingField_23(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_PatternProperties_mD3673AAFB7CA55B24D6F8D933D727567CA48364F_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPatternPropertiesU3Ek__BackingField_25(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Required_mD2C868E3252D959332507BFAF8B9E436F5F9A8F4_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CRequiredU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Requires_m5D457478840D5C598A4E628635960683218F9D62_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CRequiresU3Ek__BackingField_27(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Minimum_mDF51C376BB18160C0819A811EDBCB848E0383B0B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMinimumU3Ek__BackingField_12(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Maximum_mD0A20654F0F4DB4A20A4663D046E3940F67CFB2C_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMaximumU3Ek__BackingField_13(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ExclusiveMinimum_mD1CCD67CBF134C3DE22251F99B224CAF4B82DDA0_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CExclusiveMinimumU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ExclusiveMaximum_mC9DA3A8A2CB3A64DE1E9384E139389BE8891ECAD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CExclusiveMaximumU3Ek__BackingField_15(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MaximumLength_m9EF814543B98E7E3F972D45DF1005258911897FE_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumLengthU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MinimumLength_m09672F30C77507EA871D8594886EDA6F6E8E2E2D_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumLengthU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MaximumItems_m9EE5FC4788444E23358BFFBF0783F2F16EEED8E3_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumItemsU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_MinimumItems_m9E147F3F1CB0C0D88A452170F1244C5079E8AADC_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumItemsU3Ek__BackingField_16(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_DivisibleBy_m7F7C73E2C79F4CA7F06D92EEDAB6C0AD452CE9ED_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CDivisibleByU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Disallow_mDE960F1735D5B747FDC4D0C53EF9F92D5A4FD59A_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = ___value0;
__this->set_U3CDisallowU3Ek__BackingField_29(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Default_mD91A00F8C6E98164325C256BD3C2F3A40226F952_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * ___value0, const RuntimeMethod* method)
{
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = ___value0;
__this->set_U3CDefaultU3Ek__BackingField_30(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Hidden_mD3E240839004E97C5125D83152371724382CDD3C_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CHiddenU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_ReadOnly_mEADCAD4A662B9760AC62C10CE4165640D88B6C6B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = ___value0;
__this->set_U3CReadOnlyU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Format_m6E3EB7850BFBC27028ADC2E96D54992AED790AFE_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CFormatU3Ek__BackingField_32(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Pattern_mA7C50CF007239EA9EB57C186463705DD2472C405_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPatternU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_UniqueItems_m53C70C25B88DC13752F50CE72B6F937B301B8107_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CUniqueItemsU3Ek__BackingField_22(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Extends_mA544A93BC53D5F646936F15078CE19BFFAAA7488_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CExtendsU3Ek__BackingField_31(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Enum_m600F66C93A07B7B23914016BCC4ADC350DB41372_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CEnumU3Ek__BackingField_28(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchema_get_Enum_mCECF622B264E231D487553C97C6630F8FBF2FF89_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CEnumU3Ek__BackingField_28();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JProperty_get_Name_m40C95EB5D7D490470847ADAB4993684AC0296991_inline (JProperty_tBF5F7C8477D937691CCE6A9B99AD4B700476661F * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__name_16();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_Items_m98467635105FE963BBF41DB97EB0F1053A0D23DA_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CItemsU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchema_set_PositionalItemsValidation_m6B62D399EAD5AD6DD51C828819ABCF97B6B76C99_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CPositionalItemsValidationU3Ek__BackingField_19(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaException_set_Path_mBC45DF5D227A0D15B8CB24C21CBD426FCDB109FF_inline (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPathU3Ek__BackingField_19(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaException_set_LineNumber_mB16EC51B1368DE7A3297F83260035419C2711FE6_inline (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLineNumberU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaException_set_LinePosition_m4BC31C16B2F59FEC80567C88A1C49A310B371C26_inline (JsonSchemaException_t6156493BA47FCE4F20E4EFB53E8A7205DFF24650 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CLinePositionU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DefaultContractResolver_get_Instance_m2EB0507D1A30F944E6C96C7E90011748897D59E4_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_t205823AAB1AD25747F5E420695D2A41D071F5DC9_il2cpp_TypeInfo_var))->get__instance_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * TypeSchema_get_Schema_mFE371A75AA114A448718DAF8CA87CA7A19327375_inline (TypeSchema_t84617FDDC55DAA996B14C0095ADBBDEF842E5969 * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get_U3CSchemaU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonContainerAttribute_get_Title_m2C7E47FD95131BF5B15A1E15590157E9C38809F0_inline (JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CTitleU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonContainerAttribute_get_Description_m36A11696F3A92C56E12A7B072D70890BD5DF2412_inline (JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CDescriptionU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonContainerAttribute_get_Id_m3D757A30FE066422291F149C46662EC985844723_inline (JsonContainerAttribute_t9ACF490B41D710AFB8D04B8CDD47CC6F9A5481D2 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CIdU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonSchemaGenerator_get_UndefinedSchemaIdHandling_m4A29BE818181921E9C13461CB0D05F18EB298D26_inline (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CUndefinedSchemaIdHandlingU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchema_get_Type_m8E0828FDF3ADDCDC6161BB8D9AFBAE826333A355_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = __this->get_U3CTypeU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Required_mE10F257E5A89313CF4111615DBFCF8638B3E58D7_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CRequiredU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonContract_get_Converter_mDE546D9E7644EC1EFE17954CD6C3A03CA23AFDE5_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_0 = __this->get_U3CConverterU3Ek__BackingField_17();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonContract_get_InternalConverter_m52505C93F76DFA4AAA3C1B68DB40B0ABE7D286BF_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_0 = __this->get_U3CInternalConverterU3Ek__BackingField_18();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * JsonSchemaGenerator_get_CurrentSchema_mA91683CB3D357722E463F999479A289EDC81E102_inline (JsonSchemaGenerator_t9C7271E6B5295A02330A15A6AA772876801C8C57 * __this, const RuntimeMethod* method)
{
{
JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * L_0 = __this->get__currentSchema_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayAttribute_get_AllowNullItems_m04EC3BEA9224D29E0FDF46CE28EBD8A8ADF1F4EA_inline (JsonArrayAttribute_tACC85E3C2177DAF197A990E67144FE84C66F6D67 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__allowNullItems_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonContract_get_UnderlyingType_mB2C8D4C137F07B0EA11D0D2CABEB36299EE49EEB_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CUnderlyingTypeU3Ek__BackingField_15();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * JsonObjectContract_get_Properties_m199B76032C42E8560001FCFE7741F5DD64988CBA_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method)
{
{
JsonPropertyCollection_t2B1B3B61762B8BEE6B481701403ADF1DC73E158E * L_0 = __this->get_U3CPropertiesU3Ek__BackingField_29();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonProperty_get_Ignored_m89CDAA85A40AB3768AA8CD08D5AEFC4E5F11A45E_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIgnoredU3Ek__BackingField_15();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 JsonProperty_get_NullValueHandling_mE711C0CE9C27769ECC27E2D22B12E787E9BE693F_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t2CC27B139DDEFDB788454D3AE25BBE129F0421D0 L_0 = __this->get_U3CNullValueHandlingU3Ek__BackingField_20();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 JsonProperty_get_DefaultValueHandling_m6747322BA8019E452CAD4D2F96624711B6D4F177_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t95ED1914C8366E9B8B8C4B73E5E83BCAF040EFA4 L_0 = __this->get_U3CDefaultValueHandlingU3Ek__BackingField_21();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * JsonProperty_get_ShouldSerialize_m7CD4E9EB8C176BB1E36B55774EAF0E81AE231D7B_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * L_0 = __this->get_U3CShouldSerializeU3Ek__BackingField_25();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * JsonProperty_get_GetIsSpecified_m25DC0FD35E26E1D64D756EE3F8B29232FDB0F515_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * L_0 = __this->get_U3CGetIsSpecifiedU3Ek__BackingField_27();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonProperty_get_PropertyType_m97E70177D3129688B4762D06F02CAB6C45DB7CAB_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__propertyType_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonProperty_get_PropertyName_m8AA84A63213DB8D43122751E728A4988A29E29A4_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__propertyName_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Type_mC504800F33CD42CA79713500F55355019411F06C_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AllowAdditionalProperties_m401CDC441A5679792AE1D9322A5592EF6D7B3487_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalPropertiesU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AllowAdditionalItems_m95ABD84632D3CB43830C18314394D17F76132F27_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CAllowAdditionalItemsU3Ek__BackingField_19(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Required_m92F174CDF2FB140E199A8457E3EDE0F79DC234B6_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CRequiredU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_Required_mF03089412305B3532BA80CC5219B59195E2697D2_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CRequiredU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonSchemaModel_get_Type_m32832C2841F9440C9C2BE0D87CBCFE762F9D5F2F_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MinimumLength_m202E68CC63F66C9CA0B73E6A71F05FC2C1D70E6E_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumLengthU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MinimumLength_m1287BFA7D47F2FEF859181B2F39F8C4E8DFC28D9_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumLengthU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MinimumLength_m52817184992805085DB188C2DF6EB1D9E041A50D_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumLengthU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MaximumLength_m968FFB32095E20804F62DBD252157C6ADF9B4ED9_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumLengthU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MaximumLength_m0DDE88D8E215CAC7DFF8483833E2FFA54B9065BD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumLengthU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MaximumLength_m09D5904017ABDC6F63F82CC4DC2D681007B42BA5_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumLengthU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_DivisibleBy_m45E02D93EB7D9233ECDE2475C528C6F1C55A4EFC_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CDivisibleByU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_DivisibleBy_m56C5137F847D9E9D752762F25289F4F4A68B459E_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CDivisibleByU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_DivisibleBy_mB6A2B2DAD1F0081C38CA5AFE2FB85DA6157D39FB_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CDivisibleByU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_Minimum_m0FCDCA112003142DEB3C3336FBA380F9C0C916EB_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMinimumU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_Minimum_m2F769905CBCB189A8F9ADEEA3527F1DE7B5536BA_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMinimumU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Minimum_m61D8105744E980239642E3B75FED8C534FB30798_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMinimumU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchemaModel_get_Maximum_m3D940F342F91C642714D028BC82D4731F1466C4B_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMaximumU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 JsonSchema_get_Maximum_mD2018496516B7337DC72B09292EA403363C1B7D8_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = __this->get_U3CMaximumU3Ek__BackingField_13();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Maximum_m8A5B9AED658A0F537142DD07E2FDC8C835DB892C_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 L_0 = ___value0;
__this->set_U3CMaximumU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_ExclusiveMinimum_m82EF76FA0DABD5CA4C8CF6FF4AD4383E6121043E_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CExclusiveMinimumU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ExclusiveMinimum_m6ACB2FE8EA54329929EA483E564258C9129BEB7F_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CExclusiveMinimumU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_ExclusiveMinimum_m5896A35FE7E4BE674F207ECA6A2C9CB34E3BEDA8_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CExclusiveMinimumU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_ExclusiveMaximum_m6B69DD931E50E5877C047F42B7CF4AFA7762E9A7_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CExclusiveMaximumU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ExclusiveMaximum_mB67D9A7E1FA8D3F88BE1272425F3D360AF02835A_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CExclusiveMaximumU3Ek__BackingField_15();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_ExclusiveMaximum_m068F19085C41CE67C8BB6070045E6871EFBCE28B_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CExclusiveMaximumU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MinimumItems_m8A06A582F1074DD5D8C7ED87E31155E9F4C89336_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumItemsU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MinimumItems_m9ED05C6927619F28EFE31874547496920B27B8CF_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMinimumItemsU3Ek__BackingField_16();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MinimumItems_m10F4E8101AB8E3414BC98FFB8E169D75A8F9A6F5_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMinimumItemsU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchemaModel_get_MaximumItems_m961B32D79899A718C3FEA6B3A0259D633071783A_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumItemsU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonSchema_get_MaximumItems_mE340B9ECEDD43C9231F5A62579B4648A2D294233_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get_U3CMaximumItemsU3Ek__BackingField_17();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_MaximumItems_m91FFFD5C73BF3CA5E3E4061E6527ABDD21126163_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = ___value0;
__this->set_U3CMaximumItemsU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_PositionalItemsValidation_m093834D8885E82F53F8456B3A123FD50F45F912B_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CPositionalItemsValidationU3Ek__BackingField_17();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_PositionalItemsValidation_m68D32066FDE9DC6D426AC7FE078DC265E8C02385_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CPositionalItemsValidationU3Ek__BackingField_19();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_PositionalItemsValidation_m5DB7F044CB0DAE01C46704A3E4CE560D72209C78_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CPositionalItemsValidationU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_AllowAdditionalProperties_m751F929C7221276837C8271A0AB570BD98AFE5C8_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalPropertiesU3Ek__BackingField_18();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_AllowAdditionalProperties_m92CF5DA0D05DF54861368B196E8A314DD6EB05B8_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalPropertiesU3Ek__BackingField_26();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_AllowAdditionalItems_mBAA10CFC177C760086906738BCABF24402A4E253_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalItemsU3Ek__BackingField_19();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_AllowAdditionalItems_m3A60FE808206C2141F6148816F99E68A27E8EF20_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CAllowAdditionalItemsU3Ek__BackingField_21();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchemaModel_get_UniqueItems_mD95FA018C4C58430516454E670E876D5B352E097_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CUniqueItemsU3Ek__BackingField_20();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonSchema_get_UniqueItems_m2CA14F211B0E25BCCEABB228D7A7BE0EE79E9579_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CUniqueItemsU3Ek__BackingField_22();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_UniqueItems_m3D5704A81698D3DBFF5431D381B1357716EB0F31_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CUniqueItemsU3Ek__BackingField_20(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Enum_m694A64197D79CF787EF89B05CFFEEC60C89DF341_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CEnumU3Ek__BackingField_21();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Enum_m1A4B041BA72AFD2F92FA5B84299E8FD9D5246DD5_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CEnumU3Ek__BackingField_21(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonSchemaModel_get_Disallow_m322DB2D4FF319245AC0D8520D27A6EFC2C02653A_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CDisallowU3Ek__BackingField_22();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C JsonSchema_get_Disallow_m03B2414DB9D56599AFEB6FD4D32B6A80810E6401_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_tD2626FC382E689BAD1A1EA50DBFEA28CF545909C L_0 = __this->get_U3CDisallowU3Ek__BackingField_29();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Disallow_mF0560B8F598E2501A0AB20FAB8BB251F8C03C09F_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CDisallowU3Ek__BackingField_22(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Pattern_mF1CF5D66E3DB45EB8A5708FAF2AD8EE6305EE283_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CPatternU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Patterns_mCB92BDE936EEAAD0F7D0C8829915FE3EC42FC61A_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPatternsU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Patterns_m2F8B3925E787F3C987F71EAE0636B5B68F9E4773_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPatternsU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * JsonSchemaNode_get_Schemas_m116911F6356B3E8A9F126CD81F699A964329C351_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_0 = __this->get_U3CSchemasU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * JsonSchemaNode_get_Properties_mCC467D792598C7AC7BCBA25C225B9308EB6857E4_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = __this->get_U3CPropertiesU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * JsonSchemaNode_get_PatternProperties_mB3EA48165E92338BE23988BB313C9845D7962B28_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = __this->get_U3CPatternPropertiesU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * JsonSchemaNode_get_Items_m3F7B32719509078B841FD511ECAE42B4039C1FA0_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_0 = __this->get_U3CItemsU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_get_AdditionalProperties_m436759B9BEDD56FE5BAF6E1919895E6ACCCCE56D_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = __this->get_U3CAdditionalPropertiesU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_AdditionalProperties_mB21AAB51FC3B28A084E07DE82C451EA58F5C5610_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___value0;
__this->set_U3CAdditionalPropertiesU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * JsonSchemaNode_get_AdditionalItems_m0CB14CBA4217FB5A85B1AC8C04DA6683E59EFCCA_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = __this->get_U3CAdditionalItemsU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_AdditionalItems_m991DD15FCBDD85A6E13B201F4220E24D60C11DE0_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * L_0 = ___value0;
__this->set_U3CAdditionalItemsU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Properties_m07BFFEDE48F889117ED2A16DF8537134E22509E9_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPropertiesU3Ek__BackingField_13();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Properties_mE97FFCE6FC266F8351E57498507C826FDE9735FC_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPropertiesU3Ek__BackingField_13(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_PatternProperties_mBDE98371110E1294AE26CB046A3C8385908438AA_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CPatternPropertiesU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_PatternProperties_m0719A65899EDCF4C263ED726E0629E530FB38625_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CPatternPropertiesU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSchemaModel_get_Items_m8811B5DB2D179477C7E2CB33218E52357AC3D9F9_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CItemsU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_Items_mD5ED8E2F8DB4342F10FD80C17227F2A0DBCC3520_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CItemsU3Ek__BackingField_12(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AdditionalProperties_mB31CE5D6C8F521EC45A6ACBC4F6AC54CB0694D9E_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = ___value0;
__this->set_U3CAdditionalPropertiesU3Ek__BackingField_15(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaModel_set_AdditionalItems_m97AB0135F89D14888090DF8097307FD102A098B0_inline (JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * __this, JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * ___value0, const RuntimeMethod* method)
{
{
JsonSchemaModel_t4C9B1DD635375EA864F59242DF5E736C12473ABC * L_0 = ___value0;
__this->set_U3CAdditionalItemsU3Ek__BackingField_16(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Schemas_mA598D04B0F218FA649BA7FA6509B36AC288932B5_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * ___value0, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_t57FB24C142A93FF680141D6EAE9511A74E0BCB7D * L_0 = ___value0;
__this->set_U3CSchemasU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Properties_m4BBD7BD878B2D6BF07985CB16983A656B1BFDB63_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___value0, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = ___value0;
__this->set_U3CPropertiesU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_PatternProperties_mAEA4E6261544AEA505D07EA1181854BE129816F2_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * ___value0, const RuntimeMethod* method)
{
{
Dictionary_2_t69978017B457CF0C3FDFB18288C7F37B3ACCBB1A * L_0 = ___value0;
__this->set_U3CPatternPropertiesU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Items_m68DE3071817FAE70411DD41ADE8C16412F726484_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * ___value0, const RuntimeMethod* method)
{
{
List_1_t260F3D14C487E2E93A2EB03BA581084C8FA315B3 * L_0 = ___value0;
__this->set_U3CItemsU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaNode_set_Id_m3F0F26E1F1B1B8DFADE14CDF103F03CF17A0BFFA_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CIdU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var);
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var))->get__ordinal_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchemaNode_get_Id_m7954D1D84C16EF5C6AF0FC5C6FC3E4728D7B2504_inline (JsonSchemaNode_tF07652C24F7C230E1513BC01B8FC65D343B7C50A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CIdU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonSchemaResolver_set_LoadedSchemas_mD18AF47B37CF153EEACBE5612B9A3D5D7A984AB1_inline (JsonSchemaResolver_t1065C9858F13B2D66D72CD41D6E4F241B61AE543 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CLoadedSchemasU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Id_m6E623D59EC896B0E61E052FFA065D811EB025D4F_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CIdU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Title_m1BDF2704DA1BE7542A0C7B49733B066E3A78B972_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CTitleU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Description_m1276777F76928EA6DC3D164AC586ADBEE74327F2_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CDescriptionU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_ReadOnly_m1A9ED1B1815C4D294B53DA506798CE902DCF19DD_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CReadOnlyU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Hidden_m5A79091FB74532E835A8D3382DEE2B81FE67851B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CHiddenU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 JsonSchema_get_Transient_mB0C10CB0B919F5F2259E6371A64A71308CE3CA57_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_0 = __this->get_U3CTransientU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonSchema_get_Format_m05C805C7441A8BD78FD6AF182E7AE1A354BC472E_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CFormatU3Ek__BackingField_32();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JsonSchema_get_Default_mD2503533B14AE7DBA53B4991927F0C139F4EAE5B_inline (JsonSchema_t6492645F4D9C951B2D447D9F073A37AE7FA9E252 * __this, const RuntimeMethod* method)
{
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = __this->get_U3CDefaultU3Ek__BackingField_30();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * JsonConvert_get_DefaultSettings_m77E99024334C26B86BE04A6B04E941B2864728B7_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_il2cpp_TypeInfo_var);
Func_1_t32838044BAE6BBEB14476A560B6C97DB741886AB * L_0 = ((JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_StaticFields*)il2cpp_codegen_static_fields_for(JsonConvert_t02B1EBF5852E162E812A5FC27EE80778D464D7D2_il2cpp_TypeInfo_var))->get_U3CDefaultSettingsU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_Converters_mC2C54FB4388B72D38871F077ECEF00AF828A9F1C_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CConvertersU3Ek__BackingField_46();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * JsonSerializerSettings_get_Error_mE801B024BB7DB4D1D7005CA193AC432D8BE7EA43_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method)
{
{
EventHandler_1_t69D58E3138E9E6DADAF6ABDFAAF850188D2BA77B * L_0 = __this->get_U3CErrorU3Ek__BackingField_52();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_ContractResolver_mFD45D93DD3A8081D05B08E3430FB49FED92D84CD_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CContractResolverU3Ek__BackingField_47();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * JsonSerializerSettings_get_ReferenceResolverProvider_mF42A379679B2D340D3C20D080C67F9F048D9E292_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method)
{
{
Func_1_t0D0051D9B4CB6E51FE4A3DD64663A85A2FABC82A * L_0 = __this->get_U3CReferenceResolverProviderU3Ek__BackingField_49();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_TraceWriter_mA98DDD76FAC1AE190CDB347D7E8CC2D481440A89_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CTraceWriterU3Ek__BackingField_50();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonSerializerSettings_get_EqualityComparer_m9CD912ED990ADF6D3F9FDB589EE44C34C02D8D91_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CEqualityComparerU3Ek__BackingField_48();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * JsonSerializerSettings_get_Binder_mC2D7E0D0D22A084C2CA45F86EEDF648CCCC1317A_inline (JsonSerializerSettings_t3DF5E304C4BC0A37084F91A0B98489F1F9436F06 * __this, const RuntimeMethod* method)
{
{
SerializationBinder_t6FD7F6F94835BA32F66CD97D78D735B024EF0CDC * L_0 = __this->get_U3CBinderU3Ek__BackingField_51();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReader_set_Culture_m358DAB69604E891560445695FC823BBE41B2F106_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___value0, const RuntimeMethod* method)
{
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___value0;
__this->set__culture_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_DateTimeZoneHandling_m3F91693921E6DA5A0FB9BB66FAF8069C18E11F7C_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__dateTimeZoneHandling_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_DateParseHandling_m5CF75D4A6FBBED60683E85A68416AFB05C84F84A_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__dateParseHandling_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_FloatParseHandling_mB6FBFE9F4EDB6E6FF07E89A172E2570263140EC8_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__floatParseHandling_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 JsonReader_get_MaxDepth_mD56632F93DB678570560972E65FE5D5A7831CC28_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_0 = __this->get__maxDepth_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonReader_get_DateFormatString_mA13BC1749AF8F2E33BA1365C42CA876BEFC23A54_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__dateFormatString_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReader_set_DateFormatString_m7663A3BDC18FEBEB43B9DEAD863A376BB0A5B443_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__dateFormatString_11(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_Formatting_mF93BDFD42949F3657B42373489E40D9A0F8C4C7D_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__formatting_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_DateFormatHandling_m934EA63B68C3F847E5208EA9DE207BBE41A00B27_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__dateFormatHandling_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_DateTimeZoneHandling_m97C5683CADF09A632459EDE3CB92F2A2FE77FC27_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__dateTimeZoneHandling_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_FloatFormatHandling_mFF1E711565B799544AD844F23FB341DD6D46BDCD_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__floatFormatHandling_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonWriter_get_StringEscapeHandling_mC1AFB3064B082108AA096BF2BCAAE35F5185256E_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__stringEscapeHandling_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonWriter_set_Culture_mE50EBFC707FDE0B65B39EC7CA2BAEB9F1973C385_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___value0, const RuntimeMethod* method)
{
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___value0;
__this->set__culture_12(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonWriter_get_DateFormatString_mC1B37995E57EBFE90BC8BC79702F2F94D7E2CB4D_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__dateFormatString_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonWriter_set_DateFormatString_m1E8DABD3EF04FC92FE631D82B5639BC5F845CF46_inline (JsonWriter_tC89085AB2343C8FFC2149A7F92A90E02FEBD1D3D * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__dateFormatString_11(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * ErrorContext_get_Error_mE4CC6108C1AA2CAA9B7D19C5F3C4C8FE6A591833_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get_U3CErrorU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ErrorContext_get_Traced_mFEA0E38805C49EA21C85E8E1CF4BDEAE76E2CCDC_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CTracedU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ErrorContext_set_Traced_mE6B62DA045BF7B4D3394C8561B5722708C9638C0_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CTracedU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ErrorContext_get_Handled_mEFDC3E1B50AA7F57153F74D3C3CCB07BD44952F6_inline (ErrorContext_t17442F9FBB054A91B675775553AB0832BC85E589 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHandledU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_ShouldCreateWrapper_mBFBB0CE88CF4DA4FD074978F1BC42BBF058A3995_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CShouldCreateWrapperU3Ek__BackingField_34();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_ShouldCreateWrapper_m9B288D28EB522BE882B07929FE4649D299C68897_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CShouldCreateWrapperU3Ek__BackingField_35();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonProperty_get_ItemConverter_m3CC25C0DD1537CF8781B7F42345B0F85B1C6E8C1_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_0 = __this->get_U3CItemConverterU3Ek__BackingField_29();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonContainerContract_get_ItemConverter_m28D204C41031B0A88E1506FA818FCB1A82CE4CE5_inline (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_0 = __this->get_U3CItemConverterU3Ek__BackingField_23();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonReader_get_SupportMultipleContent_m96B31B88F011B1298704D38480AC2E80B05AFA29_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CSupportMultipleContentU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonReader_set_SupportMultipleContent_m487B50FDB18FDD3688CC4BAFDE7ED0DF34ED9F86_inline (JsonReader_tC7F24E980D7C2133A35F337D2023D3A2B62CBE96 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CSupportMultipleContentU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonDictionaryContract_get_OverrideCreator_m6706A1FF5BDA7F1DD484ECB4CC2648ED3002A1DA_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_0 = __this->get__overrideCreator_37();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JTokenReader_get_CurrentToken_m34D36B014B15EBA8D6FFBACD14A00073436DBA93_inline (JTokenReader_t3B68113749A4B3895FCCCF8F0E2025FEF36C073B * __this, const RuntimeMethod* method)
{
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = __this->get__current_18();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * JToken_get_Parent_m0C47FA701ABB9BD601C13BBF3EA628AD5A0EF57C_inline (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method)
{
{
JContainer_t74EE39EA37572ABCE1E077EC63F1F195E6512BDC * L_0 = __this->get__parent_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JToken_get_Next_m1414D8687D5F635F5FA98957C5EE7AD5B482858E_inline (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method)
{
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = __this->get__next_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * JToken_get_Previous_m6275AE15ED645BBBFB79A0CFFD6126964ED22E6F_inline (JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * __this, const RuntimeMethod* method)
{
{
JToken_tE95A9ED3F711351BD17B2CC7AA5C2F6309B12426 * L_0 = __this->get__previous_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 JsonProperty_get_TypeNameHandling_mEBF2DA89C991527B319F376AA9DB70E8DAB4DE2E_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_0 = __this->get_U3CTypeNameHandlingU3Ek__BackingField_24();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 JsonContainerContract_get_ItemTypeNameHandling_m5127E4BCDB00DCF13DEA6AE715351EC5664EA2BE_inline (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_0 = __this->get_U3CItemTypeNameHandlingU3Ek__BackingField_26();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 JsonProperty_get_ItemTypeNameHandling_m9975EC554BB17BAF49400485A41EB4B3609E8E9A_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t8CC7B623C52A234F793D02828F6ACFA7CE712574 L_0 = __this->get_U3CItemTypeNameHandlingU3Ek__BackingField_31();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsArray_m8C8CB9EECD63C9EF6D45946B7FC258AF334E87B5_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIsArrayU3Ek__BackingField_33();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsMultidimensionalArray_mF7F027C6DA10C72C3D08232BB0924A9EE38AD310_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIsMultidimensionalArrayU3Ek__BackingField_28();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonArrayContract_get_CollectionItemType_m5089CC6ADC48BBF9D8F9BAABF8DA93D2069146F8_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CCollectionItemTypeU3Ek__BackingField_27();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonContract_get_CreatedType_mF19D1DA96E2BAF2B3E393E2297135BD08C8E6302_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__createdType_14();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonArrayContract_get_OverrideCreator_m2CC0CCB39BA9006302F9C8DC385CEB22B9B28EEB_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_0 = __this->get__overrideCreator_38();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_CanDeserialize_mEFFB4F298843C2F8D29C99CA2183AA6A89A53E9E_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CCanDeserializeU3Ek__BackingField_35();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonPrimitiveContract_get_TypeCode_m4264CAF3D77442FD9520DEA039D9F07C90D205E9_inline (JsonPrimitiveContract_tF8E1D758FEC615EF1655A24F4924B0E634DA9000 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CTypeCodeU3Ek__BackingField_21();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonProperty_get_Readable_mE66DEC38E3D1417BE030E901B41CA9113272520C_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CReadableU3Ek__BackingField_16();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonProperty_get_ValueProvider_m985933DCEE174EEFA974B223150357BDA6E204A6_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_U3CValueProviderU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * JsonProperty_get_SetIsSpecified_mEAEB9DF9E91666340C8418B70312C736061B53F1_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * L_0 = __this->get_U3CSetIsSpecifiedU3Ek__BackingField_28();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonProperty_get_DeclaringType_mB0F57AF599AA388A2B92C6B5954B8C54726A6BCC_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CDeclaringTypeU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonProperty_get_PropertyContract_mD2EF69330DC0A6191380FCFA56DEC38FF898B0D4_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = __this->get_U3CPropertyContractU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonProperty_set_PropertyContract_m5D1ABC8446CDAB8EB9D58BBB2796506EA50BCB00_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___value0, const RuntimeMethod* method)
{
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = ___value0;
__this->set_U3CPropertyContractU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 JsonProperty_get_ObjectCreationHandling_m4BBA9FBDCFEA20CAF82C612070D2D8FC70EED712_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Nullable_1_tA567066BCCD6B42C0C42FDA83F69EEAA3FDDCFF6 L_0 = __this->get_U3CObjectCreationHandlingU3Ek__BackingField_23();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonProperty_get_Writable_mCFD17FFBF783AF8F090A391FBAE37088FB9529C1_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CWritableU3Ek__BackingField_17();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * JsonProperty_get_MemberConverter_m715ABD6F88B92DE7212E9BF1399D10B2ECC09EC2_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t07BD4E7AD15FC6976A03EE2516F057D21135188C * L_0 = __this->get_U3CMemberConverterU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreator_m1A2988769C3478834C6117EE8CDD50390C4C4BED_inline (JsonArrayContract_t0BB02B1D4E807BF566305875C36CFE88F69BF245 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHasParameterizedCreatorU3Ek__BackingField_39();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * JsonContract_get_DefaultCreator_m1D30F7D8EAB8BFC818B90BB837B2A572AF885D76_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method)
{
{
Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * L_0 = __this->get_U3CDefaultCreatorU3Ek__BackingField_19();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonContract_get_DefaultCreatorNonPublic_m9DF668CB05F4CED0C01F748CDA35963DAEA6083F_inline (JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CDefaultCreatorNonPublicU3Ek__BackingField_20();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_HasParameterizedCreator_m4DA582EB6CEC888BA8AC8D831A856D7259A77398_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHasParameterizedCreatorU3Ek__BackingField_39();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonDictionaryContract_get_KeyContract_mCE999BC8E37A5CE5B0259BACA1F03D171E1AD30C_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method)
{
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = __this->get_U3CKeyContractU3Ek__BackingField_30();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryKeyType_m3E4D788BF34A207200FA41564DA66A39334C2141_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CDictionaryKeyTypeU3Ek__BackingField_28();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_KeyContract_m3EA22CB10EFEC6CB555570CFC08C167C76AE37FD_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * ___value0, const RuntimeMethod* method)
{
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = ___value0;
__this->set_U3CKeyContractU3Ek__BackingField_30(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * JsonContainerContract_get_ItemContract_m71DAE1405ABB5121A2072924838E1DE64A982020_inline (JsonContainerContract_t8B19EDD6D93758B426EB98C5B6A8F59675C25990 * __this, const RuntimeMethod* method)
{
{
JsonContract_t055F596B83578B01B71B7CCDDD546665C706CEC0 * L_0 = __this->get__itemContract_21();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryValueType_mFB39D141A0DCC9F21C40DAB07540A059D450192D_inline (JsonDictionaryContract_tBC9A5D5BC01FD4D3C896906611472073D733C976 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CDictionaryValueTypeU3Ek__BackingField_29();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JsonProperty_get_UnderlyingName_mD74AD89A3D462DDE776F6003298CAD86FA3737CC_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CUnderlyingNameU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__key_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * JsonObjectContract_get_ExtensionDataSetter_m3F50AB8263A9B83DB9BE97EAA2BE3292D911C3D9_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method)
{
{
ExtensionDataSetter_tADB87A3F96C5621BF9904C612E08E39FEFBB9695 * L_0 = __this->get_U3CExtensionDataSetterU3Ek__BackingField_30();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonObjectContract_get_OverrideCreator_m3C924990EDB91D2E45A45018864B0AEBBD2AE9CD_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_0 = __this->get__overrideCreator_36();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * JsonObjectContract_get_ParameterizedCreator_mF2F01EC69F33384A620BD4CCD6DC81D479185598_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t0ABE47FAEC4EF488CF6A3147A85896D1022710CF * L_0 = __this->get__parameterizedCreator_37();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * JsonProperty_get_ShouldDeserialize_m41EEE69A5784AC86C838059F4CE4C8EF91F8CEC3_inline (JsonProperty_t16E5412017ACEA8C1665FEDBD20DB07F3D26A574 * __this, const RuntimeMethod* method)
{
{
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * L_0 = __this->get_U3CShouldDeserializeU3Ek__BackingField_26();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED JsonObjectContract_get_ItemRequired_m934ECF4E56328FC9A0DB4446FDF08B32D2140F5C_inline (JsonObjectContract_t8DA8C097E2D349B32C1F287B2EACAEFAA2C03416 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t887B01E17F9A636071F9F568995AEF16B200F3ED L_0 = __this->get_U3CItemRequiredU3Ek__BackingField_28();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_mC7F0982F12D98951E661E53D89F4BE45DBA88766_gshared_inline (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3();
return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m4C033F49F5318E94BC8CBA9CE5175EFDBFADEF9C_gshared_inline (Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mBA12CEEF0E5F9E1A59B01BA3584A89738B34710C_gshared_inline (Nullable_1_t64244F99361E39CBE565C5E89436C898F18DF5DC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_value_0();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m75215BA5B54684DB39718D321AE1E796ACD6EA36_gshared_inline (KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_mBB477F8BDD918F0DDEDACD063420E5264F01A2AD_gshared_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_value_0();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_gshared_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t EnumValue_1_get_Value_m858EC6B04130BFE2D5B71A70138FDCE4BD17CE2F_gshared_inline (EnumValue_1_t1BDA31F9112DC92248A1EB0653E3D702AFA6091B * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = (int64_t)__this->get__value_1();
return (int64_t)L_0;
}
}
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 (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_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;
L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3);
return (RuntimeObject *)L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3();
return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_value_0();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mBF8482D04E77226837E6D2995F27872C8E3ABFB9_gshared_inline (Nullable_1_t2FD0F79534780CBE01028C4BD37F24664A490E15 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_1();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 Enumerator_get_Current_mCD23B72ADE352A9042016916076E3CB38F25ABE5_gshared_inline (Enumerator_t784C0315EFEB3F71CFB33A83BBC05FA5C99DCCAD * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 L_0 = (KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 )__this->get_current_3();
return (KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m2C765785270BB188995957A4ADE4520B78464C98_gshared_inline (KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_value_1();
return (int32_t)L_0;
}
}
| [
"[email protected]"
] | |
4ec59d8524837c76f0b57b0aa9e10ecf82be7f50 | 5f0cbea83c700a32fb311d3fdaac85d1557912ba | /EDXUtil/Graphics/ObjMesh.cpp | 274daf2002650825ca04ec5e30692c86e48255bd | [] | no_license | liujiapeng550/JPRender | 2256582029637539ba5170770033a18698d403ba | 7c64955cfa69c3c5f9140c523e9cb2f5051b9285 | refs/heads/master | 2023-05-24T21:55:14.049125 | 2023-05-20T00:49:11 | 2023-05-20T00:49:11 | 138,878,191 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 18,042 | cpp | #include "ObjMesh.h"
#include "../Math/Matrix.h"
#include "../Core/Memory.h"
namespace EDX
{
bool ObjMesh::LoadFromObj(const Vector3& pos,
const Vector3& scl,
const Vector3& rot,
const char* strPath,
const bool forceComputeNormal,
const bool makeLeftHanded)
{
Array<Vector3> positionBuf;
Array<Vector3> normalBuf;
Array<float> texCoordBuf;
int iSmoothingGroup = forceComputeNormal ? 1 : 0;
bool hasSmoothGroup = false;
int iCurrentMtl = 0;
char strMaterialFilename[MAX_PATH] = { 0 };
Matrix mWorld, mWorldInv;
Vector3 leftHandedScl = makeLeftHanded ? Vector3(-1.0f, 1.0f, 1.0f) : Vector3::UNIT_SCALE;
Matrix::CalcTransform(pos, scl * leftHandedScl, rot, &mWorld, &mWorldInv);
char strCommand[MAX_PATH] = { 0 };
FILE* pInFile = 0;
fopen_s(&pInFile, strPath, "rt");
assert(pInFile);
Vector3 minPt = Math::EDX_INFINITY;
Vector3 maxPt = Math::EDX_NEG_INFINITY;
while (!feof(pInFile))
{
fscanf_s(pInFile, "%s", strCommand, MAX_PATH);
if (0 == CStringUtil::Strcmp(strCommand, "#"))
{
// Comment
}
else if (0 == CStringUtil::Strcmp(strCommand, "v"))
{
// Vertex Position
float x, y, z;
fscanf_s(pInFile, "%f %f %f", &x, &y, &z);
positionBuf.Add(Matrix::TransformPoint(Vector3(x, y, z), mWorld));
if (x > maxPt.x)
maxPt.x = x;
if (y > maxPt.y)
maxPt.y = y;
if (z > maxPt.z)
maxPt.z = z;
if (x < minPt.x)
minPt.x = x;
if (y < minPt.y)
minPt.y = y;
if (z < minPt.z)
minPt.z = z;
}
else if (0 == CStringUtil::Strcmp(strCommand, "vt"))
{
// Vertex TexCoord
float u, v;
fscanf_s(pInFile, "%f %f", &u, &v);
texCoordBuf.Add(u);
texCoordBuf.Add(1.0f - v);
mTextured = true;
}
else if (0 == CStringUtil::Strcmp(strCommand, "vn"))
{
// Vertex Normal
float x, y, z;
fscanf_s(pInFile, "%f %f %f", &x, &y, &z);
normalBuf.Add(Matrix::TransformNormal(Vector3(x, y, z), mWorldInv));
mNormaled = true;
}
else if (0 == CStringUtil::Strcmp(strCommand, "f"))
{
// Parse face
fgets(strCommand, MAX_PATH, pInFile);
int length = strlen(strCommand);
// Face
int posIdx, texIdx, normalIdx;
MeshVertex Vertex;
MeshFace Face, quadFace;
uint faceIdx[4] = { 0, 0, 0, 0 };
int vertexCount = 0;
int slashCount = -1;
bool doubleSlash = false;
auto startIdx = 0;
for (auto i = 0; i < length; i++)
{
auto c = strCommand[i];
if (strCommand[i] != ' ' && strCommand[i] != '\t' && strCommand[i] != '\n' && strCommand[i] != '\0')
continue;
if (startIdx == i)
{
startIdx++;
continue;
}
if (slashCount == -1)
{
slashCount = 0;
bool prevIsSlash = false;
for (auto cur = startIdx; cur < i; cur++)
{
if (strCommand[cur] == '/')
{
if (prevIsSlash)
doubleSlash = true;
slashCount++;
prevIsSlash = true;
}
else
{
prevIsSlash = false;
}
}
}
if (!doubleSlash)
{
if (slashCount == 0)
{
sscanf_s(strCommand + startIdx, "%d", &posIdx);
if (posIdx < 0)
posIdx = positionBuf.Size() + posIdx + 1;
Vertex.position = positionBuf[posIdx - 1];
}
else if (slashCount == 1)
{
sscanf_s(strCommand + startIdx, "%d/%d", &posIdx, &texIdx);
if (posIdx < 0)
posIdx = positionBuf.Size() + posIdx + 1;
if (texIdx < 0)
texIdx = texCoordBuf.Size() / 2 + texIdx + 1;
Vertex.position = positionBuf[posIdx - 1];
Vertex.fU = texCoordBuf[2 * texIdx - 2];
Vertex.fV = texCoordBuf[2 * texIdx - 1];
}
else if (slashCount == 2)
{
sscanf_s(strCommand + startIdx, "%d/%d/%d", &posIdx, &texIdx, &normalIdx);
if (posIdx < 0)
posIdx = positionBuf.Size() + posIdx + 1;
if (texIdx < 0)
texIdx = texCoordBuf.Size() / 2 + texIdx + 1;
if (normalIdx < 0)
normalIdx = normalBuf.Size() + normalIdx + 1;
Vertex.position = positionBuf[posIdx - 1];
Vertex.fU = texCoordBuf[2 * texIdx - 2];
Vertex.fV = texCoordBuf[2 * texIdx - 1];
Vertex.normal = normalBuf[normalIdx - 1];
}
}
else
{
sscanf_s(strCommand + startIdx, "%d//%d", &posIdx, &normalIdx);
if (posIdx < 0)
posIdx = positionBuf.Size() + posIdx + 1;
if (normalIdx < 0)
normalIdx = normalBuf.Size() + normalIdx + 1;
Vertex.position = positionBuf[posIdx - 1];
Vertex.normal = normalBuf[normalIdx - 1];
}
if (vertexCount >= 4)
break;
faceIdx[vertexCount] = AddVertex(posIdx - 1, &Vertex);
vertexCount++;
startIdx = i + 1;
}
if (makeLeftHanded)
{
Face.aiIndices[0] = faceIdx[0];
Face.aiIndices[1] = faceIdx[2];
Face.aiIndices[2] = faceIdx[1];
}
else
{
Face.aiIndices[0] = faceIdx[0];
Face.aiIndices[1] = faceIdx[1];
Face.aiIndices[2] = faceIdx[2];
}
mIndices.Add(Face.aiIndices[0]);
mIndices.Add(Face.aiIndices[1]);
mIndices.Add(Face.aiIndices[2]);
// Add face
Face.iSmoothingGroup = iSmoothingGroup;
mFaces.Add(Face);
mMaterialIdx.Add(iCurrentMtl);
if (vertexCount == 4)
{
// Triangularize quad
{
if (makeLeftHanded)
{
quadFace.aiIndices[0] = faceIdx[3];
quadFace.aiIndices[1] = Face.aiIndices[1];
quadFace.aiIndices[2] = Face.aiIndices[0];
}
else
{
quadFace.aiIndices[0] = faceIdx[3];
quadFace.aiIndices[1] = Face.aiIndices[0];
quadFace.aiIndices[2] = Face.aiIndices[2];
}
mIndices.Add(quadFace.aiIndices[0]);
mIndices.Add(quadFace.aiIndices[1]);
mIndices.Add(quadFace.aiIndices[2]);
}
quadFace.iSmoothingGroup = iSmoothingGroup;
mFaces.Add(quadFace);
mMaterialIdx.Add(iCurrentMtl);
}
}
else if (0 == CStringUtil::Strcmp(strCommand, "s")) // Handle smoothing group for normal computation
{
fscanf_s(pInFile, "%s", strCommand, MAX_PATH);
if (strCommand[0] >= '1' && strCommand[0] <= '9')
{
hasSmoothGroup = true;
sscanf_s(strCommand, "%d", &iSmoothingGroup);
}
else
iSmoothingGroup = 0;
}
else if (0 == CStringUtil::Strcmp(strCommand, "mtllib"))
{
// Material library
fscanf_s(pInFile, "%s", strMaterialFilename, MAX_PATH);
}
else if (0 == CStringUtil::Strcmp(strCommand, "usemtl"))
{
// Material
char strName[MAX_PATH] = { 0 };
fscanf_s(pInFile, "%s", strName, MAX_PATH);
ObjMaterial currMtl = ObjMaterial(strName);
auto itMtl = mMaterials.Find(currMtl);
if (itMtl != INDEX_NONE)
{
iCurrentMtl = itMtl;
}
else
{
iCurrentMtl = mMaterials.Size();
mMaterials.Add(currMtl);
}
mSubsetStartIdx.Add(mIndices.Size());
mSubsetMtlIdx.Add(iCurrentMtl);
mNumSubsets++;
}
else
{
while (!feof(pInFile) && fgetc(pInFile) != '\n');
}
}
fclose(pInFile);
// Correct subsets index
if (mNumSubsets == 0)
{
mSubsetStartIdx.Add(0);
mNumSubsets = 1;
mSubsetMtlIdx.Add(0);
}
mSubsetStartIdx.Add(mIndices.Size());
mVertexCount = mVertices.Size();
mTriangleCount = mIndices.Size() / 3;
// Init bounds
mBounds = Matrix::TransformBBox(BoundingBox(minPt, maxPt), mWorld);
// Recompute per-vertex normals
if (forceComputeNormal || hasSmoothGroup || !mNormaled)
ComputeVertexNormals();
// Delete cache
for (uint i = 0; i < mCache.Size(); i++)
{
CacheEntry* pEntry = mCache[i];
while (pEntry != NULL)
{
CacheEntry* pNext = pEntry->pNext;
Memory::SafeDelete(pEntry);
pEntry = pNext;
}
}
mCache.Clear();
if (strMaterialFilename[0])
{
const char* path1 = CStringUtil::Strrchr(strPath, '/');
const char* path2 = CStringUtil::Strrchr(strPath, '\\');
int idx = (path1 ? path1 : path2) - strPath + 1;
char strMtlPath[MAX_PATH] = { 0 };
CStringUtil::Strncpy(strMtlPath, MAX_PATH, strPath, idx);
CStringUtil::Strcat(strMtlPath, MAX_PATH, strMaterialFilename);
LoadMaterialsFromMtl(strMtlPath);
}
if (mMaterials.Size() == 0)
mMaterials.Add(ObjMaterial(""));
return true;
}
// Detect whether there is a duplicate vertex, returns the existing
// index if yes, otherwise create add new vertex to the vertex buffer
uint ObjMesh::AddVertex(uint iHash, const MeshVertex* pVertex)
{
bool bFound = false;
uint iIndex = 0;
if (mCache.Size() > iHash)
{
CacheEntry* pEntry = mCache[iHash];
while (pEntry != NULL)
{
MeshVertex* pCacheVertex = mVertices.Data() + pEntry->iIndex;
if (memcmp(pCacheVertex, pVertex, sizeof(MeshVertex)) == 0)
{
bFound = true;
iIndex = pEntry->iIndex;
break;
}
pEntry = pEntry->pNext;
}
}
if (!bFound)
{
iIndex = mVertices.Size();
mVertices.Add(*pVertex);
CacheEntry* pEntryNew = new CacheEntry();
if (pEntryNew == NULL)
return uint(-1);
pEntryNew->iIndex = iIndex;
pEntryNew->pNext = NULL;
while (mCache.Size() <= iHash)
mCache.Add(NULL);
CacheEntry* pEntryCached = mCache[iHash];
if (pEntryCached == NULL)
mCache[iHash] = pEntryNew;
else
{
while (pEntryCached->pNext != NULL)
pEntryCached = pEntryCached->pNext;
pEntryCached->pNext = pEntryNew;
}
}
return iIndex;
};
void ObjMesh::LoadMaterialsFromMtl(const char* strPath)
{
char strCommand[MAX_PATH] = { 0 };
FILE* pInFile = 0;
fopen_s(&pInFile, strPath, "rt");
assert(pInFile);
int itCurrMaterial = INDEX_NONE;
while (!feof(pInFile))
{
fscanf_s(pInFile, "%s", strCommand, MAX_PATH);
if (0 == CStringUtil::Strcmp(strCommand, "#"))
{
// Comment
}
else if (0 == CStringUtil::Strcmp(strCommand, "newmtl"))
{
// Switching active materials
char strName[MAX_PATH] = { 0 };
fscanf_s(pInFile, "%s", strName, MAX_PATH);
ObjMaterial tmpMtl = ObjMaterial(strName);
itCurrMaterial = mMaterials.Find(tmpMtl);
}
if (itCurrMaterial == INDEX_NONE)
continue;
else if (0 == CStringUtil::Strcmp(strCommand, "Kd"))
{
// Diffuse color
float r, g, b;
fscanf_s(pInFile, "%f %f %f", &r, &g, &b);
mMaterials[itCurrMaterial].color = Color(r, g, b);
}
else if (0 == CStringUtil::Strcmp(strCommand, "Ks"))
{
// Diffuse color
float r, g, b;
fscanf_s(pInFile, "%f %f %f", &r, &g, &b);
mMaterials[itCurrMaterial].specColor = Color(r, g, b);
}
else if (0 == CStringUtil::Strcmp(strCommand, "Tf"))
{
// Diffuse color
float r, g, b;
fscanf_s(pInFile, "%f %f %f", &r, &g, &b);
mMaterials[itCurrMaterial].transColor = Color(r, g, b);
}
else if (0 == CStringUtil::Strcmp(strCommand, "d") || 0 == CStringUtil::Strcmp(strCommand, "Tr"))
{
// Alpha
fscanf_s(pInFile, "%f", &mMaterials[itCurrMaterial].color.a);
}
else if (0 == CStringUtil::Strcmp(strCommand, "map_Kd"))
{
if (!mMaterials[itCurrMaterial].strTexturePath[0])
{
// Texture
char strTexName[MAX_PATH] = { 0 };
fgets(strTexName, MAX_PATH, pInFile);
if (strTexName[strlen(strTexName) - 1] == '\n')
strTexName[strlen(strTexName) - 1] = '\0';
const char* path1 = CStringUtil::Strrchr(strPath, '/');
const char* path2 = CStringUtil::Strrchr(strPath, '\\');
int idx = (path1 ? path1 : path2) - strPath + 1;
char strMtlPath[MAX_PATH] = { 0 };
CStringUtil::Strncpy(mMaterials[itCurrMaterial].strTexturePath, MAX_PATH, strPath, idx);
CStringUtil::Strcat(mMaterials[itCurrMaterial].strTexturePath, MAX_PATH, strTexName + 1);
}
}
else if (0 == CStringUtil::Strcmp(strCommand, "bump"))
{
if (!mMaterials[itCurrMaterial].strBumpPath[0])
{
// Texture
char strTexName[MAX_PATH] = { 0 };
fgets(strTexName, MAX_PATH, pInFile);
if (strTexName[strlen(strTexName) - 1] == '\n')
strTexName[strlen(strTexName) - 1] = '\0';
const char* path1 = CStringUtil::Strrchr(strPath, '/');
const char* path2 = CStringUtil::Strrchr(strPath, '\\');
int idx = (path1 ? path1 : path2) - strPath + 1;
char strMtlPath[MAX_PATH] = { 0 };
CStringUtil::Strncpy(mMaterials[itCurrMaterial].strBumpPath, MAX_PATH, strPath, idx);
CStringUtil::Strcat(mMaterials[itCurrMaterial].strBumpPath, MAX_PATH, strTexName + 1);
}
}
else
{
while (!feof(pInFile) && fgetc(pInFile) != '\n');
}
}
fclose(pInFile);
return;
}
void ObjMesh::ComputeVertexNormals()
{
// First compute per face normals
Array<Vector3> vFaceNormals;
vFaceNormals.Resize(mFaces.Size());
for (auto i = 0; i < mFaces.Size(); i++)
{
const Vector3& pt1 = GetVertexAt(mFaces[i].aiIndices[0]).position;
const Vector3& pt2 = GetVertexAt(mFaces[i].aiIndices[1]).position;
const Vector3& pt3 = GetVertexAt(mFaces[i].aiIndices[2]).position;
Vector3 vEdge1 = pt2 - pt1;
Vector3 vEdge2 = pt3 - pt1;
Vector3 crossProd = Math::Cross(vEdge1, vEdge2);
if (Math::Length(crossProd) > 0.0f)
vFaceNormals[i] = Math::Normalize(crossProd);
else
vFaceNormals[i] = Vector3::ZERO;
}
struct VertexFace
{
int iCount;
Array<int> List;
VertexFace()
: iCount(0) {}
};
Array<VertexFace> VertexFaceList;
VertexFaceList.Resize(mVertices.Size());
for (auto i = 0; i < mFaces.Size(); i++)
{
for (auto j = 0; j < 3; j++)
{
VertexFaceList[mFaces[i].aiIndices[j]].iCount++;
VertexFaceList[mFaces[i].aiIndices[j]].List.Add(i);
}
}
// Compute per vertex normals with smoothing group
for (auto i = 0; i < mFaces.Size(); i++)
{
const MeshFace& face = mFaces[i];
for (auto j = 0; j < 3; j++)
{
int iFaceCount = 0;
Vector3 vNormal;
for (auto k = 0; k < VertexFaceList[mFaces[i].aiIndices[j]].iCount; k++)
{
int iFaceIdx = VertexFaceList[mFaces[i].aiIndices[j]].List[k];
if (face.iSmoothingGroup & mFaces[iFaceIdx].iSmoothingGroup)
{
vNormal += vFaceNormals[iFaceIdx];
iFaceCount++;
}
}
if (iFaceCount > 0)
vNormal /= float(iFaceCount);
else
vNormal = vFaceNormals[i];
if (Math::Length(vNormal) > 0.0f)
vNormal = Math::Normalize(vNormal);
else
vNormal = Vector3::ZERO;
MeshVertex& vert = mVertices[face.aiIndices[j]];
if (vert.normal == Vector3::ZERO)
vert.normal = vNormal;
else if (vert.normal != vNormal)
{
MeshVertex newVertex = vert;
newVertex.normal = vNormal;
auto idx = AddVertex(mFaces[i].aiIndices[j], &newVertex);
//mFaces[i].aiIndices[j] = idx;
mIndices[3 * i + j] = idx;
}
}
}
mVertexCount = mVertices.Size();
mNormaled = true;
}
void ObjMesh::LoadPlane(const Vector3& pos, const Vector3& scl, const Vector3& rot, const float length)
{
Matrix mWorld, mWorldInv;
Matrix::CalcTransform(pos, scl, rot, &mWorld, &mWorldInv);
float length_2 = length * 0.5f;
Vector3 pt = Matrix::TransformPoint(Vector3(-length_2, 0.0f, length_2), mWorld);
mBounds = Math::Union(mBounds, pt);
mVertices.Add(MeshVertex(pt,
Math::Normalize(Matrix::TransformNormal(Vector3(Vector3::UNIT_Y), mWorldInv)),
0.0f, 0.0f));
pt = Matrix::TransformPoint(Vector3(-length_2, 0.0f, -length_2), mWorld);
mBounds = Math::Union(mBounds, pt);
mVertices.Add(MeshVertex(pt,
Math::Normalize(Matrix::TransformNormal(Vector3(Vector3::UNIT_Y), mWorldInv)),
0.0f, 1.0f));
pt = Matrix::TransformPoint(Vector3(length_2, 0.0f, -length_2), mWorld);
mBounds = Math::Union(mBounds, pt);
mVertices.Add(MeshVertex(pt,
Math::Normalize(Matrix::TransformNormal(Vector3(Vector3::UNIT_Y), mWorldInv)),
1.0f, 1.0f));
pt = Matrix::TransformPoint(Vector3(length_2, 0.0f, length_2), mWorld);
mBounds = Math::Union(mBounds, pt);
mVertices.Add(MeshVertex(pt,
Math::Normalize(Matrix::TransformNormal(Vector3(Vector3::UNIT_Y), mWorldInv)),
1.0f, 0.0f));
mIndices.Add(0);
mIndices.Add(2);
mIndices.Add(1);
mIndices.Add(2);
mIndices.Add(0);
mIndices.Add(3);
mTriangleCount = mIndices.Size() / 3;
mVertexCount = mVertices.Size();
mMaterialIdx.Init(0, mTriangleCount);
mNormaled = mTextured = true;
mMaterials.Add(ObjMaterial());
mNumSubsets = 1;
mSubsetMtlIdx.Add(0);
mSubsetStartIdx.Add(0);
mSubsetStartIdx.Add(mIndices.Size());
}
void ObjMesh::LoadSphere(const Vector3& pos, const Vector3& scl, const Vector3& rot, const float fRadius, const int slices, const int stacks)
{
Matrix mWorld, mWorldInv;
Matrix::CalcTransform(pos, scl, rot, &mWorld, &mWorldInv);
const float fThetaItvl = float(Math::EDX_PI) / float(stacks);
const float fPhiItvl = float(Math::EDX_TWO_PI) / float(slices);
float fTheta = 0.0f;
for (int i = 0; i <= stacks; i++)
{
float fPhi = 0.0f;
for (int j = 0; j <= slices; j++)
{
Vector3 vDir = Math::SphericalDirection(Math::Sin(fTheta), Math::Cos(fTheta), fPhi);
Vector3 pt = Matrix::TransformPoint(fRadius * vDir, mWorld);
mBounds = Math::Union(mBounds, pt);
mVertices.Add(MeshVertex(
pt,
Matrix::TransformNormal(vDir, mWorldInv),
fPhi / float(Math::EDX_TWO_PI), fTheta / float(Math::EDX_PI)));
fPhi += fPhiItvl;
}
fTheta += fThetaItvl;
}
for (int i = 0; i < stacks; i++)
{
for (int j = 0; j < slices; j++)
{
mIndices.Add(i * (slices + 1) + j);
mIndices.Add(i * (slices + 1) + j + 1);
mIndices.Add((i + 1) * (slices + 1) + j);
mIndices.Add(i * (slices + 1) + j + 1);
mIndices.Add((i + 1) * (slices + 1) + j + 1);
mIndices.Add((i + 1) * (slices + 1) + j);
}
}
mTriangleCount = mIndices.Size() / 3;
mVertexCount = mVertices.Size();
mMaterialIdx.Init(0, mTriangleCount);
mNormaled = mTextured = true;
mMaterials.Add(ObjMaterial());
mNumSubsets = 1;
mSubsetMtlIdx.Add(0);
mSubsetStartIdx.Add(0);
mSubsetStartIdx.Add(mIndices.Size());
}
void ObjMesh::Release()
{
mVertices.Clear();
mIndices.Clear();
mFaces.Clear();
mCache.Clear();
}
} | [
"[email protected]"
] | |
bc06ab97d35a5145092ac134d5c58708cd00138b | f07c072871f8c6e8f25e63a2a05308575eb3242c | /Codeforces/A. Kyoya And Photbooks.cpp | e9b00c87389fbe4f1ca666e9b191d7e1d4bf559d | [] | no_license | pathakaditya6/Competitive-Programming | 7c5d71dcc537152fb06b4e580a68cbe00572a9b1 | e6175075cfc82b4ab166181ccaf7a447635911ca | refs/heads/main | 2023-01-15T16:32:52.125572 | 2020-11-22T23:31:57 | 2020-11-22T23:31:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 787 | cpp | // In the name of Aadi Shakti
// We are nothing and you are everything
// Jai Mata Di
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define fast ios_base::sync_with_stdio(false) ; cin.tie(0) ; cout.tie(0) ;
#define endl '\n'
void solve()
{
string s ;
cin >> s ;
cout << ( s.size() + 1 ) * 25 + 1 << endl ;
}
int32_t main()
{
fast ;
int testcases = 1 ;
// cin >> testcases ;
while(testcases--)
{
solve() ;
}
return 0;
}
/* CODED BY:-
___________________________________
| ___ |
| /\ /\ \ / | | |___ |__| |
| /~~\ /~~\ | |__| ___| | | |
|___________________________________|
*/ | [
"[email protected]"
] | |
00831d7bfa270e3897461756a044354f9bf36fd5 | 75c49d1c44aa40c9ea9a787b7bbe0fc333867ea6 | /1028.cpp | 2c3c139438b4b84db0bfd414aecc564887033d77 | [] | no_license | PiKesi522/Cpp-Test | 551ad324313e0bdf41bf9d82421fb5c02b2a7398 | eec33ce1c0d1b40be8f25eeccb465c81c8d89623 | refs/heads/main | 2023-05-03T00:53:12.299910 | 2021-03-27T05:05:39 | 2021-03-27T05:05:39 | 351,985,564 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | cpp | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
set<long long> s;
void question(int method)
{
long long temp;
while(cin >> temp)
s.insert(temp);
//auto beg = --s.begin();
if(method == 'A')
for(auto v : s)
{
cout << v << ' ';
}
else
for(auto it = s.rbegin();it != s.rend();it++)
{
cout << *it << ' ';
}
cout << endl;
return;
}
int main()
{
char method;
cin >> method;
question(method);
return 0;
}
| [
"[email protected]"
] | |
c89f6e0af1bda6b6c11b9d09ceec6375c1369e04 | fc92e5a0ff95baa83b41ba31cdc36afc209c3342 | /C++/HoldEm/Card.h | 044129e63232d838cd5da094ce565354c6cb22c3 | [] | no_license | shafeen/Utilities | b07e5a97f14e68901fa528340b679e3bfc7a881c | 52ee7beb416f5c10984624f36f3aaa7c74558cba | refs/heads/master | 2020-05-21T04:23:01.584683 | 2017-10-04T13:09:25 | 2017-10-04T13:09:25 | 15,571,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 591 | h | //
// Created by Shafeen M. on 10/11/2015.
//
#ifndef CLIONTEST_CARD_H
#define CLIONTEST_CARD_H
#include <vector>
using std::vector;
class Card {
public:
static vector<Card> createDeck();
enum FaceCard { A=1, J=11, Q=12, K=13 };
enum Suit { Hearts=0, Diamonds=1, Spades=2, Clubs=3 };
private:
unsigned int value;
unsigned int suit;
public:
Card(unsigned int, unsigned int);
bool operator==(const Card &otherCard);
unsigned int getValue() const {return this->value;}
unsigned int getSuit() const {return this->suit;}
};
#endif //CLIONTEST_CARD_H
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.